 /* ===== RESET & BASE ===== */
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Source Sans 3', system-ui, sans-serif;
      color: #1a1a2e;
      line-height: 1.7;
      overflow-x: hidden;
      background: #fff;
    }
    a { text-decoration: none; color: inherit; }
    button { cursor: pointer; border: none; background: none; font-family: inherit; }
    ul { list-style: none; }
    img { max-width: 100%; display: block; }
    h1, h2, h3, h4, h5, h6 { font-family: 'Playfair Display', Georgia, serif; letter-spacing: -0.02em; }

    /* ===== CSS VARIABLES ===== */
    :root {
      --navy: #0D1B3E;
      --royal: #1B3A6B;
      --sky: #4A90D9;
      --mist: #E8F0FE;
      --warm-gray: #F5F7FA;
      --white: #FFFFFF;
      --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
      --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
    }

    /* ===== UTILITIES ===== */
    .container {
      width: 100%;
      max-width: 1280px;
      margin-left: auto;
      margin-right: auto;
      padding-left: 1rem;
      padding-right: 1rem;
    }
    @media (min-width: 640px) {
      .container { padding-left: 1.5rem; padding-right: 1.5rem; }
    }
    @media (min-width: 1024px) {
      .container { padding-left: 2rem; padding-right: 2rem; }
    }

    .halftone-pattern {
      background-image: radial-gradient(circle, rgba(27, 58, 107, 0.08) 1px, transparent 1px);
      background-size: 12px 12px;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-10px); }
    }
    .animate-float { animation: float 6s ease-in-out infinite; }

    @keyframes bounce {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-8px); }
    }
    .animate-bounce { animation: bounce 2s infinite; }

    @keyframes ping {
      75%, 100% { transform: scale(1.6); opacity: 0; }
    }
    .animate-ping { animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite; }

    /* ===== NAVBAR ===== */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 50;
      transition: all 0.5s ease;
      background: transparent;
    }
    .navbar.scrolled {
      background: rgba(255, 255, 255, 0.97);
      backdrop-filter: blur(16px);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    .navbar-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1rem 0;
    }
    .navbar-brand {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }
    .navbar-brand img { height: 2.5rem; width: 2.5rem; object-fit: contain; }
    .navbar-brand-text { display: flex; flex-direction: column; }
    .navbar-brand-title {
      font-family: 'Playfair Display', serif;
      font-size: 0.875rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      color: #fff;
      transition: color 0.3s;
    }
    .navbar.scrolled .navbar-brand-title { color: var(--navy); }
    .navbar-brand-subtitle {
      font-size: 0.5625rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.5);
      transition: color 0.3s;
    }
    .navbar.scrolled .navbar-brand-subtitle { color: rgba(27, 58, 107, 0.7); }

    .navbar-links {
      display: none;
      align-items: center;
      gap: 2.5rem;
    }
    @media (min-width: 1024px) {
      .navbar-links { display: flex; }
    }
    .navbar-links button {
      font-size: 0.875rem;
      font-weight: 600;
      letter-spacing: 0.025em;
      color: rgba(255, 255, 255, 0.8);
      transition: opacity 0.2s;
    }
    .navbar.scrolled .navbar-links button { color: #4b5563; }
    .navbar-links button:hover { opacity: 0.8; }

    .navbar-toggle {
      display: block;
      padding: 0.5rem;
      color: #fff;
    }
    .navbar.scrolled .navbar-toggle { color: var(--navy); }
    @media (min-width: 1024px) { .navbar-toggle { display: none; } }

    .mobile-menu {
      display: none;
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(16px);
      border-top: 1px solid #f0f0f0;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    }
    .mobile-menu.active { display: block; }
    .mobile-menu ul { padding: 1rem 0; }
    .mobile-menu button {
      display: block;
      width: 100%;
      text-align: left;
      padding: 0.875rem 1.5rem;
      font-size: 0.875rem;
      font-weight: 600;
      letter-spacing: 0.025em;
      color: #374151;
      transition: background 0.2s, color 0.2s;
    }
    .mobile-menu button:hover { background: var(--mist); color: var(--navy); }

    /* ===== HERO ===== */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      background: var(--navy);
    }
    .hero-bg {
      position: absolute;
      inset: 0;
    }
    .hero-bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center bottom;
    }

    @media (max-width: 767px) { .hero-bg img { object-position: 45% bottom; /* Move image to the right */}}
    .hero-bg-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(13, 27, 62, 0.75), rgba(13, 27, 62, 0.55), rgba(13, 27, 62, 0.85));
    }
    .hero-halftone {
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle, rgba(74, 144, 217, 0.15) 1px, transparent 1px);
      background-size: 12px 12px;
      opacity: 0.3;
    }
    .hero-geometric {
      position: absolute;
      top: 0;
      right: 0;
      width: 33%;
      height: 100%;
      opacity: 0.1;
    }
    .hero-geometric svg { width: 100%; height: 100%; }
    .hero-wave {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
    }
    .hero-wave svg {
      width: 100%;
      height: 5rem;
      display: block;
    }
    .hero-content {
      position: relative;
      z-index: 10;
      text-align: center;
      max-width: 56rem;
      margin: 0 auto;
    }
    .hero-logo { display: flex; justify-content: center; margin-bottom: 1rem; }
    .hero-logo img { height: 120px; width: 120px; object-fit: contain; }
    .hero-tagline {
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.5em;
      text-transform: uppercase;
      color: var(--sky);
      margin-bottom: 1.5rem;
    }
    .hero-title {
      font-size: 3rem;
      font-weight: 700;
      color: #fff;
      line-height: 1.1;
      margin-bottom: 0.75rem;
    }
    .hero-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
}
    @media (min-width: 768px) { .hero-title { font-size: 4rem; } }
    @media (min-width: 1024px) { .hero-title { font-size: 5rem; } }
    @media (min-width: 1280px) { .hero-title { font-size: 6rem; } }
    .hero-subtitle {
      font-family: 'Playfair Display', serif;
      font-size: 1.25rem;
      font-weight: 300;
      color: rgba(255, 255, 255, 0.8);
      margin-bottom: 0.25rem;
    }
    @media (min-width: 768px) { .hero-subtitle { font-size: 1.5rem; } }
    .hero-divider {
      width: 4rem;
      height: 2px;
      background: var(--sky);
      margin: 1.5rem auto;
    }
    .hero-desc {
      font-size: 1rem;
      color: rgba(255, 255, 255, 0.7);
      max-width: 40rem;
      margin: 0 auto 2.5rem;
      line-height: 1.7;
    }
    @media (min-width: 768px) { .hero-desc { font-size: 1.125rem; } }
    .hero-buttons {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
    }
    @media (min-width: 640px) { .hero-buttons { flex-direction: row; } }
    .btn-primary {
      padding: 1rem 2.5rem;
      background:  #3B5BA2;
      color: #fff;
      font-weight: 700;
      font-size: 0.875rem;
      letter-spacing: 0.025em;
      border-radius: 0.375rem;
      transition: all 0.2s var(--ease-out);
    }
    .btn-primary:hover { background:  #4b71c1; transform: scale(1.02); }
    .btn-primary:active { transform: scale(0.97); }
    .btn-outline {
      padding: 1rem 2.5rem;
      border: 2px solid rgba(255, 255, 255, 0.3);
      color: #fff;
      font-weight: 700;
      font-size: 0.875rem;
      letter-spacing: 0.025em;
      border-radius: 0.375rem;
      transition: all 0.2s;
    }
    .btn-outline:hover { background: rgba(255, 255, 255, 0.1); }
    .hero-scroll {
      position: absolute;
      bottom: 4rem;
      left: 49%;
      transform: translateX(-50%);
      color: rgba(255, 255, 255, 0.5);
      transition: color 0.2s;
    }
    .hero-scroll:hover { color: #fff; }

    @media (max-width: 767px) {.hero-scroll {left: 47%; transform: translateX(-50%); bottom: 7rem; /* Adjust distance from bottom */ width: max-content; text-align: center;}}

    /* ===== SECTION COMMON ===== */
    .section { padding: 5rem 0; position: relative; }
    @media (min-width: 1024px) { .section { padding: 7rem 0; } }
    .section-header { text-align: center; margin-bottom: 4rem; }
    @media (min-width: 1024px) { .section-header { margin-bottom: 5rem; } }
    .section-label {
      font-size: 1rem;
      font-weight: 700;
      letter-spacing: 0.4em;
      text-transform: uppercase;
      color:  #3B5BA2;
      margin-bottom: 1rem;
    }
    .section-title {
      font-size: 2.25rem;
      font-weight: 700;
      color: var(--navy);
      line-height: 1.2;
    }
    @media (min-width: 768px) { .section-title { font-size: 3rem; } }
    @media (min-width: 1024px) { .section-title { font-size: 3.5rem; } }
    .section-line {
      width: 6rem;
      height: 0.25rem;
      background:  #3B5BA2;
      margin: 1.5rem auto;
    }
    .section-desc {
      color: #6b7280;
      max-width: 42rem;
      margin: 2rem auto 0;
      font-size: 1.0625rem;
    }

    /* ===== ABOUT ===== */
    .about { background: #fff; }
    .about-wave { position: absolute; top: 0; left: 0; right: 0; transform: translateY(-99%); }
    .about-wave svg { width: 100%; height: 3rem; display: block; }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 3rem;
      align-items: center;
      margin-bottom: 5rem;
    }
    @media (min-width: 1024px) {
      .about-grid { grid-template-columns: 3fr 2fr; gap: 4rem; }
    }
    .about-text { position: relative; }
    @media (min-width: 1024px) {
      .about-text::before {
        content: '';
        position: absolute;
        left: -1.5rem;
        top: 0;
        width: 0.25rem;
        height: 100%;
        background: var(--sky);
        border-radius: 999px;
      }
      .about-text { padding-left: 2rem; }
    }
    .about-label {
      font-size: 0.6875rem;
      font-weight: 700;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--royal);
      margin-bottom: 1rem;
    }
    .about-heading {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--navy);
      line-height: 1.3;
      margin-bottom: 1.5rem;
    }
    @media (min-width: 768px) { .about-heading { font-size: 2rem; } }
    .about-text p {
      color: #4b5563;
      line-height: 1.8;
      margin-bottom: 1.25rem;
      font-size: 1.0625rem;
    }
    .about-text p strong { color: var(--navy); }
    .about-image-wrapper { position: relative; }
    .about-image-frame {
      position: absolute;
      inset: -1rem;
      background: rgba(13, 27, 62, 0.05);
      border-radius: 0.5rem;
    }
    .about-image {
      position: relative;
      border-radius: 0.5rem;
      overflow: hidden;
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    }
    .about-image img {
      width: 100%;
      aspect-ratio: 4/5;
      object-fit: cover;
    }
    .about-image-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(13, 27, 62, 0.4), transparent);
    }
    .about-image-number {
      position: absolute;
      bottom: 1.5rem;
      left: 1.5rem;
      font-family: 'Playfair Display', serif;
      font-size: 3.75rem;
      font-weight: 700;
      color: rgba(255, 255, 255, 0.3);
    }

    /* our mission n vision tab */
    .about-tabs{
    margin-top: -130px;   /* Move the whole tab section upward */
}
    .tab-buttons{
    display:flex;
    gap:12px;
    margin:10px 0;
    flex-wrap:wrap;
}

.tab-btn{
    padding:12px 28px;
    border:none;
    border-radius:50px;
    background:#eef2f7;
    color:#0D1B3E;
    cursor:pointer;
    font-weight:600;
    transition:.3s;
}

.tab-btn.active,
.tab-btn:hover{
    background:#3B5BA2;
    color:#fff;
}

.tab-content li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
}

.tab-content li span {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--sky);
  border-radius: 50%;
  margin-top: 0.5rem;
  flex-shrink: 0;
}

.tab-content li p {
  margin: 0;
}

.tab-content{
    display:none;
    padding:35px;
    background:#fff;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
     width:700px;
    max-width:100%;
}

.tab-content.active{
    display:block;
}

/* Mobile Responsive - Mission Vision Tabs */
@media(max-width:768px){

    .about-tabs{
        margin-top:-50px; /* reduce upward movement */
        padding:0 15px;
    }

    .tab-buttons{
        justify-content:center;
        gap:10px;
        margin-bottom:20px;
    }

    .tab-btn{
        padding:10px 20px;
        font-size:14px;
        width:auto;
        flex:1;
        min-width:120px;
    }

    .tab-content{
        width:100%;
        padding:25px 20px;
        border-radius:12px;
    }

    .tab-content li{
        gap:10px;
        margin-bottom:12px;
        font-size:15px;
        line-height:1.6;
    }

    .tab-content li span{
        width:8px;
        height:8px;
        margin-top:8px;
    }
}


@media(max-width:480px){

    .about-tabs{
        margin-top:-30px;
    }

    .tab-buttons{
        flex-direction:column;
        width:100%;
    }

    .tab-btn{
        width:100%;
        padding:12px;
        text-align:center;
    }

    .tab-content{
        padding:20px 15px;
    }

    .tab-content li{
        font-size:14px;
    }
}

    /* Company Overview Panel */
    .overview-panel {
      background: #3C60AE;
      border-radius: 0.75rem;
      padding: 2rem;
      position: relative;
      overflow: hidden;
      margin-bottom: 5rem;
    }
    @media (min-width: 768px) { .overview-panel { padding: 3.5rem; } }
    @media (min-width: 1024px) { .overview-panel { padding: 4rem; } }
    .overview-panel::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle, rgba(255, 255, 255, 0.236) 1px, transparent 1px);
      background-size: 12px 12px;
    }
    .overview-panel::after {
  content: '';
  position: absolute;
  top: -5rem;
  right: -5rem;
  width: 15rem;
  height: 15rem;
  background: rgba(21, 57, 117, 0.08);
  border-radius: 50%;
}
    .overview-content { position: relative; z-index: 1; }
    .overview-label {
      font-size: 0.6875rem;
      font-weight: 700;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 1rem;
    }
    .overview-heading {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--white);
      line-height: 1.3;
      margin-bottom: 1.5rem;
    }
    @media (min-width: 768px) { .overview-heading { font-size: 2rem; } }
    @media (min-width: 1024px) { .overview-heading { font-size: 2.25rem; } }
    .overview-desc {
      color: #000000;
      max-width: 42rem;
      margin-bottom: 2.5rem;
      line-height: 1.7;
      font-size: 1.0625rem;
    }
    .overview-items {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.75rem;
    }
    @media (min-width: 768px) { .overview-items { grid-template-columns: repeat(3, 1fr); } }
    @media (min-width: 1024px) { .overview-items { grid-template-columns: repeat(4, 1fr); } }
    .overview-item {
      background: rgba(255, 255, 255, 0.7);
      backdrop-filter: blur(4px);
      border: 1px solid rgba(21, 57, 117, 0.1);
      border-radius: 0.375rem;
      padding: 0.75rem 1rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      transition: background 0.2s;
    }
    .overview-item:hover { background: rgba(255, 255, 255, 0.95); }
    .overview-item svg { width: 0.875rem; height: 0.875rem; color: var(--navy); flex-shrink: 0; }
    .overview-item span { color: var(--navy); font-size: 0.8125rem; font-weight: 500; }
    .overview-note {
      color: #000000;
      margin-top: 2rem;
      font-size: 0.875rem;
      line-height: 1.7;
      max-width: 40rem;
    }


/* ===========================
   OUR TEAM
=========================== */

.team-section{
    background:url(images/bg-2.webp);
    background-size: cover;
    margin-bottom: 80px;
    padding:90px 0;
    position:relative;
    overflow:hidden;
}

.team-section::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    border-radius:50%;
    background:rgba(34,99,219,.04);
    top:-220px;
    right:-180px;
}

@media (max-width: 991px) {
    .team-section {
        padding: 70px 0;
        margin-bottom: 60px;
        background-position: center;
    }

    .team-section::before {
        width: 350px;
        height: 350px;
        top: -150px;
        right: -120px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .team-section {
        padding: 50px 20px;
        margin-bottom: 40px;
        background-position: center;
        background-size: cover;
    }

    .team-section::before {
        width: 220px;
        height: 220px;
        top: -80px;
        right: -80px;
        opacity: 0.6;
    }
}

.team-quote{
    position:relative;
    max-width:900px;
    margin:60px auto 0;
    background:#fff;
    padding:55px 55px 55px 70px;
    border-radius:18px;
    box-shadow:0 18px 45px rgba(13,27,62,.08);
    border-left:5px solid #2b73d6;
}

.team-quote .quote-icon{
    position:absolute;
    top:25px;
    left:22px;
    font-size:70px;
    line-height:1;
    color:#2b73d6;
    opacity:.18;
    font-family:Georgia,serif;
}

.team-quote p{
    margin:0;
    font-family:"Playfair Display",serif;
    font-size:15px;
    line-height:1.4;
    font-style:italic;
    color:#24304d;
}

.team-quote strong{
    color:#0d1b3e;
    font-weight:700;
}

/* Responsive */

@media (max-width:768px){

    .team-section{
        padding:70px 0;
    }

    .team-quote{
        padding:40px 28px 40px 40px;
        margin-top:40px;
    }

    .team-quote .quote-icon{
        font-size:48px;
        top:15px;
        left:14px;
    }

    .team-quote p{
        font-size:20px;
    }
}

    /* ===== SERVICES ===== */
    /* .services { background: #E1F4FB; overflow: hidden; } */
    .services-top-deco { position: absolute; top: 0; left: 0; right: 0; height: 20rem; background: linear-gradient(to bottom, rgba(13, 27, 62, 0.05), transparent); }
    .services-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
    @media (min-width: 768px) { .services-grid { grid-template-columns: 2fr 1fr; } }
    @media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(4, 1fr); gap: 2rem; } }
    .service-card {
      background: #fff;
      border-radius: 0.5rem;
      overflow: hidden;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
      transition: all 0.3s var(--ease-out);
    }
    .service-card:hover {
      transform: translateY(-0.25rem);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }
    .service-bar {
      height: 0.25rem;
      background: linear-gradient(to right, var(--navy), var(--royal), var(--sky));
      transition: height 0.3s;
    }
    .service-card:hover .service-bar { height: 0.375rem; }
    .service-body { padding: 2rem; }
    .service-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; }
    .service-icon {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      overflow: hidden;
      flex-shrink: 0;
    }

    .service-icon img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .service-card:hover .service-icon { background: var(--sky); }
    .service-icon svg { width: 1.625rem; height: 1.625rem; color: #fff; }
    .service-title {
      font-size: 1.125rem;
      font-weight: 700;
      color: var(--navy);
      transition: color 0.3s;
    }
    .service-card:hover .service-title { color: var(--royal); }
    .service-desc { color: #6b7280; line-height: 1.7; font-size: 0.9375rem; }

    /* ===== WHY CHOOSE US ===== */
    .why-us { background: url(images/bg-5.webp); background-size: cover;
    margin-bottom: 80px;
    padding:90px 0;
    position:relative;
    overflow:hidden;}
    .why-us::before {
      content: '';
      position: absolute;
      inset: 0;
      background-size: 12px 12px;
    }
    @media (max-width: 991px) {
    .why-us {
        padding: 50px 0;
        margin-bottom: 40px;
        background-position: center;
    }

    .why-us::before {
        width: 350px;
        height: 350px;
        top: -150px;
        right: -120px;
    }
}

    .why-us-shape-1 {
      position: absolute;
      top: 5rem;
      left: -5rem;
      width: 15rem;
      height: 15rem;
      background: rgba(74, 144, 217, 0.1);
      border-radius: 50%;
      filter: blur(60px);
    }
    .why-us-shape-2 {
      position: absolute;
      bottom: 5rem;
      right: -5rem;
      width: 20rem;
      height: 20rem;
      background: rgba(27, 58, 107, 0.1);
      border-radius: 50%;
      filter: blur(60px);
    }
    /* .why-us .section-title { color: #fff; } */
    /* .why-us .section-desc { color: rgba(255, 255, 255, 0.6); } */
    .why-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
      position: relative;
      z-index: 1;
    }
    @media (min-width: 768px) { .why-grid { grid-template-columns: 1fr 1fr; } }
    @media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }
    .why-card {
      background: #3B5BA2;
      backdrop-filter: blur(4px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 0.75rem;
      padding: 2rem;
      position: relative;
      transition: all 0.3s var(--ease-out);
    }
    /* .why-card:hover {
      background: rgba(255, 255, 255, 0.1);
      transform: translateY(-0.25rem);
    } */
    .why-corner {
      position: absolute;
      top: 0;
      right: 0;
      width: 4rem;
      height: 4rem;
      background: rgba(200, 221, 243, 0.05);
      border-radius: 0 0.75rem 0 4rem;
      transition: background 0.3s;
    }
    .why-card:hover .why-corner { background: rgba(74, 144, 217, 0.1); }
    .why-card-content { position: relative; }
    .why-icon {
      width: 3rem;
      height: 3rem;
      background: rgba(74, 144, 217, 0.2);
      border-radius: 0.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.25rem;
      transition: background 0.3s;
    }
    .why-card:hover .why-icon { background: rgba(74, 144, 217, 0.3); }
    .why-icon svg { width: 1.5rem; height: 1.5rem; color: #0E1728; }
    .why-title {
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--mist);
      margin-bottom: 1rem;
    }
    .why-desc { color: var(--mist); line-height: 1.7; font-size: 0.9375rem; }

    /* ===== CATALOGUE ===== */
    .catalogue { background: #fff; overflow: hidden; position: relative; }
    .catalogue::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle, rgba(27, 58, 107, 0.04) 1px, transparent 1px);
      background-size: 12px 12px;
    }
    .catalogue-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
      position: relative;
    }
    @media (min-width: 768px) { .catalogue-grid { grid-template-columns: 1fr 1fr; } }
    @media (min-width: 1024px) { .catalogue-grid { grid-template-columns: repeat(3, 1fr); } }
    .cat-card {
      background: #fff;
      border: 1px solid #f0f0f0;
      border-radius: 0.75rem;
      overflow: hidden;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
      transition: all 0.3s var(--ease-out);
    }
    .cat-card:hover {
      transform: translateY(-0.5rem);
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    }
    .cat-image {
      position: relative;
      height: 13rem;
      overflow: hidden;
      background: var(--mist);
    }
    .cat-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s;
    }
    .cat-card:hover .cat-image img { transform: scale(1.05); }
    .cat-image-gradient {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(13, 27, 62, 0.6), transparent);
    }
    .cat-icon-badge {
      position: absolute;
      top: 1rem;
      left: 1rem;
      width: 2.5rem;
      height: 2.5rem;
      background:  #3B5BA2;
      backdrop-filter: blur(4px);
      border-radius: 0.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .cat-icon-badge svg { width: 1.25rem; height: 1.25rem; color: #fff; }
    .cat-image-title {
      position: absolute;
      bottom: 1rem;
      left: 1rem;
      right: 1rem;
    }
    .cat-image-title h3 {
      font-size: 1.125rem;
      font-weight: 700;
      color: #fff;
    }
    .cat-body { padding: 1.5rem; }
    .cat-desc { color: #6b7280; font-size: 0.875rem; line-height: 1.7; margin-bottom: 1.25rem; }
    .cat-items {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.5rem;
      margin-bottom: 1.5rem;
    }
    .cat-item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.8125rem;
      color: #4b5563;
    }
    .cat-item-dot { width: 0.375rem; height: 0.375rem; background: var(--sky); border-radius: 50%; flex-shrink: 0; }
    .cat-cta {
      font-size: 0.8125rem;
      font-weight: 700;
      color: var(--sky);
      transition: color 0.2s;
    }
    .cat-cta:hover { color: var(--royal); }
    .catalogue-btn-wrapper {
  text-align: center;
  margin-top: 3rem;
}

/* button for catalogue */
.catalogue-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 35px;
  background:  #3B5BA2;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 2px solid  #3B5BA2;
}

.catalogue-btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.catalogue-btn:hover {
  background: transparent;
  color: var(--navy);
}

.catalogue-btn:hover svg {
  transform: translateX(5px);
}
.catalogue-btn-wrapper {
    width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

    /* OUR CLIENTS */

.clients{
    background:url(images/bg-6.png) center top / cover no-repeat;
    margin-bottom: 80px;
    padding:90px 0;
    position:relative;
    overflow:hidden;
}

/* Overlay */
.clients::before{
    content:"";
    position:absolute;
    inset:0;
    background: linear-gradient(to bottom, rgba(13, 27, 62, 0.75), rgba(13, 27, 62, 0.55), rgba(13, 27, 62, 0.85));
    z-index:0;
}
@media(max-width:768px){

    .clients{
        background-position:center center;
        padding:60px 0;
        margin-bottom:50px;
    }

    .clients::before{
        background:linear-gradient(
            to bottom,
            rgba(13,27,62,0.85),
            rgba(13,27,62,0.65),
            rgba(13,27,62,0.90)
        );
    }
  }


/* Keep content above overlay */
.clients .container{
    position:relative;
    z-index:1;
}

.clients-header .section-title{
    color:#ffffff;
}
.clients-header .section-desc{
    color:rgba(255,255,255,0.85);
}


.clients-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:25px;
    margin-top:60px;
}

.client-card{
    position:relative;
    overflow:hidden;
    border-radius:18px;
    height:250px;
    cursor:pointer;
    box-shadow:0 18px 45px rgba(0,0,0,.08);
    transition:.4s;
}

.client-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}

.client-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top,
    rgba(13,27,62,.95),
    rgba(13,27,62,.15));
    display:flex;
    align-items:flex-end;
    padding:24px;
}

.client-overlay h3{
    color:#fff;
    font-size:1.25rem;
    font-weight:700;
    margin:0;
}

.client-card:hover{
    transform:translateY(-8px);
}

.client-card:hover img{
    transform:scale(1.08);
}

    /* ===== CONTACT ===== */
    .contact { background: var(--warm-gray); overflow: hidden; position: relative; }
    .contact::before {
      content: '';
      position: absolute;
      top: -10rem;
      left: -10rem;
      width: 20rem;
      height: 20rem;
      background: rgba(74, 144, 217, 0.05);
      border-radius: 50%;
      filter: blur(60px);
    }
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
      position: relative;
    }
    @media (min-width: 1024px) { .contact-grid { grid-template-columns: 2fr 3fr; } }
    .contact-info {
      background: #3C60AE;
      border-radius: 0.75rem;
      padding: 2rem;
      position: relative;
      overflow: hidden;
    }
    @media (min-width: 768px) { .contact-info { padding: 2.5rem; } }
    .contact-info::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle, rgba(255, 255, 255, 0.179) 1px, transparent 1px);
      background-size: 12px 12px;
    }
    .contact-info::after {
      content: '';
      position: absolute;
      bottom: -5rem;
      right: -5rem;
      width: 12rem;
      height: 12rem;
      background: rgba(74, 144, 217, 0.1);
      border-radius: 50%;
    }
    .contact-info-content { position: relative; z-index: 1; }
    .contact-info-heading {
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 2rem;
    }
    .contact-detail {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      margin-bottom: 1.5rem;
    }
    .contact-detail-icon {
      width: 2.5rem;
      height: 2.5rem;
      background: rgba(74, 144, 217, 0.2);
      border-radius: 0.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .contact-detail-icon svg { width: 1.125rem; height: 1.125rem; color: var(--navy); }
    .contact-detail-label {
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color:var(--navy);
      margin-bottom: 0.25rem;
    }
    .contact-detail-value { color: var(--white); font-weight: 500; font-size: 0.875rem; }
    .contact-detail-value a { color: var(--white); transition: color 0.2s; }
    .contact-detail-value a:hover { color: var(--sky); }
    .social-link{
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:inherit;
      text-decoration:none;
      transition:.3s;
    }

    .social-link svg{
      width:18px;
      height:18px;
      flex-shrink:0;
    }

    .social-link:hover{
      color:var(--gold);
    }
    .contact-whatsapp {
      margin-top: 2.5rem;
      padding-top: 2rem;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    .contact-whatsapp p { color:var(--navy); font-size: 0.875rem; margin-bottom: 1rem; }
    .wa-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.75rem 1.5rem;
      background: #25D366;
      color: #fff;
      font-weight: 600;
      font-size: 0.875rem;
      border-radius: 0.5rem;
      transition: all 0.2s;
    }
    .wa-btn:hover { background: rgba(37, 211, 102, 0.9); transform: scale(1.02); }
    .wa-btn:active { transform: scale(0.97); }
    .wa-btn svg { width: 1.125rem; height: 1.125rem; }
    .contact-map {
      background: #fff;
      border-radius: 0.75rem;
      overflow: hidden;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
      min-height: 25rem;
    }
    .contact-map iframe {
      width: 100%;
      height: 100%;
      min-height: 25rem;
      border: none;
    }

    /* ===== FOOTER ===== */
    /* ===== FOOTER ===== */

.footer{
    background:#233865;
    color:#fff;
    position:relative;
    text-align:center;
}

.footer::before{
    content:'';
    position:absolute;
    inset:0;
    background-image:radial-gradient(circle,rgba(255,255,255,.03) 1px,transparent 1px);
    background-size:12px 12px;
}

.footer-inner{
    position:relative;
    padding:4rem 0 2rem;
}

.footer-grid{
    display:flex;
    justify-content:center;
}

.footer-brand{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:18px;
    margin-bottom:20px;
}

.footer-brand img{
    width:100px !important;
    height:100px !important;
    object-fit:contain;
    border-radius:12px;
    flex-shrink:0;
}

.footer-brand-title{
    font-family:'Playfair Display', serif;
    font-size:2rem;
    font-weight:700;
    letter-spacing:2px;
    margin:0;
    line-height:1.2;
    color:#fff;
}
.footer-desc{
    max-width:650px;
    margin:0 auto;
    color:rgba(255,255,255,.75);
    font-size:1rem;
    line-height:1.8;
}

.footer-bottom{
    margin-top:3rem;
    padding-top:1.8rem;
    border-top:1px solid rgba(255,255,255,.1);
}

.footer-bottom-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:1rem;
    color:rgba(255,255,255,.55);
    font-size:.9rem;
}

@media (max-width:767px){

    .footer-inner{
        padding:3rem 0 2rem;
    }

    .footer-brand img{
        width:100px !important;
        height:100px !important;
    }

    .footer-brand-title{
        font-size:1.6rem;
    }

    .footer-desc{
        max-width:100%;
        padding:0 20px;
        font-size:.95rem;
    }

    .footer-bottom-inner{
        flex-direction:column;
        text-align:center;
    }

}


    /* ===== WHATSAPP FLOATING CONTAINER ===== */
.wa-float-container {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
}

/* Button Base */
.wa-float {
  position: relative;
  width: 3.5rem;
  height: 3.5rem;
  background: #25D366;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  transition: all 0.3s ease-out;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.wa-float svg {
  width: 1.625rem;
  height: 1.625rem;
  color: #fff;
  position: relative;
  z-index: 2;
}

.wa-float-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
  z-index: 1;
}

/* Menu Popup */
.wa-float-menu {
  position: absolute;
  bottom: 4.25rem;
  right: 0;
  width: 220px;
  background: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease-out;
}

.wa-menu-header {
  font-size: 0.75rem;
  font-weight: 600;
  color: #6b7280;
  padding: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.wa-menu-item {
  display: flex;
  flex-direction: column;
  padding: 0.625rem 0.75rem;
  border-radius: 0.5rem;
  text-decoration: none;
  color: #1f2937;
  transition: background 0.2s ease;
}

.wa-menu-item:hover {
  background: #f3f4f6;
}

.wa-menu-item strong {
  font-size: 0.875rem;
  color: #111827;
}

.wa-menu-item span {
  font-size: 0.75rem;
  color: #25D366;
  margin-top: 0.125rem;
}

/* Reveal menu on hover */
.wa-float-container:hover .wa-float-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@keyframes ping {
  75%, 100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

.web-credit a{
    color: inherit;
    text-decoration: none;
    transition: .3s ease;
    color: var(--sky);
}

.web-credit a:hover{
    color: #3C60AE;
}
    