        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            background: url('./assets/images/BG2.jpg');
            background-size: contain;
            color: #333;
            overflow-x: hidden;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            padding: 1rem 2rem;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        nav.scrolled {
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

.logo {
    font-size: clamp(1.2rem, 4vw, 2rem); 
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    cursor: pointer;
    white-space: nowrap;
}

@media (max-width: 480px) {
    .logo {
        font-size: clamp(1.5rem, 5vw, 1.6rem);
    }
}


        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 0.5rem;
        }

        .mobile-menu-toggle span {
            width: 25px;
            height: 3px;
            background: #667eea;
            margin: 3px 0;
            transition: 0.3s;
            border-radius: 3px;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: all 0.3s;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            transition: width 0.3s;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        /* Hero Section with Animation */
.hero {
    margin-top: 80px;
    padding: clamp(4rem, 10vw, 8rem) 2rem; /* Responsive padding */
    background-image: url('./assets/images/VTB.jpg');
    background-size: cover;       /* makes it responsive */
    background-position: center;  /* keeps subject centered */
    background-repeat: no-repeat; 
    background-attachment: scroll; /* avoid issues on mobile */
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero {
        background-position: center top; /* adjusts crop on mobile */
        padding: 5rem 1.5rem; /* reduce height on small screens */
    }
}


        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: pulse 15s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.2); opacity: 0.8; }
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            animation: slideUp 0.8s ease;
            color: #000000;
        }

        @keyframes slideUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .hero-content p {
            font-size: 1.3rem;
            max-width: 900px;
            margin: 0 auto 2.5rem;
            opacity: 0.95;
            color: #ffffff;
            animation: slideUp 0.8s ease 0.2s backwards;
        }

        .cta-button {
            display: inline-block;
            padding: 1.2rem 3rem;
            background: white;
            color: #667eea;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            animation: slideUp 0.8s ease 0.4s backwards;
        }

        .cta-button:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 40px rgba(0,0,0,0.3);
        }

        /* Trusted By Section with Auto-Scroll */
/* Trusted Section */
.trusted-by {
    padding: 60px 20px;
    background: #f8faff;
    text-align: center;
}
.trust-text h2 {
    font-size: clamp(34px, 2vw, 36px);
    font-weight: 700;
    color: #6a34c5;  /* Purple color exactly like the screenshot */
    text-align: center;
    margin-bottom: 50px;
}

/* Slider Container */
.logo-slider {
    overflow: hidden;
    width: 100%;
    position: relative;
}

/* Scrolling Track */
.logo-track {
    display: flex;
    gap: 90px;
    align-items: center;
    animation: scrollLogos 8s linear infinite;
    /* width: max-content; */

}

/* Logo + Name Block */
.logo-item {
    text-align: center;
    flex-shrink: 0;
}

/* Logos */
.logo-item img {
    width: clamp(70px, 8vw, 80px);
    height: clamp(50px, 8vw, 80px);
    object-fit: contain;
    margin-bottom: 8px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
}

/* Names */
.logo-item p {
    font-size: clamp(13px, 2.4vw, 18px);
    font-weight: 500;
    color: #334155;
}

@keyframes scrollLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Mobile Adjustments */
@media (max-width: 600px) {
    .logo-track {
        animation-duration: 5s;
        gap: 40px;
    }
}


        /* Section Styles */
        section {
            padding: 6rem 2rem;
        }

        .section-title {
            font-size: 2.8rem;
            text-align: center;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .section-subtitle {
            text-align: center;
            color: #666;
            margin-bottom: 4rem;
            font-size: 1.1rem;
        }

        /* About Section */
        .about {
            background: #fff;
            max-width: 1200px;
            margin: 0 auto;
        }

        .about-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }

        .about-text h2 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            color: #6a48b9;
        }

        .about-text p {
            color: #555;
            margin-bottom: 1.5rem;
            line-height: 1.9;
            font-size: 1.05rem;
        }

        .about-btn {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
        }

        .about-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
        }

        .about-image {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .about-image img {
            width: 100%;
            max-width: 550px;
            border-radius: 10px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
        }

        /* Products Grid with Enhanced Cards */
        .products {
            background: linear-gradient(180deg, #f7fafc 0%, #ffffff 100%);
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .product-card {
            padding: 2.5rem;
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .product-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            transform: scaleX(0);
            transition: transform 0.3s;
        }

        .product-card:hover::before {
            transform: scaleX(1);
        }

        .product-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 60px rgba(102, 126, 234, 0.15);
        }

        .product-img {
            width: 260px;
            height: 190px;
            margin-bottom: 1.5rem;
            transition: transform 0.3s;
        }

        .product-card:hover .product-img {
            transform: scale(1.1) rotate(5deg);
        }

        .product-card h3 {
            margin-bottom: 1rem;
            font-size: 1.4rem;
            color: #222;
        }

        .product-card p {
            color: #666;
            line-height: 1.8;
        }

/* Section */
.services {
    padding: 50px 30px;
    text-align: center;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
}

.section-subtitle {
    color: #666;
    font-size: 18px;
    margin-bottom: 40px;
}

/* Services Grid - 2 cards per row */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: auto;
    padding: 0 20px;
}

/* Mobile: 1 card per row */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
                max-width: 500px;  /* Perfect for mobile */

    }
}

/* Card */
.service-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0,0,0,0.10);
    transition: 0.3s ease;
    width: 100%;
    max-width: 460px;   /* Prevents oversized cards */
     height: 480px;           /* ⭐ increased card height */

    margin: auto;
}

/* Hover */
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 45px rgba(0,0,0,0.15);
}

/* Top Image */
.service-img-top {
    width: 100%;
    height: 250px;   /* Perfect height visually */
    object-fit: cover;
}

/* Content */
.service-content {
    padding: 25px 30px;
    text-align: center;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #1e2a47;
    flex: 1;   /* ensures content fills the new height */

}

.service-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

/* Read More link */
.read-more {
    display: inline-block;
    margin-top: 15px;
    font-weight: 600;
    color: #5a72f1;
}



        /* Benefits with Gradient Cards */
        .benefits {
            background: linear-gradient(180deg, #f7fafc 0%, #ffffff 100%);
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .benefit-card {
            padding: 2.5rem;
            background: white;
            border-radius: 20px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            text-align: center;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .benefit-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
            opacity: 0;
            transition: opacity 0.3s;
        }

        .benefit-card:hover::after {
            opacity: 1;
        }

        .benefit-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
        }

        .benefit-icon {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 1;
        }

        .benefit-card h4 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: #222;
            position: relative;
            z-index: 1;
        }

        .benefit-card p {
            color: #666;
            line-height: 1.8;
            position: relative;
            z-index: 1;
        }

        /* Team Section with Layout */
        .team {
            background: white;
        }

        .team-grid {
            display: grid;
            gap: 3rem;
            max-width: 1000px;
            margin: 0 auto 3rem;
        }

        .top-row {
            grid-template-columns: repeat(2, 1fr);
        }

        .middle-row,
        .bottom-row {
            grid-template-columns: repeat(3, 1fr);
        }

        .team-member {
            padding: 2rem;
            background: #f9f9f9;
            border-radius: 20px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            text-align: center;
            transition: all 0.3s;
            border: 2px solid transparent;
        }

        .team-member:hover {
            transform: translateY(-10px);
            background: white;
            border-color: rgba(102, 126, 234, 0.3);
            box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
        }

        .team-member.highlight {
            border-color: #667eea;
            background: linear-gradient(135deg, rgba(102,126,234,0.05), rgba(118,75,162,0.05));
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
        }

        .member-photo {
            width: 200px;
            height: 200px;
            border-radius: 5%;
            margin: 0 auto 1.5rem;
            border: 4px solid #e0e0e0;
            transition: transform 0.3s;
        }

        .team-member:hover .member-photo {
            transform: scale(1.05);
            border-color: #667eea;
        }

        .team-member h3 {
            font-size: 1.3rem;
            color: #222;
            margin-bottom: 0.5rem;
        }

        .member-role {
            font-weight: 600;
            color: #667eea;
            margin-bottom: 1rem;
            font-size: 1rem;
        }

        .member-bio {
            color: #666;
            line-height: 1.7;
        }

        /* Contact Section */
        .contact {
            background: linear-gradient(180deg, #f7fafc 0%, #ffffff 100%);
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .contact-item {
            padding: 1rem;
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.3s;
        }

        .contact-item.clickable {
            cursor: pointer;
        }

        .contact-item.clickable:hover {
            transform: translateX(15px);
            box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
        }

        .contact-icon {
            font-size: 1.5rem;
            margin-right: 1rem;
        }

        .contact-item h4 {
            margin-right: 1rem;
            margin-bottom: 0.8rem;
            font-size: 1.3rem;
            color: #222;
        }

        .contact-item p {
            color: #666;
            margin: 0.5rem 0;
            font-size: 1.05rem;
        }

        .contact-form {
            background: white;
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        }

        .form-input, .form-textarea {
            width: 100%;
            padding: 1.2rem;
            margin-bottom: 1.5rem;
            border: 2px solid #e2e8f0;
            border-radius: 10px;
            font-size: 1rem;
            transition: border-color 0.3s;
        }

        .form-input:focus, .form-textarea:focus {
            outline: none;
            border-color: #667eea;
        }

        .submit-button {
            width: 100%;
            padding: 1.2rem;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
        }

        .submit-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
        }

        /* Footer */
        footer {
            background: #1a202c;
            color: white;
            padding: 4rem 2rem 2rem;
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto 3rem;
        }

        .footer-about h3,
        .footer-links h4,
        .footer-contact h4,
        .footer-newsletter h4 {
            color: #fff;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }

        .footer-about p {
            color: rgba(255,255,255,0.8);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a,
        .footer-contact p {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            transition: color 0.3s;
            cursor: pointer;
        }

        .footer-links a:hover {
            color: #667eea;
        }

        .footer-newsletter p {
            color: rgba(255,255,255,0.8);
            margin-bottom: 1rem;
        }

        .newsletter-form input {
            width: 100%;
            padding: 1rem;
            border-radius: 10px;
            border: none;
            margin-bottom: 1rem;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.7);
        }

        .footer-bottom a {
            color: #667eea;
            text-decoration: none;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .mobile-menu-toggle {
                display: flex;
            }

            .nav-links {
                position: fixed;
                left: -100%;
                top: 70px;
                flex-direction: column;
                background-color: white;
                width: 100%;
                text-align: center;
                transition: 0.3s;
                box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
                padding: 2rem 0;
                gap: 0;
            }

            .nav-links.active {
                left: 0;
            }

            .nav-links li {
                padding: 1rem 0;
                border-bottom: 1px solid #f0f0f0;
            }

            .hero-content h1 {
                font-size: 2.2rem;
            }

            .hero-content p {
                font-size: 1.1rem;
            }

            .about-container,
            .contact-container {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 3rem;
            }

            .products-grid,
            .services-grid,
            .benefits-grid {
                grid-template-columns: 1fr;
            }

            .top-row,
            .middle-row,
            .bottom-row {
                grid-template-columns: 1fr;
            }

            .section-title {
                font-size: 2.2rem;
            }

            .footer-container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .logo-item {
                width: 150px;
                margin: 0 15px;
            }
        }

        @media (min-width: 769px) and (max-width: 1024px) {
            .products-grid,
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .middle-row,
            .bottom-row {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1440px) {
            .products-grid,
            .services-grid {
                max-width: 1400px;
            }
        }

        @media (min-width: 2560px) {
            body {
                font-size: 20px;
            }

            .hero-content h1 {
                font-size: 5rem;
            }

            .products-grid,
            .services-grid {
                max-width: 2400px;
            }
        }