
        /* --- General Reset and Typography --- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #3b82f6; /* Blue */
            --secondary-color: #1f2937; /* Dark Gray */
            --light-bg: #f9fafb; /* Light Gray Background */
            --white: #ffffff;
            --black: #000000;
            --shadow-light: 0 4px 12px rgba(0, 0, 0, 0.05);
            --shadow-heavy: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--light-bg);
            color: var(--secondary-color);
            line-height: 1.6;
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        /* Container & Spacing */
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        .section-padding {
            padding: 4rem 0;
        }
.subnav {
  background-color: #000;
  width: 100%;
  height: 40px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

.subnav-content {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.left-sub,
.right-sub {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.left-sub a,
.right-sub a {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  transition: color 0.3s ease;
}
.divider {
  width: 1px;
  height: 14px;
  background-color: var(--white);
  display: inline-block;
}
.left-sub a:hover,
.right-sub a:hover {
  color: #3b82f6;
}

/* icon group tighter to text */
.icons {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 0.5rem;
}

.icons .icon {
  width: 18px;
  height: 18px;
  fill: white;
  transition: transform 0.3s ease, fill 0.3s ease;
  cursor: pointer;
}

.icons .icon:hover {
  transform: scale(1.1);
  fill: #3b82f6;
}



        /* --- Navigation --- */
        nav {
            position: fixed;
            top: 40px;
            left: 0;
            width: 100%;
            background-color: var(--white);
            box-shadow: var(--shadow-light);
            z-index: 1000;
            transition: all 0.3s ease-in-out;
        }

        .nav-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 5rem; /* 80px */
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            
            color: var(--secondary-color);
        }

        .logo img {
            color: var(--primary-color);
            height: 4rem;
        }

      .nav-links {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            list-style: none;
        }
        
.nav-links ul {
  list-style: none;
  display: flex;
  gap: 25px;
}
        /* Dropdown parent item */
        .dropdown {
            position: relative;
        }

        .nav-links a {
            text-decoration: none;
            color: #4b5563; /* Gray-600 */
            font-weight: 500;
            padding: 0.25rem 0;
            transition: color 0.3s;
            display: block;
        }

        .nav-links a:hover {
            color: var(--primary-color);
        }

 
.dropdown {
  position: relative;
}

.mega-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;                       /* center horizontally */
  transform: translateX(-50%);     /* perfect centering */
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  padding: 25px 40px;
  width: 1200px;                   /* adjust based on your layout width */
  border-top: 2px solid #0078d4;
  justify-content: space-between;
  flex-wrap: wrap;
  opacity: 0;
  transform-origin: top center;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 999;
}

.mega-menu.show {
  display: flex;
  opacity: 1;
  transform: translate(-50%, 0);  /* maintain centering when visible */
}
.menu-column {
  flex: 1 1 180px;
  margin-right: 20px;
}

.menu-column h3 {
  font-size: 18px;
  color: #555;
  margin-bottom: 10px;
  font-weight: 800;
}

.menu-column a {
  display: block;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  padding: 4px 0;
}

.menu-column a:hover {
  color: #0078d4;
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1000;
}

.overlay.active {
  opacity: 1;
  pointer-events: auto;
}
/* Responsive design */

.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
  user-select: none;
}


        /* Mobile-only menu button for consistency */
        .mobile-cta {
            padding: 0.5rem 1rem;
            background-color: var(--primary-color);
            color: var(--white);
            font-weight: 600;
            border-radius: 9999px; /* rounded-full */
            text-decoration: none;
            transition: background-color 0.3s;
        }
        .mobile-cta:hover {
            background-color: #2563eb;
        }
       .account{
        margin: 0px;
       }
    @media (max-width: 992px) {
        
        .subnav{
            display: none;
        }
         nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: var(--white);
            box-shadow: var(--shadow-light);
            z-index: 1000;
            transition: all 0.3s ease-in-out;
        }

  .menu-toggle {
    display: block;
  }
  nav .nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
.nav-links {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 1px solid #ddd;
    overflow-y: auto;           /* allow scroll inside menu */
    max-height: 0;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    flex-direction: column;
    z-index: 1001;
  }

  .nav-links.active {
    max-height: 90vh;           /* use most of screen height */
    opacity: 1;
  }

  /* .nav-links ul {
    flex-direction: column;
    gap: 10px;
    padding: 15px;
  } */
 .nav-links li {
    text-align: center;
    padding: 10px 0;
  }

  .nav-links li a {
    display: block;
    color: #333;
    font-size: 16px;
  }
  .mega-menu {
    position: relative;
    width: 100%;
    box-shadow: none;
    border: none;
    padding: 10px;
  }

  .menu-column {
    flex: 1 1 100%;
  }
   /* Prevent body scroll when menu open */
  body.menu-open {
    overflow: hidden;
  }

  /* optional nicer scroll look */
  .nav-links::-webkit-scrollbar {
    width: 6px;
  }
  .nav-links::-webkit-scrollbar-thumb {
    background-color: rgba(0,0,0,0.3);
    border-radius: 3px;
  }
}

        /* --- Hero Slider --- */
        .hero-section {
            padding-top: 5rem; /* Offset for fixed nav */
        }
        
        .slider-container {
            position: relative;
            height: 100vh;
            overflow: hidden;
        }
        
        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
            z-index: 1;
            display: flex;
            align-items: center;
        }
        
        .slide.active {
            opacity: 1;
            z-index: 2;
        }

        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .slide video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(30, 41, 59, 0.6); 
            z-index: 2;
        }

        .slide-content {
            position: absolute;
            z-index: 3;
            width: 100%;
           
           
        }
        .slide-position-left{
 left: 0;
        }
         .slide-position-right{
 right: 0;
        }
         .slide-position-center{
 right: 0;
 left: 0;
        }
.hero-text-center{
 text-align: center; 
}

.hero-text-left{
 text-align: left; 
}

.hero-text-right{
 text-align: right; 
}
        .slide-text {
            opacity: 0;
            transform: translateY(30px);
            transition: all 1s ease;
            max-width: 100%;
            /* Center the text block horizontally */
            margin-left: auto; 
            margin-right: auto;
            /* FIX: Center the content (text and button) inside the block */
           margin: 10%;
        }
        
        .slide.active .slide-text {
            opacity: 1;
            transform: translateY(0);
        }

        .slide-text h2 {
            font-size: 1.5rem;
            font-weight: 500;
            letter-spacing: 0.05em;
            margin-bottom: 1rem;
            
        }

        .slide-text h1 {
            font-size: 3rem;
            line-height: 1.2;
            font-weight: 800;
            margin-bottom: 2rem;
           
        }
        .gray{
            color: #380644;
        }
.white{
    color: var(--white);
}
.black{
    color: var(--black);
}
 
        .cta-button {
            padding: 1rem 2.5rem;
            background-color: var(--white);
            color: var(--primary-color);
            font-weight: 700;
            border: none;
            border-radius: 9999px;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            text-transform: uppercase;
        }

        .cta-button:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
            background-color: #f1f1f1;
        }

        /* Slider Navigation */
        .slider-nav {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 15px;
            z-index: 10;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s;
        }

        .slider-dot.active {
            background: var(--white);
            width: 32px;
            border-radius: 6px;
        }
/* Different animation types */
.scroll-animate {
            opacity: 0;
            /* transform: translateY(50px); */
              transition: all 0.8s ease; /* Smooth ease-out */
        }
        .scroll-animate.visible {
            opacity: 1;
            /* transform: translateY(0); */
        }
.fade-in {
    opacity: 0;
}

.slide-up {
    opacity: 0;
    transform: translateY(40px);
}

.slide-right {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-left {
    opacity: 0;
    transform: translateX(40px);
     transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.zoom-in {
    opacity: 0;
    transform: scale(0.9);
}

.rotate-in {
    opacity: 0;
    transform: rotate(-5deg) scale(0.95);
}

/* Animation active states */
.fade-in.visible {
    opacity: 1;
}

.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.zoom-in.visible {
    opacity: 1;
    transform: scale(1);
}

.rotate-in.visible {
    opacity: 1;
    transform: rotate(0) scale(1);
}

/* Staggered animation delays */
.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}

.delay-500 {
    transition-delay: 0.5s;
}
        /* --- Welcome Section --- */
        .welcome-section {
            padding: 6rem 0;
        }

        .welcome-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .welcome-image img {
            width: 100%;
            border-radius: 0.75rem; /* 12px */
            box-shadow: var(--shadow-heavy);
            transition: transform 0.5s;
        }
        .welcome-image img:hover {
            transform: scale(1.01);
        }

        .welcome-text h2 {
            font-size: 3rem;
            font-weight: 800;
            color: var(--secondary-color);
            margin-bottom: 0.5rem;
        }
        
        .welcome-text h3 {
            font-size: 1.5rem;
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 1.5rem;
        }
        
        .welcome-text p {
            font-size: 1.125rem;
            color: #4b5563; /* Gray-600 */
        }
        
        /* --- Features Section --- */
        .features-section {
            background-color: var(--white);
            padding: 6rem 0;
        }

        .features-section h2 {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
            color: var(--secondary-color);
        }

        .features-section .subtitle {
            text-align: center;
            font-size: 1.25rem;
            color: #6b7280; /* Gray-500 */
            margin-bottom: 3rem;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .feature-card {
            padding: 2rem;
            background: var(--light-bg);
            border-radius: 0.75rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .feature-icon-wrapper {
            width: 4rem;
            height: 4rem;
            border-radius: 9999px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            font-size: 2rem;
        }
        
        .feature-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .feature-card p {
            color: #6b7280;
        }
        
        /* Specific Icon Backgrounds */
        .bg-blue-icon { background-color: #dbeafe; color: #1e40af; }
        .bg-green-icon { background-color: #d1fae5; color: #065f46; }
        .bg-purple-icon { background-color: #ede9fe; color: #5b21b6; }



               
        
        .feature-card:nth-child(2).visible { transition-delay: 0.15s; }
        .feature-card:nth-child(3).visible { transition-delay: 0.3s; }
        

/* Professional Footer */
.footer {
    background: linear-gradient(to right, #1a2a3a, #2c3e50);
    color: #e6e6e6;
    padding: 4rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, #3498db, #e74c3c);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-column h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #3498db, #e74c3c);
}

.footer-about {
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #bdc3c7;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #3498db;
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links a::before {
    content: '›';
    margin-right: 8px;
    color: #3498db;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.contact-info p {
    margin-bottom: 0.8rem;
    color: #bdc3c7;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-form input {
    padding: 0.8rem 1rem;
    border: none;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.newsletter-form input::placeholder {
    color: #bdc3c7;
}

.newsletter-form button {
    padding: 0.8rem 1rem;
    border: none;
    border-radius: 4px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: linear-gradient(135deg, #2980b9, #3498db);
    transform: translateY(-2px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: #bdc3c7;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: white;
}
        
        /* --- Responsive Adjustments --- */
        @media (max-width: 1024px) {
            .slide-text h1 {
                font-size: 2.5rem;
            }
            .welcome-content {
                gap: 2rem;
            }
        }

        @media (max-width: 768px) {
            .welcome-section {
                padding: 4rem 0;
            }
            .welcome-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
            /* Removing text-align from .slide-content as it's now handled by .slide-text */
            .slide-content {
                padding: 0 1rem;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                /* text-align: center; is now implicitly inherited or set in .slide-text */
            }
            .slide-text h1 {
                font-size: 2rem;
            }
            .welcome-text h2 {
                font-size: 2rem;
            }
            .features-section h2 {
                font-size: 2rem;
            }
        }

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

