:root {
      --primary-color: #0F5A9A;
      --sec-color: #ECB31F;

      
    }


* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family:Poppins, 'Inter', sans-serif;
      background: #ffffff;
      margin: 0;
      padding: 0;
      overflow-x: hidden;
    }

    /* ============================================ */
    /* ========== HEADER ========== */
    /* ============================================ */
    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.88);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(15, 90, 154, 0.06);
      transition: all 0.4s ease;
    }

    .site-header.scrolled {
      background: rgba(255, 255, 255, 0.96);
      box-shadow: 0 4px 30px rgba(15, 90, 154, 0.1);
    }

    .header-inner {
      width: 100%;
      max-width: 1400px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 100px;
      padding: 0 4rem;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 0.8rem;
      text-decoration: none;
      flex-shrink: 0;
    }

    .logo-icon {
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
     
    }

    

      .logo-icon img{ 
width: 68px;
      height: 48px;


       }

    

    .desktop-nav { display: none; }
    .nav-cta { display: none; }
    .hamburger-wrap { display: block; z-index: 1001; }

    .hamburger-btn {
      width: 48px;
      height: 48px;
      border-radius: 16px 5px 16px 5px;
      background: linear-gradient(135deg, #0F5A9A 0%, #0d4a7a 100%);
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 6px 18px rgba(15, 90, 154, 0.3);
      transition: all 0.3s ease;
    }

    .hamburger-btn.active {
      border-radius: 5px 16px 5px 16px;
      background: #0a3d6e;
    }

    .burger-lines {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 5px;
    }

    .burger-line {
      display: block;
      height: 2.5px;
      background: #ffffff;
      border-radius: 3px;
      transition: all 0.35s ease;
    }

    .line-1 { width: 22px; }
    .line-2 { width: 16px; margin-left: -6px; }
    .line-3 { width: 10px; margin-left: -12px; }

    .hamburger-btn.active .line-1 {
      width: 20px;
      transform: rotate(45deg) translate(5px, 5px);
    }
    .hamburger-btn.active .line-2 {
      opacity: 0;
      transform: scaleX(0);
    }
    .hamburger-btn.active .line-3 {
      width: 20px;
      margin-left: 0;
      transform: rotate(-45deg) translate(5px, -5px);
    }

    /* ========== MOBILE MENU WITH ANIMATIONS ========== */
    .mobile-menu {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      height: 100dvh;
      background: rgba(5, 25, 45, 0.96);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      z-index: 999;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.5s ease, visibility 0.5s ease;
      overflow-y: auto;
      padding: 2rem;
    }

    .mobile-menu.open { 
      opacity: 1; 
      visibility: visible; 
    }

    .mobile-nav-links {
      list-style: none;
      text-align: center;
      display: flex;
      flex-direction: column;
      gap: 1.2rem;
      margin: 0;
      padding: 0;
    }

    .mobile-nav-item {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .mobile-menu.open .mobile-nav-item {
      opacity: 1;
      transform: translateY(0);
    }

    .mobile-menu.open .mobile-nav-item:nth-child(1) { transition-delay: 0.1s; }
    .mobile-menu.open .mobile-nav-item:nth-child(2) { transition-delay: 0.2s; }
    .mobile-menu.open .mobile-nav-item:nth-child(3) { transition-delay: 0.3s; }
    .mobile-menu.open .mobile-nav-item:nth-child(4) { transition-delay: 0.4s; }
    .mobile-menu.open .mobile-nav-item:nth-child(5) { transition-delay: 0.5s; }
    .mobile-menu.open .mobile-nav-item:nth-child(6) { transition-delay: 0.6s; }

    .mobile-nav-links a,
    .mobile-nav-links .mobile-services-toggle {
      color: #d4e8f7;
      text-decoration: none;
      font-family: 'Playfair Display', serif;
      font-size: 1.8rem;
      font-weight: 600;
      letter-spacing: -0.5px;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      transition: color 0.3s ease;
    }

    .mobile-nav-links a:hover,
    .mobile-nav-links .mobile-services-toggle:hover {
      color: #ECB31F;
    }

    .mobile-services-toggle i {
      font-size: 0.7rem;
      transition: transform 0.3s ease;
    }
    .mobile-services-toggle.open i { transform: rotate(180deg); }

    .mobile-services-list {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.3rem;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1), margin 0.5s ease;
      margin-top: 0;
      list-style: none;
      padding: 0;
    }
    .mobile-services-list.open { 
      max-height: 350px; 
      margin-top: 0.6rem; 
    }
    .mobile-services-list a {
      font-family: 'Inter', sans-serif;
      font-size: 0.82rem;
      font-weight: 500;
      padding: 0.4rem 0.6rem;
      color: #b8d4f0;
      background: rgba(255,255,255,0.05);
      border-radius: 0.4rem;
      text-align: center;
      display: block;
      text-decoration: none;
      opacity: 0;
      transform: translateY(10px);
      transition: all 0.3s ease;
    }
    
    .mobile-services-list.open a {
      opacity: 1;
      transform: translateY(0);
    }
    
    .mobile-services-list.open a:nth-child(1) { transition-delay: 0.05s; }
    .mobile-services-list.open a:nth-child(2) { transition-delay: 0.1s; }
    .mobile-services-list.open a:nth-child(3) { transition-delay: 0.15s; }
    .mobile-services-list.open a:nth-child(4) { transition-delay: 0.2s; }
    .mobile-services-list.open a:nth-child(5) { transition-delay: 0.25s; }
    .mobile-services-list.open a:nth-child(6) { transition-delay: 0.3s; }
    .mobile-services-list.open a:nth-child(7) { transition-delay: 0.35s; }
    .mobile-services-list.open a:nth-child(8) { transition-delay: 0.4s; }
    .mobile-services-list.open a:nth-child(9) { transition-delay: 0.45s; }
    
    .mobile-services-list a:hover { 
      background: rgba(236, 179, 31, 0.15); 
      color: #ECB31F; 
    }

    .mobile-cta {
      margin-top: 2rem;
      background: #ECB31F;
      color: #0a1929;
      padding: 0.8rem 2rem;
      border-radius: 50px;
      font-weight: 700;
      text-decoration: none;
      font-size: 0.9rem;
      transition: all 0.3s ease;
      display: inline-block;
      opacity: 0;
      transform: translateY(30px);
    }
    
    .mobile-menu.open .mobile-cta {
      opacity: 1;
      transform: translateY(0);
      transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
      transition-delay: 0.7s;
    }
    
    .mobile-cta:hover { 
      background: #f0c44a; 
      transform: translateY(-2px); 
    }

    @media (min-width: 1025px) {
      .desktop-nav {
        display: flex;
        align-items: center;
        gap: 2.5rem;
        list-style: none;
        margin: 0;
        padding: 0;
      }
      .desktop-nav > li { position: relative; }
      .desktop-nav a,
      .desktop-nav .dropdown-toggle {
        text-decoration: none;
        color: #2b3a4a;
        font-weight: 500;
        font-size: 0.95rem;
        letter-spacing: -0.2px;
        cursor: pointer;
        white-space: nowrap;
        display: flex;
        align-items: center;
        gap: 0.35rem;
        transition: color 0.3s ease;
      }
      .desktop-nav a:hover,
      .desktop-nav .dropdown-toggle:hover { color: #0F5A9A; }
      .dropdown-toggle i { font-size: 0.6rem; color: #6b8ba5; transition: transform 0.3s ease; }
      .dropdown-wrapper.open > .dropdown-toggle i { transform: rotate(180deg); }
      .dropdown-menu {
        position: absolute;
        top: calc(100% + 0.8rem);
        left: -1rem;
        background: #ffffff;
        border-radius: 1rem;
        box-shadow: 0 20px 50px -15px rgba(15, 90, 154, 0.18);
        border: 1px solid #e0eaf3;
        padding: 0.7rem;
        min-width: 200px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(6px);
        transition: all 0.25s ease;
        list-style: none;
      }
      .dropdown-wrapper.open .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
      .dropdown-menu li { list-style: none; }
      .dropdown-menu a {
        display: block;
        padding: 0.5rem 0.8rem;
        border-radius: 0.5rem;
        font-size: 0.84rem;
        font-weight: 500;
        color: #3a4d5e;
        text-decoration: none;
        transition: all 0.15s ease;
      }
      .dropdown-menu a:hover { background: #f0f5fa; color: #0F5A9A; }
      .dropdown-divider { border-top: 1px solid #e0eaf3; margin: 0.3rem 0; }
      .dropdown-menu .view-all { font-weight: 600; color: #0F5A9A; }
      .nav-cta {
        display: inline-block;
        background: #ECB31F;
        color: #0a1929;
        padding: 0.75rem 1.6rem;
        border-radius: 50px;
        font-weight: 600;
        font-size: 0.88rem;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 6px 18px rgba(236, 179, 31, 0.25);
        white-space: nowrap;
        flex-shrink: 0;
      }
      .nav-cta:hover { background: #f0c44a; transform: translateY(-2px); box-shadow: 0 10px 24px rgba(236, 179, 31, 0.4); }
      .hamburger-wrap { display: none; }
    }

    @media (max-width: 1024px) {
      .header-inner { height: 85px; padding: 0 2rem; }
    }
    @media (max-width: 600px) {
      .header-inner { height: 75px; padding: 0 1.2rem; }
      .logo-text { font-size: 1.2rem; }
      .logo-icon { width: 40px; height: 40px; font-size: 1.1rem; }
      .hamburger-btn { width: 44px; height: 44px; border-radius: 14px 4px 14px 4px; }
      .mobile-nav-links a,
      .mobile-nav-links .mobile-services-toggle { font-size: 1.5rem; }
    }
    @media (max-width: 380px) {
      .header-inner { height: 70px; padding: 0 1rem; }
      .logo-text { font-size: 1rem; }
      .logo-icon { width: 36px; height: 36px; font-size: 1rem; }
      .hamburger-btn { width: 40px; height: 40px; }
      .mobile-nav-links a,
      .mobile-nav-links .mobile-services-toggle { font-size: 1.3rem; }
    }

    /* ============================================ */
    /* ========== PREMIUM CENTERED HERO ========== */
    /* ============================================ */
    .hero-section {
      width: 100%;
      height: 100vh;
      min-height: 700px;
      max-height: 1080px;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hero-bg-layer {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      opacity: 0;
      transform: scale(1);
      transition: opacity 1.8s cubic-bezier(0.4, 0, 0.2, 1);
      will-change: transform, opacity;
      z-index: 0;
    }

    .hero-bg-layer.active {
      opacity: 1;
      z-index: 1;
      animation: heroZoomIn 8s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
    }

    .hero-bg-layer.fading-out {
      opacity: 0;
      z-index: 2;
      transition: opacity 1.8s cubic-bezier(0.4, 0, 0.2, 1);
      animation: none;
    }

    @keyframes heroZoomIn {
      0% { transform: scale(1); }
      100% { transform: scale(1.18); }
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        160deg,
        rgba(3, 12, 22, 0.82) 0%,
        rgba(8, 25, 42, 0.58) 35%,
        rgba(12, 30, 50, 0.42) 65%,
        rgba(5, 18, 32, 0.68) 100%
      );
      z-index: 3;
      pointer-events: none;
    }

    .hero-grain {
      position: absolute;
      inset: 0;
      background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="300" height="300"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.7" numOctaves="4" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23n)" opacity="0.035"/></svg>');
      z-index: 4;
      pointer-events: none;
    }

    .hero-content {
      position: relative;
      z-index: 5;
      text-align: center;
      width: 100%;
      max-width: 1300px;
      padding: 0 2rem;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(236, 179, 31, 0.12);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      color: #f0d078;
      font-weight: 600;
      font-size: 0.75rem;
      letter-spacing: 3.5px;
      text-transform: uppercase;
      padding: 0.55rem 1.5rem;
      border-radius: 50px;
      margin-bottom: 2rem;
      border: 1px solid rgba(236, 179, 31, 0.25);
      animation: fadeInUp 1s ease forwards;
      opacity: 0;
    }

    .hero-content h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.8rem, 6vw, 5rem);
      font-weight: 800;
      color: #ffffff;
      line-height: 1.1;
      letter-spacing: -1.5px;
      margin-bottom: 1.4rem;
      animation: fadeInUp 1s ease 0.2s forwards;
      opacity: 0;
      text-shadow: 0 2px 20px rgba(0,0,0,0.3);
    }

    .hero-content h1 .italic-highlight {
      font-style: italic;
      color: #ECB31F;
      position: relative;
    }

    .hero-content h1 .italic-highlight::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 6px;
      width: 100%;
      height: 10px;
      background: rgba(15, 90, 154, 0.5);
      z-index: -1;
      border-radius: 3px;
    }

    .hero-content p {
      font-size: 1.15rem;
      line-height: 1.8;
      color: rgba(255, 255, 255, 0.82);
      margin-bottom: 2.5rem;
      max-width: 1000px;
      margin-left: auto;
      margin-right: auto;
      animation: fadeInUp 1s ease 0.4s forwards;
      opacity: 0;
      font-family: Poppins, Arial, Helvetica, sans-serif;
    }

    .hero-buttons {
      display: flex;
      gap: 1.2rem;
      flex-wrap: wrap;
      justify-content: center;
      animation: fadeInUp 1s ease 0.6s forwards;
      opacity: 0;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      background: #ECB31F;
      color: #0a1929;
      font-weight: 700;
      font-size: 0.93rem;
      text-decoration: none;
      padding: 1rem 2.4rem;
      border-radius: 50px;
      transition: all 0.35s ease;
      box-shadow: 0 12px 35px rgba(236, 179, 31, 0.3);
    }

    .btn-primary:hover {
      background: #f0c44a;
      transform: translateY(-4px);
      box-shadow: 0 18px 45px rgba(236, 179, 31, 0.45);
    }

    .btn-outline {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      background: transparent;
      color: #ffffff;
      font-weight: 600;
      font-size: 0.93rem;
      text-decoration: none;
      padding: 1rem 2.4rem;
      border-radius: 50px;
      border: 2px solid rgba(255, 255, 255, 0.45);
      transition: all 0.35s ease;
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
    }

    .btn-outline:hover {
      background: rgba(236, 179, 31, 0.1);
      border-color: #ECB31F;
      transform: translateY(-4px);
    }

    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(35px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .hero-scroll-indicator {
      position: absolute;
      bottom: 2.5rem;
      left: 50%;
      transform: translateX(-50%);
      z-index: 5;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      color: rgba(255, 255, 255, 0.55);
      font-size: 0.68rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      font-weight: 500;
      animation: fadeInUp 1s ease 1s forwards;
      opacity: 0;
    }

    .scroll-line {
      width: 1px;
      height: 40px;
      background: linear-gradient(180deg, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0) 100%);
      position: relative;
      overflow: hidden;
    }

    .scroll-line::after {
      content: "";
      position: absolute;
      top: -100%;
      left: 0;
      width: 100%;
      height: 100%;
      background: #ECB31F;
      animation: scrollDot 2s ease-in-out infinite;
    }

    @keyframes scrollDot {
      0% { top: -100%; }
      50% { top: 100%; }
      100% { top: 100%; }
    }

    .hero-slide-dots {
      position: absolute;
      bottom: 2.5rem;
      right: 4rem;
      z-index: 5;
      display: flex;
      gap: 0.8rem;
    }

    .slide-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.3);
      border: none;
      cursor: pointer;
      transition: all 0.4s ease;
      padding: 0;
    }

    .slide-dot.active {
      background: #ECB31F;
      box-shadow: 0 0 14px rgba(236, 179, 31, 0.6);
      width: 30px;
      border-radius: 20px;
    }

    .slide-dot:hover {
      background: rgba(236, 179, 31, 0.65);
    }

    /* ============================================ */
    /* ========== ABOUT SECTION ========== */
    /* ============================================ */
    .about-wrapper {
      width: 100%;
      background: #f7f9fb;
      padding: 6rem 1.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .about-section {
      max-width: 1280px;
      width: 100%;
      background: #ffffff;
      border-radius: 4rem 1rem 4rem 1rem;
      box-shadow: 0 25px 50px -12px rgba(15, 90, 154, 0.15);
      overflow: hidden;
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      position: relative;
      transition: all 0.3s ease;
    }

    .about-section::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle at 20% 30%, rgba(15, 90, 154, 0.02) 0%, transparent 50%),
                  url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.03"><rect x="20" y="20" width="8" height="8" fill="%230F5A9A"/><rect x="32" y="24" width="6" height="6" fill="%230F5A9A"/><circle cx="70" cy="75" r="4" fill="%230F5A9A"/></svg>');
      pointer-events: none;
      z-index: 1;
    }

    .visual-block {
      flex: 1 1 40%;
      background: linear-gradient(135deg, #0a3d6e 0%, #0F5A9A 100%);
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 3rem 1rem;
      min-height: 380px;
      z-index: 2;
      overflow: hidden;
    }

    .visual-block::after {
      content: "";
      position: absolute;
      top: -20%;
      right: -10%;
      width: 280px;
      height: 280px;
      background: radial-gradient(circle, rgba(236, 179, 31, 0.15) 0%, transparent 70%);
      border-radius: 50%;
      z-index: 0;
    }

    .visual-block::before {
      content: "";
      position: absolute;
      bottom: -15%;
      left: -15%;
      width: 200px;
      height: 200px;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
      border-radius: 50%;
      z-index: 0;
    }

    .emblem-container {
      position: relative;
      z-index: 3;
      text-align: center;
      color: white;
    }

    .blue-icon {
      font-size: 4.5rem;
      background: rgba(255, 255, 255, 0.12);
      backdrop-filter: blur(8px);
      width: 120px;
      height: 120px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 42% 58% 55% 45% / 48% 42% 58% 52%;
      margin: 0 auto 1.8rem auto;
      box-shadow: 0 20px 35px rgba(0, 0, 0, 0.3);
      border: 1px solid rgba(255, 255, 255, 0.25);
      transition: border-radius 0.4s ease;
    }
    
    .blue-icon:hover {
      border-radius: 58% 42% 45% 55% / 42% 58% 52% 48%;
    }

    .blue-icon i {
      filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3));
    }

    .visual-block h2 {
      font-family: 'Playfair Display', serif;
      font-size: 2.6rem;
      font-weight: 600;
      letter-spacing: -0.5px;
      color: #f0f7ff;
      margin-bottom: 0.5rem;
      line-height: 1.2;
    }

    .visual-block .subhead {
      font-family: 'Inter', sans-serif;
      font-weight: 400;
      font-size: 1rem;
      text-transform: uppercase;
      letter-spacing: 4px;
      color: #ECB31F;
      opacity: 0.95;
    }

    .content-block {
      flex: 1 1 55%;
      padding: 3.5rem 1rem;
      position: relative;
      z-index: 3;
      background: #ffffff;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .label-tag {
      display: inline-block;
      background: #e8f0f9;
      color: #0F5A9A;
      font-weight: 600;
      font-size: 0.8rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 0.4rem 1.2rem;
      border-radius: 30px;
      margin-bottom: 1.8rem;
      width: fit-content;
      border: 1px solid #c5d8ee;
    }

    .content-block h3 {
      font-family: 'Playfair Display', serif;
      font-size: 2.4rem;
      font-weight: 600;
      color: #1a2530;
      line-height: 1.3;
      margin-bottom: 1.5rem;
    }

    .highlight-gold {
      color: #ECB31F;
      position: relative;
      font-style: italic;
    }

    .highlight-gold::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 4px;
      width: 100%;
      height: 8px;
      background: rgba(15, 90, 154, 0.2);
      z-index: -1;
      opacity: 0.7;
      border-radius: 2px;
    }

    .description {
      font-size: 1.08rem;
      line-height: 1.8;
      color: #3a4a5a;
      margin-bottom: 0.5rem;
      font-weight: 400;
      max-width: 90%;
    }
    .read-link{
 display: inline-flex;
      align-items: center;
      align-self: flex-start;
      gap: 0.5rem;
      background: #ECB31F;
      color: #ffffff;
      font-weight: 600;
      font-size: 0.9rem;
      text-decoration: none;
      padding: 0.8rem 2rem;
      border-radius: 50px;
      transition: all 0.3s ease;
      box-shadow: 0 8px 22px -8px rgba(26, 104, 50, 0.4); 
            margin-bottom: 2.5rem;
    }

    .read-link:hover {
      background: #f0c44a;
      transform: translateY(-4px);
      box-shadow: 0 18px 45px rgba(236, 179, 31, 0.45);
    }


    .mission-box {
      background: #f4f7fa;
      border-radius: 2rem 0.5rem 2rem 0.5rem;
      padding: 1.8rem 2rem;
      margin: 0.8rem 0 1.5rem 0;
      border-left: 6px solid #ECB31F;
      box-shadow: 0 10px 20px -10px rgba(15, 90, 154, 0.2);
      display: flex;
      align-items: center;
      gap: 1.2rem;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .mission-box:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 30px -12px rgba(15, 90, 154, 0.35);
    }

    .mission-icon {
      background: #0F5A9A;
      width: 52px;
      height: 52px;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #ECB31F;
      font-size: 1.8rem;
      flex-shrink: 0;
      box-shadow: 0 12px 18px -10px rgba(15, 90, 154, 0.5);
    }

    .mission-text h4 {
      font-family: 'Inter', sans-serif;
      font-weight: 700;
      font-size: 0.9rem;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: #0F5A9A;
      margin-bottom: 0.25rem;
    }

    .mission-text p {
      font-size: 1.2rem;
      font-weight: 500;
      font-family: 'Playfair Display', serif;
      font-style: italic;
      color: #0a1a2e;
      line-height: 1.5;
      letter-spacing: 0.2px;
    }

    .stats-row {
      display: flex;
      gap: 2.2rem;
      margin-top: 1.2rem;
      border-top: 1px solid #dce6f0;
      padding-top: 1.8rem;
    }

    .stat-item h5 {
      font-size: 1.8rem;
      font-weight: 700;
      color: #0F5A9A;
      font-family: 'Inter', sans-serif;
      line-height: 1.2;
    }

    .stat-item span {
      font-size: 0.85rem;
      color: #5a6b7a;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.8px;
    }

    /* ========== RESPONSIVE ========== */
    @media (max-width: 1024px) {
      .hero-section {
        min-height: 650px;
      }
      .hero-content {
        padding: 0 1.5rem;
      }
      .hero-slide-dots {
        right: 2rem;
        bottom: 2rem;
      }
      .hero-scroll-indicator {
        bottom: 2rem;
      }
    }

    @media (max-width: 850px) {
      .about-section {
        flex-direction: column;
        border-radius: 2.5rem 1rem 2.5rem 1rem;
      }
      .visual-block {
        min-height: 280px;
      }
      .content-block {
        padding: 2.5rem 1.8rem;
      }
      .description {
        max-width: 100%;
      }
    }

    @media (max-width: 600px) {
      .hero-section {
        min-height: 100vh;
        height: auto;
        padding: 120px 0 5rem 0;
      }
      .hero-content {
        padding: 0 1.2rem;
      }
      .hero-content h1 {
        font-size: 2.2rem;
      }
      .hero-content p {
        font-size: 0.92rem;
      }
      .hero-buttons {
        flex-direction: column;
        align-items: center;
      }
      .btn-primary,
      .btn-outline {
        justify-content: center;
        width: 100%;
      }
      .hero-slide-dots {
        right: 1.2rem;
        bottom: 1.8rem;
        gap: 0.6rem;
      }
      .slide-dot { width: 8px; height: 8px; }
      .slide-dot.active { width: 24px; }
      .hero-scroll-indicator {
        bottom: 1.8rem;
      }

      .about-wrapper {
        padding: 3rem 0.2rem;
      }
      .about-section {
        border-radius: 2rem 0.5rem 2rem 0.5rem;
        width: 100%;
      }
      .visual-block {
        min-height: 240px;
        padding: 2rem 1.5rem;
      }
      .visual-block h2 {
        font-size: 2rem;
      }
      .blue-icon {
        width: 90px;
        height: 90px;
        font-size: 3.2rem;
        margin-bottom: 1.2rem;
      }
      .content-block {
        padding: 2rem 1.5rem;
      }
      .content-block h3 {
        font-size: 1.8rem;
      }
      .description {
        font-size: 0.95rem;
        max-width: 100%;
      }
      .mission-box {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        gap: 1rem;
      }
      .mission-text p {
        font-size: 1rem;
      }
      .stats-row {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
      }
      .stat-item {
        text-align: center;
      }
      .stat-item h5 {
        font-size: 1.5rem;
      }
    }

 

    /* ========== FULL-WIDTH PRODUCTS SECTION ========== */
    .products-fullwidth {
      width: 100%;
      background: #f9fdf7;
      padding: 5rem 4rem;
      position: relative;
      overflow: hidden;
    }

    /* subtle organic background texture */
    .products-fullwidth::before {
      content: "";
      position: absolute;
      inset: 0;
      background: 
        radial-gradient(ellipse at 80% 20%, rgba(26, 104, 50, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 10% 85%, rgba(130, 185, 122, 0.05) 0%, transparent 50%);
      pointer-events: none;
      z-index: 1;
    }

    .products-fullwidth > * {
      position: relative;
      z-index: 2;
    }

    /* ========== HEADER ========== */
    .section-header {
      text-align: center;
      margin-bottom: 3.5rem;
    }

    .header-tag {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: #c6dce2;
      color: var(--primary-color);
      font-weight: 600;
      font-size: 0.78rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      padding: 0.5rem 1.6rem;
      border-radius: 50px;
      margin-bottom: 1.5rem;
      border: 1px solid #cbe5c3;
    }

    .section-header h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.2rem, 4vw, 3rem);
      font-weight: 700;
      color: #0f2818;
      letter-spacing: -0.5px;
      margin-bottom: 0.8rem;
      line-height: 1.2;
    }

    .header-line {
      display: block;
      width: 70px;
      height: 4px;
            background: linear-gradient(90deg, #1e0c61, #82b97a);

      margin: 0 auto 1.2rem auto;
      border-radius: 4px;
    }

    .section-header p {
      color: #4a5b47;
      font-size: 1.05rem;
      max-width: 580px;
      margin: 0 auto;
      line-height: 1.7;
    }

  /* ---------- WHY CHOOSE US SECTION ---------- */
  .why-us-section {
    width: 100%;
    background: #f7f9fb;
    padding: 6rem 1.5rem;
    display: flex;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }

  /* subtle background pattern */
  .why-us-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.03"><rect x="15" y="20" width="7" height="7" fill="%230F5A9A"/><circle cx="80" cy="70" r="5" fill="%230F5A9A"/></svg>');
    pointer-events: none;
  }

  .why-us-container {
    max-width: 1280px;
    width: 100%;
    position: relative;
    z-index: 2;
  }

  /* ----- Header ----- */
  .why-header {
    text-align: center;
    margin-bottom: 4rem;
  }

  .why-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #e8f0f9;
    color: #0F5A9A;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    margin-bottom: 1.5rem;
    border: 1px solid #c5d8ee;
  }

  .why-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 5vw, 3.4rem);
    font-weight: 700;
    color: #0a1929;
    line-height: 1.2;
    margin-bottom: 1.2rem;
  }

  .gold-text {
    color: #ECB31F;
    font-style: italic;
    position: relative;
    display: inline-block;
  }

  .gold-text::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 6px;
    width: 100%;
    height: 8px;
    background: rgba(15, 90, 154, 0.15);
    z-index: -1;
    border-radius: 2px;
  }

  .why-subtitle {
    font-size: 1.1rem;
    color: #4a5a6a;
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.7;
  }

  /* ----- Grid ----- */
  .why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  /* ----- Card ----- */
  .why-card {
    background: #ffffff;
    border-radius: 2rem 0.5rem 2rem 0.5rem;
    padding: 2.5rem 2rem 2rem;
    box-shadow: 0 15px 35px -10px rgba(15, 90, 154, 0.07);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 45px -12px rgba(15, 90, 154, 0.2);
  }

  /* gradient accent line that appears on hover */
  .card-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ECB31F, #0F5A9A);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }

  .why-card:hover .card-accent {
    transform: scaleX(1);
  }

  .why-icon {
    background: #f0f5fa;
    width: 70px;
    height: 70px;
    border-radius: 42% 58% 55% 45% / 48% 42% 58% 52%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0F5A9A;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(15, 90, 154, 0.12);
  }

  .why-card:hover .why-icon {
    background: #0F5A9A;
    color: #ECB31F;
    border-radius: 58% 42% 45% 55% / 42% 58% 52% 48%;
    transform: scale(1.05);
  }

  .why-card h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #0a1929;
    margin-bottom: 0.8rem;
    letter-spacing: -0.3px;
  }

  .why-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #4a5a6a;
    margin-bottom: 1.5rem;
    flex-grow: 1;
  }

  /* ----- Tags ----- */
  .why-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: auto;
  }

  .tag {
    display: inline-block;
    background: rgba(15, 90, 154, 0.08);
    color: #0F5A9A;
    font-weight: 600;
    font-size: 0.7rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 0.35rem 0.9rem;
    border-radius: 20px;
    border: 1px solid rgba(15, 90, 154, 0.15);
    transition: all 0.2s ease;
  }

  .why-card:hover .tag {
    background: rgba(236, 179, 31, 0.12);
    color: #0F5A9A;
    border-color: rgba(236, 179, 31, 0.4);
  }

  /* ---------- RESPONSIVE ---------- */
  @media (max-width: 1024px) {
    .why-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 650px) {
    .why-grid {
      grid-template-columns: 1fr;
    }
    .why-us-section {
      padding: 3.5rem 0;
    }
    .why-header {
      padding: 0 1.5rem;
    }
    .why-card {
      padding: 2rem 1.5rem;
    }
  }
  

    /* ========== ICON CONTAINER ========== */
    .feature-icon-wrap {
      width: 80px;
      height: 80px;
      border-radius: 24px 8px 24px 8px;
      background: linear-gradient(135deg, #0f381e 0%, #1a5e32 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.6rem;
      position: relative;
      z-index: 3;
      box-shadow: 0 14px 30px -10px rgba(26, 104, 50, 0.4);
      transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .feature-card:hover .feature-icon-wrap {
      border-radius: 8px 26px 8px 26px;
      box-shadow: 0 20px 40px -12px rgba(26, 104, 50, 0.55);
      transform: scale(1.08) rotate(-3deg);
    }

    .feature-icon-wrap i {
      font-size: 2rem;
      color: #f4ffe8;
      transition: transform 0.5s ease;
    }

    .feature-card:hover .feature-icon-wrap i {
      transform: scale(1.15);
    }

    /* ========== FEATURE CONTENT ========== */
    .feature-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem;
      font-weight: 700;
      color: #0f2818;
      margin-bottom: 0.8rem;
      letter-spacing: -0.3px;
      position: relative;
      z-index: 3;
    }

    .feature-card .feature-desc {
      font-size: 0.93rem;
      line-height: 1.75;
      color: #4a5b47;
      margin-bottom: 1.4rem;
      position: relative;
      z-index: 3;
      flex-grow: 1;
    }

    /* ========== FEATURE STAT / HIGHLIGHT ========== */
    .feature-highlight {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      font-weight: 700;
      font-size: 0.85rem;
      color: #1a6832;
      position: relative;
      z-index: 3;
      padding: 0.35rem 1rem;
      background: #f4faf2;
      border-radius: 50px;
      transition: all 0.3s ease;
    }

    .feature-card:hover .feature-highlight {
      background: #1a6832;
      color: #ffffff;
    }

    .feature-highlight i {
      font-size: 0.7rem;
    }

    /* ========== BOTTOM TRUST STRIP ========== */
    .trust-strip {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 3rem;
      margin-top: 5rem;
      padding: 2.5rem 3rem;
      background: linear-gradient(135deg, #f6fbf4 0%, #edf7e9 100%);
      border-radius: 2rem 0.6rem 2rem 0.6rem;
      border: 1px solid #e0f0d8;
      max-width: 1300px;
      margin-left: auto;
      margin-right: auto;
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 0.8rem;
    }

    .trust-icon-small {
      width: 44px;
      height: 44px;
      border-radius: 12px 3px 12px 3px;
      background: #1a6832;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #ffffff;
      font-size: 1.1rem;
      flex-shrink: 0;
      box-shadow: 0 6px 16px rgba(26, 104, 50, 0.25);
    }

    .trust-text strong {
      display: block;
      font-size: 0.9rem;
      color: #0f2818;
      font-weight: 700;
    }

    .trust-text span {
      font-size: 0.8rem;
      color: #5b6b55;
      font-weight: 500;
    }

    /* ========== RESPONSIVE ========== */
    @media (max-width: 1000px) {
      .why-us-fullwidth {
        padding: 4.5rem 2.5rem;
      }

      .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
      }

      .feature-card {
        padding: 2.2rem 1.5rem 2rem 1.5rem;
      }

      .section-header h2 {
        font-size: 1.9rem;
      }

      .trust-strip {
        gap: 2rem;
        padding: 2rem 1.5rem;
      }
    }

    @media (max-width: 650px) {
      .why-us-fullwidth {
        padding: 3.5rem 1.5rem;
      }

      .features-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
      }

      .feature-card {
        padding: 2rem 1.5rem;
        border-radius: 1.5rem 0.4rem 1.5rem 0.4rem;
      }

      .section-header {
        margin-bottom: 3rem;
      }

      .section-header h2 {
        font-size: 1.6rem;
      }

      .section-header p {
        font-size: 0.9rem;
      }

      .feature-card h3 {
        font-size: 1.25rem;
      }

      .feature-icon-wrap {
        width: 65px;
        height: 65px;
      }

      .feature-icon-wrap i {
        font-size: 1.6rem;
      }

      .trust-strip {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
        padding: 1.8rem 1.5rem;
        margin-top: 3rem;
      }
    }

    @media (max-width: 400px) {
      .why-us-fullwidth {
        padding: 3rem 1rem;
      }

      .feature-icon-wrap {
        width: 55px;
        height: 55px;
        border-radius: 18px 6px 18px 6px;
      }

      .feature-icon-wrap i {
        font-size: 1.4rem;
      }

      .trust-strip {
        padding: 1.5rem 1rem;
        border-radius: 1.2rem 0.4rem 1.2rem 0.4rem;
      }
    }





    

    

    /* ========== FULL-WIDTH SERVICES SECTION ========== */
    .services-fullwidth {
      width: 100%;
      background: #ffffff;
      padding: 5rem 4rem;
      position: relative;
      overflow: hidden;
    }

    /* organic background accents */
    .services-fullwidth::before {
      content: "";
      position: absolute;
      inset: 0;
      background: 
        radial-gradient(ellipse at 15% 10%, rgba(26, 104, 50, 0.025) 0%, transparent 55%),
        radial-gradient(ellipse at 85% 90%, rgba(130, 185, 122, 0.04) 0%, transparent 55%),
        radial-gradient(ellipse at 50% 50%, rgba(180, 210, 160, 0.02) 0%, transparent 70%);
      pointer-events: none;
      z-index: 1;
    }

    .services-fullwidth > * {
      position: relative;
      z-index: 2;
    }

    /* ========== HEADER ========== */
    .section-header {
      text-align: center;
      margin-bottom: 4rem;
    }

    .header-tag {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: #c6dce2;
      color: var(--primary-color);
      font-weight: 600;
      font-size: 0.78rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      padding: 0.5rem 1.6rem;
      border-radius: 50px;
      margin-bottom: 1.5rem;
      border: 1px solid #cbe5c3;
    }

    .section-header h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.2rem, 4vw, 3rem);
      font-weight: 700;
      color: #0f2818;
      letter-spacing: -0.5px;
      margin-bottom: 0.8rem;
      line-height: 1.2;
    }

    .header-line {
      display: block;
      width: 70px;
      height: 4px;
      background: linear-gradient(90deg, #1e0c61, #82b97a);
      margin: 0 auto 1.2rem auto;
      border-radius: 4px;
    }

    .section-header p {
      color: #4a5b47;
      font-size: 1.08rem;
      max-width: 600px;
      margin: 0 auto;
      line-height: 1.7;
    }

    /* ========== SERVICES GRID ========== */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      width: 100%;
    }

    /* ========== SERVICE CARD ========== */
    .service-card {
      background: #ffffff;
      border-radius: 2rem 0.6rem 2rem 0.6rem;
      overflow: hidden;
      transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            box-shadow: 0 25px 50px -12px rgba(15, 90, 154, 0.15);

      border: 1px solid #eef5ea;
      display: flex;
      flex-direction: column;
      cursor: default;
      position: relative;
    }

    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 24px 48px -14px rgba(15, 55, 25, 0.25);
      border-color: #d4e8cc;
    }

    /* ========== SERVICE IMAGE ========== */
    .service-image {
      width: 100%;
      height: 200px;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      position: relative;
      overflow: hidden;
      flex-shrink: 0;
    }

    /* gradient overlay on image */
    .service-image::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.05) 0%,
        rgba(0, 0, 0, 0.02) 50%,
        rgba(10, 28, 15, 0.6) 100%
      );
      transition: background 0.4s ease;
    }

    .service-card:hover .service-image::after {
      background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.02) 0%,
        rgba(0, 0, 0, 0.01) 50%,
        rgba(10, 28, 15, 0.7) 100%
      );
    }

    /* icon badge on image */
    .service-icon-badge {
      position: absolute;
      bottom: 1rem;
      left: 1.2rem;
      width: 48px;
      height: 48px;
      border-radius: 14px 4px 14px 4px;
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: blur(6px);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 3;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
      transition: all 0.4s ease;
    }

    .service-card:hover .service-icon-badge {
      border-radius: 4px 16px 4px 16px;
      background: #ffffff;
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
      transform: scale(1.08);
    }

    .service-icon-badge i {
      font-size: 1.3rem;
      color: var(--primary-color);
      transition: transform 0.4s ease;
    }

    .service-card:hover .service-icon-badge i {
      transform: rotate(-6deg) scale(1.1);
    }

    /* ========== SERVICE CONTENT (below image) ========== */
    .service-body {
      padding: 1.6rem 1.5rem 1.8rem 1.5rem;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
      position: relative;
    }

    .service-body h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.35rem;
      font-weight: 700;
      color: var(--primary-color);
      margin-bottom: 0.5rem;
      letter-spacing: -0.3px;
    }

    .service-body .service-desc {
      font-size: 0.9rem;
      line-height: 1.7;
      color: #4a5b47;
      margin-bottom: 1.2rem;
      flex-grow: 1;
    }

    /* ========== SERVICE LINK ========== */
    .service-link {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--primary-color);
      font-weight: 600;
      font-size: 0.88rem;
      text-decoration: none;
      transition: all 0.3s ease;
      padding-bottom: 2px;
      border-bottom: 2px solid transparent;
      width: fit-content;
    }

    .service-link i {
      font-size: 0.8rem;
      transition: transform 0.3s ease;
    }

    .service-link:hover {
      border-bottom-color: var(--primary-color);
      gap: 0.7rem;
    }

    .service-link:hover i {
      transform: translateX(4px);
    }

    /* ========== BOTTOM CTA ========== */
    .services-cta {
      text-align: center;
      margin-top: 4rem;
      padding: 2.5rem;
            background: linear-gradient(135deg, #0a3d6e 0%, #0F5A9A 100%);

      border-radius: 2rem 0.6rem 2rem 0.6rem;
      color: #ffffff;
      position: relative;
      overflow: hidden;
    }

    .services-cta::before {
      content: "";
      position: absolute;
      top: -30%;
      right: -10%;
      width: 300px;
      height: 300px;
      background: rgba(255, 255, 255, 0.03);
      border-radius: 50%;
      pointer-events: none;
    }

    .services-cta h3 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.6rem, 2.5vw, 2rem);
      font-weight: 700;
      margin-bottom: 0.6rem;
      position: relative;
      z-index: 2;
    }

    .services-cta p {
      font-size: 1rem;
      color: #c5e6ba;
      color: var(--sec-color);
      margin-bottom: 1.5rem;
      position: relative;
      z-index: 2;
      max-width: 500px;
      margin-left: auto;
      margin-right: auto;
    }

    .cta-button {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      background: #ffffff;
      color: #0f381e;
      font-weight: 700;
      font-size: 0.95rem;
      text-decoration: none;
      padding: 0.9rem 2.2rem;
      border-radius: 50px;
      transition: all 0.3s ease;
      position: relative;
      z-index: 2;
      letter-spacing: 0.5px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    }

    .cta-button:hover {
      background: #f0fde8;
      transform: translateY(-3px);
      box-shadow: 0 14px 32px rgba(0, 0, 0, 0.3);
    }

    .cta-button i {
      transition: transform 0.3s ease;
    }

    .cta-button:hover i {
      transform: translateX(4px);
    }

    /* ========== RESPONSIVE ========== */
    @media (max-width: 1000px) {
      .services-fullwidth {
        padding: 4rem 2rem;
      }

      .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
      }

      .service-image {
        height: 180px;
      }

      .section-header h2 {
        font-size: 1.9rem;
      }

      .service-body {
        padding: 1.4rem 1.3rem 1.5rem 1.3rem;
      }
    }

    @media (max-width: 650px) {
      .services-fullwidth {
        padding: 3rem 1rem;
      }

      .services-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
      }

      .service-image {
        height: 200px;
      }

      .section-header {
        margin-bottom: 2.5rem;
      }

      .section-header h2 {
        font-size: 1.6rem;
      }

      .section-header p {
        font-size: 0.9rem;
      }

      .service-body h3 {
        font-size: 1.2rem;
      }

      .service-body {
        padding: 1.3rem 1.2rem 1.4rem 1.2rem;
      }

      .services-cta {
        padding: 2rem 1.5rem;
        margin-top: 2.5rem;
      }

      .services-cta h3 {
        font-size: 1.4rem;
      }
    }

    @media (max-width: 400px) {
      .services-fullwidth {
        padding: 2.5rem 0.6rem;
      }

      .service-image {
        height: 170px;
      }

      .service-icon-badge {
        width: 40px;
        height: 40px;
        border-radius: 12px 3px 12px 3px;
        bottom: 0.8rem;
        left: 1rem;
      }

      .service-icon-badge i {
        font-size: 1.1rem;
      }
    }



  /* ---------- OUR VALUES SECTION ---------- */
  .values-section {
    width: 100%;
    background: #ffffff;
    padding: 6rem 1.5rem;
    display: flex;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }

  /* subtle dual‑tone background glow */
  .values-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: 
      radial-gradient(ellipse at 20% 30%, rgba(15, 90, 154, 0.03) 0%, transparent 60%),
      radial-gradient(ellipse at 80% 70%, rgba(236, 179, 31, 0.03) 0%, transparent 60%);
    pointer-events: none;
  }

  .values-container {
    max-width: 1280px;
    width: 100%;
    position: relative;
    z-index: 2;
  }

  /* ----- Header (consistent) ----- */
  .section-header {
    text-align: center;
    margin-bottom: 4rem;
  }

  .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #e8f0f9;
    color: #0F5A9A;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    margin-bottom: 1.5rem;
    border: 1px solid #c5d8ee;
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 5vw, 3.4rem);
    font-weight: 700;
    color: #0a1929;
    line-height: 1.2;
    margin-bottom: 1.2rem;
  }

  .gold-highlight {
    color: #ECB31F;
    font-style: italic;
    position: relative;
    display: inline-block;
  }

  .gold-highlight::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 6px;
    width: 100%;
    height: 8px;
    background: rgba(15, 90, 154, 0.15);
    z-index: -1;
    border-radius: 2px;
  }

  .section-subtitle {
    font-size: 1.1rem;
    color: #4a5a6a;
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.7;
  }

  /* ----- Values Grid ----- */
  .values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  /* ----- Value Card ----- */
  .value-card {
    background: #f9fbfd;
    border-radius: 2rem 0.5rem 2rem 0.5rem;
    padding: 2.8rem 2rem 2rem;
    position: relative;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(15, 90, 154, 0.07);
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .value-card:hover {
    background: #ffffff;
    transform: translateY(-8px);
    box-shadow: 0 25px 45px -12px rgba(15, 90, 154, 0.2);
    border-color: rgba(236, 179, 31, 0.3);
  }

  /* bottom accent line */
  .value-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ECB31F, #0F5A9A);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }

  .value-card:hover .value-accent {
    transform: scaleX(1);
  }

  .value-icon {
    width: 70px;
    height: 70px;
    background: #ffffff;
    border-radius: 42% 58% 55% 45% / 48% 42% 58% 52%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0F5A9A;
    font-size: 1.9rem;
    margin-bottom: 1.8rem;
    box-shadow: 0 8px 20px rgba(15, 90, 154, 0.1);
    border: 1px solid rgba(15, 90, 154, 0.12);
    transition: all 0.3s ease;
  }

  .value-card:hover .value-icon {
    background: #0F5A9A;
    color: #ECB31F;
    border-radius: 58% 42% 45% 55% / 42% 58% 52% 48%;
    transform: scale(1.05);
    box-shadow: 0 12px 24px rgba(15, 90, 154, 0.3);
  }

  .value-card h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: #0a1929;
    margin-bottom: 0.9rem;
    letter-spacing: -0.3px;
  }

  .value-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #4a5a6a;
    flex-grow: 1;
  }

  /* ---------- RESPONSIVE ---------- */
  @media (max-width: 1024px) {
    .values-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 650px) {
    .values-grid {
      grid-template-columns: 1fr;
    }
    .values-section {
      padding: 3.5rem 0;
    }
    .value-card {
      padding: 2rem 1.5rem;
    }
  }






/*FAQ*/



    /* ========== FULL-WIDTH FAQ SECTION ========== */
    .faq-fullwidth {
      width: 100%;
      background: #f9fdf7;
      padding: 5rem 4rem;
      position: relative;
      overflow: hidden;
    }

    /* organic background accents */
    .faq-fullwidth::before {
      content: "";
      position: absolute;
      inset: 0;
      background: 
        radial-gradient(ellipse at 75% 20%, rgba(26, 104, 50, 0.03) 0%, transparent 55%),
        radial-gradient(ellipse at 15% 80%, rgba(130, 185, 122, 0.04) 0%, transparent 55%);
      pointer-events: none;
      z-index: 1;
    }

    .faq-fullwidth > * {
      position: relative;
      z-index: 2;
    }

    /* ========== HEADER ========== */
    .section-header {
      text-align: center;
      margin-bottom: 3.5rem;
    }

    .header-tag {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: #c6dce2;
      color: var(--primary-color);
      font-weight: 600;
      font-size: 0.78rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      padding: 0.5rem 1.6rem;
      border-radius: 50px;
      margin-bottom: 1.5rem;
      border: 1px solid #cbe5c3;
    }

    .section-header h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.2rem, 4vw, 3rem);
      font-weight: 700;
      color: #0f2818;
      letter-spacing: -0.5px;
      margin-bottom: 0.8rem;
      line-height: 1.2;
    }

    .header-line {
      display: block;
      width: 70px;
      height: 4px;
            background: linear-gradient(90deg, #1e0c61, #82b97a);

      margin: 0 auto 1.2rem auto;
      border-radius: 4px;
    }

    .section-header p {
      color: #4a5b47;
      font-size: 1.05rem;
      max-width: 550px;
      margin: 0 auto;
      line-height: 1.7;
    }

  /* ---------- FAQ SECTION ---------- */

  .faq-section {
    width: 100%;
    background: #f7f9fb;
    padding: 6rem 1.5rem;
    display: flex;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }

  /* subtle background glow */
  .faq-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: 
      radial-gradient(ellipse at 30% 20%, rgba(15, 90, 154, 0.03) 0%, transparent 60%),
      radial-gradient(ellipse at 70% 80%, rgba(236, 179, 31, 0.03) 0%, transparent 60%);
    pointer-events: none;
  }

  .faq-container {
    max-width: 900px;
    width: 100%;
    position: relative;
    z-index: 2;
  }

  /* ----- Header (consistent) ----- */
  .section-header {
    text-align: center;
    margin-bottom: 4rem;
  }

  .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #e8f0f9;
    color: #0F5A9A;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    margin-bottom: 1.5rem;
    border: 1px solid #c5d8ee;
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 5vw, 3.4rem);
    font-weight: 700;
    color: #0a1929;
    line-height: 1.2;
    margin-bottom: 1.2rem;
  }

  .gold-highlight {
    color: #ECB31F;
    font-style: italic;
    position: relative;
    display: inline-block;
  }

  .gold-highlight::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 6px;
    width: 100%;
    height: 8px;
    background: rgba(15, 90, 154, 0.15);
    z-index: -1;
    border-radius: 2px;
  }

  .section-subtitle {
    font-size: 1.1rem;
    color: #4a5a6a;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
  }

  /* ----- FAQ Grid ----- */
  .faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  /* ----- FAQ Item ----- */
  .faq-item {
    background: #ffffff;
    border-radius: 1rem;
    border: 1px solid rgba(15, 90, 154, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(15, 90, 154, 0.04);
  }

  .faq-item:hover {
    box-shadow: 0 8px 25px rgba(15, 90, 154, 0.1);
    border-color: rgba(236, 179, 31, 0.2);
  }

  /* ----- Question Button ----- */
  .faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    color: #0a1929;
    text-align: left;
    transition: color 0.3s ease;
    letter-spacing: -0.2px;
  }

  .faq-question:hover {
    color: #0F5A9A;
  }

  .faq-question i {
    font-size: 0.9rem;
    color: #0F5A9A;
    transition: all 0.4s ease;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: #f0f5fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* active state */
  .faq-item.active .faq-question {
    color: #0F5A9A;
  }

  .faq-item.active .faq-question i {
    transform: rotate(45deg);
    background: #0F5A9A;
    color: #ECB31F;
  }

  /* ----- Answer Panel ----- */
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .faq-item.active .faq-answer {
    max-height: 300px;
  }

  .faq-answer-inner {
    padding: 0 2rem 1.5rem;
  }

  .faq-answer-inner p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #4a5a6a;
    margin: 0;
    font-style: italic;
    opacity: 0.7;
  }

  /* ---------- RESPONSIVE ---------- */
  @media (max-width: 650px) {
    .faq-section {
      padding: 3.5rem 1rem;
    }
    .faq-question {
      padding: 1.2rem 1.5rem;
      font-size: 0.95rem;
    }
    .faq-answer-inner {
      padding: 0 1.5rem 1.2rem;
    }
  }

 /*OUR TEAM*/

     

      .leadership-container {
        padding: 40px 20px;
      }

      .section-header {
        text-align: center;
        margin-bottom: 60px;
      }

      .section-header h1 {
        font-size: 2.8rem;
        color: #1e293b;
        margin-bottom: 15px;
        font-weight: 700;
        letter-spacing: -0.5px;
      }

      .section-header p {
        font-size: 1.1rem;
        color: #64748b;
        max-width: 700px;
        margin: 0 auto;
      }

      .accent-line {
        height: 4px;
        width: 80px;
        background: linear-gradient(90deg, #3b82f6, #8b5cf6);
        margin: 20px auto 0;
        border-radius: 2px;
      }

      /* Leadership Tabs */
      .leadership-tabs {
        display: flex;
        justify-content: center;
        margin-bottom: 40px;
        flex-wrap: wrap;
        gap: 10px;
      }

      .tab-btn {
        padding: 12px 28px;
        background: #e2e8f0;
        border: none;
        border-radius: 50px;
        font-size: 1rem;
        font-weight: 600;
        color: #475569;
        cursor: pointer;
        transition: all 0.3s ease;
      }

      .tab-btn:hover {
        background: #cbd5e1;
        transform: translateY(-2px);
      }

      .tab-btn.active {
        background: linear-gradient(135deg, #3b82f6, #8b5cf6);
        color: white;
        box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
      }

      /* Leadership Cards */
      .leadership-content {
        display: none;
        opacity: 0;
        transition: opacity 0.5s ease;
      }

      .leadership-content.active {
        display: block;
        opacity: 1;
      }

      .leadership-grid {
        display: grid;
        gap: 30px;
      }

      .leader-card {
        background: white;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        height: 100%;
      }

      .leader-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
      }

      .leader-img-container {
        height: 180px;
        overflow: hidden;
      }
      .leader-img-container-2 {
        height: 180px;
        overflow: hidden;
      }

      .leader-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
      }

      .leader-card:hover .leader-img {
        transform: scale(1.05);
      }

      .leader-info {
        padding: 28px;
      }

      .leader-name {
        font-size: 1.5rem;
        color: #1e293b;
        margin-bottom: 5px;
        font-weight: 700;
      }

      .leader-title {
        color: #3b82f6;
        font-weight: 600;
        margin-bottom: 15px;
        font-size: 1.05rem;
      }

      .leader-bio {
        color: #64748b;
        margin-bottom: 20px;
        font-size: 0.95rem;
      }

      .leader-contact {
        display: flex;
        gap: 15px;
        margin-top: 20px;
      }

      .contact-link {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: #f1f5f9;
        border-radius: 50%;
        color: #475569;
        text-decoration: none;
        transition: all 0.3s ease;
      }

      .contact-link:hover {
        background: #3b82f6;
        color: white;
        transform: scale(1.1);
      }

      /* Responsive adjustments */
      @media (max-width: 768px) {
        .section-header h1 {
          font-size: 2.2rem;
        }

        .leadership-grid {
          grid-template-columns: 1fr;
        }

        .leader-img-container {
          height: 240px;
        }

        .tab-btn {
          padding: 10px 20px;
          font-size: 0.95rem;
        }
      }

      @media (max-width: 480px) {
        .section-header h1 {
          font-size: 1.9rem;
        }

        .leadership-container {
          padding: 20px 0;
        }

        .leader-info {
          padding: 20px;
        }
      }

      /* Animation for tab switching */
      @keyframes fadeIn {
        from {
          opacity: 0;
        }
        to {
          opacity: 1;
        }
      }

      .fade-in {
        animation: fadeIn 0.5s ease forwards;
      }

      /* Owner badge styling */
      .owner-badge {
        display: inline-block;
        background: linear-gradient(135deg, #f59e0b, #d97706);
        color: white;
        font-size: 0.75rem;
        padding: 4px 12px;
        border-radius: 20px;
        margin-left: 10px;
        font-weight: 600;
        letter-spacing: 0.5px;
      }



      /* OUR CLIENTS */

.Our-clients{
  padding: 50px auto;
}
.Our-clients h3{
font-weight: 800;
font-size: 1rem;
}






      
      .faq-general-heading {
        text-align: center;
        margin-bottom: 40px;
      margin-top: 40px;
      }

      .faq-heading {
        color: var(--primary-color);

        font-size: 2.2rem;
        margin-bottom: 10px;
      }

      .intro {
        color: #64748b;
        font-size: 1.1rem;
        max-width: 700px;
        margin: 0 auto 20px;
      }

      .search-box {
        max-width: 500px;
        margin: 20px auto;
        position: relative;
      }

      .search-box input {
        width: 100%;
        padding: 15px 20px;
        border: 2px solid #e2e8f0;
        border-radius: 50px;
        font-size: 1rem;
        transition: all 0.3s;
      }

      .search-box input:focus {
        outline: none;
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px rgba(236, 48, 48, 0.2);
      }

      .search-box i {
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        color: #94a3b8;
      }

      .faq-container {
        background: white;
        border-radius: 12px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
        overflow: hidden;
        margin-bottom: 40px;
      }

      .faq-item {
        border-bottom: 1px solid #e2e8f0;
        transition: all 0.3s;
      }

      .faq-item:last-child {
        border-bottom: none;
      }

      .faq-question {
        padding: 22px 25px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        transition: background-color 0.2s;
        text-align: start;
      }

      .faq-question:hover {
        background-color: #f8fafc;
      }

      .faq-question h3 {
        font-size: 1.2rem;
        font-weight: 600;
        color: black;
        margin-right: 15px;
      }

      .faq-toggle {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background-color: #f1f5f9;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary-color);
        font-size: 0.9rem;
        flex-shrink: 0;
        transition: all 0.3s;
      }

      .faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 25px;
        transition: all 0.4s ease;
        background-color: #f8fafc;
        text-align: start;
      }

      .faq-answer.active {
        padding: 25px;
        max-height: 1000px;
      }

      .faq-answer p {
        margin-bottom: 15px;
        color: #475569;
        text-align: start;
      }

      /* Numbered List Style for Section 3 */
      .numbered-list {
        padding-left: 0;
        margin-bottom: 15px;
      }

      .numbered-list li {
        margin-bottom: 15px;
        padding-left: 35px;
        position: relative;
        list-style-type: none;
        counter-increment: item;
      }

      .numbered-list li:before {
        content: counter(item);
        position: absolute;
        left: 0;
        top: 0;
        background: #3b82f6;
        color: white;
        width: 24px;
        height: 24px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.85rem;
        font-weight: 600;
      }

      /* Checkmark List Style for Section 6 */
      .checkmark-list {
        padding-left: 0;
        margin-bottom: 15px;
      }

      .checkmark-list li {
        margin-bottom: 15px;
        padding-left: 35px;
        position: relative;
        list-style-type: none;
      }

      .checkmark-list li:before {
        content: "✓";
        position: absolute;
        left: 0;
        top: 0;
        background: #10b981;
        color: white;
        width: 24px;
        height: 24px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.85rem;
        font-weight: 600;
      }

      /* Regular bullet list for other sections if needed */
      .regular-list {
        padding-left: 20px;
        margin-bottom: 15px;
      }

      .regular-list li {
        margin-bottom: 10px;
        position: relative;
        padding-left: 10px;
      }

      .regular-list li:before {
        content: "•";
        color: #3b82f6;
        font-weight: bold;
        position: absolute;
        left: -10px;
      }

      .highlight {
        background-color: rgba(255, 255, 0, 0.3);
        padding: 2px 4px;
        border-radius: 3px;
      }

      .statss {
        display: flex;
        justify-content: center;
        gap: 30px;
        margin-top: 30px;
        flex-wrap: wrap;
      }

      .stats-item {
        text-align: center;
        background: white;
        padding: 15px 25px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        min-width: 150px;
      }

      .stats-number {
        font-size: 2rem;
        font-weight: 700;
        color: #3b82f6;
        margin-bottom: 5px;
      }

      .stats-label {
        font-size: 0.9rem;
        color: #64748b;
      }

      .no-results {
        text-align: center;
        padding: 40px;
        color: #64748b;
        display: none;
      }

      .no-results i {
        font-size: 3rem;
        margin-bottom: 15px;
        color: #cbd5e1;
      }

      .faq-footer {
        text-align: center;
        margin-top: 40px;
        color: #94a3b8;
        font-size: 0.9rem;
        border-top: 1px solid #e2e8f0;
      }

      .actions {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-top: 20px;
        flex-wrap: wrap;
      }

      .btn {
        padding: 12px 25px;
        border-radius: 8px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s;
        border: none;
        font-size: 1rem;
      }

      .btn-expand {
        background-color: var(--primary-color);
        color: white;
      }

      .btn-collapse {
        background-color: #f1f5f9;
        color: #475569;
      }

      .btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 7px 15px rgba(0, 0, 0, 0.1);
      }

      @media (max-width: 768px) {
        .faq-heading {
          font-size: 1.7rem;
        }
        .faq-question {
          padding: 18px 10px;
        }

        .faq-question h3 {
          font-size: 1.1rem;
        }

        .faq-answer.active {
          padding-top: 20px;
                    padding-bottom: 20px;

        }

        .stats-item {
          min-width: 120px;
          padding: 12px 15px;
        }
      }



















/*CTA*/
.CTA{
  margin-top: 10px;
 background: linear-gradient(
            rgba(0, 0, 0, 0.6),
            rgba(0, 0, 0, 0.7)
          ),
          url("/images/Jangsheng/IMG-20260420-WA0062.jpg") center/cover no-repeat;

}

.cta-cont{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  gap: 30px; 
  color: white;
}

.CTA h3{
text-align: center;
font-size: 1.1rem;
font-family: Poppins, Arial, Helvetica, sans-serif;
font-weight: 400;
}


/*CONTACT*/

.contact-container{
--max-width: 1110px;
  --padding: 0.85rem;

  width: min(var(--max-width), 100% - (var(--padding) * 2      )   );
margin-inline: auto;

}
.contact-container{
  margin-top: 70px;

}
.row{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-details h2{
  font-size: 1.7rem;
}
.contact-details > div{

  font-size: 1.3rem;
  font-weight: 600;
  border-bottom: grey solid 1px;
  padding: 10px;
}
.contact-details > div > span{
  font-size: 1.2rem;
  font-weight: 500;
  color: rgb(37, 15, 15);
  padding-left: 2px;
  display: block;
}


.subscribe{
  padding-top: 10px;
}
.sub-heading{
  text-align: center;
  color: #6495ED;
    margin-bottom: 0;

}
.main-heading{
    font-size: 1.4rem;
  margin-top: 10px;
margin-bottom: 0px;
text-align: center;
}
.subscribe p{
  margin-top: 18px;
  text-align: center;
}
form{
position: relative;
  z-index: 1;

}
.email{
  height: 40px;
  width: 290px;
  border-radius: 8px;
  border: grey 1px solid;
  font-family: Kodchasan;
}



.submit-btn{
  position: absolute;
  color: white;
  background-color: var(--primary-color);
  border: none;
  font-size: 12px;
  top: 3px;
  right: 3px;
    border-radius: 8px;
  font-family: Kodchasan;

}



 /* Subscription form with embedded button */
        .subscriptionForm {
            width: 100%;
            margin-bottom: 25px;
        }
        
        .subscriptionForm__label {
            display: block;
            margin-bottom: 10px;
            font-weight: 600;
            color: #444;
        }
        
        .subscriptionForm__container {
            position: relative;
            width: 100%;
            height: 60px;
            display: flex;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            border: 2px solid #e0e0e0;
            transition: all 0.3s ease;
        }
        
        .subscriptionForm__container:focus-within {
            border-color: #4a6cf7;
            box-shadow: 0 5px 20px rgba(74, 108, 247, 0.2);
        }
        
        .subscriptionForm__input {
            border: none;
            padding: 0 20px;
            font-size: 1rem;
            outline: none;
            background: #f9f9f9;
            width: 100%;
            min-width: 0;
        }
        
        .subscriptionForm__button {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 0 30px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            white-space: nowrap;
        }
        
        .subscriptionForm__button:hover {
            background: linear-gradient(to right, #3a5ce5, #5a0bbb);
            padding-right: 35px;
        }
        
        .subscriptionForm__button:active {
            transform: scale(0.98);
        }
        
        .subscriptionForm__message {
            margin-top: 10px;
            font-size: 0.9rem;
            padding-left: 5px;
            color: #666;
        }
        
        .subscriptionForm__message--success {
            color: #2ecc71;
        }
        
        .subscriptionForm__message--error {
            color: #e74c3c;
        }
        
        .subscriptionFeatures {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
            margin-top: 30px;
        }
        
        .subscriptionFeatures__item {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #555;
            font-size: 0.95rem;
        }
        
        .subscriptionFeatures__icon {
            color: #4a6cf7;
            font-size: 1.1rem;
        }
      
        
 @media (max-width: 50rem) {
 .subscriptionForm__button span{
display: none;
        }

          }

.icons{
width: 40px;

}
.footer-office{
  padding-bottom: 1px;
}
.footer-address{
  padding: 0;
  font-weight: 300;
}
.divider{
  height: 0.3px;
  width: 100%;
  background-color: #ffffff;
  margin: 15px;
  margin: 0 auto;
}
.terms-grid{
  display: flex;
  justify-content: space-between;

}

 

/*projects*/

 
        /* ── Slider Section ── */
        .project-slider-section {
            width: 100%;
            padding-left: 10px;
            padding-right: 10px;
            margin-bottom: 2.5rem;
            text-align: center;
            opacity: 0;
            transform: translateY(30px);
            animation: sliderSectionEntrance 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
        }

        @keyframes sliderSectionEntrance {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .section-heading {
            font-size: clamp(28px, 4vw, 38px);
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 36px;
            letter-spacing: -0.02em;
            position: relative;
            display: inline-block;
        }

        .section-heading::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: var(--primary-color);
            border-radius: 2px;
        }

        /* ── Slider Container ── */
        .slider-wrapper {
            position: relative;
            width: 100%;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
            background: #000; /* fallback for image gaps */
        }

        /* The moving track */
        .slider-track {
            display: flex;
            width: 1000%;  /* 10 slides * 100% each */
            animation: slideLoop 25s infinite linear;
        }

        /* Pause animation on hover */
        .slider-wrapper:hover .slider-track {
            animation-play-state: paused;
        }

        /* Each slide: exactly 10% of track -> fills container width */
        .slider-slide {
            flex: 0 0 10%;
            position: relative;
            overflow: hidden;
        }

        .slider-slide img {
            width: 100%;
            height: 420px;
            object-fit: cover;
            display: block;
            transition: transform 0.6s ease;
        }

        /* Subtle zoom on slide hover */
        .slider-slide:hover img {
            transform: scale(1.06);
        }

        /* Dark gradient overlay for depth */
        .slide-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, 
                rgba(0,0,0,0.1) 0%, 
                rgba(0,0,0,0.4) 60%, 
                rgba(0,0,0,0.7) 100%);
            pointer-events: none;
            z-index: 2;
        }

        /* Optional caption on each slide (hidden/not used but can be added) */
        .slide-caption {
            position: absolute;
            bottom: 30px;
            left: 30px;
            color: #fff;
            z-index: 3;
            font-weight: 600;
            font-size: 18px;
            text-shadow: 0 2px 10px rgba(0,0,0,0.5);
            display: none; /* keep clean, just images */
        }

        /* ── Button ── */
        .projects-btn {
            display: inline-block;
            margin-top: 40px;
            padding: 16px 40px;
            background: var(--primary-color);
            color: #ffffff;
            font-weight: 700;
            font-size: 16px;
            text-decoration: none;
            border-radius: 50px;
            letter-spacing: 0.03em;
            box-shadow: 0 10px 25px rgba(118, 235, 118, 0.4);
            transition: background 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .projects-btn::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
            transition: left 0.5s ease;
        }

        .projects-btn:hover::after {
            left: 100%;
        }

        .projects-btn:hover {
            background: #f5e12b;
            transform: translateY(-5px) scale(1.03);
            box-shadow: 0 18px 35px rgba(209, 167, 52, 0.5);
        }

        /* ── Animation Keyframes ── */
        @keyframes slideLoop {
            0% {
                transform: translateX(0);
            }
            100% {
                /* Half track (500% of container) is the original 5 slides */
                transform: translateX(-50%);
            }
        }

        /* ── Responsive ── */
        @media (max-width: 768px) {
            .slider-slide img {
                height: 280px;
            }
            .projects-btn {
                padding: 14px 35px;
                font-size: 15px;
            }
        }

        @media (max-width: 480px) {
            .slider-slide img {
                height: 220px;
            }
            .section-heading {
                font-size: 26px;
            }
        }













/*Hide Texts*/

.text-container {
  width: 300px;
  border: 1px solid #ddd;
  padding: 15px;
  border-radius: 5px;
}

.truncated-text {
  display: -webkit-box;
  -webkit-line-clamp: 3; /* Number of lines to show */
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: all 0.3s ease;
}

.truncated-text.expanded {
  -webkit-line-clamp: unset;
  display: block;
}

.toggle-btn {
  background: none;
  border: none;
  color: #0066cc;
  cursor: pointer;
  padding: 5px 0;
  margin-top: 10px;
  font-size: 14px;
}

/*Maps*/

.map-container {
  position: relative;
  overflow: hidden;
  width: 100%; /* Container takes full width */
  padding-top: 56.25%; /* This creates the aspect ratio (16:9 = 9/16*100%) */
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}




/*  Stylish Image*/

      
     

    
      .image-gallery {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
        margin-bottom: 50px;
      }

      .image-container {
        width: 100%;
        max-width: 500px;
        position: relative;
        transition: transform 0.5s ease;
      }

      .image-container:hover {
        transform: translateY(-10px);
      }

      .image-wrapper {
        position: relative;
        width: 100%;
        height: 400px;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        transition: all 0.5s ease;
      }

      .image-wrapper:hover {
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
      }

      .image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.7s ease;
      }

      .image-wrapper:hover img {
        transform: scale(1.05);
      }

      .image-1 {
        z-index: 2;
        transform: rotate(-5deg);
      }

      .image-2 {
        z-index: 1;
        transform: rotate(5deg);
        margin-top: 80px;
      }

      .image-overlap {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        height: 450px;
        margin: 50px auto 0px auto;
        max-width: 900px;
      }

      .overlap-image {
        position: absolute;
        width: 65%;
        height: 400px;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        transition: all 0.5s ease;
      }
      .gallery-image{
        margin-top: 50px;
width: 100%;
        height: 400px;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
      }
      .gallery-image img{
 width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: right;

      }

      .overlap-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.7s ease;
      }

      .overlap-image:hover img {
        transform: scale(1.08);
      }

      .overlap-1 {
        top: 0;
        left: 5%;
        z-index: 2;
        transform: rotate(-4deg);
      }

      .overlap-2 {
        top: 50px;
        right: 5%;
        z-index: 1;
        transform: rotate(6deg);
      }

      .overlap-image:hover {
        z-index: 3;
      }

      .image-caption {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
        padding: 25px 20px 15px;
        transform: translateY(5px);
        opacity: 0;
        transition: all 0.4s ease;
      }

      .overlap-image:hover .image-caption {
        transform: translateY(0);
        opacity: 1;
      }

      .caption-title {
        font-size: 1.4rem;
        font-weight: 600;
        margin-bottom: 5px;
        color: white;
      }

      .caption-text {
        font-size: 0.95rem;
        color: #cbd5e1;
      }

      .controls {
        background: rgba(30, 41, 59, 0.8);
        border-radius: 15px;
        padding: 25px;
        max-width: 800px;
        margin: 40px auto;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
      }

      .controls h2 {
        margin-bottom: 20px;
        color: #60a5fa;
        text-align: center;
      }

      .control-group {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
      }

      .control-btn {
        background: #475569;
        border: none;
        color: white;
        padding: 12px 24px;
        border-radius: 50px;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 8px;
      }

      .control-btn:hover {
        background: #60a5fa;
        transform: translateY(-3px);
      }

      .control-btn.active {
        background: #3b82f6;
      }

     

      @media (max-width: 768px) {
        .image-overlap {
          height: 450px;
        }

        .overlap-image {
          height: 300px;
        }

        .overlap-2 {
          top: 30px;
        }

        

        .image-wrapper {
          height: 320px;
        }
      }

      @media (max-width: 576px) {
        .image-overlap {
          height: 400px;
        }

        .overlap-image {
          height: 250px;
          width: 80%;
        }

        .overlap-1 {
          left: 0;
        }

        .overlap-2 {
          right: 0;
        }
      }


  


  /* ---------- FOOTER SECTION ---------- */
  .site-footer {
    width: 100%;
    background: #0a1929;
    padding: 5rem 1.5rem 0;
    position: relative;
    overflow: hidden;
  }

  .footer-logo-icon img{ 
width: 68px;
      height: 48px;


       }

  /* subtle grain texture */
  .site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="400" height="400"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="3" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23n)" opacity="0.03"/></svg>');
    pointer-events: none;
  }

  /* top gold accent line */
  .site-footer::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #0F5A9A, #ECB31F, #0F5A9A);
  }

  .footer-container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }

  /* ----- Footer Grid ----- */
  .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 3rem;
    padding-bottom: 3rem;
  }

  .footer-col {
    display: flex;
    flex-direction: column;
  }

  /* ----- Brand Column ----- */
  .footer-logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    margin-bottom: 1.2rem;
  }

  .footer-logo-icon {
    width: 42px;
    height: 42px;
    
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.2rem;
  }

  .footer-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.3px;
  }

  .footer-logo-text span {
    color: #ECB31F;
  }

  .footer-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 1.5rem;
    max-width: 300px;
  }

  /* ----- Social Icons ----- */
  .footer-socials {
    display: flex;
    gap: 0.7rem;
  }

  .footer-socials a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .footer-socials a:hover {
    background: #ECB31F;
    color: #0a1929;
    border-color: #ECB31F;
    transform: translateY(-3px);
  }

  /* ----- Column Headings ----- */
  .footer-col h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
  }

  .footer-col h4::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #ECB31F;
    border-radius: 1px;
  }

  /* ----- Links ----- */
  .footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
  }

  .footer-col ul li a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.25s ease;
    display: inline-block;
  }

  .footer-col ul li a:hover {
    color: #ECB31F;
    transform: translateX(4px);
  }

  /* ----- Contact List ----- */
  .contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .contact-list li i {
    color: #ECB31F;
    font-size: 0.9rem;
    margin-top: 3px;
    flex-shrink: 0;
    width: 16px;
    text-align: center;
  }

  .contact-list li a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.25s ease;
  }

  .contact-list li a:hover {
    color: #ECB31F;
  }

  /* ----- Divider ----- */
  .footer-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  }

  /* ----- Bottom Row ----- */
  .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .footer-bottom p {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.82rem;
    margin: 0;
  }

  .footer-legal {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .footer-legal a {
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    font-size: 0.82rem;
    transition: color 0.25s ease;
  }

  .footer-legal a:hover {
    color: #ECB31F;
  }

  .legal-dot {
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
  }

  /* ---------- RESPONSIVE ---------- */
  @media (max-width: 1024px) {
    .footer-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 2.5rem;
    }
  }

  @media (max-width: 650px) {
    .site-footer {
      padding: 3.5rem 1rem 0;
    }
    .footer-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .footer-bottom {
      flex-direction: column;
      text-align: center;
    }
    .footer-legal {
      justify-content: center;
    }
    .footer-desc {
      max-width: 100%;
    }
  }

  /* ---------- PRIVACY POLICY CONTENT (scoped) ---------- */
  .policy-section {
    width: 100%;
    background: #ffffff;
    padding: 4rem 1.5rem;
    display: flex;
    justify-content: center;
  }
  .policy-container {
    max-width: 850px;
    width: 100%;
  }
  .policy-updated {
    background: #f0f5fa;
    color: #0F5A9A;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 2rem;
  }
  .policy-content {
    color: #4a5a6a;
    line-height: 1.8;
    font-size: 0.95rem;
  }
  .policy-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #0a1929;
    margin: 2rem 0 0.8rem;
    position: relative;
    padding-bottom: 0.5rem;
  }
  .policy-content h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #ECB31F;
    border-radius: 2px;
  }
  .policy-content p {
    margin-bottom: 1.2rem;
  }
  .policy-content a {
    color: #0F5A9A;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px dotted #0F5A9A;
    transition: color 0.2s, border-color 0.2s;
  }
  .policy-content a:hover {
    color: #ECB31F;
    border-color: #ECB31F;
  }

  @media (max-width: 650px) {
    .policy-section {
      padding: 2.5rem 1rem;
    }
    .policy-content h3 {
      font-size: 1.2rem;
    }
  }


























