    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    html {
        scroll-behavior: smooth;
      }
    body {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        overflow-x: hidden !important;
    }

    /* header section */
    .video-header-container {
        position: relative;
        height: 90vh;
        width: 100%;
        overflow: hidden;
    }

    .video-video-background {
        position: absolute;
        top: 50%;
        left: 50%;
        min-width: 100%;
        min-height: 100%;
        width: auto;
        height: auto;
        transform: translateX(-50%) translateY(-50%);
        z-index: -1;
        object-fit: cover;
    }

    .video-header-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
    }

    .video-header-content {
        position: relative;
        color: white;
        text-align: center;
      
      max-width:950px;
        margin: 0 auto;
        top: 50%;
        transform: translateY(-50%);
    }

    .video-header-content h1 {
        font-size: 3.5rem;
        margin-bottom: 1rem;
        font-family: Arial, sans-serif;
    }

    .video-header-content p {
        font-size: 1.3rem;
        color:white;
        font-family: Arial, sans-serif;
    }
@media (max-width: 768px) {
    .video-header-content h1 {
        font-size: 2.5rem; /* Reduce font size for smaller screens */
    }

    .video-header-content p {
        font-size: 1rem; /* Adjust paragraph text size */
    }
      .video-header-content {
        margin-top:15px;
    }
    .video-cta-button {
     margin:10px;   
     width:100px;
    padding: 7px 33px;
    }
}

@media (max-width: 480px) {
    .video-header-content h1 {
        font-size: 2rem; /* Further reduce for very small screens */
    }

    .video-header-content p {
        font-size: 1.0rem;
    }
  
}
    .video-cta-button {
        display: flex;
        width:155px;
        padding: 15px 30px;
        background-color: #1e3a8a;
        color: white;
        text-decoration: none;
        border-radius: 5px;
        margin-top:15px;
        font-size: 1.1rem;
        transition: background-color 0.3s ease;
    }

    .video-cta-button:hover {
        background-color: #1976D2;
    }
    .header-slide-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        color: rgb(238, 234, 234);
        z-index: 2;
        width: 80%;
        max-width: 800px;
        padding: 20px;
    }
    
    /* Define animations */
    @keyframes fadeInUp {
        0% {
        opacity: 0;
        transform: translateY(20px);
        }
        100% {
        opacity: 1;
        transform: translateY(0);
        }
    }
    
    /* Apply animations with delay */
    .header-slide-title {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
        animation: fadeInUp 0.5s ease forwards 0.3s;
    }
    
    .header-slide-description {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        animation: fadeInUp 0.5s ease forwards 0.5s;
    }
    
    .header-slide-button {
        display: inline-block;
        padding: 12px 30px;
        background: #2563eb;
        color: white;
        text-decoration: none;
        border-radius: 50px;
        font-weight: 500;
        animation: fadeInUp 0.5s ease forwards 0.7s;
    }
    


    /* about section */
    .about-section {
        padding: 80px 0;
        background-color: #f9f9f9;
        font-family: 'Arial', sans-serif;
    }

    .about-container {
        max-width: 1315px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .about-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: center;
    }

    .about-content {
        padding-right: 20px;
    }

    .about-content h2 {
        color: #1e3a8a;
        font-size: 36px;
        font-weight:700;
        margin-bottom: 20px;
        position: relative;
    }

    /* .about-content h2:after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 60px;
        height: 3px;
        background-color: #3b82f6;
    } */

    .about-content p {
        color: #000000;
        line-height: 1.8;
        margin-bottom: 20px;
    }

    .about-features {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-top: 30px;
    }

    .about-feature-item {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .about-feature-icon {
        width: 50px;
        height: 50px;
        background-color: #dbeafe;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #1e3a8a;
        font-size: 24px;
    }

    .about-feature-text {
        font-weight: 600;
        color: #1e3a8a;
    }

    .about-image {
        position: relative;
        border-radius: 10px;
        overflow: hidden;
    }

    .about-image img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 10px;
    }

    .about-experience-badge {
        position: absolute;
        bottom: 30px;
        left: -20px;
        background-color: #1e3a8a;
        color: white;
        padding: 15px 25px;
        border-radius: 5px;
        font-weight: bold;
    }

    @media (max-width: 768px) {
        .about-grid {
            grid-template-columns: 1fr;
        }

        .about-content {
            padding-right: 0;
        }

        .about-features {
            grid-template-columns: 1fr;
        }
        .about-content p{
            font-size:1.0rem;     
            }
    }
    /* about section */


    /* need help */
    .help-section-main{
        background-color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 50vh;
    }

    .help-section {
        max-width: 1200px;
        margin: 40px auto;
        padding: 20px;
        text-align: center;
    }

    .help-section h2 {
        font-size: 30px;
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: 30px;
    }

    .help-cards-container {
        display: flex;
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .help-card {
        background-color: #fff;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        width: 180px;
        padding: 20px;
        text-align: center;
        box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
        transition: box-shadow 0.3s;
    }

    .help-card:hover {
        box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
    }

    .help-card img {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
        object-fit: contain;
    }

    .help-card h3 {
        font-size: 1.3rem;
        font-weight: 600;
        color: #333;
        margin-bottom: 5px;
    }

    .help-card p {
        font-size: 13px;
        color: #27ae60;
        font-weight: bold;
        margin-top: 5px;
    }
    @media (max-width: 768px) {
        .help-card {
            background-color: #fff;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            width: 280px;
            padding: 20px;
            text-align: center;
            box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
            transition: box-shadow 0.3s;
        }
    }
    /* need help */

    /* new launch */
    .card-slide-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 50px 15px;
    }

    .card-slide-container h1 {
        font-size: clamp(24px, 4vw, 28px);
        font-weight: bold;
        color: #000;
        margin-bottom: 24px;
    }

    .card-slide-carousel-container {
        position: relative;
        padding-bottom: 60px;
    }

    .card-slide-products-wrapper {
        display: flex;
        gap: clamp(12px, 2vw, 20px);
        overflow-x: hidden;
        scroll-behavior: smooth;
        padding: 10px 0;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .card-slide-product-card {
        min-width: calc(25% - 15px);
        padding: clamp(16px, 3vw, 24px);
        border-radius: 16px;
        flex: 0 0 auto;
        transition: all 0.3s ease;
        scroll-snap-align: start;
        position: relative;
        overflow: hidden;
    }

    .card-slide-product-card::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(45deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .card-slide-product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .card-slide-product-card:hover::after {
        opacity: 1;
    }

    .card-slide-product-card:nth-child(odd) {
        background-color: #F5F9FF;
    }

    .card-slide-product-card:nth-child(even) {
        background-color: #FFF5F5;
    }

    .card-slide-category {
        font-size: clamp(10px, 1.5vw, 12px);
        font-weight: 600;
        margin-bottom: 8px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .card-slide-water-purifiers {
        color: #0066CC;
    }

    .card-slide-robotic-vacuum {
        color: #28A745;
    }

    .card-slide-air-purifiers {
        color: #DC3545;
    }

    .card-slide-product-title {
        font-size: clamp(18px, 2.5vw, 24px);
        font-weight: bold;
        color: #000;
        margin-bottom: 8px;
        line-height: 1.2;
    }

    .card-slide-product-description {
        font-size: clamp(12px, 1.8vw, 14px);
        color: #666;
        margin-bottom: 12px;
    }

    .card-slide-price {
        font-size: clamp(14px, 2vw, 16px);
        color: #000;
        font-weight: 600;
        margin-bottom: 24px;
    }

    .card-slide-product-image {
        width: 100%;
        height: clamp(180px, 30vw, 240px);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.3s ease;
    }

    .card-slide-product-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        transition: transform 0.3s ease;
    }

    .card-slide-product-card:hover .card-slide-product-image img {
        transform: scale(1.05);
    }

    .card-slide-navigation {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 10px;
        padding: 10px;
        z-index: 10;
    }

    .card-slide-nav-button {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: #fff;
        border: 1px solid #ddd;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        color: #666;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
        -webkit-tap-highlight-color: transparent;
    }

    .card-slide-nav-button:hover {
        background: #f5f5f5;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    }

    .card-slide-nav-button:active {
        transform: translateY(0);
    }

    .card-slide-nav-button:disabled {
        opacity: 0.5;
        cursor: not-allowed;
        transform: none;
        box-shadow: none;
    }

    /* Mobile-first responsive design */
    @media (max-width: 1200px) {
        .card-slide-product-card {
            min-width: calc(33.333% - 14px);
        }
    }

    @media (max-width: 900px) {
        .card-slide-product-card {
            min-width: calc(50% - 10px);
        }
        .card-slide-container {
            padding: 0 10px;
        }
    }

    @media (max-width: 600px) {
        .card-slide-product-card {
            min-width: calc(100% - 10px);
        }
        .card-slide-navigation {
            bottom: 10px;
        }
        .card-slide-nav-button {
            width: 36px;
            height: 36px;
            font-size: 16px;
        }
    }

    /* Add touch scrolling indicator for mobile */
    @media (hover: none) {
        .card-slide-products-wrapper::after {
            content: '';
            position: absolute;
            bottom: 70px;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 4px;
            background: rgba(0,0,0,0.1);
            border-radius: 2px;
            animation: scrollIndicator 1.5s infinite;
        }

        @keyframes scrollIndicator {
            0% { transform: translateX(-70px); }
            100% { transform: translateX(70px); }
        }
    }

    /* new launch */

    /* why buy */
    .why-buy-section {
        max-width: 1400px;
        margin: 40px auto;
        padding: 20px;
        text-align: center;
    }

    .why-buy-section h2 {
        font-size: 28px;
        font-weight: 700;
        text-align: center;
        margin-bottom: 30px;
        color: #333;
    }

    .why-buy-cards-container {
        display: flex;
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .why-buy-card {
        background-color: #fff;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        width: 300px;
        padding: 20px;
        text-align: left;
        box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
        transition: box-shadow 0.3s;
    }

    .why-buy-card:hover {
        box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
    }

    .why-buy-icon {
        font-size: 26px;
        color: #639bff;
        margin-bottom: 15px;
        display: inline-block;
    }

    .why-buy-card h3 {
        font-size: 18px;
        font-weight: 600;
        color: #333;
        margin-bottom: 8px;
    }

    .why-buy-card p {
        font-size: 14px;
        color: #666;
        line-height: 1.5;
    }

    /* why buy */

    /* mechine section */
    .mechine-container {
        display: flex;
        min-height: 100vh;
        width: 100%;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    }

    @media (max-width: 768px) {
        .mechine-container {
        flex-direction: column;
        }
    }

    .mechine-product-card {
        flex: 1;
        padding: 5% 3%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .mechine-aur {
        background: #79a3d1;
        
    }

    .mechine-blaze {
        
        background: #224c6c;
    
        color: white;
    }

    .mechine-product-image-container {
        width: 100%;
        max-width: 450px;
        height: 240px;
        position: relative;
        margin: 2rem auto;
    }

    .mechine-product-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        max-height: 260px;
        object-fit: contain;
        transition: transform 0.3s ease;
    }

    .mechine-product-image:hover {
        transform: scale(1.05);
    }

    .mechine-title {
    
        color: #fef3c7;
        margin-bottom: 1.5rem;
        font-weight: 400;
        line-height: 1.2;
        max-width: 90%;
    }

    .mechine-product-name {
        font-size: clamp(2.7rem, 3vw, 2rem);
        margin: 1rem 0;
        color:white;
        font-weight: 700;
    }

    .mechine-price {
        font-size: clamp(1rem, 2.5vw, 1.2rem);
        margin: 0.5rem 0;
        font-weight: 500;
        color:white;
    }

    .mechine-discount {
        font-size: clamp(0.8rem, 2vw, 0.9rem);
        color: rgba(255, 255, 255, 0.8);
        margin: 0.5rem 0 1.5rem 0;
    }

    .mechine-shop-button {
        background: #1a1a1a;
        color: white;
        padding: clamp(0.8rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2rem);
        border-radius: 9999px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
        border: 2px solid transparent;
    }

    .mechine-shop-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .mechine-blaze .mechine-shop-button {
        background: white;
        color: #1a1a1a;
    }

    .mechine-blaze .mechine-shop-button:hover {
        background: transparent;
        color: white;
        border-color: white;
    }

    .mechine-whatsapp-button {
        position: fixed;
        bottom: 20px;
        right: 20px;
        width: clamp(40px, 8vw, 60px);
        height: clamp(40px, 8vw, 60px);
        background: #25D366;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        transition: transform 0.3s ease;
        z-index: 1000;
    }

    .mechine-whatsapp-button:hover {
        transform: scale(1.1);
    }

    /* Additional Media Queries for Better Responsiveness */
    @media (max-width: 480px) {
        .mechine-product-card {
        padding: 2rem 1rem;
        }

        .mechine-title {
        font-size: 1.5rem;
        }

        .mechine-product-image-container {
        padding-bottom: 80%;
        }
    }

    @media (min-width: 1440px) {
        .mechine-container {
        max-width: 1800px;
        margin: 0 auto;
        }

        .mechine-product-card {
        padding: 4rem;
        }
    }

    /* Dark Mode Support */
    @media (prefers-color-scheme: dark) {
        .mechine-aura {
        background: linear-gradient(135deg, #c89778 0%, #a67b5f 100%);
        }
    }

    /* Print Styles */
    @media print {
        .mechine-whatsapp-button {
        display: none;
        }

        .mechine-shop-button {
        border: 1px solid #000;
        }
    }
    /* mechine section */


    /* trending products */
    /* footer section */
    .footer-main {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        display: flex;
        flex-direction: column;
    
        line-height: 1.6;
        background-color: #f5f5f5;
    }

    .footer {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        background: linear-gradient(to right,#f1f5f9);
        color: #333;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    }
    .footer-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 40px 20px;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }

    /* Footer Sections */
    .footer-section {
        padding: 0 15px;
    }

    .footer-section h4 {
        color: #1c1c1c;
        font-size: 1.2rem;
        margin-bottom: 20px;
        position: relative;
        padding-bottom: 10px;
    }

    .footer-section h4::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 50px;
        height: 2px;
        background: #1c1c1c;
    }

    .footer-section p,
    .footer-section a {
        color: #4b5563;
        text-decoration: none;
        margin-bottom: 10px;
        display: block;
        transition: all 0.3s ease;
    }

    .footer-section a:hover {
        color: #2563eb;
        transform: translateX(5px);
    }

    /* Address Section */
    .footer-section p {
        font-size: 0.95rem;
        line-height: 1.8;
    }

    /* Footer Bottom */
    .footer-bottom {
        background: #f1f5f9;
        padding: 20px;
        text-align: center;
        border-top: 1px solid #e5e7eb;
    }

    .social-links {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin: 15px 0;
    }

    .social-links a {
        color: #2563eb;
        font-size: 1.5rem;
        transition: transform 0.3s ease;
    }

    .social-links a:hover {
        transform: translateY(-3px);
    }

    .footer-bottom p {
        color: #64748b;
        font-size: 0.9rem;
        margin: 10px 0;
    }

    .footer-bottom a {
        color: #212123;
        text-decoration: none;
    }

    .footer-links {
        margin: 15px 0;
    }

    .footer-links a {
        color: #64748b;
        margin: 0 10px;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .footer-links a:hover {
        color: #2563eb;
    }

    .disclaimer {
        font-size: 0.85rem;
        color: #94a3b8;
        text-align: center;
        max-width: 1400px;
        margin: 15px auto;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
        }

        .footer-section {
            padding: 0 10px;
        }

        .social-links {
            gap: 15px;
        }

        .footer-links a {
            display: inline-block;
            margin: 5px 10px;
        }
    }
    /* footer section */
    /* testmonial section */
    /* testimonial start */
    .testimonials-section-main {
        font-family: 'Arial', sans-serif;
        background-color: #f0f8ff;
        color: #333;
        line-height: 1.6;
    }

    .testimonials-section {
        padding: 50px 20px;
        max-width: 1380px;
        margin: 0 auto;
    }

    .section-title {
        text-align: center;
        color: #1E3A8A;
        font-weight:600;
        margin-bottom: 30px;
        font-size: 2.5rem;
    }

    .testimonials-container {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 30px;
        padding: 20px 0;
        scroll-padding: 0 20px;
    }

    .testimonials-card {
        flex: 0 0 calc(33.333% - 20px);
        min-width: 280px;
        background-color: #ffffff;
        border-radius: 15px;
        box-shadow: 0 5px 15px rgba(0, 119, 190, 0.1);
        padding: 25px;
        scroll-snap-align: start;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .testimonials-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 119, 190, 0.2);
    }

    .testimonials-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 15px;
    }

    .testimonials-name-date {
        font-size: 0.9rem;
    }

    .testimonials-name {
        font-weight: bold;
        color: #1E3A8A;
    }

    .testimonials-date {
        color: #888;
    }

    .testimonials-rating {
        color: #ffd700;
        font-size: 1.2rem;
    }

    .testimonials-content {
        font-size: 1rem;
        line-height: 1.6;
        color: #555;
    }

    .profile-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
        fill: #1E3A8A;
    }


    .testimonials-container::-webkit-scrollbar {
        display: none;
    }

    .testimonials-container {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    @media (max-width: 1200px) {
        .testimonials-card {
            flex: 0 0 calc(50% - 15px);
        }
    }

    @media (max-width: 768px) {
        .testimonials-card {
            flex: 0 0 calc(100% - 30px);
        }

        .section-title {
            font-size: 2rem;
            font-weight:600;
        }
    }

    /* testmonial section */

    :root {
        --primary: #4f46e5;
        --secondary: #7c3aed;
        --accent: #06b6d4;
        --text: #1f2937;
    }

    .contact-container {
        max-width: 1200px;
        margin: 0 auto;
        margin-top: 50px;
        padding: 40px 20px;
    }

    .contact-header {
        text-align: center;
        margin-bottom: 60px;
        position: relative;
    }

    .contact-header h1 {
        font-size: 3.5em;
        margin-bottom: 20px;
        background: linear-gradient(to right, var(--primary), var(--secondary));
        -webkit-background-clip: text;
        color: transparent;
        animation: fadeIn 1s ease-out;
    }

    .contact-header p {
        font-size: 1.2em;
        color: #4b5563;
        max-width: 600px;
        margin: 0 auto;
        animation: slideUp 1s ease-out;
    }

    .contact-main-content {
        display: grid;
        grid-template-columns: 1fr 1.2fr;
        gap: 40px;
        margin-top: 40px;
    }

    .contact-map-container {
        background: rgba(255, 255, 255, 0.9);
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(10px);
        height: 100%;
        min-height: 400px;
        transition: transform 0.3s ease;
    }

    .contact-map-container:hover {
        transform: translateY(-5px);
    }

    .contact-map-container iframe {
        width: 100%;
        height: 100%;
        border: none;
    }

    .contact-form {
        background: rgba(255, 255, 255, 0.95);
        padding: 40px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(10px);
        animation: slideUp 0.8s ease-out;
    }

    .contact-form-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .contact-form-group {
        position: relative;
    }

    .contact-form-group.full-width {
        grid-column: 1 / -1;
    }

    .contact-label {
        display: block;
        margin-bottom: 8px;
        font-weight: 500;
        color: var(--text);
        transition: color 0.3s ease;
    }

    .contact-input, .contact-textarea {
        width: 100%;
        padding: 14px;
        border: 2px solid #e5e7eb;
        border-radius: 12px;
        font-size: 16px;
        background: rgba(255, 255, 255, 0.9);
        transition: all 0.3s ease;
    }

    .contact-input:focus, .contact-textarea:focus {
        outline: none;
        border-color: var(--primary);
        box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
    }

    .contact-textarea {
        resize: vertical;
        min-height: 150px;
    }

    .contact-button {
        background: linear-gradient(135deg, var(--primary), var(--secondary));
        color: white;
        padding: 16px 32px;
        border: none;
        border-radius: 12px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        width: 100%;
        margin-top: 20px;
        position: relative;
        overflow: hidden;
    }

    .contact-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(79, 70, 229, 0.2);
    }

    .contact-button:after {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(
            to bottom right,
            rgba(255, 255, 255, 0.2),
            rgba(255, 255, 255, 0)
        );
        transform: rotate(45deg);
        transition: 0.5s;
    }

    .contact-button:hover:after {
        transform: rotate(45deg) translate(50%, 50%);
    }

    .contact-info {
        margin-top: 60px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .contact-info-item {
        background: rgba(255, 255, 255, 0.95);
        padding: 30px;
        border-radius: 16px;
        text-align: center;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        animation: fadeIn 1s ease-out;
    }

    .contact-info-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .contact-info-item i {
        font-size: 28px;
        margin-bottom: 15px;
        color: var(--primary);
        background: linear-gradient(135deg, var(--primary), var(--secondary));
        -webkit-background-clip: text;
        color: transparent;
    }

    .contact-info-item h3 {
        color: var(--text);
        margin-bottom: 10px;
        font-size: 1.2em;
    }

    .contact-info-item p {
        color: #6b7280;
        font-size: 0.95em;
    }

    .contact-floating-shapes {
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: -1;
        overflow: hidden;
    }

    .contact-shape {
        position: absolute;
        background: linear-gradient(45deg, rgba(79, 70, 229, 0.1), rgba(124, 58, 237, 0.1));
        border-radius: 50%;
        animation: float 20s infinite linear;
    }

    .contact-shape:nth-child(1) {
        width: 300px;
        height: 300px;
        top: -150px;
        left: -150px;
    }

    .contact-shape:nth-child(2) {
        width: 200px;
        height: 200px;
        top: 50%;
        right: -100px;
        animation-delay: -5s;
    }

    .contact-shape:nth-child(3) {
        width: 150px;
        height: 150px;
        bottom: -75px;
        left: 50%;
        animation-delay: -10s;
    }

    @keyframes float {
        0% {
            transform: rotate(0deg) translate(0, 0);
        }
        100% {
            transform: rotate(360deg) translate(50px, 50px);
        }
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }

    @keyframes slideUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @media (max-width: 968px) {
        .contact-main-content {
            grid-template-columns: 1fr;
        }

        .contact-map-container {
            min-height: 300px;
        }

        .contact-info {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 576px) {
        .contact-form-grid {
            grid-template-columns: 1fr;
        }

        .contact-header h1 {
            font-size: 2.5em;
        }
    }

    /* Custom Input Styles */
    .contact-input-wrapper {
        position: relative;
        margin-bottom: 20px;
    }

    .contact-input-wrapper input:focus + label,
    .contact-input-wrapper input:not(:placeholder-shown) + label {
        transform: translateY(-25px) scale(0.8);
        color: var(--primary);
    }

    .contact-success-message {
        display: none;
        background: linear-gradient(135deg, #10B981, #059669);
        color: white;
        padding: 20px;
        border-radius: 12px;
        margin-top: 20px;
        text-align: center;
        animation: slideUp 0.5s ease-out;
    }





