/* -----------------------------------------------------------
   GLOBAL RESET
----------------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    background: #ffffff;
}
html, body {
  overflow-x: hidden;
  width: 100%;
}
.curtain-overlay {
    background: #3a7afe;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    animation: curtainSlideFade 1.5s ease forwards;
}

@keyframes curtainSlideFade {
    0% {
        transform: translateY(0%);
        opacity: 1;
    }
    80% {
        transform: translateY(-100%);
        opacity: 1;
    }
    100% {
        transform: translateY(-100%);
        opacity: 0;
    }
}


/* -----------------------------------------------------------
   HEADER
----------------------------------------------------------- */
.main-header {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.main-header .container {
    max-width: 1400px;
    margin: auto;
    padding: 15px 30px;
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}



/* -----------------------------------------------------------
   BRANDING
----------------------------------------------------------- */
.branding {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-title {
    display: flex;
    align-items: flex-start;
    font-weight: 700;
    color: #04034f;
    font-family: 'Poppins', 'Segoe UI', sans-serif;

    /* Responsive font size */
    font-size: clamp(18px, 2.5vw, 32px);

    letter-spacing: 1px;
    margin: 0;
    line-height: 1;
}

/* Superscript styling */
.brand-sup {
    font-size: 0.45em;          /* scales automatically */
    margin-left: 3px;
    position: relative;
    top: -0.6em;                /* perfect vertical alignment */
    font-weight: 600;
    opacity: 0.9;
}

/* Logo (if used beside text) */
.brand-logo {
    width: clamp(40px, 5vw, 55px);
    height: auto;
    object-fit: contain;
}
 sup {
    font-size: 24px;
    vertical-align: super;
    margin-left: 2px;
}
@media (max-width: 480px) {
    .brand-title sup {
        font-size: 20px;     /* reduce superscript size */
        top: -0.4em;         /* fine adjustment */
        position: relative;
    }
}
/* -----------------------------------------------------------
   DESKTOP NAVIGATION
----------------------------------------------------------- */
.nav-menu {
    display: flex;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links li a {
    text-decoration: none;
    color: #222;
    font-weight: 500;
    font-size: 1rem;
    transition: 0.3s ease;
    padding-bottom: 4px;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: #1a73e8;
    border-bottom: 2px solid #1a73e8;
}

/* Store Icons */
.nav-store-item i {
    font-size: 1.3rem;
    color: #1a73e8;
    transition: 0.3s ease;
}

.nav-store-item i:hover {
    transform: scale(1.2);
}



/* -----------------------------------------------------------
   HAMBURGER BUTTON
----------------------------------------------------------- */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    border: none;
    background: transparent;
}

.hamburger-line {
    width: 28px;
    height: 3px;
    background: #333;
    border-radius: 5px;
    transition: 0.3s;
}



/* -----------------------------------------------------------
   MOBILE OVERLAY (SLIDE PANEL)
----------------------------------------------------------- */

.mobile-overlay {
    position: fixed;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    top: 0;
    right: -100%;
    width: 60vw;
    height: 100%;
    background: #ffffffee;
    backdrop-filter: blur(8px);
    padding: 100px 30px;
    box-shadow: -5px 0 20px rgba(0,0,0,0.18);
    transition: right 0.4s ease-in-out;
    z-index: 999;   /* BELOW HEADER */
}

.mobile-overlay.active {
    right: 0;
}

/* Prevent overlay from hiding header */
.main-header {
    z-index: 1000 !important;
}

.mobile-links {
    list-style: none;
}

.mobile-links li {
    margin: 22px 0;
}

.mobile-links a {
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 600;
    color: #04034f;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: 0.3s ease;
}

/* Hover effects */
.mobile-links a:hover {
    color: #1a73e8;
    transform: translateX(6px);
}

.mobile-links a i {
    font-size: 1.35rem;
    color: #1a73e8;
}
/* ===============================
   MOBILE DROPDOWN – FONT MATCH FIX
================================ */

/* Main dropdown button (Products, Solutions) */
.mobile-dropbtn,
.mobile-sub-dropbtn {
    width: 100%;
    background: none;
    border: none;
    font-size: 1.25rem;          /* SAME as .mobile-links a */
    font-weight: 600;
    color: #04034f;              /* SAME navy color */
    padding: 1px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: 0.3s ease;
}

/* Hover effect – same as links */
.mobile-dropbtn:hover,
.mobile-sub-dropbtn:hover {
    color: #1a73e8;
    transform: translateX(6px);
}
.mobile-dropbtn {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-dropbtn .left {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Arrow color */
.mobile-dropdown .arrow,
.mobile-sub-dropdown .arrow {
    color: #1a73e8;
    font-size: 0.9rem;
}

/* Submenu links */
.mobile-submenu a {
    font-size: 1.1rem;
    font-weight: 600;
    color: #04034f;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s ease;
}

.mobile-submenu a:hover {
    color: #1a73e8;
    transform: translateX(6px);
}
.mobile-dropbtn i {
    color: #1a73e8; /* icon always blue */
}
.mobile-dropbtn span.left {
    color: #04034f; /* text navy */
}


/* === DROPDOWN STYLES === */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


.dropbtn {
    cursor: pointer;
    display: flex;
    align-items: center;
    font-weight: 500;
    color: #222;
    transition: color 0.2s ease;
}

.dropbtn:hover {
    color: #1a73e8;
}

.dropbtn::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 6px;
    vertical-align: middle;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid #666;
    transition: transform 0.25s ease, border-top-color 0.2s ease;
}

.dropbtn:hover::after,
.dropbtn.open::after {
    border-top-color: #1a73e8;
}

.dropbtn.open::after {
    transform: rotate(180deg);
}

/* === ENHANCED DROPDOWN PANEL === */
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 320px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08),
                0 4px 8px rgba(0, 0, 0, 0.05);
    list-style: none;
    margin-top: 0; 
    padding: 8px 0;
    z-index: 1001;
    max-height: 320px; 
    overflow-y: auto;
    overflow-x: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    visibility: hidden;
}


.store-dropdown {
    position: relative;
}

.store-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.4rem;
}

.store-menu {
    position: absolute;
    top: 130%;
    right: 0;
    background: white;
    min-width: 180px;
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    list-style: none;
    padding: 6px 0;
    display: none;
}



.store-menu li a:hover {
    background: #f3f6ff;
    color: #1a73e8;
}

.store-dropdown.active .store-menu {
    display: block;
}
.store-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    color: #04034f;
    text-decoration: none;
    font-size: 0.95rem;
}

.app-icon {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    object-fit: cover;
}
/* MAIN DROPDOWN (Products, Solutions etc.) */
.mobile-dropbtn {
    width: 100%;
    background: none;
    border: none;
    font-size: 1.25rem;
    font-weight: 700;                 /* Stronger */
    color: #04034f;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: 0.3s ease;
}

/* SUB DROPDOWN (Automotive, Consumer etc.) */
.mobile-sub-dropbtn {
    width: 100%;
    background: #f7f9ff;              /* light background */
    border: none;
    font-size: 1.15rem;               /* slightly smaller */
    font-weight: 600;
    color: #04034f;
    padding: 8px 0 8px 14px;          /* indentation */
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: 0.3s ease;
}

/* deeper levels */
.mobile-submenu .mobile-sub-dropdown .mobile-sub-dropbtn {
    padding-left: 28px;               /* deeper indent */
    font-size: 1.05rem;
    background: #ffffff;
}

/* Hover effect */
.mobile-dropbtn:hover,
.mobile-sub-dropbtn:hover {
    color: #1a73e8;
    transform: translateX(6px);
}

/* Arrow style difference */
.mobile-dropdown .arrow {
    font-size: 1rem;
}

.mobile-sub-dropdown .arrow {
    font-size: 0.8rem;
}

/* Submenu links */
.mobile-submenu a {
    font-size: 1rem;
    font-weight: 500;
    color: #04034f;
    padding: 8px 0 8px 40px;   /* align with deeper level */
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s ease;
}

.mobile-submenu a:hover {
    color: #1a73e8;
    transform: translateX(6px);
}

/* icon color */
.mobile-dropbtn i {
    color: #1a73e8;
}

.mobile-dropbtn span.left {
    color: #04034f;
}

/* ---------------------------
   Slim Modern Scrollbar
--------------------------- */

/* Chrome, Edge, Safari */
.dropdown-content::-webkit-scrollbar {
    width: 6px;              /* thinner width */
}

.dropdown-content::-webkit-scrollbar-track {
    background: transparent; /* clean look */
    border-radius: 10px;
}

.dropdown-content::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.25);
    border-radius: 10px;
}

.dropdown-content::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.45);
}


/* Firefox */
.dropdown-content {
    scrollbar-width: thin;
    scrollbar-color: rgba(0,0,0,0.25) transparent;
}


.dropdown:hover > .dropdown-content,
.dropdown-content:hover {
  display: block;
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}
.sub-dropdown.active .sub-dropdown-content {
    display: block;
}


/* Show with animation */
/* KEEP DROPDOWN OPEN WHEN HOVERING INSIDE */
/* ===============================
   MOBILE DROPDOWN DEFAULT STATE
================================ */

/* Hide all mobile submenus by default */
.mobile-submenu {
    display: none;
}

/* Show only when active */
.mobile-dropdown.active > .mobile-submenu,
.mobile-sub-dropdown.active > .mobile-submenu {
    display: block;
}


.dropdown-content li {
    margin: 0;
}

.dropdown-content a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-size: 0.98rem;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
}

/* Optional: Add subtle icons (using Font Awesome) */
.dropdown-content a::before {
    content: '●';
    color: #1a73e8;
    font-size: 8px;
    opacity: 0;
    transition: opacity 0.2s;
}

.dropdown-content a:hover::before {
    opacity: 1;
}

.dropdown-content a:hover {
    background-color: #f0f7ff;
    color: #0d5ab3;
    transform: translateX(4px);
}

/* Divider (optional — for "All Products" header) */
.dropdown-content .divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0,0,0,0.08), transparent);
    margin: 6px 0;
    border: none;
}

/* Optional: Add small subtle label (e.g., “Featured”) */
.dropdown-content .tag {
    font-size: 0.75rem;
    background: #e6f0ff;
    color: #1a73e8;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: auto;
    font-weight: 600;
}

/* === SUB-DROPDOWN (2nd LEVEL) === */
.sub-dropdown {
    position: relative;
}

/* Clickable button */
.sub-dropbtn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 12px 20px;
}

/* Hover only for visual feedback (NOT opening) */
.sub-dropbtn:hover {
    background-color: #f0f7ff;
    color: #0d5ab3;
}

/* Arrow rotation */
.sub-dropdown.active .arrow {
    transform: rotate(180deg);
}

/* Submenu (hidden by default) */
.sub-dropdown-content {
    display: none;
    margin-left: 12px;
    padding-left: 12px;
}

.sub-dropdown.active .sub-dropdown-content {
    display: block;
}

/* Submenu links */
.sub-dropdown-content li a {
    display: block;
    padding: 10px 20px;
    color: #444;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.sub-dropdown-content li a:hover {
    background-color: #e6f0ff;
    color: #1a73e8;
    padding-left: 24px;
}

/* -----------------------------------------------------------
   RESPONSIVE
----------------------------------------------------------- */
@media (max-width: 991px) {
    .brand-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .brand-title {
        font-size: 1.05rem;
    }
}

@media (max-width: 480px) {
    .brand-logo {
        width: 45px;
    }

    .brand-title {
        font-size: 0.9rem;
    }
}


/* ************************************************************************************************************************ */

/* ================= CONTACT CTA WITH IMAGE ================= */

.contact-cta {
  background: linear-gradient(135deg, #042a63, #092d60);
  padding: 100px 20px;
  overflow: hidden;
}

.contact-cta-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* Left Content */

.contact-cta-content {
  flex: 1;
  color: #fff;
}

.contact-cta-content h2 {
  font-size: 40px;
  margin-bottom: 15px;
  font-weight: 700;

}

.contact-cta-content p {
  font-size: 18px;
  margin-bottom: 35px;
  opacity: 0.95;

}

/* Button */

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #0b5ed7;
  padding: 14px 34px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

/* Right Image */

.contact-cta-image {
  flex: 1;
  text-align: right;
}
.contact-cta-image img {
  max-width: 50%;
  transform: translateX(0);
}
/* When visible */
.contact-cta-image img.show {
  opacity: 1;
  transform: translateX(0);
}

/* Optional floating after entry */
.contact-cta-image img.float {
  animation: floatImage 4s ease-in-out infinite;
}

@keyframes slideInRight {
  from {
    transform: translateX(120px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}


/* Floating Animation */

@keyframes floatImage {
  0% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
  100% { transform: translateY(0); }
}

/* Responsive */

@media (max-width: 900px) {
  .contact-cta-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .contact-cta-image {
    text-align: center;
  }

  .contact-cta-image img {
    max-width: 300px;
  }
}


/* ------------------- FOOTER ------------------- */

/* ------------------- FOOTER ------------------- */
.footer {
  background: #04034f;
  color: #ffffff;
  padding: 50px 20px 20px;
  margin-top: 60px;
  border-top: 3px solid #3a7afe;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 40px;
  margin-bottom: 30px;
}

.footer-brand {
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 700;
  color: #ffffff;
}

.footer-col h3 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: #dcdcdc;
  text-decoration: none;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s ease;
}

.footer-col ul li a:hover {
  color: #3a7afe;
  transform: translateX(5px);
}

/* ------ Social Icons ------ */
.social-icons {
  text-align: center;
  margin-bottom: 15px;
}

.social-icons a {
  color: #ffffff;
  margin: 0 10px;
  font-size: 20px;
  transition: 0.3s ease;
}

.social-icons a:hover {
  color: #3a7afe;
  transform: scale(1.2);
}

/* ------ Bottom Text ------ */
.footer-bottom {
  text-align: center;
  font-size: 14px;
  color: #bbbbbb;
}

.footer-bottom p {
  margin-top: 10px;
}
.footer-catalogue {
  margin: 20px 0;
}

.catalogue-btn {
  display: inline-flex;
  gap: 10px;
  padding: 12px 22px;
  background: #1c69ff;
  color: #fff;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.catalogue-btn i {
  font-size: 16px;
}

.catalogue-btn:hover {
  background: #04034f;
  transform: translateY(-2px);
}

/* ===================== SERVICE HERO SECTION ===================== */
.service-hero {
    position: relative;
    height: 90vh;
    overflow: hidden;
    margin-top: 80px;
}



.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;   /* makes it fill like background */
  z-index: -1;         /* behind content */
}


.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* BEST clarity */
}

.service-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(4, 3, 79, 0);
}

.service-hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}

.service-hero-content h1 {
    font-size: 50px;
    font-weight: 800;
    margin-bottom: 15px;
}

.service-hero-content p {
    font-size: 18px;
    opacity: 0.95;
    margin-bottom: 30px;
}

/* Buttons */
.service-hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-btn.primary {
    background: #1c69ff;
    color: #fff;
}

.hero-btn.primary:hover {
    background: #0f4dc4;
}

.hero-btn.secondary {
    border: 2px solid #fff;
    color: #fff;
}

.hero-btn.secondary:hover {
    background: #fff;
    color: #04034f;
}

/* Responsive */
@media (max-width: 768px) {
    .service-hero {
        height: 60vh;
    }

    .service-hero-content h1 {
        font-size: 34px;
    }

    .service-hero-content p {
        font-size: 16px;
    }
}
/* ===================== HERO TEXT ANIMATION ===================== */
.animate-hero {
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeUp 1s ease forwards;
}

.animate-hero.delay-1 {
    animation-delay: 0.4s;
}

.animate-hero.delay-2 {
    animation-delay: 0.8s;
}

@keyframes heroFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.services-intro {
    padding: 60px 20px;
    text-align: center;
    background: #f9f9f9;
}

.services-intro-container {
    max-width: 900px;
    margin: 0 auto;
}

.services-intro h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #04034f;
}

.services-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 15px;
}
/* Initial hidden state */
.animate-section {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease, transform 1s ease;
}

/* Visible state when active */
.animate-section.active {
  opacity: 1;
  transform: translateY(0);
}




/* ************************************************************************************************************************ */
/* ===================== SERVICES SECTION ===================== */
.services-section {
  padding: 90px 20px;
  background: #f5f8fb;
}

.services-container {
  max-width: 1300px;
  margin: auto;
}

.services-title {
  text-align: center;
  margin-bottom: 60px;
}

.services-title h2 {
  font-size: 36px;
  font-weight: 800;
  color: #04034f;
  margin-bottom: 12px;
}

.services-title p {
  font-size: 16px;
  color: #555;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
}

/* Service Card */
.service-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 35px 28px;
  background: url('../assets/about-us-img-bg1.jpg') no-repeat center center; /* your bg image */
  background-size: cover; /* cover entire section */
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  text-align: center;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(40px);
}

.service-card.reveal {
  opacity: 1;
  transform: translateY(0);
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 55px rgba(0,0,0,0.12);
}

/* Icon */
.service-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: #1c69ff;
  color: #fff;
  font-size: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Category */
.service-category {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: #1c69ff;
  margin-bottom: 10px;
  text-transform: uppercase;
}

/* Text */
.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #04034f;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* Button */
.service-btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 30px;
  background: #1c69ff;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s ease;
}

.service-btn:hover {
  background: #0f4dc4;
}



/* ================= SOLUTIONS NAV SECTION ================= */

.solutions-nav-section {
  padding: 110px 20px;
  background: url('../assets/service-solution-bg.webp')no-repeat center center/cover;
  background-size: cover;
}

.solutions-nav-wrapper {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: center;
}

.solutions-nav-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #0c2d57;
}

.solutions-nav-content p {
  color: #666;
  margin-bottom: 30px;
  line-height: 1.7;
}

.solutions-nav-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.solutions-btn {
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.solutions-btn.primary {
  background: #1a5edd;
  color: white;
}

.solutions-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(26, 94, 221, 0.25);
}

.solutions-btn.outline {
  border: 2px solid #1a5edd;
  color: #1a5edd;
}

.solutions-btn.outline:hover {
  background: #1a5edd;
  color: white;
}

.solutions-nav-image img {
  width: 100%;
  max-width: 480px;
}

/* Responsive */
@media (max-width: 900px) {
  .solutions-nav-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .solutions-nav-buttons {
    justify-content: center;
  }
}


/* ---------- SOLUTIONS ANIMATION ---------- */

.sol-animate {
  opacity: 0;
  transform: translateY(40px) scale(0.96);
  filter: blur(6px);
  transition: all 1s cubic-bezier(.22,.61,.36,1);
}

/* stagger delays */
.sol-title { transition-delay: 0.1s; }
.sol-desc { transition-delay: 0.25s; }
.sol-buttons { transition-delay: 0.4s; }

/* image special effect */
.sol-img {
  opacity: 0;
  transform: scale(0.85);
  transition: all 1.2s cubic-bezier(.22,.61,.36,1);
}

/* when visible */
.solutions-visible .sol-animate {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.solutions-visible .sol-img {
  opacity: 1;
  transform: scale(1);
}
  


/* ================= PROCESS SECTION ================= */




.process-section {
    padding: 80px 20px;
    background: #f9f9f9;
    text-align: center;
}

.section-title h2 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #04034f;
}

.section-title p {
    font-size: 16px;
    color: #555;
    margin-bottom: 50px;
}

.process-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.process-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px 20px;
    max-width: 300px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.process-card:hover {
    transform: translateY(-10px);
}

.process-icon i {
    font-size: 40px;
    color: #1c69ff;
    margin-bottom: 20px;
}

.process-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #04034f;
}

.process-card p {
    font-size: 15px;
    color: #555;
}



.benefits-section {
    position: relative;
    padding: 60px 20px; /* Reduced height */
    background: url('../assets/service-page-img.png') center/cover no-repeat; 
    text-align: center;
    color: #ffffff;
    overflow: hidden;
}

.benefits-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(4, 3, 79, 0.5); /* Overlay for readability */
    z-index: 1;
}

.benefits-section .section-title,
.benefits-grid {
    position: relative;
    z-index: 2; 
}

.benefits-section .section-title h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: #ffffff;
}

.benefits-section .section-title p {
    font-size: 15px;
    color: #e0e0e0;
    margin-bottom: 40px;
}

/* Horizontal layout */
.benefits-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;        /* ✅ allow wrapping */
    overflow-x: hidden;     /* ✅ remove horizontal scroll */
}
/* Individual benefit card */
.benefit-card {
    background: rgba(255, 255, 255, 0.256); /* Semi-transparent card so bg image shows */
    border-radius: 15px;
    padding: 30px 20px;
    max-width: 250px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #ffffff; /* Text color for visibility */
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.35);
}

.benefit-icon i {
    font-size: 34px;
    color: #ffff;
    margin-bottom: 12px;
}

.benefit-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.benefit-card p {
    font-size: 13px;
}
/* Scroll animation */
.benefit-card {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease;
}

/* When visible */
.benefit-card.show {
    opacity: 1;
    transform: translateY(0);
}
/* Mobile view */
@media (max-width: 768px) {
    .benefits-grid {
        flex-direction: column;   /* Stack vertically */
        align-items: center;
        overflow-x: hidden;       /* Remove horizontal scroll */
    }

    .benefit-card {
        max-width: 90%;           /* Full width look */
    }
}



/* SECTION */
.industries-stack{
  padding:120px 20px;
  background:linear-gradient(135deg,#f6f9ff,#eef3ff);
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:70px;
}
.section-header{
  text-align:center;
  margin-bottom:90px;
}

.section-header h2{
  font-size:38px;
  color:#0c2d57;
  font-weight:700;
  margin-bottom:12px;
}

.section-header p{
  color:#666;
  font-size:16px;
}
/* CARD */
.industry-card{
  width:100%;
  max-width:1000px;
  background:#fff;

  display:flex;
  align-items:center;
  justify-content:space-between;

  gap:40px;
  padding:40px;
  border-radius:20px;
  box-shadow:0 20px 50px rgba(0,0,0,.08);

  /* ⭐ ADD THESE */
  opacity:0;
  transition: transform .7s ease, opacity .7s ease;
}

/* image */
/* default (image left) */
.industry-card img{
  width:280px;
  height:180px;
  object-fit:cover;
  border-radius:14px;
}

/* image right */
.industry-card.right img{
  order:2;
}

.industry-card.right .card-content{
  order:1;
}
/* text */
.card-content h3{
  display:flex;
  align-items:center;
  gap:10px;
  color:#0c2d57;
  font-size:22px;
  margin-bottom:10px;
}

.card-content i{
  color:#3a7afe;
}

.card-content p{
  color:#666;
  line-height:1.6;
}

/* animation directions */
.from-left{
  transform:translateX(-120px);
}

.from-right{
  transform:translateX(120px);
}

.industry-card.show{
  opacity:1;
  transform:translateX(0);
}

/* mobile */
@media(max-width:768px){
  .industry-card{
    flex-direction:column;
    text-align:center;
  }

  .industry-card img{
    width:100%;
    height:auto;
  }
}




/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  z-index: 1000;
}

/* Chat Widget */
.chat-widget {
  position: fixed;
  bottom: 100px;
  right: 25px;
  width: 320px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
  overflow: hidden;
  display: none;
  z-index: 1001;
}

/* Header */
.chat-header {
  background: #0b3c52;
  color: #fff;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-header h4 {
  margin: 0;
  font-size: 16px;
}

.chat-header .status {
  font-size: 12px;
  color: #9effc4;
}

.close-btn {
  font-size: 22px;
  cursor: pointer;
}

/* Body */
.chat-body {
  padding: 15px;
  background: #f4efe8;
}

.chat-message {
  background: #fff;
  padding: 12px;
  border-radius: 10px;
  font-size: 14px;
}

/* Footer */
.chat-footer {
  padding: 15px;
  text-align: center;
}

.start-chat-btn {
  display: block;
  background: #25d366;
  color: #fff;
  padding: 12px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  margin-bottom: 6px;
}

.start-chat-btn:hover {
  background: #1ebe5d;
}

.chat-footer small {
  color: #777;
}



