  
        :root {
            --primary-red: #e53e3e;
            --dark-red: #c53030;
            --light-red: #feb2b2;
            --white: #ffffff;
            --light-gray: #f7fafc;
            --text-dark: #2d3748;
            --text-gray: #4a5568;
        }
        html {
         scroll-behavior: smooth;
          scroll-padding-top: 80px; /* match your navbar height */
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
        }
        
        /* Navigation */
        .navbar {
            background: var(--white) !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--primary-red) !important;
        }
        
        .navbar-nav .nav-link {
            color: var(--text-dark) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-red) !important;
        }
        
        .btn-primary {
            background-color: var(--primary-red);
            border-color: var(--primary-red);
            font-weight: 600;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        
        .btn-primary:hover {
            background-color: var(--dark-red);
            border-color: var(--dark-red);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(197, 48, 48, 0.4);
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, var(--light-red) 0%, var(--white) 100%);
            padding: 200px 0 80px;
            position: relative;
            overflow: hidden;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="%23e53e3e" fill-opacity="0.1" points="0,1000 1000,0 1000,1000"/></svg>');
            z-index: 1;
              pointer-events: none; 
        }
        
        .hero-content {
            position: relative;
            z-index: 99;
        }
        
        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--primary-red);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        
        .hero-subtitle {
            font-size: 1.3rem;
            color: var(--text-gray);
            margin-bottom: 2rem;
        }
        
        .hero-image {
            position: relative;
            z-index: 2;
        }
        
        .hero-image img {
            width: 100%;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }
        
        /* Services Section */
        .services-section {
            padding: 100px 0;
            background: var(--white);
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-red);
            text-align: center;
            margin-bottom: 1rem;
        }
        
        .section-subtitle {
            font-size: 1.1rem;
            color: var(--text-gray);
            text-align: center;
            margin-bottom: 4rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .service-card {
            background: var(--white);
            border-radius: 20px;
            padding: 2.5rem 2rem;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            margin-bottom: 2rem;
            border: 1px solid #f1f1f1;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(229, 62, 62, 0.2);
            border-color: var(--light-red);
        }
        
        .service-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            color: white;
            font-size: 2rem;
        }
        
        .service-card h3 {
            color: var(--primary-red);
            font-weight: 600;
            margin-bottom: 1rem;
        }
        
        /* About Section */
        .about-section {
            padding: 100px 0;
            background: var(--light-gray);
        }
        
        .about-image {
            position: relative;
        }
        
        .about-image img {
            width: 100%;
            max-width: 400px;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }
        
        .about-content h2 {
            color: var(--primary-red);
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        
        .about-content h3 {
            color: var(--text-dark);
            font-weight: 600;
            margin-bottom: 1rem;
        }
        
        .about-content h4 {
            color: var(--primary-red);
            font-weight: 500;
            margin-bottom: 0.5rem;
        }
        
        /* Contact Section */
        .contact-section {
            padding: 100px 0;
            background: var(--white);
        }
        
        .contact-info {
            background: var(--light-gray);
            padding: 2.5rem;
            border-radius: 20px;
            height: 100%;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 2rem;
        }
        
        .contact-icon {
            width: 50px;
            height: 50px;
            background: var(--primary-red);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            margin-right: 1rem;
            font-size: 1.2rem;
        }
        
        .map-container {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            height: 400px;
        }
        
        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        
        /* Footer */
        .footer {
            background: var(--text-dark);
            color: white;
            padding: 3rem 0 2rem;
        }
        
        .footer h5 {
            color: var(--primary-red);
            margin-bottom: 1.5rem;
            font-weight: 600;
        }
        
        .footer a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer a:hover {
            color: var(--primary-red);
        }
        
        .social-links a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: var(--primary-red);
            color: white;
            text-align: center;
            line-height: 40px;
            border-radius: 50%;
            margin-right: 0.5rem;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background: var(--dark-red);
            transform: translateY(-2px);
        }
        
        .footer-bottom {
            border-top: 1px solid #444;
            margin-top: 2rem;
            padding-top: 2rem;
            text-align: center;
            color: #999;
        }
        
        /* Offcanvas */
        .offcanvas {
            background: var(--white);
        }
        
        .offcanvas-header {
            border-bottom: 1px solid #eee;
        }
        
        .offcanvas-title {
            color: var(--primary-red);
            font-weight: bold;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .hero-section {
                padding: 140px 0 60px;
            }
            
            .services-section,
            .about-section,
            .contact-section {
                padding: 60px 0;
            }
        }
        
        /* Animation enhancements */
        .fade-in-up {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }
        
        .fade-in-up.aos-animate {
            opacity: 1;
            transform: translateY(0);
        }

        .pointer{
            cursor: pointer;
        }

        /* Floating Action Buttons */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.whatsapp-btn, .call-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 24px;
    color: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-btn {
    background: #25D366;
}

.whatsapp-btn:hover {
    background: #20BA5A;
    color: white;
    transform: scale(1.1);
}

.call-btn {
    background: var(--primary-red);
}

.call-btn:hover {
    background: var(--dark-red);
    color: white;
    transform: scale(1.1);
}



/* Pulse Animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.call-btn {
    animation: pulse-red 2s infinite;
}
.contact-hero-section {
     background: linear-gradient(135deg, var(--primary-red) 0%), url('https://images.unsplash.com/photo-1542385172-27352345638c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1400&q=80') no-repeat center center/cover;
    height: 400px;
    padding-top: 120px;
}

.contact-hero-section .hero-title {
    color: var(--white);
    font-weight: 700;
}

.contact-hero-section .hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
}

/* Main Contact Section */
.main-contact-section {
    background-color: var(--light-gray);
    padding: 100px 0;
}

.contact-form-container {
    background-color: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 100%;
}

.contact-form-container .form-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
}

.contact-form-container .form-subtitle {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.contact-form-container .form-label {
    font-weight: 500;
    color: var(--text-dark);
}

.contact-form-container .form-control {
    border-radius: 10px;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form-container .form-control:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 0.25rem rgba(229, 62, 62, 0.25);
}

.contact-info-map-container {
    display: flex;
    flex-direction: column;
}

.contact-info {
    background-color: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.contact-info .info-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.contact-item h5 {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@keyframes pulse-red {
    0% {
        box-shadow: 0 0 0 0 rgba(229, 62, 62, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(229, 62, 62, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(229, 62, 62, 0);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .floating-buttons {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-btn, .call-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}
@media (max-width: 991.98px) {
    .main-contact-section {
        padding: 60px 0;
    }

    .contact-form-container {
        padding: 1.5rem;
    }

    .contact-info {
        padding: 1.5rem;
        margin-top: 2rem;
    }

    .map-container {
        height: 300px;
    }
}

.ml{
    margin-left: -3px;
}

.modal-content {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border: none;
}

.modal-header .btn-close {
    margin-top: -1rem;
    margin-right: -1rem;
}

.modal-title {
    color: var(--primary-red);
    font-size: 2.2rem;
    font-weight: 700;
}

.modal-text {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.6;
}

.modal-icon {
    font-size: 3rem;
    color: var(--primary-red);
    animation: bounce 1.5s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-15px);
    }
    60% {
        transform: translateY(-7px);
    }
}
  