/* =========================================================
   SELECTRA OVERSEAS - CUSTOM UPDATES
   All client-requested changes are grouped and commented
   so they are easy to find and adjust later.
   ========================================================= */

/* ---------- 1. TOP BAR ---------- */
.topbar {
  background-color: #02616c !important;
}
.topbar::before {
  background-color: rgba(2, 97, 108, 0.4) !important;
}
.topbar::after {
  background-color: #02616c !important;
}
/* Icons white */
.topbar__info__icon,
.topbar__info__icon i,
.topbar__info__icon svg {
  color: #ffffff !important;
  fill: #ffffff !important;
}
.topbar__enquiry {
  color: #ffffff;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 6px 16px;
  border-radius: 30px;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.topbar__enquiry:hover {
  background-color: #ffffff;
  color: #02616c;
}

/* Show top bar on mobile too, but only email + phone */
@media (max-width: 767px) {
  .topbar {
    display: block !important;
    padding: 8px 0px;
  }
  .topbar__inner {
    flex-wrap: nowrap;
  }
  .topbar__right {
    display: none !important;
  }
  .topbar__info {
    gap: 14px;
    flex-wrap: wrap;
  }
  .topbar__info li {
    font-size: 11px;
  }
  .topbar__info li:not(:last-child)::after {
    right: -8px;
  }
}
@media (max-width: 420px) {
  .topbar__info li a {
    font-size: 11px;
  }
  /* Keep phone numbers compact on very small screens: show first number only */
  .topbar__info li:last-child a:nth-of-type(n+2) {
    display: none;
  }
}

/* ---------- 2. LOGO + HEADER BUTTON ---------- */
/* Remove decorative arrow/shape behind logo (high specificity + content:none to guarantee it's gone) */
header.main-header .main-header__logo::before,
.main-header__logo::before {
  display: none !important;
  content: none !important;
  width: 0 !important;
  height: 0 !important;
  background: none !important;
}
.main-header__logo img {
  width: 280px !important;
  max-width: 280px;
  height: auto;
}
@media (max-width: 1199px) {
  .main-header__logo img {
    width: 220px !important;
    max-width: 220px;
  }
}
@media (max-width: 767px) {
  .main-header__logo img {
    width: 160px !important;
    max-width: 160px;
  }
}
@media (max-width: 420px) {
  .main-header__logo img {
    width: 240px !important;
    max-width: 240px;
  }
}

/* Header right side: hamburger + Drop your CV button layout on mobile */
.main-header__right__right {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 767px) {
  .main-header__inner {
    flex-wrap: nowrap;
    justify-content: space-between;
  }
  .main-header__button {
    display: block !important;
  }
  .main-header__button .visanet-btn__text {
    display: none;
  }
  .main-header__button .visanet-btn {
    padding: 0;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
  }
  .main-header__button .visanet-btn__icon-box {
    margin: 0;
  }
  .mobile-nav__btn.mobile-nav__toggler {
    margin-left: 4px;
  }
}
@media (max-width: 375px) {
  .main-header__button .visanet-btn {
    width: 34px;
    height: 34px;
  }
}

/* ---------- 3. HERO SLIDER HEIGHT ---------- */
.hero-slider-three__item {
  padding: 190px 0px 120px !important;
}
@media (max-width: 1199px) {
  .hero-slider-three__item {
    padding: 170px 0px 100px !important;
  }
}
@media (max-width: 991px) {
  .hero-slider-three__item {
    padding: 160px 0px 90px !important;
  }
}
@media (max-width: 575px) {
  .hero-slider-three__item {
    padding: 140px 0px 70px !important;
  }
}
@media (max-width: 412px) {
  .hero-slider-three__item {
    padding: 125px 0px 60px !important;
  }
}

/* ---------- 5 & 6. PARAGRAPH JUSTIFY + BLACK TEXT ---------- */
/* Scoped to actual content paragraphs (light background areas) only -
   NOT a blanket <p> rule, so hero/footer/dark-section text isn't broken */
.about-one__text,
.about-three__text,
.abt-description,
.svc-detail-section p,
.visa-details__text,
.visa-details__inner__text,
.contact-one__text,
.visa-card-four__text,
.page-content p,
section.about-one p,
section.visa-details p,
.director-profile-card p.director-bio {
  text-align: justify;
  color: #000000 !important;
}
.footer-widget__text {
  color: #d5d5d5 !important; /* keep footer text readable on dark bg */
  text-align: justify;
}

/* ---------- 17. FOOTER TITLE FIX ---------- */
.footer-widget__title {
  font-size: 19px;
  white-space: nowrap;
  letter-spacing: 0;
}
@media (max-width: 1399px) and (min-width: 992px) {
  .footer-widget__title {
    font-size: 17px;
  }
}
@media (max-width: 575px) {
  .footer-widget__title {
    white-space: normal;
    font-size: 20px;
  }
}

/* ---------- 19. FLOATING DROP YOUR CV BUTTON (above call/whatsapp) ---------- */
.floating-action-stack {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.floating-action-stack a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: #ffffff;
  font-size: 22px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  text-decoration: none;
}
.floating-action-stack__call {
  background-color: #02616c;
}
.floating-action-stack__whatsapp {
  background-color: #25d366;
}
.floating-action-stack__cv {
  width: auto;
  height: auto;
  min-width: 54px;
  padding: 12px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  gap: 8px;
  white-space: nowrap;
  flex-direction: row;
  flex-wrap: nowrap;
  background: linear-gradient(270deg, #02616c, #ff7a00, #02616c, #25d366);
  background-size: 600% 600%;
  animation: floatingCvBlink 4s ease infinite, floatingCvPulse 1.6s ease-in-out infinite;
}
.floating-action-stack__cv span {
  white-space: nowrap;
}
.floating-action-stack__cv i {
  font-size: 16px;
  flex-shrink: 0;
}
@keyframes floatingCvBlink {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes floatingCvPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  }
  50% {
    transform: scale(1.06);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
  }
}
@media (max-width: 575px) {
  .floating-action-stack {
    right: 14px;
    bottom: 14px;
    gap: 10px;
  }
  .floating-action-stack a {
    width: 46px;
    height: 46px;
    font-size: 18px;
  }
  .floating-action-stack__cv {
    width: 46px !important;
    height: 46px !important;
    min-width: 46px;
    padding: 0 !important;
    border-radius: 50% !important;
  }
  .floating-action-stack__cv span {
    display: none;
  }
  .floating-action-stack__cv i {
    font-size: 18px;
    margin: 0;
  }
}

/* ---------- Service page (manpower/student-visa/management/recruitment) polish ---------- */
.svc-detail-section {
  padding: 70px 0;
}
.svc-detail-section .abt-main-title {
  margin-bottom: 18px;
}
.svc-highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 30px 0;
}
@media (max-width: 575px) {
  .svc-highlight-grid {
    grid-template-columns: 1fr;
  }
}
.svc-highlight-card {
  background: #f7f9fa;
  border-left: 4px solid #02616c;
  padding: 18px 20px;
  border-radius: 6px;
}
.svc-highlight-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: #02616c;
  margin-bottom: 8px;
}
.svc-highlight-card p {
  font-size: 14.5px;
  margin: 0;
  text-align: justify;
  color: #000;
}
.svc-process-list {
  list-style: none;
  margin: 25px 0;
  padding: 0;
}
.svc-process-list li {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  align-items: flex-start;
}
.svc-process-list .svc-step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #02616c;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}
.svc-process-list .svc-step-text h5 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #1d253a;
}
.svc-process-list .svc-step-text p {
  margin: 0;
  font-size: 14px;
  text-align: justify;
  color: #000;
}
.svc-cta-band {
  margin-top: 40px;
  padding: 30px;
  border-radius: 10px;
  background: #02616c;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}
.svc-cta-band h3 {
  color: #fff;
  font-size: 20px;
  margin: 0;
}
.svc-cta-band p {
  color: #e6f2f3 !important;
  margin: 4px 0 0;
  text-align: left;
}
.svc-cta-band .visanet-btn__text {
  white-space: nowrap;
}

/* ---------- Director desk: two profile layout ---------- */
.director-profiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 20px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .director-profiles {
    grid-template-columns: 1fr;
  }
}
.director-profile-card {
  text-align: center;
  padding: 30px 20px;
  border-radius: 10px;
  background: #f7f9fa;
}
.director-profile-card img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 18px;
  border: 4px solid #02616c;
}
.director-profile-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #1d253a;
}
.director-profile-card p.director-role {
  font-size: 16px;
  font-weight: 600;
  color: #02616c;
  margin-bottom: 0;
}

/* ---------- Enquiry page form ---------- */
.enquiry-form-wrap {
  max-width: 720px;
  margin: 0 auto;
}

/* =========================================================
   ROUND 2 FIXES
   ========================================================= */

/* ---- Mobile menu (off-canvas) icons must be visible ---- */
.mobile-nav__contact__icon,
.mobile-nav__contact__icon i {
  color: #ffffff !important;
  font-size: 13px !important;
}
.mobile-nav__contact__icon {
  background-color: #02616c !important;
}

/* ---- Remove any decorative shape around the mobile menu logo ---- */
.mobile-nav__content .logo-box::before,
.mobile-nav__content .logo-box::after,
.logo-box::before,
.logo-box::after {
  display: none !important;
  content: none !important;
}
.mobile-nav__content .logo-box img {
  max-width: 150px;
  width: 150px;
  height: auto;
}
.mobile-nav__content .logo-box {
  background: transparent !important;
}

/* ---- Homepage About Us: keep overlay images small so the main photo stays visible ---- */
.about-three__image__two {
  width: 220px;
  overflow: hidden;
}
.about-three__image__two img {
  width: 220px !important;
  height: 230px !important;
  object-fit: cover !important;
  max-width: none;
}
@media (max-width: 1599px) {
  .about-three__image__two {
    width: 190px;
  }
  .about-three__image__two img {
    width: 190px !important;
    height: 200px !important;
  }
}
.about-three__info__image {
  width: 90px !important;
  height: 90px !important;
  object-fit: cover !important;
  border-radius: 8px;
  flex-shrink: 0;
}

/* ---- Footer titles: keep "Contact Information" level with "Industries We Serve" ---- */
.footer-widget__title {
  min-height: 30px;
  display: flex;
  align-items: flex-start;
  white-space: normal;
}
@media (min-width: 992px) {
  .footer-widget__title {
    min-height: 58px;
  }
}

/* ---- Service detail pages (manpower / student-visa / management / recruitment) ---- */
.abt-sec-area {
  padding: 70px 0;
}
.abt-content-wrap {
  padding-right: 10px;
}
.abt-main-title {
  font-size: 30px;
  font-weight: 800;
  color: #1d253a;
  margin-bottom: 18px;
  line-height: 1.3;
}
.abt-description {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 18px;
  color: #000;
}
.abt-content-wrap > p {
  font-size: 15px;
  line-height: 1.8;
  color: #000;
  text-align: justify;
  margin-bottom: 10px;
}
.abt-image-wrap {
  position: sticky;
  top: 110px;
}
.abt-image-wrap img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
  object-fit: cover;
  max-height: 520px;
}
@media (max-width: 991px) {
  .abt-image-wrap {
    position: static;
    margin-top: 30px;
  }
}

/* ---- Fully-styled forms for Drop Your CV / Business Enquiry (reuse theme's form-one classes) ---- */
.svc-detail-section .sec-title {
  margin-bottom: 22px;
}
.form-one-wrap {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
  padding: 40px;
  border: 1px solid #eef1f2;
}
@media (max-width: 575px) {
  .form-one-wrap {
    padding: 25px 18px;
  }
}


/* ---- About page: Mission / Vision / Values cards ---- */
.about-mvv {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 767px) {
  .about-mvv {
    grid-template-columns: 1fr;
  }
}
.about-mvv__card {
  background: #ffffff;
  border-radius: 10px;
  padding: 24px 20px;
  box-shadow: 0 10px 30px rgba(2, 97, 108, 0.1);
  border-top: 3px solid #02616c;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about-mvv__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(2, 97, 108, 0.18);
}
.about-mvv__icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(2, 97, 108, 0.1);
  color: #02616c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 14px;
}
.about-mvv__card h4 {
  font-size: 16px;
  font-weight: 700;
  color: #1d253a;
  margin-bottom: 8px;
}
.about-mvv__card p {
  font-size: 13.5px;
  line-height: 1.7;
  color: #000;
  text-align: justify;
  margin: 0;
}
/* ---- Director Desk page (fresh layout) ---- */
.director-desk-section {
  padding: 70px 0;
}
.director-block {
  background: #f8fafb;
  border-radius: 16px;
  padding: 45px;
  margin-bottom: 0;
  border-bottom: none;
  position: relative;
}
@media (max-width: 575px) {
  .director-block {
    padding: 28px 20px;
  }
}
.director-block--2 {
  background: #ffffff;
  border: 1px solid #eef1f2;
}
.director-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 50px 0;
}
.director-divider::before,
.director-divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, #02616c55);
}
.director-divider::after {
  background: linear-gradient(90deg, #02616c55, transparent);
}
.director-divider span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #02616c;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(2, 97, 108, 0.3);
}
.director-block__name {
  font-size: 28px;
  font-weight: 800;
  color: #1d253a;
  margin-bottom: 4px;
}
.director-block__role {
  font-size: 15px;
  font-weight: 700;
  color: #02616c;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
}
.director-block__text {
  font-size: 15px;
  line-height: 1.85;
  color: #000;
  text-align: justify;
  margin: 0;
}
.director-block__image img {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}
@media (max-width: 991px) {
  .director-block__image {
    margin-top: 25px;
  }
}

/* ---------- HEADER WHITE BACKGROUND - FULL COVERAGE FIX ----------
   Theme's own CSS (.main-header > .container::before) only covers
   "calc(100% - 115px)" of the width and is pinned to the right, so the
   left ~115px of the header was always left transparent - showing the
   page/hero background behind it on inner pages. Forcing it edge-to-edge
   here so the header background is always fully white on every page. */
.main-header > .container::before {
  width: 100% !important;
  left: 0 !important;
  right: 0 !important;
}

/* =========================================================
   NEW INDUSTRY PAGES (Transportation, Engineering,
   Agriculture, Food Processing, Administration)
   Same layout pattern as construction/hotel/medical sections,
   only the class prefix changes per industry.
   ========================================================= */


.transport-section{
    padding:100px 5%;
    background:#f8f9fc;
    overflow:hidden;
}

.transport-container{
    max-width:1400px;
    margin:auto;
    display:flex;
    align-items:center;
    gap:70px;
}

/* IMAGE AREA */

.transport-image-area{
    flex:1;
    position:relative;
    margin-bottom: 140px;
}

.transport-image-box{
    overflow:hidden;
    border-radius:25px;
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.transport-image-box img{
    width:100%;
    aspect-ratio:5/4; /* Fixed 5:4 Ratio */
    object-fit:cover;
    display:block;
    transition:.5s;
}

.transport-image-box:hover img{
    transform:scale(1.08);
}

.transport-exp-card{
    position:absolute;
    bottom:20px;
    left:-20px;
    background:#fff;
    padding:20px 25px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
}

.transport-exp-card h3{
    font-size:34px;
    color:#1b2559;
}

.transport-exp-card p{
    color:#666;
    font-size:14px;
}

.transport-floating-card{
    position:absolute;
    top:25px;
    right:-20px;
    background:#1b2559;
    color:#fff;
    padding:15px 20px;
    border-radius:15px;
    display:flex;
    gap:10px;
    align-items:center;
}

/* CONTENT */

.transport-content{
    flex:1;
}

.transport-subtitle{
    color:#ff7a00;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
}

.transport-content h2{
    font-size:52px;
    color:#111;
    margin:15px 0 25px;
    line-height:1.2;
}

.transport-content h2 span{
    color:#1b2559;
}

.transport-desc{
    font-size:17px;
    line-height:1.9;
    color:#666;
    margin-bottom:20px;
    text-align: justify;
}

/* FEATURES */

.transport-feature-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin:35px 0;
}

.transport-feature{
    background:#fff;
    padding:20px;
    border-radius:18px;
    display:flex;
    gap:15px;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
    transition:.3s;
}

.transport-feature:hover{
    transform:translateY(-8px);
}

.transport-icon{
    width:55px;
    height:55px;
    background:#1b2559;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-shrink:0;
}

.transport-feature h4{
    margin-bottom:8px;
    color:#111;
    font-size: 15px;
}

.transport-feature p{
    color:#666;
    font-size:12px;
    line-height:1.6;
}

/* STATS */

.transport-stats{
    display:flex;
    gap:40px;
    margin-bottom:35px;
}

.transport-stat h3{
    font-size:32px;
    color:#1b2559;
}

.transport-stat span{
    color:#666;
}

/* BUTTON */

.transport-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#1b2559;
    color:#fff;
    text-decoration:none;
    padding:16px 35px;
    border-radius:50px;
    transition:.3s;
}

.transport-btn:hover{
    transform:translateY(-5px);
}

/* RESPONSIVE */

@media(max-width:991px){

    .transport-container{
        flex-direction:column;
    }

    .transport-content h2{
        font-size:38px;
    }
}

@media(max-width:768px){

    .transport-feature-grid{
        grid-template-columns:1fr;
    }

    .transport-stats{
        flex-wrap:wrap;
        gap:20px;
    }

    .transport-content h2{
        font-size:32px;
    }

    .transport-exp-card{
        left:10px;
    }

    .transport-floating-card{
        right:10px;
    }
}

@media(max-width:576px){

    .transport-section{
        padding:60px 20px;
    }

    .transport-content h2{
        font-size:28px;
    }

    .transport-desc{
        font-size:15px;
    }
}

.engineering-section{
    padding:100px 5%;
    background:#f8f9fc;
    overflow:hidden;
}

.engineering-container{
    max-width:1400px;
    margin:auto;
    display:flex;
    align-items:center;
    gap:70px;
}

/* IMAGE AREA */

.engineering-image-area{
    flex:1;
    position:relative;
    margin-bottom: 140px;
}

.engineering-image-box{
    overflow:hidden;
    border-radius:25px;
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.engineering-image-box img{
    width:100%;
    aspect-ratio:5/4; /* Fixed 5:4 Ratio */
    object-fit:cover;
    display:block;
    transition:.5s;
}

.engineering-image-box:hover img{
    transform:scale(1.08);
}

.engineering-exp-card{
    position:absolute;
    bottom:20px;
    left:-20px;
    background:#fff;
    padding:20px 25px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
}

.engineering-exp-card h3{
    font-size:34px;
    color:#1b2559;
}

.engineering-exp-card p{
    color:#666;
    font-size:14px;
}

.engineering-floating-card{
    position:absolute;
    top:25px;
    right:-20px;
    background:#1b2559;
    color:#fff;
    padding:15px 20px;
    border-radius:15px;
    display:flex;
    gap:10px;
    align-items:center;
}

/* CONTENT */

.engineering-content{
    flex:1;
}

.engineering-subtitle{
    color:#ff7a00;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
}

.engineering-content h2{
    font-size:52px;
    color:#111;
    margin:15px 0 25px;
    line-height:1.2;
}

.engineering-content h2 span{
    color:#1b2559;
}

.engineering-desc{
    font-size:17px;
    line-height:1.9;
    color:#666;
    margin-bottom:20px;
    text-align: justify;
}

/* FEATURES */

.engineering-feature-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin:35px 0;
}

.engineering-feature{
    background:#fff;
    padding:20px;
    border-radius:18px;
    display:flex;
    gap:15px;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
    transition:.3s;
}

.engineering-feature:hover{
    transform:translateY(-8px);
}

.engineering-icon{
    width:55px;
    height:55px;
    background:#1b2559;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-shrink:0;
}

.engineering-feature h4{
    margin-bottom:8px;
    color:#111;
    font-size: 15px;
}

.engineering-feature p{
    color:#666;
    font-size:12px;
    line-height:1.6;
}

/* STATS */

.engineering-stats{
    display:flex;
    gap:40px;
    margin-bottom:35px;
}

.engineering-stat h3{
    font-size:32px;
    color:#1b2559;
}

.engineering-stat span{
    color:#666;
}

/* BUTTON */

.engineering-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#1b2559;
    color:#fff;
    text-decoration:none;
    padding:16px 35px;
    border-radius:50px;
    transition:.3s;
}

.engineering-btn:hover{
    transform:translateY(-5px);
}

/* RESPONSIVE */

@media(max-width:991px){

    .engineering-container{
        flex-direction:column;
    }

    .engineering-content h2{
        font-size:38px;
    }
}

@media(max-width:768px){

    .engineering-feature-grid{
        grid-template-columns:1fr;
    }

    .engineering-stats{
        flex-wrap:wrap;
        gap:20px;
    }

    .engineering-content h2{
        font-size:32px;
    }

    .engineering-exp-card{
        left:10px;
    }

    .engineering-floating-card{
        right:10px;
    }
}

@media(max-width:576px){

    .engineering-section{
        padding:60px 20px;
    }

    .engineering-content h2{
        font-size:28px;
    }

    .engineering-desc{
        font-size:15px;
    }
}

.agriculture-section{
    padding:100px 5%;
    background:#f8f9fc;
    overflow:hidden;
}

.agriculture-container{
    max-width:1400px;
    margin:auto;
    display:flex;
    align-items:center;
    gap:70px;
}

/* IMAGE AREA */

.agriculture-image-area{
    flex:1;
    position:relative;
    margin-bottom: 140px;
}

.agriculture-image-box{
    overflow:hidden;
    border-radius:25px;
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.agriculture-image-box img{
    width:100%;
    aspect-ratio:5/4; /* Fixed 5:4 Ratio */
    object-fit:cover;
    display:block;
    transition:.5s;
}

.agriculture-image-box:hover img{
    transform:scale(1.08);
}

.agriculture-exp-card{
    position:absolute;
    bottom:20px;
    left:-20px;
    background:#fff;
    padding:20px 25px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
}

.agriculture-exp-card h3{
    font-size:34px;
    color:#1b2559;
}

.agriculture-exp-card p{
    color:#666;
    font-size:14px;
}

.agriculture-floating-card{
    position:absolute;
    top:25px;
    right:-20px;
    background:#1b2559;
    color:#fff;
    padding:15px 20px;
    border-radius:15px;
    display:flex;
    gap:10px;
    align-items:center;
}

/* CONTENT */

.agriculture-content{
    flex:1;
}

.agriculture-subtitle{
    color:#ff7a00;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
}

.agriculture-content h2{
    font-size:52px;
    color:#111;
    margin:15px 0 25px;
    line-height:1.2;
}

.agriculture-content h2 span{
    color:#1b2559;
}

.agriculture-desc{
    font-size:17px;
    line-height:1.9;
    color:#666;
    margin-bottom:20px;
    text-align: justify;
}

/* FEATURES */

.agriculture-feature-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin:35px 0;
}

.agriculture-feature{
    background:#fff;
    padding:20px;
    border-radius:18px;
    display:flex;
    gap:15px;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
    transition:.3s;
}

.agriculture-feature:hover{
    transform:translateY(-8px);
}

.agriculture-icon{
    width:55px;
    height:55px;
    background:#1b2559;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-shrink:0;
}

.agriculture-feature h4{
    margin-bottom:8px;
    color:#111;
    font-size: 15px;
}

.agriculture-feature p{
    color:#666;
    font-size:12px;
    line-height:1.6;
}

/* STATS */

.agriculture-stats{
    display:flex;
    gap:40px;
    margin-bottom:35px;
}

.agriculture-stat h3{
    font-size:32px;
    color:#1b2559;
}

.agriculture-stat span{
    color:#666;
}

/* BUTTON */

.agriculture-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#1b2559;
    color:#fff;
    text-decoration:none;
    padding:16px 35px;
    border-radius:50px;
    transition:.3s;
}

.agriculture-btn:hover{
    transform:translateY(-5px);
}

/* RESPONSIVE */

@media(max-width:991px){

    .agriculture-container{
        flex-direction:column;
    }

    .agriculture-content h2{
        font-size:38px;
    }
}

@media(max-width:768px){

    .agriculture-feature-grid{
        grid-template-columns:1fr;
    }

    .agriculture-stats{
        flex-wrap:wrap;
        gap:20px;
    }

    .agriculture-content h2{
        font-size:32px;
    }

    .agriculture-exp-card{
        left:10px;
    }

    .agriculture-floating-card{
        right:10px;
    }
}

@media(max-width:576px){

    .agriculture-section{
        padding:60px 20px;
    }

    .agriculture-content h2{
        font-size:28px;
    }

    .agriculture-desc{
        font-size:15px;
    }
}

.foodproc-section{
    padding:100px 5%;
    background:#f8f9fc;
    overflow:hidden;
}

.foodproc-container{
    max-width:1400px;
    margin:auto;
    display:flex;
    align-items:center;
    gap:70px;
}

/* IMAGE AREA */

.foodproc-image-area{
    flex:1;
    position:relative;
    margin-bottom: 140px;
}

.foodproc-image-box{
    overflow:hidden;
    border-radius:25px;
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.foodproc-image-box img{
    width:100%;
    aspect-ratio:5/4; /* Fixed 5:4 Ratio */
    object-fit:cover;
    display:block;
    transition:.5s;
}

.foodproc-image-box:hover img{
    transform:scale(1.08);
}

.foodproc-exp-card{
    position:absolute;
    bottom:20px;
    left:-20px;
    background:#fff;
    padding:20px 25px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
}

.foodproc-exp-card h3{
    font-size:34px;
    color:#1b2559;
}

.foodproc-exp-card p{
    color:#666;
    font-size:14px;
}

.foodproc-floating-card{
    position:absolute;
    top:25px;
    right:-20px;
    background:#1b2559;
    color:#fff;
    padding:15px 20px;
    border-radius:15px;
    display:flex;
    gap:10px;
    align-items:center;
}

/* CONTENT */

.foodproc-content{
    flex:1;
}

.foodproc-subtitle{
    color:#ff7a00;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
}

.foodproc-content h2{
    font-size:52px;
    color:#111;
    margin:15px 0 25px;
    line-height:1.2;
}

.foodproc-content h2 span{
    color:#1b2559;
}

.foodproc-desc{
    font-size:17px;
    line-height:1.9;
    color:#666;
    margin-bottom:20px;
    text-align: justify;
}

/* FEATURES */

.foodproc-feature-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin:35px 0;
}

.foodproc-feature{
    background:#fff;
    padding:20px;
    border-radius:18px;
    display:flex;
    gap:15px;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
    transition:.3s;
}

.foodproc-feature:hover{
    transform:translateY(-8px);
}

.foodproc-icon{
    width:55px;
    height:55px;
    background:#1b2559;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-shrink:0;
}

.foodproc-feature h4{
    margin-bottom:8px;
    color:#111;
    font-size: 15px;
}

.foodproc-feature p{
    color:#666;
    font-size:12px;
    line-height:1.6;
}

/* STATS */

.foodproc-stats{
    display:flex;
    gap:40px;
    margin-bottom:35px;
}

.foodproc-stat h3{
    font-size:32px;
    color:#1b2559;
}

.foodproc-stat span{
    color:#666;
}

/* BUTTON */

.foodproc-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#1b2559;
    color:#fff;
    text-decoration:none;
    padding:16px 35px;
    border-radius:50px;
    transition:.3s;
}

.foodproc-btn:hover{
    transform:translateY(-5px);
}

/* RESPONSIVE */

@media(max-width:991px){

    .foodproc-container{
        flex-direction:column;
    }

    .foodproc-content h2{
        font-size:38px;
    }
}

@media(max-width:768px){

    .foodproc-feature-grid{
        grid-template-columns:1fr;
    }

    .foodproc-stats{
        flex-wrap:wrap;
        gap:20px;
    }

    .foodproc-content h2{
        font-size:32px;
    }

    .foodproc-exp-card{
        left:10px;
    }

    .foodproc-floating-card{
        right:10px;
    }
}

@media(max-width:576px){

    .foodproc-section{
        padding:60px 20px;
    }

    .foodproc-content h2{
        font-size:28px;
    }

    .foodproc-desc{
        font-size:15px;
    }
}

.adminoffice-section{
    padding:100px 5%;
    background:#f8f9fc;
    overflow:hidden;
}

.adminoffice-container{
    max-width:1400px;
    margin:auto;
    display:flex;
    align-items:center;
    gap:70px;
}

/* IMAGE AREA */

.adminoffice-image-area{
    flex:1;
    position:relative;
    margin-bottom: 140px;
}

.adminoffice-image-box{
    overflow:hidden;
    border-radius:25px;
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.adminoffice-image-box img{
    width:100%;
    aspect-ratio:5/4; /* Fixed 5:4 Ratio */
    object-fit:cover;
    display:block;
    transition:.5s;
}

.adminoffice-image-box:hover img{
    transform:scale(1.08);
}

.adminoffice-exp-card{
    position:absolute;
    bottom:20px;
    left:-20px;
    background:#fff;
    padding:20px 25px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
}

.adminoffice-exp-card h3{
    font-size:34px;
    color:#1b2559;
}

.adminoffice-exp-card p{
    color:#666;
    font-size:14px;
}

.adminoffice-floating-card{
    position:absolute;
    top:25px;
    right:-20px;
    background:#1b2559;
    color:#fff;
    padding:15px 20px;
    border-radius:15px;
    display:flex;
    gap:10px;
    align-items:center;
}

/* CONTENT */

.adminoffice-content{
    flex:1;
}

.adminoffice-subtitle{
    color:#ff7a00;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
}

.adminoffice-content h2{
    font-size:52px;
    color:#111;
    margin:15px 0 25px;
    line-height:1.2;
}

.adminoffice-content h2 span{
    color:#1b2559;
}

.adminoffice-desc{
    font-size:17px;
    line-height:1.9;
    color:#666;
    margin-bottom:20px;
    text-align: justify;
}

/* FEATURES */

.adminoffice-feature-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin:35px 0;
}

.adminoffice-feature{
    background:#fff;
    padding:20px;
    border-radius:18px;
    display:flex;
    gap:15px;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
    transition:.3s;
}

.adminoffice-feature:hover{
    transform:translateY(-8px);
}

.adminoffice-icon{
    width:55px;
    height:55px;
    background:#1b2559;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-shrink:0;
}

.adminoffice-feature h4{
    margin-bottom:8px;
    color:#111;
    font-size: 15px;
}

.adminoffice-feature p{
    color:#666;
    font-size:12px;
    line-height:1.6;
}

/* STATS */

.adminoffice-stats{
    display:flex;
    gap:40px;
    margin-bottom:35px;
}

.adminoffice-stat h3{
    font-size:32px;
    color:#1b2559;
}

.adminoffice-stat span{
    color:#666;
}

/* BUTTON */

.adminoffice-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#1b2559;
    color:#fff;
    text-decoration:none;
    padding:16px 35px;
    border-radius:50px;
    transition:.3s;
}

.adminoffice-btn:hover{
    transform:translateY(-5px);
}

/* RESPONSIVE */

@media(max-width:991px){

    .adminoffice-container{
        flex-direction:column;
    }

    .adminoffice-content h2{
        font-size:38px;
    }
}

@media(max-width:768px){

    .adminoffice-feature-grid{
        grid-template-columns:1fr;
    }

    .adminoffice-stats{
        flex-wrap:wrap;
        gap:20px;
    }

    .adminoffice-content h2{
        font-size:32px;
    }

    .adminoffice-exp-card{
        left:10px;
    }

    .adminoffice-floating-card{
        right:10px;
    }
}

@media(max-width:576px){

    .adminoffice-section{
        padding:60px 20px;
    }

    .adminoffice-content h2{
        font-size:28px;
    }

    .adminoffice-desc{
        font-size:15px;
    }
}

