
        /* Base Styles */
        :root {
            --primary-color: #0a1172;
            --secondary-color: #1e3799;
            --accent-color: #4a69bd;
            --light-color: #f5f6fa;
            --dark-color: #2c3e50;
            --text-color: #333;
            --white: #fff;
            --gray: #f4f4f4;
            --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            overflow-x: hidden;
            background-color: var(--white);
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        section {
            padding: 100px 0;
            position: relative;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            line-height: 1.3;
            margin-bottom: 15px;
        }

        p {
            margin-bottom: 15px;
            font-weight: 300;
            font-size: 1.05rem;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        a {
            text-decoration: none;
            color: var(--primary-color);
            transition: var(--transition);
        }

        ul {
            list-style: none;
        }

        .btn {
            display: inline-block;
            background-color: var(--primary-color);
            color: var(--white);
            padding: 14px 30px;
            border-radius: 50px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: var(--transition);
            border: 2px solid var(--primary-color);
            cursor: pointer;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0%;
            height: 100%;
            background-color: rgba(255, 255, 255, 0.2);
            transition: var(--transition);
            z-index: -1;
        }

        .btn:hover::before {
            width: 100%;
        }

        .btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .btn-outline {
            background-color: transparent;
            color: var(--primary-color);
        }

        .btn-outline:hover {
            background-color: var(--primary-color);
            color: var(--white);
        }

        .section-header {
            text-align: center;
            margin-bottom: 70px;
        }

        .section-header h2 {
            font-size: 2.5rem;
            color: var(--primary-color);
            position: relative;
            display: inline-block;
            margin-bottom: 20px;
        }

        .section-header p {
            max-width: 700px;
            margin: 0 auto;
            color: #666;
        }

        .underline {
            height: 4px;
            width: 70px;
            background-color: var(--accent-color);
            margin: 0 auto;
            margin-top: 10px;
            position: relative;
        }

        .underline::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 15px;
            height: 4px;
            background-color: var(--primary-color);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { width: 15px; }
            50% { width: 40px; }
            100% { width: 15px; }
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: transparent;
            z-index: 1000;
            transition: var(--transition);
            padding: 20px 0;
        }

        header.scrolled {
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            padding: 15px 0;
        }

        header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            max-width: 180px;
            transition: var(--transition);
        }

        header.scrolled .logo {
            max-width: 160px;
        }

        .nav-links {
            display: flex;
        }

        .nav-links li {
            margin-left: 35px;
        }

        .nav-links a {
            color: var(--primary-color);
            font-weight: 500;
            position: relative;
            padding: 5px 0;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-color);
            transition: var(--transition);
        }

        .nav-links a:hover::after, .nav-links a.active::after {
            width: 100%;
        }

        .hamburger {
            display: none;
            cursor: pointer;
        }

        .hamburger span {
            display: block;
            width: 25px;
            height: 3px;
            background-color: var(--primary-color);
            margin: 5px 0;
            transition: var(--transition);
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            min-height: 700px;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            position: relative;
            overflow: hidden;
            padding: 0;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%230a1172" fill-opacity="0.05" d="M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,224C672,245,768,267,864,250.7C960,235,1056,181,1152,165.3C1248,149,1344,171,1392,181.3L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
            background-size: cover;
            background-position: bottom;
            opacity: 1;
            z-index: 0;
        }

        .hero .container {
            position: relative;
            z-index: 1;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .hero-content {
            flex: 1;
            padding-right: 50px;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            color: var(--primary-color);
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: var(--dark-color);
        }

        .hero-image {
            flex: 1;
            position: relative;
        }

        .hero-image img {
            max-width: 80%;
            border-radius: 10px;
            box-shadow: 0 20px 20px rgba(0, 0, 0, 0.15);
            transition: var(--transition);
        }

        .hero-image::before {
            content: '';
            position: absolute;
            top: -20px;
            left: -20px;
            width: 100%;
            height: 100%;
            border: 2px solid var(--primary-color);
            border-radius: 20px;
            z-index: -1;
            opacity: 0.3;
            animation: borderPulse 3s infinite;
        }

        @keyframes borderPulse {
            0% { transform: scale(1); opacity: 0.3; }
            50% { transform: scale(1.05); opacity: 0.1; }
            100% { transform: scale(1); opacity: 0.3; }
        }

        .hero-image img:hover {
            transform: scale(1.02) translateY(-10px);
            box-shadow: 0 30px 50px rgba(0, 0, 0, 0.2);
        }

        .hero-badges {
            display: flex;
            margin-top: 30px;
            gap: 20px;
        }

        .badge {
            display: flex;
            align-items: center;
            background-color: rgba(255, 255, 255, 0.8);
            padding: 10px 15px;
            border-radius: 50px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
        }

        .badge:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .badge i {
            color: var(--primary-color);
            font-size: 1.5rem;
            margin-right: 10px;
        }

        .badge span {
            font-weight: 500;
            color: var(--dark-color);
        }

        /* About Section */
        .about {
            background-color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .about::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 300px;
            height: 300px;
            background-color: rgba(10, 17, 114, 0.05);
            border-radius: 50%;
            transform: translate(150px, -150px);
            z-index: 0;
        }

        .about::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 200px;
            height: 200px;
            background-color: rgba(10, 17, 114, 0.05);
            border-radius: 50%;
            transform: translate(-100px, 100px);
            z-index: 0;
        }

        .about-content {
            display: flex;
            align-items: center;
            gap: 70px;
            position: relative;
            z-index: 1;
        }

        .about-image {
            flex: 1;
            position: relative;
        }

        .about-image img {
            border-radius: 20px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
        }

        .about-image::after {
            content: '';
            position: absolute;
            top: 20px;
            right: -20px;
            width: 100%;
            height: 100%;
            background-color: var(--primary-color);
            border-radius: 20px;
            z-index: -1;
            opacity: 0.1;
        }

        .about-image img:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 40px rgba(0, 0, 0, 0.15);
        }

        .about-text {
            flex: 1;
        }

        .about-text h3 {
            color: var(--primary-color);
            font-size: 1.8rem;
            margin-top: 20px;
            position: relative;
            padding-left: 15px;
        }

        .about-text h3::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background-color: var(--primary-color);
        }

        .stats-container {
            display: flex;
            justify-content: space-between;
            margin-top: 40px;
            flex-wrap: wrap;
            gap: 20px;
        }

        .stat-item {
            text-align: center;
            padding: 25px;
            background-color: var(--white);
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            flex: 1;
            min-width: 150px;
            position: relative;
            overflow: hidden;
        }

        .stat-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 0;
            background-color: var(--primary-color);
            transition: var(--transition);
        }

        .stat-item:hover::before {
            height: 100%;
        }

        .stat-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }

        .stat-item h4 {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 5px;
        }

        .stat-item p {
            color: var(--dark-color);
            font-weight: 500;
        }

        /* Products Section */
        .products {
            background-color: var(--light-color);
            position: relative;
            overflow: hidden;
        }

        .products::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%230a1172" fill-opacity="0.03" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,224C672,213,768,171,864,149.3C960,128,1056,128,1152,149.3C1248,171,1344,213,1392,234.7L1440,256L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z"></path></svg>');
            background-size: cover;
            background-position: top;
            opacity: 1;
            z-index: 0;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 40px;
            position: relative;
            z-index: 1;
        }

        .product-card {
            background-color: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            position: relative;
        }

        .product-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .product-image {
            height: 250px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #f8f9fa;
            position: relative;
        }

        .product-image::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 30%;
            background: linear-gradient(to top, rgba(0,0,0,0.05), transparent);
            z-index: 1;
        }

        .product-image img {
            max-height: 100%;
            max-width: 100%;
            object-fit: contain;
            transition: var(--transition);
            transform: scale(0.9);
        }

        .product-card:hover .product-image img {
            transform: scale(1);
        }

        .product-info {
            padding: 30px;
            position: relative;
        }

        .product-info::before {
            content: '';
            position: absolute;
            top: 0;
            left: 30px;
            width: 50px;
            height: 3px;
            background-color: var(--primary-color);
        }

        .product-info h3 {
            color: var(--primary-color);
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

        .features {
            margin: 25px 0;
        }

        .features li {
            margin-bottom: 12px;
            display: flex;
            align-items: flex-start;
        }

        .features li i {
            color: var(--primary-color);
            margin-right: 10px;
            margin-top: 5px;
            font-size: 0.8rem;
        }

        /* How It Works Section */
        .how-it-works {
            background-color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .how-it-works::before {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 300px;
            height: 300px;
            background-color: rgba(10, 17, 114, 0.05);
            border-radius: 50%;
            transform: translate(150px, 150px);
            z-index: 0;
        }

        .process-container {
            display: flex;
            align-items: center;
            gap: 70px;
            position: relative;
            z-index: 1;
        }

        .process-image {
            flex: 1;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
            overflow: hidden;
        }

        .process-image img {
            transition: var(--transition);
            width: 100%;
        }

        .process-image:hover img {
            transform: scale(1.05);
        }

        .steps-container {
            flex: 1;
        }

        .step {
            display: flex;
            margin-bottom: 40px;
            position: relative;
        }

        .step:last-child {
            margin-bottom: 0;
        }

        .step::after {
            content: '';
            position: absolute;
            top: 60px;
            left: 25px;
            width: 2px;
            height: calc(100% - 20px);
            background-color: var(--primary-color);
            opacity: 0.2;
        }

        .step:last-child::after {
            display: none;
        }

        .step-number {
            width: 50px;
            height: 50px;
            background-color: var(--primary-color);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.5rem;
            font-weight: 600;
            margin-right: 25px;
            flex-shrink: 0;
            position: relative;
            z-index: 2;
            box-shadow: 0 5px 15px rgba(10, 17, 114, 0.2);
            transition: var(--transition);
        }

        .step:hover .step-number {
            transform: scale(1.1);
            box-shadow: 0 10px 20px rgba(10, 17, 114, 0.3);
        }

        .step-content {
            background-color: var(--white);
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            flex: 1;
        }

        .step:hover .step-content {
            transform: translateX(10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }

        .step-content h3 {
            color: var(--primary-color);
            margin-bottom: 10px;
        }

        .step-content p {
            margin-bottom: 0;
        }

        /* Team Section */
        .team {
            background-color: var(--light-color);
            position: relative;
            overflow: hidden;
        }

        .team::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%230a1172" fill-opacity="0.03" d="M0,160L48,170.7C96,181,192,203,288,202.7C384,203,480,181,576,154.7C672,128,768,96,864,106.7C960,117,1056,171,1152,197.3C1248,224,1344,224,1392,224L1440,224L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
            background-size: cover;
            background-position: bottom;
            opacity: 1;
            z-index: 0;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            position: relative;
            z-index: 1;
        }

        .team-member {
            background-color: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
            text-align: center;
            transition: var(--transition);
            position: relative;
        }
        


        .team-member:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .member-image {
            height: 250px;
            overflow: hidden;
            position: relative;
        }

        .member-image::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 30%;
            background: linear-gradient(to top, rgba(0,0,0,0.1), transparent);
            z-index: 1;
        }

        .member-image img {
            width: 99%;
            height: 99%;
            object-fit: scale-down;
            transition: var(--transition);
        }

        .team-member:hover .member-image img {
            transform: scale(1.05);
        }

        .team-member-info {
            padding: 25px;
            position: relative;
        }

        .team-member-info::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 3px;
            background-color: var(--primary-color);
        }

        .team-member h3 {
            color: var(--primary-color);
            margin-bottom: 5px;
        }

        .team-member p {
            color: var(--dark-color);
            margin-bottom: 20px;
            font-weight: 500;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 15px;
        }

        .social-links a {
            width: 35px;
            height: 35px;
            background-color: var(--light-color);
            color: var(--primary-color);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: var(--transition);
        }

        .social-links a:hover {
            background-color: var(--primary-color);
            color: var(--white);
            transform: translateY(-3px);
        }

        /* Impact Section */
        .impact {
            background-color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .impact::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%230a1172" fill-opacity="0.03" d="M0,288L48,272C96,256,192,224,288,197.3C384,171,480,149,576,165.3C672,181,768,235,864,250.7C960,267,1056,245,1152,224C1248,203,1344,181,1392,170.7L1440,160L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z"></path></svg>');
            background-size: cover;
            background-position: top;
            opacity: 1;
            z-index: 0;
        }

        .impact-content {
            display: flex;
            align-items: center;
            gap: 70px;
            position: relative;
            z-index: 1;
        }

        .impact-text {
            flex: 1;
        }

        .impact-image {
            flex: 1;
            position: relative;
        }

        .impact-image img {
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
        }

        .impact-image::before {
            content: '';
            position: absolute;
            bottom: -20px;
            right: -20px;
            width: 100%;
            height: 100%;
            border: 2px solid var(--primary-color);
            border-radius: 20px;
            z-index: -1;
            opacity: 0.3;
        }

        .impact-image img:hover {
            transform: scale(1.02) translateY(-10px);
            box-shadow: 0 30px 50px rgba(0, 0, 0, 0.15);
        }

        /* Contact Section */
        .contact {
            background-color: var(--light-color);
            position: relative;
            overflow: hidden;
        }

        .contact::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 300px;
            height: 300px;
            background-color: rgba(10, 17, 114, 0.05);
            border-radius: 50%;
            transform: translate(150px, -150px);
            z-index: 0;
        }

        .contact-content {
            display: flex;
            gap: 50px;
            position: relative;
            z-index: 1;
        }

        .contact-info, .contact-form {
            flex: 1;
        }

        .contact-info {
            background-color: var(--white);
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
            position: relative;
            overflow: hidden;
            transition: var(--transition);
        }

        .contact-info:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .contact-info::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background-color: var(--primary-color);
        }

        .contact-info h3 {
            color: var(--primary-color);
            font-size: 1.8rem;
            margin-bottom: 25px;
        }

        .info-item {
            display: flex;
            margin-bottom: 25px;
        }

        .info-item i {
            width: 50px;
            height: 50px;
            background-color: var(--light-color);
            color: var(--primary-color);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-right: 20px;
            flex-shrink: 0;
            font-size: 1.2rem;
            transition: var(--transition);
        }

        .info-item:hover i {
            background-color: var(--primary-color);
            color: var(--white);
            transform: scale(1.1);
        }

        .info-item h4 {
            margin-bottom: 5px;
            color: var(--dark-color);
        }

        .contact-form {
            background-color: var(--white);
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
        }

        .contact-form:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--dark-color);
        }

        .form-group input, .form-group textarea {
            width: 100%;
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-family: inherit;
            font-size: 1rem;
            transition: var(--transition);
            background-color: var(--light-color);
        }

        .form-group input:focus, .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(10, 17, 114, 0.1);
            background-color: var(--white);
        }

        .map-container {
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        /* Footer */
        footer {
            background-color: var(--dark-color);
            color: var(--white);
            padding: 80px 0 20px;
            position: relative;
            overflow: hidden;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 10px;
            background: linear-gradient(to right, var(--primary-color), var(--accent-color));
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 40px;
            margin-bottom: 60px;
        }

        .footer-logo {
            flex: 1;
            min-width: 250px;
        }

        .footer-logo img {
            max-width: 180px;
            margin-bottom: 20px;
        }

        .footer-links {
            flex: 1;
            min-width: 200px;
        }

        .footer-links h3, .footer-newsletter h3 {
            color: var(--white);
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
            font-size: 1.3rem;
        }

        .footer-links h3::after, .footer-newsletter h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--accent-color);
        }

        .footer-links ul li {
            margin-bottom: 12px;
        }

        .footer-links ul li a {
            color: #ccc;
            transition: var(--transition);
            display: inline-block;
        }

        .footer-links ul li a:hover {
            color: var(--white);
            transform: translateX(5px);
        }

        .footer-newsletter {
            flex: 1;
            min-width: 300px;
        }

        .footer-newsletter form {
            display: flex;
            margin-top: 20px;
        }

        .footer-newsletter input {
            flex: 1;
            padding: 15px;
            border: none;
            border-radius: 8px 0 0 8px;
            font-family: inherit;
            font-size: 1rem;
        }

        .footer-newsletter button {
            border-radius: 0 8px 8px 0;
            padding: 0 25px;
            border: none;
            background-color: var(--primary-color);
        }

        .footer-newsletter button:hover {
            background-color: var(--accent-color);
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-bottom-links a {
            color: #ccc;
            margin-left: 20px;
            transition: var(--transition);
        }

        .footer-bottom-links a:hover {
            color: var(--white);
        }

        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--primary-color);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 99;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background-color: var(--accent-color);
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Responsive Styles */
        @media screen and (max-width: 1200px) {
            .hero-content h1 {
                font-size: 3rem;
            }
        }

        @media screen and (max-width: 992px) {
            .hero .container, .about-content, .process-container, .impact-content, .contact-content {
                flex-direction: column;
            }
            
            .hero-content, .about-text, .steps-container, .impact-text, .contact-info {
                padding-right: 0;
                margin-bottom: 50px;
            }
            
            .hero-image, .about-image, .process-image, .impact-image {
                margin-top: 30px;
            }
            
            .stats-container {
                flex-wrap: wrap;
                gap: 20px;
            }
            
            .stat-item {
                flex: 1;
                min-width: 150px;
            }

            .hero {
                height: auto;
                padding: 150px 0 80px;
            }
        }

        .upcoming-products-section {
        padding: 40px;
        background-color: #f9f9f9;
        
        }

        .product-row {
        display: flex;
        justify-content: center;
        gap: 30px;
        flex-wrap: wrap; /* Optional: allows responsiveness */
        margin-top: 20px;
        }

        .product-card {
        background-color: #fff;
        border: 1px solid #ddd;
        border-radius: 10px;
        padding: 20px;
        max-width: 500px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .product-card img {
        width: 100%;
        border-radius: 8px;
        }

        .product-card h3 {
        margin: 15px 0 5px;
        font-size: 1.2em;
        }

        .product-card p {
        color: #888;
        }

        @media screen and (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background-color: var(--white);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: var(--transition);
                z-index: 999;
            }
            
            .nav-links.active {
                left: 0;
            }
            
            .nav-links li {
                margin: 15px 0;
            }
            
            .hamburger {
                display: block;
            }
            
            .hamburger.active span:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
            }
            
            .hamburger.active span:nth-child(2) {
                opacity: 0;
            }
            
            .hamburger.active span:nth-child(3) {
                transform: rotate(-45deg) translate(7px, -6px);
            }
            
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .section-header h2 {
                font-size: 2rem;
            }
            
            .footer-content {
                flex-direction: column;
            }

            .products-grid {
                grid-template-columns: 1fr;
            }
        }
        .founders-row {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px; /* Adjust spacing between cards */
            margin-bottom: 40px;
        }
        .interns-row{
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px; /* Adjust spacing between cards */
            margin-bottom: 40px;
            grid-template-columns: repeat(4, 1fr);
        }

        @media screen and (max-width: 576px) {
            .team-grid {
                grid-template-columns: repeat(4, 1fr);
            }

            
            
            .footer-newsletter form {
                flex-direction: column;
            }
            
            .footer-newsletter input, .footer-newsletter button {
                border-radius: 8px;
            }
            
            .footer-newsletter button {
                margin-top: 10px;
                width: 100%;
            }
            
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            
            .footer-bottom-links {
                margin-top: 15px;
            }
            
            .footer-bottom-links a {
                margin: 0 10px;
            }

            .hero-badges {
                flex-direction: column;
            }
        }

        #UpProducts{
            text-align: center;
        }

        /* Developer Credit Styles */
        .developer-credit {
            margin-top: 25px;
            padding: 20px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
        }

        .credit-text {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
            margin: 0;
            font-weight: 300;
        }

        .company-link {
            color: #4a90e2;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        .company-link:hover {
            color: #66a3ff;
            text-decoration: underline;
        }

        .company-link::after {
            content: '↗';
            font-size: 0.8em;
            margin-left: 4px;
            opacity: 0.6;
            transition: all 0.3s ease;
        }

        .company-link:hover::after {
            opacity: 1;
            transform: translateX(2px) translateY(-2px);
        }



        /* Responsive styles for developer credit */
        @media screen and (max-width: 768px) {
            .developer-credit {
                margin-top: 20px;
                padding: 15px 0;
            }

            .credit-text {
                font-size: 0.85rem;
            }
        }

        @media screen and (max-width: 576px) {
            .credit-text {
                font-size: 0.8rem;
            }

            .company-link::after {
                font-size: 0.7em;
            }
        }