
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #ab9b63;
            --primary-dark: #ac9b63;
            --primary-light: #ac9b63;
            --text-dark: #1a1a1a;
            --text-light: #6b7280;
            --bg-gray: #f9fafb;
            --white: #ffffff;
        }
/* Mundial Font */
@font-face {
  font-family: 'Mundial';
  src: url('fonts/mundial/MundialLight.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

/* Halogen Font */
@font-face {
  font-family: 'Halogen';
  src: url('fonts/Halogen/Halogen-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: 'Mundial', sans-serif !important;line-height: 1.6;
            color: var(--text-dark);
            overflow-x: hidden;
        }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Halogen', sans-serif !important;
}

        /* Animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        @keyframes pulse {
            0%, 100% {
                opacity: 1;
            }
            50% {
                opacity: 0.7;
            }
        }

        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .fade-in {
            animation: fadeIn 0.8s ease forwards;
        }

        .slide-in-left {
            animation: slideInLeft 0.8s ease forwards;
        }

        .slide-in-right {
            animation: slideInRight 0.8s ease forwards;
        }

        .scale-in {
            animation: scaleIn 0.6s ease forwards;
        }

        .float {
            animation: float 3s ease-in-out infinite;
        }

        /* Navbar */
        .navbar {
            position: sticky;
            top: 0;
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            z-index: 1000;
            animation: slideInLeft 0.5s ease;
        }

        .navbar-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }



        .nav-menu {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-menu a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            transition: color 0.3s, transform 0.3s;
            display: inline-block;
        }

        .nav-menu a:hover {
            color: var(--primary-color);
            transform: translateY(-2px);
        }

        .nav-cta {
            display: flex;
            gap: 1rem;
            align-items: center;
        }

        .menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            width: 50%;
        }

        a.menu-toggle.btn.btn-primary.nav-link {
    display: none;
}

        /* Buttons */
        .btn {
            padding: 10px 24px;
            border: none;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
                font-family: 'Mundial';
        }

        .btn-primary {
            background: var(--primary-color);
            color: white;
        }

        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgb(171 155 99 / 55%);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
        }

        .btn-outline:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-2px);
        }

        .btn-lg {
            padding: 10px 24px;
            font-size: 1.1rem;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, rgb(113 113 113 / 86%), rgb(0 0 0 / 25%)), url(https://www.studex-me.com/assets/img/uae-top.jpg) no-repeat;
            background-size: cover;
            background-position: center;
            /* background-attachment: fixed; */
            color: white;
            padding: 80px 20px;
            position: relative;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            /* background: linear-gradient(135deg, rgba(46, 205, 220, 0.9), rgba(37, 180, 192, 0.85)); */
            z-index: 1;
        }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10rem;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .hero-content h1 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .hero-content p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.95;
        }

        .hero-stats {
            display: flex;
            gap: 3rem;
            margin-top: 2rem;
        }

        .stat-item {
            animation: scaleIn 0.8s ease forwards;
        }

        .stat-item:nth-child(2) {
            animation-delay: 0.2s;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: bold;
        }

        .stat-label {
            opacity: 0.9;
        }

        /* Form */
        .hero-form {
            background: white;
            color: var(--text-dark);
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.2);
            animation: slideInRight 0.8s ease;
        }

        .hero-form h2 {
            margin-bottom: 0.5rem;
        }

        .hero-form p {
            color: var(--text-light);
            margin-bottom: 1.5rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--text-dark);
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 2px solid #e5e7eb;
            border-radius: 6px;
            font-size: 1rem;
            transition: border-color 0.3s, transform 0.3s;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-color);
            transform: scale(1.02);
        }

        /* Section Styling */
        .section {
            padding: 80px 20px;
        }

        .section-gray {
            background: var(--bg-gray);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-header h2 {
            font-size: 2rem;
            margin-bottom: 1rem;
            color: var(--text-dark);
        }

        .section-header p {
            font-size: 1.2rem;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
        }

        /* Cards */
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .card {
            background: white;
            /* padding: 2rem; */
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
        }

        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 40px rgb(171 155 99 / 55%);
        }

        .card-icon {
            width: 60px;
            height: 60px;
            background: var(--primary-color);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: white;
            font-size: 2rem;
        }

        .card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .card p {
            color: var(--text-light);
        }

        /* About Section */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            margin-top: 4rem;
        }

        .about-image {
            border-radius: 12px;
            overflow: hidden;
            /* box-shadow: 0 20px 60px rgba(0,0,0,0.15); */
        }

        .about-image img {
            width: 100%;
            /* height: 400px; */
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .about-image:hover img {
            transform: scale(1.05);
        }

        .checklist {
            list-style: none;
            margin: 2rem 0;
        }

        .checklist li {
            padding: 0.75rem 0;
            display: flex;
            align-items: start;
        }

        .checklist li::before {
            content: '✓';
            color: var(--primary-color);
            font-weight: bold;
            margin-right: 1rem;
            font-size: 1.5rem;
        }

        /* Products */
        .product-section {
            margin-bottom: 4rem;
        }

        .product-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 3rem;
        }

        .product-card {
            background: linear-gradient(176deg, #ac9b631a 0%, white 100%);
            border: 2px solid #ac9b6380;
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgb(171 155 99 / 55%);
            border-color: var(--primary-color);
        }

        .product-image {
            /* height: 200px; */
            overflow: hidden;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .product-card:hover .product-image img {
            transform: scale(1.1);
        }

        .product-content {
            padding: 1.5rem;
        }

        .product-features {
            list-style: none;
            margin: 1rem 0;
        }

        .product-features li {
            padding: 0.5rem 0;
            display: flex;
            align-items: center;
            font-size: 0.9rem;
        }

        .product-features li::before {
            content: '★';
            color: var(--primary-color);
            margin-right: 0.75rem;
        }

        /* Video Section */
        .video-section {
            /* background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%); */
            color: white;
        }

        .video-container {
            /* max-width: 1200px; */
            margin: 0 auto;
            position: relative;
            /* border-radius: 12px; */
            overflow: hidden;
            /* box-shadow: 0 20px 60px rgba(0,0,0,0.5); */
        }

        .video-thumbnail {
            position: relative;
            padding-top: 56.25%;
            background: #000;
        }

        .video-thumbnail img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            background: var(--primary-color);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            animation: pulse 2s ease-in-out infinite;
        }

        .play-button:hover {
            transform: translate(-50%, -50%) scale(1.1);
            box-shadow: 0 0 30px rgba(46, 205, 220, 0.5);
        }

        .play-button::after {
            content: '';
            width: 0;
            height: 0;
            border-left: 20px solid white;
            border-top: 12px solid transparent;
            border-bottom: 12px solid transparent;
            margin-left: 4px;
        }

        .video-features {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 3rem;
            text-align: center;
        }

        /* Testimonials */
        .testimonial-card {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            border: 2px solid #f0f0f0;
            transition: all 0.3s ease;
        }

        .testimonial-card:hover {
            border-color: var(--primary-color);
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(46, 205, 220, 0.15);
        }

        .stars {
            color: #fbbf24;
            margin-bottom: 1rem;
        }

        .testimonial-text {
            font-style: italic;
            color: var(--text-light);
            margin-bottom: 1.5rem;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .author-image {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
        }

        .author-name {
            font-weight: 600;
        }

        .author-role {
            font-size: 0.9rem;
            color: var(--text-light);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin-top: 4rem;
            text-align: center;
        }

        .stat-box {
            animation: scaleIn 0.8s ease forwards;
        }

        .stat-box h3 {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }

        /* Footer */
        .footer {
            background: #1a1a1a;
            color: white;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            padding: 4rem 0;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .contact-item {
            display: flex;
            align-items: start;
            gap: 1rem;
        }

        .contact-icon {
            width: 24px;
            height: 24px;
            color: var(--primary-color);
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-link {
            width: 40px;
            height: 40px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: white;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
        }

        .footer-form {
            background: #2d2d2d;
            padding: 2rem;
            border-radius: 12px;
        }

        .footer-bottom {
            border-top: 1px solid #333;
            padding: 1rem 0;
        }

        .footer-links {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-links h4 {
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links a {
            color: #999;
            text-decoration: none;
            transition: color 0.3s;
            display: block;
            padding: 0.25rem 0;
        }

        .footer-links a:hover {
            color: var(--primary-color);
        }

        .copyright {
            text-align: center;
            color: #999;
            border-top: 1px solid #333;
            padding-top: 2rem;
        }

        /* Mobile Bottom Bar */
        .mobile-bottom-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: white;
            box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
            padding: 1rem;
            display: none;
            gap: 1rem;
            z-index: 999;
            animation: slideInLeft 0.5s ease;
        }

        .mobile-bottom-bar .btn {
            flex: 1;
            text-align: center;
        }

        .btn-call {
            background: #10b981;
        }

        .btn-call:hover {
            background: #059669;
        }

        /* CTA Banner */
        .cta-banner {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            color: white;
            padding: 4rem 2rem;
            border-radius: 12px;
            text-align: center;
            margin-top: 4rem;
        }

        .cta-banner h3 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .cta-banner p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.95;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-menu,
            .nav-cta {
                display: none;
            }

            .menu-toggle {
                display: block;
            }
            a.menu-toggle.btn.btn-primary.nav-link {
    display: block;
}


            .hero-container,
            .about-grid,
            .footer-content {
                grid-template-columns: 1fr;
            }

            .hero-content h1 {
                font-size: 2.5rem;
            }

            .hero-stats {
                gap: 1.5rem;
            }

            .stats-grid,
            .footer-links {
                grid-template-columns: repeat(2, 1fr);
            }

            .section-header h2 {
                font-size: 2rem;
            }

            .mobile-bottom-bar {
                display: flex;
            }

            body {
                padding-bottom: 80px;
            }

            .product-header {
                flex-direction: column;
                align-items: start;
                gap: 1rem;
            }
        }

        /* Loading Animation */
        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

        .loading {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 3px solid rgba(255,255,255,0.3);
            border-radius: 50%;
            border-top-color: white;
            animation: spin 0.6s linear infinite;
        }


  .mission-infographic {
    padding: 80px;
    /*background: #ececec;*/
    color: #000000;
    position: relative;
    overflow: hidden;
  }

  .mission-infographic .container {
    max-width: 1200px;
    margin: auto;
    position: relative;
    z-index: 2;
  }

  .mission-infographic .header {
    text-align: center;
    margin-bottom: 60px;
  }

  .mission-infographic .header h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
  }

  .mission-infographic .header p {
    font-size: 18px;
    opacity: 0.9;
    margin: 0;
  }

  .mission-infographic .content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }

  .mission-infographic .card {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 40px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .mission-infographic .card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    background: no-repeat;
    border-bottom: none;
  }

  .mission-infographic .icon {
    width: 60px;
    height: 60px;
    background: #ac9b63;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .mission-infographic .icon svg {
    width: 30px;
    height: 30px;
    fill: #ffffff;
  }

  .mission-infographic .card h2 {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
  }

  .mission-infographic .card p {
    font-size: 17px;
    line-height: 1.6;
    margin: 0;
  }

  .mission-infographic .stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 40px;
  }

  .mission-infographic .stat {
    text-align: center;
  }

  .mission-infographic .stat-number {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
  }

  .mission-infographic .stat-label {
    font-size: 18px;
    opacity: 0.8;
  }

  /* Background visual elements */
  .visual-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
  }

  .circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    opacity: 0.1;
  }

  .circle-1 {
    width: 200px;
    height: 200px;
    top: -100px;
    right: -100px;
  }

  .circle-2 {
    width: 150px;
    height: 150px;
    bottom: -75px;
    left: -75px;
  }

  .circle-3 {
    width: 100px;
    height: 100px;
    top: 50%;
    left: 20%;
    transform: translateY(-50%);
  }

  /* Responsive */
  @media (max-width: 767px) {
    .mission-infographic {
      padding: 50px;
    }

    .mission-infographic .content {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 667px) {
.logo {
    width: 100% !important;
}

.logo img {
    width: 70%;
            padding-top: 10px;
}

.reel-video-sec {
    max-width: 900px;
    margin: 0 auto;
    display: block !important;
    background: #ac9b6338;
    border-radius: 10px;
        padding: 0px 0px 0px 0px !important;
}

  }

.logo img {
    padding-top: 10px;
}

.reel-video-sec {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    background: #ac9b63c7;
    border-radius: 10px;
    padding: 15px 0px 6px 15px;
    color: #fff;
}

  .text-center {
    text-align: center;
}