/* ==============================
   CSS VARIABLES
================================ */
:root {
    --primary: #0a3cff;
    --secondary: #00bfa6;
    --dark: #1f2933;
    --light: #f4f7fb;
}

/* ==============================
   BASE STYLES
================================ */
body {
    font-family: "Segoe UI", Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: #ffffff;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ==============================
   HEADER
================================ */
.site-header {
    background: linear-gradient(135deg, #020024 0%, #090979 45%, #00d4ff 100%);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.site-header.fixed-top {
    position: sticky;
    top: 0;
    z-index: 999;
}

.site-header .container {
    padding: 14px 15px;
}

/* Logo */
.logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.logo span {
    color: var(--secondary);
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
}

.main-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    gap: 0;
}

.main-nav ul li {
    position: relative;
}

.main-nav ul li a {
    padding: 10px 16px;
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.main-nav ul li a i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.main-nav ul li a:hover {
    color: #ffffff;
}

.main-nav ul li a.active {
    text-decoration: underline;
    color: #fff900;
}

.dropdown:hover > a i {
    transform: rotate(180deg);
}

/* Contact Button */
.nav-btn {
    background: var(--primary);
    color: #fff !important;
    border-radius: 20px;
    padding: 8px 18px;
}

.nav-btn:hover {
    background: var(--secondary);
    color: #fff !important;
}


/* ==============================
   HERO DETAILS
================================ */
/* Container styles */
.hero-details {
    text-align: center;
    padding: 3rem 1rem;
    background: #fff; /* or light gradient/subtle pattern */
    color: #111;
  }
  
  /* Main headline */
  .hero-details__title {
    font-size: 2.75rem; /* Bold, attention‑grabbing */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #0a0a0a; /* Dark, high contrast */
  }
  
  /* Sub-headline */
  .hero-details__subtitle {
    font-size: 1.25rem !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
    color: #404040 !important;
    max-width: 780px !important;
    margin: 0 auto !important;
  }
  
  /* Responsive typography */
  @media (max-width: 768px) {
    .hero-details__title {
      font-size: 1.6rem !important;
    }
    .hero-details__subtitle {
      font-size: 1.125rem !important;
    }
  }
  

/* ==============================
   DROPDOWN MENU
================================ */
.dropdown > ul {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background: #ffffff;
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
    border-radius: 8px;
    padding: 8px 0;
    display: none;
    z-index: 1000;
    list-style: none;
    margin: 0;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background: #ffffff;
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
    border-radius: 8px;
    padding: 8px 0;
    display: none;
    z-index: 1000;
    list-style: none;
    margin: 0;
}

/* Show dropdown only on hover */
.dropdown:hover > ul,
.dropdown:hover > .dropdown-menu {
    display: block;
}

/* Dropdown links */
.dropdown > ul li a,
.dropdown-menu li a {
    padding: 10px 18px;
    font-size: 14px;
    color: #333;
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.dropdown > ul li a:hover,
.dropdown-menu li a:hover {
    background: var(--light);
    color: var(--primary);
}

.dropdown.active > a i {
    transform: rotate(180deg);
}

/* ==============================
   HERO SLIDER
================================ */
.hero-slider {
    position: relative;
    overflow: hidden;
    height: 520px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
    background-size: cover;
    background-position: center;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.overlay {
    background: rgba(5, 20, 45, 0.7);
    height: 100%;
    display: flex;
    align-items: center;
}

.overlay .container {
    max-width: 700px;
    color: #fff;
    padding: 0 20px;
}

.overlay h1 {
    font-size: 50px;
    margin-bottom: 15px;
    color: #fff;
}

.overlay p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #fff;
}

/* ==============================
   STATS SECTION
================================ */
/* Stats section background */
.stats.section-bg {
    background: #f5f8ff;
    padding: 3rem 0;
    font-family: 'Poppins', sans-serif;
  }
  
  .stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .stat-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    flex: 1 1 180px;
    max-width: 220px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  }
  
  .stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  }
  
  .stat-img {
    width: 50px;
    height: 50px;
    margin-bottom: 0.75rem;
  }
  
  .stat-card h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 0.3rem;
  }
  
  .stat-card p {
    font-size: 1rem;
    color: #666;
    margin: 0;
  }
  
  /* Responsive adjustments */
  @media (max-width: 767px) {
    .stats-grid {
      gap: 0.5rem;
    }
    .stat-card {
      flex: 1 1 45%;
      max-width: 45%;
      margin: 0.5rem auto;
    }
  }
  
  
  

/* ==============================
   SERVICES SECTION
================================ */
.services {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
}

.section-title {
    text-align: center;
    margin-bottom: 0px;
}

.section-title h2 {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 12px;
    font-weight: 700;
}

.section-title p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* New Services Grid Layout */
.services-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
}

.service-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: row;
    align-items: center;
    min-height: 400px;
}

/* Even cards: content on left, image on right */
.service-card-even {
    flex-direction: row;
}

.service-card-even .service-content {
    order: 1;
}

.service-card-even .service-image {
    order: 2;
}

/* Odd cards: image on left, content on right */
.service-card-odd {
    flex-direction: row;
}

.service-card-odd .service-image {
    order: 1;
}

.service-card-odd .service-content {
    order: 2;
}

.service-card:hover {
    /* transform: translateY(-12px) scale(1.02); */
    box-shadow: 0 20px 50px rgba(10, 60, 255, 0.2);
}

.service-image {
    position: relative;
    width: 50%;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
    /* background: linear-gradient(135deg, var(--primary), var(--secondary)); */
    flex-shrink: 0;
    margin: 0 10px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.service-image img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
    /* padding: 10px; */
    border-radius: 20px;
}

.service-image:hover img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 60, 255, 0.85), rgba(0, 191, 166, 0.85));
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover .service-overlay {
    display: none;
}

.service-overlay i {
    font-size: 64px;
    color: #ffffff;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.service-content {
    padding: 50px 40px;
    width: 50%;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h4 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.3;
}

.service-content p {
    color: #555;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.service-link:hover {
    color: var(--secondary);
    gap: 12px;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* ==============================
   CTA SECTION
================================ */
.cta {
    position: relative;
    background: linear-gradient(135deg, #0a3cff 0%, #0066ff 50%, #00bfa6 100%);
    color: #ffffff;
    padding: 50px 20px;
    text-align: center;
    overflow: hidden;
    z-index: 1;
}

.cta .container {
    position: relative;
    z-index: 10;
}

.cta-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?w=1920&q=80') center/cover;
    opacity: 0.15;
    z-index: -1;
}

.cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    opacity: 1;
    visibility: visible;
}

.cta-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: pulse-icon 2s ease-in-out infinite;
}

.cta-icon-wrapper i {
    font-size: 36px;
    color: #fff;
}

@keyframes pulse-icon {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
}

@keyframes pulse-button {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2), 0 0 0 8px rgba(255, 255, 255, 0);
    }
}

.cta h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    line-height: 1.3;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.5px;
}

.cta p {
    font-size: 20px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    font-weight: 400;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: #ffffff;
    color: var(--primary) !important;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    animation: pulse-button 2s ease-in-out infinite;
}

.btn-cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-cta-primary:hover::before {
    left: 100%;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    background: #f8f9ff;
}

.btn-cta-primary i {
    transition: transform 0.3s ease;
}

.btn-cta-primary:hover i {
    transform: translateX(5px);
}

.btn-cta-secondary {
    background: transparent;
    color: #ffffff !important;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

@media (max-width: 991.98px) {
    .cta-shapes {
        display: none;
    }

    /* Ensure AOS doesn't hide content on mobile */
    .cta-content[data-aos],
    .cta-content[data-aos="fade-up"] {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
    }

    .cta h2,
    .cta p,
    .cta-icon-wrapper,
    .cta-buttons {
        opacity: 1 !important;
        visibility: visible !important;
    }
}

.cta-shapes .shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: -100px;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    bottom: -75px;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 50%;
    right: 10%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* ==============================
   FOOTER
================================ */
/* Footer Styles */
.site-footer {
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f1419 100%);
    position: relative;
    color: #fff;
    padding: 80px 0 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    overflow: hidden;
}

.footer-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(10, 60, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 191, 166, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.footer-top {
    position: relative;
    z-index: 1;
    padding-bottom: 0px;
}

.footer-top > * {
    position: relative;
    z-index: 1;
}

/* Footer About */
.footer-about {
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-about h4 {
    color: #fff;
    margin: 0;
    font-size: 26px;
    font-weight: 700;
    background: linear-gradient(135deg, #fff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
}

.footer-badge i {
    font-size: 14px;
}

.footer-about p {
    color: #b8c5d6;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 90%;
}

/* Footer Contact */
.footer-contact h5,
.footer-links h5,
.footer-services h5 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 12px;
}

.footer-contact h5::after,
.footer-links h5::after,
.footer-services h5::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

.contact-info {
    margin-bottom: 30px;
}

.contact-address,
.contact-map {
    display: flex;
    align-items: flex-start;
    margin-bottom: 18px;
    color: #b8c5d6;
    font-size: 14px;
    line-height: 1.6;
}

.contact-address i,
.contact-map i {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 18px;
    margin-right: 12px;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-link {
    color: #b8c5d6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #00bfff;
}

.map-link {
    color: #ccc;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.3s ease, transform 0.3s ease;
}

.map-link:hover {
    color: #00bfff;
    transform: translateX(5px);
}

.map-link i {
    margin-right: 10px;
}

/* Social icons */
.footer-social {
    margin-top: 25px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-social .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: #fff;
    font-size: 18px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social .social-link:hover {
    color: #fff;
    transform: translateY(-4px);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(10, 60, 255, 0.3);
}

/* Footer Links */
.footer-links,
.footer-services {
    margin-bottom: 40px;
}

.footer-links ul, 
.footer-services ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li, 
.footer-services ul li {
    margin-bottom: 12px;
}

.footer-list li a {
    color: #b8c5d6;
    text-decoration: none;
    font-size: 15px;
    display: flex;
    align-items: center;
    position: relative;
    padding: 6px 0;
    transition: all 0.3s ease;
}

/* Icon before text */
.footer-list li a i {
    margin-right: 10px;
    color: var(--primary);
    font-size: 14px;
    transition: all 0.3s ease;
    opacity: 0.8;
}

/* Smooth underline animation */
.footer-list li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    transition: width 0.3s ease;
}

/* Hover effects */
.footer-list li a:hover {
    color: #fff;
    transform: translateX(5px);
    padding-left: 5px;
}

.footer-list li a:hover i {
    transform: translateX(3px);
    opacity: 1;
    color: var(--secondary);
}

.footer-list li a:hover::after {
    width: 70%;
}


/* Newsletter */
.footer-newsletter {
    margin-top: 0px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.footer-newsletter h5 {
    color: #fff;
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 600;
}

.footer-newsletter p {
    font-size: 13px;
    color: #b8c5d6;
    margin-bottom: 20px;
    line-height: 1.5;
}

.newsletter-form {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: stretch;
}

.newsletter-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    flex: 1;
}

.newsletter-icon {
    position: absolute;
    left: 15px;
    color: #b8c5d6;
    font-size: 16px;
    z-index: 1;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 8px 8px 8px 45px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    outline: none;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 14px;
    transition: all 0.3s ease;
    width: 100%;
    min-width: 0;
}

.newsletter-form input[type="email"]::placeholder {
    color: #8a9ba8;
}

.newsletter-form input[type="email"]:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(10, 60, 255, 0.1);
}

.newsletter-form button {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    border: none;
    padding: 8px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(10, 60, 255, 0.2);
    white-space: nowrap;
    flex-shrink: 0;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(10, 60, 255, 0.3);
}

.newsletter-form button i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.newsletter-form button:hover i {
    transform: translateX(3px);
}

/* Footer bottom */
.footer-bottom {
    margin-top: 0px;
    position: relative;
    z-index: 1;
    background: #001d37;
    padding: 2px 10px;
    margin-bottom: 15px;
    border-radius: 8px;
}

.footer-bottom-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-bottom p {
    color: #b8c5d6;
    font-size: 14px;
    margin: 0;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-legal a {
    color: #b8c5d6;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    position: relative;
}

.footer-legal a:hover {
    color: #fff;
}

.footer-legal .separator {
    color: rgba(255, 255, 255, 0.2);
    font-size: 14px;
}

.footer-designed-by {
    margin-bottom: 10px;
    padding-top: 0px;
    text-align: center;
}

.footer-designed-by p {
    color: #8a9ba8;
    font-size: 13px;
    margin: 0;
}

.footer-designed-by a {
    color: #b8c5d6;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.footer-designed-by a:hover {
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Responsive */
@media(max-width: 991px) {
    .footer-top {
        text-align: center;
    }
    
    .footer-brand {
        justify-content: center;
    }
    
    .footer-about p {
        max-width: 100%;
    text-align: start~;
    }
    
    .footer-contact h5::after,
    .footer-links h5::after,
    .footer-services h5::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media(max-width: 768px) {
    .site-footer {
        padding: 60px 0 0;
    }
    
    .footer-top {
        padding-bottom: 40px;
    }
    
    .footer-about,
    .footer-links,
    .footer-services {
        margin-bottom: 40px;
        text-align: center;
    }

    .footer-contact
    {
      margin-bottom: 0px;
    }
        
    .contact-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 0;
    }
    
    .contact-address {
        justify-content: center;
        text-align: center;
        margin-bottom: 5px;
    }
    
    .footer-social {
        justify-content: center;
        margin-top: 10px;
    }
    
    .footer-newsletter {
        text-align: left;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input[type="email"],
    .newsletter-form button {
        width: 100%;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
    
    .footer-legal {
        justify-content: center;
    }
    
    .footer-designed-by {
        /* margin-top: 15px; */
        padding-top: 8px;
        margin-bottom: 0;
    }
    .footer-bottom p {
        color: #b8c5d6;
        font-size: 13px;
        margin: 0;
    }
    .footer-legal {
        display: flex;
        align-items: center;
        gap: 0px;
    }
}



/* ==============================
   WHATSAPP BUTTON
================================ */
.whatsapp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: #25d366;
    color: #fff;
    padding: 14px 16px;
    border-radius: 50%;
    font-size: 22px;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* ==============================
   HAMBURGER MENU
================================ */
.hamburger {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 5px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-nav-toggle {
    display: none;
    font-size: 28px;
    color: var(--primary);
    cursor: pointer;
    z-index: 1001;
    padding: 8px;
    transition: color 0.3s ease, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.mobile-nav-toggle:hover {
    color: var(--secondary);
}

.mobile-nav-toggle.bi-x {
    transform: rotate(180deg);
}

/* ==============================
   MOBILE RESPONSIVE
================================ */
@media (max-width: 991.98px) {
    .mobile-nav-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #003e47;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transform: translateY(-20px);
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                    opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        width: 100%;
        display: block !important;
        visibility: hidden;
    }

    .main-nav.active {
        max-height: 600px;
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
    }

    .main-nav ul {
        flex-direction: column;
        width: 100%;
        padding: 20px 0;
        margin: 0;
        align-items: stretch;
    }

    .main-nav ul li {
        width: 100%;
        /* border-bottom: 1px solid #f0f0f0; */
        opacity: 0;
        transform: translateX(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .main-nav.active ul li {
        opacity: 1;
        transform: translateX(0);
    }

    .main-nav.active ul li:nth-child(1) { transition-delay: 0.1s; }
    .main-nav.active ul li:nth-child(2) { transition-delay: 0.15s; }
    .main-nav.active ul li:nth-child(3) { transition-delay: 0.2s; }
    .main-nav.active ul li:nth-child(4) { transition-delay: 0.25s; }
    .main-nav.active ul li:nth-child(5) { transition-delay: 0.3s; }
    .main-nav.active ul li:nth-child(6) { transition-delay: 0.35s; }

    .main-nav ul li:last-child {
        border-bottom: none;
    }

    .main-nav ul li a {
        padding: 15px 20px;
        display: block;
        width: 100%;
        transition: color 0.3s ease, background-color 0.3s ease;
    }

    .main-nav ul li a:hover {
        background-color: #003e47;
    }

    .dropdown > ul,
    .dropdown-menu {
        position: static;
        box-shadow: none;
        border-radius: 0;
        background: var(--light);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding: 0;
        min-width: auto;
        width: 100%;
    }

    .dropdown.active > ul,
    .dropdown.active .dropdown-menu {
        max-height: 300px;
        padding: 8px 0;
    }

    .dropdown > ul li a,
    .dropdown-menu li a {
        padding: 12px 40px;
    }

    .hero-slider {
        height: 420px;
    }

    .overlay h1 {
        font-size: 28px;
    }

    .overlay p {
        font-size: 16px;
    }

    .services {
        padding: 60px 0;
    }

    .section-title {
        margin-bottom: 40px;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .section-title p {
        font-size: 16px;
        padding: 0 20px;
    }

    .services-grid {
        gap: 30px;
    }

    .service-card {
        flex-direction: column !important;
        min-height: auto;
    }

    /* Mobile: image first for all services */
    .service-card .service-image {
        order: 1 !important;
        width: 100%;
        min-height: 250px;
        height: 250px;
    }

    .service-card .service-content {
        order: 2 !important;
        width: 100%;
        padding: 30px 25px;
    }

    .service-content h4 {
        font-size: 22px;
    }

    .service-content p {
        font-size: 14px;
    }

    .cta {
        padding: 60px 20px;
        min-height: auto;
    }

    .cta .container {
        position: relative;
        z-index: 10;
    }

    .cta-content {
        position: relative;
        z-index: 10;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }

    .cta h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .cta p {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .cta-icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

    .cta-icon-wrapper i {
        font-size: 28px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
        padding: 14px 30px;
    }

    .stats {
        padding: 40px 0;
    }

    .stats h2 {
        font-size: 28px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-bottom a {
        margin: 0 10px;
    }
}

@media (max-width: 480px) {
    .overlay h1 {
        font-size: 24px;
    }

    .section-title h2 {
        font-size: 24px;
    }

    .services-grid {
        gap: 25px;
    }

    .service-card {
        flex-direction: column !important;
        min-height: auto;
    }

    .service-card .service-image {
        order: 1 !important;
        width: 100%;
        min-height: 220px;
        height: 220px;
    }

    .service-card .service-content {
        order: 2 !important;
        width: 100%;
        padding: 25px 20px;
    }

    .service-overlay i {
        font-size: 48px;
    }

    .cta h2 {
        font-size: 24px;
    }

    .cta {
        padding: 50px 15px;
    }

    .cta-content {
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }

    .cta h2 {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .cta-icon-wrapper {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }

    .cta-icon-wrapper i {
        font-size: 24px;
    }

    .cta p {
        font-size: 15px;
        margin-bottom: 25px;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        padding: 12px 25px;
        font-size: 15px;
    }
}

/* why choose us */

.why-partner {
    padding: 80px 20px;
    background: linear-gradient(180deg, #f7faff, #ffffff);
  }
  
  .why-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: center;
  }
  
  .why-content h2 {
    font-size: 2.5rem;
    color: #0b2c5d;
    margin-bottom: 20px;
  }
  
  .why-content h2 span {
    color: #005cff;
  }
  
  .why-content p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
  }
  
  .why-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .why-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
  }
  
  .why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0, 92, 255, 0.2);
  }
  
  .why-card .icon {
    font-size: 2.2rem;
    margin-bottom: 15px;
  }
  
  .why-card h4 {
    font-size: 1.25rem;
    color: #005cff;
    margin-bottom: 12px;
  }
  
  .why-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
  }
  
  /* Responsive */
  @media (max-width: 992px) {
    .why-grid {
      grid-template-columns: 1fr;
      text-align: center;
    }
  
    .why-cards {
      grid-template-columns: 1fr;
    }
  }

  
  .network-strengths {
    padding: 90px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 50%, #f0f4ff 100%);
    position: relative;
    overflow: hidden;
  }

  /* Elegant 3D Background Layers */
  .network-strengths::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 40%;
    height: 200%;
    background: linear-gradient(135deg, rgba(6, 43, 190, 0) 0%, rgba(0, 191, 166, 0.204) 100%);
    transform: perspective(800px) rotateY(45deg) rotateX(10deg);
    border-radius: 50px;
    filter: blur(60px);
    animation: subtleFloat 20s ease-in-out infinite;
    z-index: 0;
  }

  .network-strengths::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -5%;
    width: 35%;
    height: 150%;
    background: linear-gradient(225deg, rgba(0, 191, 166, 0.08) 0%, rgba(10, 60, 255, 0.05) 100%);
    transform: perspective(800px) rotateY(-45deg) rotateX(-10deg);
    border-radius: 50px;
    filter: blur(60px);
    animation: subtleFloat 25s ease-in-out infinite reverse;
    z-index: 0;
  }

  /* 3D Geometric Shapes */
  .network-strengths .container {
    position: relative;
    z-index: 1;
  }

  /* Subtle floating animation */
  @keyframes subtleFloat {
    0%, 100% {
      transform: perspective(800px) rotateY(45deg) rotateX(10deg) translateY(0) translateX(0);
      opacity: 0.6;
    }
    50% {
      transform: perspective(800px) rotateY(45deg) rotateX(10deg) translateY(-30px) translateX(20px);
      opacity: 0.8;
    }
  }

  /* Elegant 3D Geometric Shapes */
  .shape-3d {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    opacity: 0.4;
  }

  .shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 5%;
    background: linear-gradient(135deg, rgba(10, 60, 255, 0.1), rgba(0, 191, 166, 0.08));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    transform: perspective(1000px) rotateZ(45deg) rotateY(15deg);
    animation: shapeFloat1 15s ease-in-out infinite;
    filter: blur(40px);
  }

  .shape-2 {
    width: 150px;
    height: 150px;
    bottom: 15%;
    left: 8%;
    background: linear-gradient(225deg, rgba(0, 191, 166, 0.1), rgba(10, 60, 255, 0.08));
    border-radius: 50%;
    transform: perspective(1000px) rotateZ(-30deg) rotateX(20deg);
    animation: shapeFloat2 18s ease-in-out infinite;
    filter: blur(35px);
  }

  .shape-3 {
    width: 120px;
    height: 120px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) perspective(1000px) rotateZ(60deg) rotateY(25deg);
    background: linear-gradient(45deg, rgba(10, 60, 255, 0.08), rgba(0, 191, 166, 0.06));
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation: shapeFloat3 20s ease-in-out infinite;
    filter: blur(30px);
  }

  @keyframes shapeFloat1 {
    0%, 100% {
      transform: perspective(1000px) rotateZ(45deg) rotateY(15deg) translate(0, 0);
    }
    50% {
      transform: perspective(1000px) rotateZ(60deg) rotateY(25deg) translate(20px, -30px);
    }
  }

  @keyframes shapeFloat2 {
    0%, 100% {
      transform: perspective(1000px) rotateZ(-30deg) rotateX(20deg) translate(0, 0);
    }
    50% {
      transform: perspective(1000px) rotateZ(-45deg) rotateX(30deg) translate(-25px, 25px);
    }
  }

  @keyframes shapeFloat3 {
    0%, 100% {
      transform: translate(-50%, -50%) perspective(1000px) rotateZ(60deg) rotateY(25deg) scale(1);
    }
    50% {
      transform: translate(-50%, -50%) perspective(1000px) rotateZ(75deg) rotateY(35deg) scale(1.1);
    }
  }
  
  .container {
    max-width: 1200px;
    margin: auto;
  }
  
  .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 2;
  }
  
  .section-tag {
    display: inline-block;
    color: #005cff;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 10px;
  }
  
  .section-header h2 {
    font-size: 2.6rem;
    color: #0b2c5d;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
  }
  
  .section-header p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.7;
    position: relative;
    z-index: 2;
  }
  
  .strength-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
    perspective: 1000px;
  }
  
  .strength-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 35px 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(10, 60, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 2;
    transform-style: preserve-3d;
    overflow: hidden;
  }
  
  .strength-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(10, 60, 255, 0.05), transparent);
    transition: left 0.6s ease;
    z-index: 0;
  }
  
  .strength-card:hover::before {
    left: 100%;
  }
  
  .strength-card:hover {
    transform: translateY(-10px) translateZ(15px);
    box-shadow: 0 20px 50px rgba(10, 60, 255, 0.15), 0 0 0 1px rgba(10, 60, 255, 0.1);
  }
  
  .strength-card > * {
    position: relative;
    z-index: 1;
  }
  
  .strength-card .icon {
    font-size: 2.4rem;
    margin-bottom: 18px;
  }
  
  .strength-card h4 {
    font-size: 1.3rem;
    color: #005cff;
    margin-bottom: 12px;
  }
  
  .strength-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
  }
  
  /* Responsive */
  @media (max-width: 1100px) {
    .strength-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 600px) {
    .strength-grid {
      grid-template-columns: 1fr;
    }
  
    .section-header h2 {
      font-size: 1.45rem;
    }
  }

  
  /* About Vision Section */
.about-vision-section {
    background: linear-gradient(135deg, rgba(10, 60, 255, 0.03) 0%, rgba(0, 191, 166, 0.05) 100%);
  }
  
  /* Section Tag */
  .av-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #005cff;
    margin-bottom: 12px;
  }
  
  /* Title */
  .av-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #0b2c5d;
    margin-bottom: 20px;
  }
  
  .av-title span {
    color: #005cff;
  }
  
  /* Text */
  .av-lead {
    font-size: 1.05rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 15px;
  }
  
  .av-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
  }
  
  /* Cards */
  .av-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px 25px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
  }
  
  .av-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 92, 255, 0.18);
  }
  
  .av-icon {
    font-size: 2rem;
    margin-bottom: 12px;
  }
  
  .av-card h5 {
    color: #005cff;
    font-weight: 600;
    margin-bottom: 10px;
  }
  
  .av-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
  }
  
  /* Mobile Tweaks */
  @media (max-width: 768px) {
    .av-title {
      font-size: 1.49rem;
    }
  
    .av-card {
      text-align: center;
    }
  }
  



/* ============================
   Swiper Testimonials
=============================== */
.testimonials-slider {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(10, 60, 255, 0.05) 0%, rgba(0, 191, 166, 0.08) 50%, rgba(10, 60, 255, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-slider::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 60, 255, 0.03) 0%, rgba(0, 191, 166, 0.05) 100%);
    z-index: 0;
}

.testimonials-slider .container {
    position: relative;
    z-index: 1;
}

.testimonialSwiper {
    padding: 40px 10px 60px;
}

.testimonial-card {
    background: #fff;
    border-radius: 18px;
    padding: 45px 35px;
    text-align: center;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 50px rgba(0,0,0,0.15);
}

.testimonial-quote {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 20px;
}

.testimonial-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
}

.testimonial-card h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.testimonial-card span {
    font-size: 14px;
    color: #777;
}

.swiper-pagination-bullet {
    background: var(--primary);
    opacity: 0.3;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}


/* ============================
   Testimonials with Logos
=============================== */

.testimonialSwiper {
    padding: 40px 10px 60px;
}

/* Testimonial Card */
.testimonial-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.testimonial-card .client-logo {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonial-card .client-logo img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover .client-logo img {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(10, 60, 255, 0.2);
}

.testimonial-card p {
    font-size: 15px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

.testimonial-card h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--primary);
}

.testimonial-card span {
    font-size: 14px;
    color: #888;
}

/* Swiper Pagination */
.swiper-pagination-bullet {
    background: var(--primary);
    opacity: 0.6;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

/* ==============================
   ABOUT PAGE STYLES
================================ */

/* Section Padding */
.section-padding {
    padding: 80px 0;
}

.section-bg {
    background: #f5f8ff;
}

/* About Hero Section */
.about-hero {
    position: relative;
    background: linear-gradient(135deg, rgba(10, 60, 255, 0.9), rgba(0, 191, 166, 0.9)),
                url('https://images.pexels.com/photos/1181244/pexels-photo-1181244.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover;
    min-height: 300px;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(5, 20, 45, 0.6);
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 800px;
    margin: 0 auto;
}

.about-hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.about-hero-content p {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
}

/* About Company Section */
/* About Company Section */
.about-company {
    background: linear-gradient(135deg, #f0f4ff, #e2e8f0);
    padding: 80px 20px;
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
}

.about-company .section-title h2 {
    font-size: 2.5rem;
    color: #1a3dff;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.about-company .section-title h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #1a3dff;
    margin: 10px auto 0;
    border-radius: 2px;
}

/* Card Style */
.about-company-card {
    background: #fff;
    border-radius: 25px;
    padding: 35px 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: transform 0.4s, box-shadow 0.4s;
    position: relative;
}

.about-company-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(0,0,0,0.15);
}

/* Decorative Icon */
.about-company-card::before {
    content: "💡";
    font-size: 50px;
    position: absolute;
    top: -20px;
    left: 20px;
    opacity: 0.15;
}

/* Content Styling */
.about-company-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    text-align: justify;
}

/* Responsive */
@media (max-width: 768px) {
    .about-company .section-title h2 {
        font-size: 2rem;
    }

    .about-company-card {
        padding: 25px 20px;
    }
}


/* Vision & Mission Section */
.vision-mission-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 35px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.vision-mission-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(10, 60, 255, 0.2);
}

.vision-mission-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(10, 60, 255, 0.3);
}

.vision-mission-icon i {
    font-size: 36px;
    color: #fff;
}

.vision-mission-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.vision-mission-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    flex-grow: 1;
}

/* IP-1 Certification Section */
.ip-cert-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.ip-cert-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.ip-cert-image:hover img {
    transform: scale(1.05);
}

.ip-cert-content {
    padding-left: 30px;
}

.ip-cert-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.cert-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    margin-top: 20px;
    box-shadow: 0 6px 20px rgba(10, 60, 255, 0.3);
}

.cert-badge i {
    font-size: 20px;
}

/* Network Strength Section */
.network-strength-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.network-strength-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(10, 60, 255, 0.2);
}

.network-strength-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(10, 60, 255, 0.3);
}

.network-strength-icon i {
    font-size: 32px;
    color: #fff;
}

.network-strength-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.network-strength-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    flex-grow: 1;
}





/* Responsive Styles */
@media (max-width: 991.98px) {
    .about-hero-content h1 {
        font-size: 36px;
    }
    
    .about-hero-content p {
        font-size: 18px;
    }
    
    .ip-cert-content {
        padding-left: 0;
        margin-top: 30px;
    }
    
    .section-padding {
        padding: 60px 0;
    }
}

@media (max-width: 767.98px) {
    .about-hero {
        min-height: 300px;
        padding: 100px 0 60px;
    }
    
    .about-hero-content h1 {
        font-size: 28px;
    }
    
    .about-hero-content p {
        font-size: 16px;
    }
    
    .about-company-card {
        padding: 35px 25px;
    }
    
    .vision-mission-card,
    .network-strength-card,
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .section-padding {
        padding: 50px 0;
    }
}

/* Network Strength List */
.network-strength-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
}

.network-strength-list li {
    padding: 15px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
}

.network-strength-list li:last-child {
    border-bottom: none;
}

.network-strength-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 24px;
    font-weight: bold;
    line-height: 1.2;
}

.network-strength-list li strong {
    color: var(--primary);
    font-weight: 600;
}

/* ================= FUTURE CONNECTIVITY ================= */
.future-connectivity {
    background: linear-gradient(180deg, #f6f9ff, #ffffff);
}

.future-content {
    max-width: 520px;
}

.future-tag {
    display: inline-block;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 20px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(10, 60, 255, 0.25);
    position: relative;
    z-index: 2;
}

.future-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.future-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

/* Image Card */
.future-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.future-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.future-image:hover img {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 991px) {
    .future-content h2 {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    .future-content h2 {
        font-size: 26px;
    }
}


/* Section base */
.network-strength-refined {
    background: #f4f7fb; /* soft blue-gray */
}

/* Main card */
.strength-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 11px 32px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
}

/* Rows */
.strength-row {
    display: flex;
    gap: 18px;
    padding: 28px 0;
    align-items: flex-start;
}

.strength-row:not(:last-child) {
    border-bottom: 1px solid #e9edf3;
}

/* Dot accent */
.strength-dot {
    width: 10px;
    height: 10px;
    background: #0b5cff; /* primary blue */
    border-radius: 50%;
    margin-top: 10px;
    box-shadow: 0 0 0 6px rgba(11, 92, 255, 0.08);
}

/* Headings */
.strength-row h4 {
    font-size: 20px;
    font-weight: 600;
    color: #0b5cff;
    margin-bottom: 6px;
}

/* Text */
.strength-row p {
    font-size: 15.5px;
    line-height: 1.85;
    color: #4b5563;
    margin: 0;
}

/* Highlight */
.strength-row strong {
    color: #0f766e; /* teal accent */
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .strength-card {
        padding: 40px 25px;
    }
}

/* General Container */
.fiber-network-section {
    background: linear-gradient(135deg, #f0f4ff, #e2e8f0);
    padding: 80px 20px;
    font-family: 'Poppins', sans-serif;
    text-align: center;
  }
  
  .headline {
    color: #1a3dff;
    font-size: 2.5rem;
    margin-bottom: 10px;
  }
  
  .subheadline {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 50px;
  }
  
  /* Cards Grid */
  .cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }
  
  /* Individual Card */
  .card {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.4s, box-shadow 0.4s;
  }
  
  
  .card h3 {
    color: #1a3dff;
    margin-bottom: 10px;
    font-size: 1.3rem;
    animation: pulse 2.5s infinite;

  }
  
  .card p {
    color: #555;
    line-height: 1.6;
  }
  
  /* Animated Icon Circle */

  
  @keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
  }
  
  /* Responsive Text */
  @media (max-width: 768px) {
    .headline {
      font-size: 2rem;
    }
    .subheadline {
      font-size: 1rem;
    }
  }
  