:root {
            --primary: #0d6efd;
            --secondary: #6c757d;
            --success: #198754;
            --info: #0dcaf0;
            --warning: #ffc107;
            --danger: #dc3545;
            --dark: #212529;
            --teal: #20c997;
            --purple: #6f42c1;
            --orange: #fd7e14;
        }

        body {
            font-family: "Roboto", sans-serif;
            overflow-x: hidden;
        }

        /* Navbar */
        .navbar {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 1rem 0;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }

        .navbar-brand {
            font-size: 1.8rem;
            font-weight: bold;
            color: white !important;
        }

        .nav-link {
            color: rgba(255,255,255,0.9) !important;
            margin: 0 0.5rem;
            transition: all 0.3s;
        }

        .nav-link:hover {
            color: white !important;
            transform: translateY(-2px);
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 120px 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 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,144C960,149,1056,139,1152,122.7C1248,107,1344,85,1392,74.7L1440,64L1440,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;
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            animation: fadeInUp 1s;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.95;
        }

        .cta-button {
            padding: 15px 40px;
            font-size: 1.1rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s;
            border: none;
            background: white;
            color: #667eea;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }

        /* Features Section */
        .features-section {
            padding: 80px 0;
            background: linear-gradient(to bottom, #f8f9fa, white);
        }

        .feature-card {
            background: white;
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s;
            margin-bottom: 2rem;
            border: 2px solid transparent;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
            border-color: var(--primary);
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            display: inline-block;
        }

        /* Who We Are Section */
        .about-preview {
            padding: 80px 0;
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            color: white;
        }

        /* Working Process */
        .process-section {
            padding: 80px 0;
            background: white;
        }

        .process-step {
            text-align: center;
            padding: 2rem;
            margin-bottom: 2rem;
            position: relative;
        }

        .process-number {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: bold;
            color: white;
            margin-bottom: 1.5rem;
        }

        .process-step:nth-child(1) .process-number { background: linear-gradient(135deg, #667eea, #764ba2); }
        .process-step:nth-child(2) .process-number { background: linear-gradient(135deg, #f093fb, #f5576c); }
        .process-step:nth-child(3) .process-number { background: linear-gradient(135deg, #4facfe, #00f2fe); }
        .process-step:nth-child(4) .process-number { background: linear-gradient(135deg, #43e97b, #38f9d7); }
        .process-step:nth-child(5) .process-number { background: linear-gradient(135deg, #fa709a, #fee140); }
        .process-step:nth-child(6) .process-number { background: linear-gradient(135deg, #30cfd0, #330867); }

        /* Services Section */
        .services-section {
            padding: 80px 0;
            background: linear-gradient(to bottom, #667eea10, #764ba220);
        }

        .service-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s;
            margin-bottom: 2rem;
            height: 100%;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .service-img {
            height: 200px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            color: white;
        }

        .service-body {
            padding: 1.5rem;
        }

        /* Statistics Section */
        .stats-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            color: white;
        }

        .stat-box {
            text-align: center;
            padding: 2rem;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
        }

        /* Testimonials */
        .testimonials-section {
            padding: 80px 0;
            background: white;
        }

        .testimonial-card {
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            margin-bottom: 2rem;
            position: relative;
        }

        .testimonial-quote {
            font-size: 3rem;
            color: var(--primary);
            position: absolute;
            top: 1rem;
            left: 1.5rem;
            opacity: 0.3;
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 1;
        }

        /* Why Choose Us */
        .why-choose-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
            color: white;
        }

        .choose-card {
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(10px);
            padding: 2rem;
            border-radius: 15px;
            margin-bottom: 1.5rem;
            border: 2px solid rgba(255,255,255,0.3);
            transition: all 0.3s;
        }

        .choose-card:hover {
            background: rgba(255,255,255,0.3);
            transform: translateX(10px);
        }

        /* Call to Action */
        .cta-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            text-align: center;
        }

        /* Footer */
      
        .section-title {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 3rem;
            text-align: center;
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: currentColor;
            margin: 1rem auto 0;
            border-radius: 2px;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .call-now-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: linear-gradient(135deg, #f093fb, #f5576c);
            color: white;
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            box-shadow: 0 10px 30px rgba(240, 147, 251, 0.5);
            z-index: 1000;
            transition: all 0.3s;
        }

        .call-now-btn:hover {
            transform: scale(1.1);
            color: white;
        }


         /* Page Header */
        .page-header {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            height: 100px;
            padding: 150px 0 80px;
            text-align: center;
        }

        .page-header h1 {
            font-size: 3.5rem;
            font-weight: bold;
            margin-bottom: 1rem;
        }

        /* Company Story Section */
        .story-section {
            padding: 80px 0;
            background: linear-gradient(to bottom, #f8f9fa, white);
        }

        .story-card {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        /* Mission Vision Section */
        .mission-vision-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            color: white;
        }

        .mv-card {
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(10px);
            padding: 2.5rem;
            border-radius: 20px;
            border: 2px solid rgba(255,255,255,0.3);
            height: 100%;
            transition: all 0.3s;
        }

        .mv-card:hover {
            background: rgba(255,255,255,0.25);
            transform: translateY(-10px);
        }

        .mv-icon {
            font-size: 4rem;
            margin-bottom: 1.5rem;
        }

        /* Core Values Section */
        .values-section {
            padding: 80px 0;
            background: white;
        }

        .value-box {
            text-align: center;
            padding: 2rem;
            margin-bottom: 2rem;
            transition: all 0.3s;
        }

        .value-box:hover {
            transform: scale(1.05);
        }

        .value-icon {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: white;
            margin-bottom: 1.5rem;
        }

        /* Team Section */
        .team-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            color: white;
        }

        .team-member {
            text-align: center;
            padding: 2rem;
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            margin-bottom: 2rem;
            transition: all 0.3s;
        }

        .team-member:hover {
            background: rgba(255,255,255,0.25);
            transform: translateY(-10px);
        }

        .team-avatar {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: linear-gradient(135deg, #667eea, #764ba2);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            margin-bottom: 1rem;
            color: white;
        }

        /* Certifications Section */
        .certifications-section {
            padding: 80px 0;
            background: linear-gradient(to bottom, #fff, #f8f9fa);
        }

        .cert-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            text-align: center;
            margin-bottom: 2rem;
            transition: all 0.3s;
            border: 3px solid transparent;
        }

        .cert-card:hover {
            border-color: #667eea;
            transform: translateY(-5px);
        }

        .cert-badge {
            font-size: 4rem;
            margin-bottom: 1rem;
        }

        /* Timeline Section */
        .timeline-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
            color: black;
        }

        .timeline-item {
            padding: 2rem;
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            margin-bottom: 2rem;
            border-left: 5px solid white;
            transition: all 0.3s;
        }

        .timeline-item:hover {
            background: rgba(255,255,255,0.3);
            transform: translateX(10px);
        }

        .timeline-year {
            font-size: 2rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
        }

        /* Achievements Section */
        .achievements-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
            color: white;
        }

        .achievement-card {
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(10px);
            padding: 2rem;
            border-radius: 15px;
            margin-bottom: 2rem;
            text-align: center;
            transition: all 0.3s;
        }

        .achievement-card:hover {
            background: rgba(255,255,255,0.3);
            transform: scale(1.05);
        }

        .achievement-number {
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
        }

        /* Testimonial Preview */
        .testimonial-preview {
            padding: 80px 0;
            background: white;
        }

        .testimonial-box {
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            margin-bottom: 2rem;
            position: relative;
        }

        .quote-icon {
            font-size: 3rem;
            color: #667eea;
            opacity: 0.3;
            position: absolute;
            top: 1rem;
            left: 1.5rem;
        }

        .testimonial-content {
            position: relative;
            z-index: 1;
        }

        .rating {
            color: #ffc107;
            font-size: 1.2rem;
            margin-bottom: 1rem;
        }

        /* CTA Section */
        .cta-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            text-align: center;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 3rem;
            text-align: center;
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: currentColor;
            margin: 1rem auto 0;
            border-radius: 2px;
        }

        .cta-button {
            padding: 15px 40px;
            font-size: 1.1rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s;
            border: none;
            background: white;
            color: #667eea;
            text-decoration: none;
            display: inline-block;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
            color: #667eea;
        }

        /* Footer */
      

        .call-now-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: linear-gradient(135deg, #f093fb, #f5576c);
            color: white;
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            box-shadow: 0 10px 30px rgba(240, 147, 251, 0.5);
            z-index: 1000;
            transition: all 0.3s;
        }

        .call-now-btn:hover {
            transform: scale(1.1);
            color: white;
        }


/*contact*/
section {
    padding: 60px 15px;
}
form input, form textarea {
    width: 100%;
    margin-bottom: 15px;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
}
form button {
    background-color: #d2691e;
    color: white;
    padding: 10px 25px;
    border: none;
    border-radius: 8px;
    transition: 0.3s;
}
form button:hover {
    background-color: #b5530f;
}


/*projects*/
.projects-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}
.project-item {
    width: 250px;
    text-align: center;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    transition: transform 0.3s, box-shadow 0.3s;
}
.project-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.project-item p {
    padding: 10px 0;
    font-weight: 500;
}
.project-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}


/*services*/
 body {
            font-family: "Roboto", sans-serif;
            padding-top: 76px;
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.95), rgba(118, 75, 162, 0.95)), url('../images/services-hero.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 120px 0 80px;
            text-align: center;
        }

        .hero-section h1 {
            font-size: 3.5rem;
            font-weight: bold;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        /* Services Grid Section */
        .services-grid {
            padding: 80px 0;
            background: linear-gradient(to bottom, #f8f9fa, white);
        }

        .service-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s;
            height: 100%;
            border: 3px solid transparent;
            
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
            border-color: #667eea;
        }

        .service-image {
            height: 200px;
            overflow: hidden;
            position: relative;
        }

        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }

        .service-card:hover .service-image img {
            transform: scale(1.1);
        }

        .service-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.8), rgba(118, 75, 162, 0.8));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: white;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .service-card:hover .service-overlay {
            opacity: 1;
        }

        .service-body {
            padding: 1.5rem;
            
        }

        .service-body h5 {
            color: #667eea;
            font-weight: 600;
            margin-bottom: 1rem;
            
        }
        
        




       /* Process Section */
.process-section {
    padding: 80px 0;
   background: linear-gradient(135deg, rgba(102, 126, 234, 0.8), rgba(118, 75, 162, 0.8));
    color: white;
}

.process-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    height: 100%;
    transition: all 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.process-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.process-icon {
    width: 80px;
    height: 80px;
    background: white;
    color: #f5576c;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}
        /* Featured Services */
        .featured-services {
            padding: 80px 0;
            background: linear-gradient(135deg, #FFD700, #FFA500);
            color: #333;
        }

        .featured-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            transition: all 0.3s;
            height: 100%;
        }

        .featured-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        }

        .featured-card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }

        .featured-card-body {
            padding: 1.5rem;
            text-align: center;
        }

        /* Why Choose Section */
        .why-choose {
            padding: 80px 0;
            background: white;
        }

        .why-card {
            text-align: center;
            padding: 2rem;
            transition: all 0.3s;
        }

        .why-card:hover {
            transform: translateY(-10px);
        }

        .why-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        /* Testimonials */
        .testimonials-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            color: white;
        }

        .testimonial-card {
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(10px);
            padding: 2rem;
            border-radius: 20px;
            text-align: center;
            height: 100%;
            border: 2px solid rgba(255,255,255,0.3);
        }

        .testimonial-card .quote {
            font-size: 2rem;
            opacity: 0.5;
            margin-bottom: 1rem;
        }

        /* Certifications */
        .certifications-section {
            padding: 80px 0;
            background: linear-gradient(to bottom, #f8f9fa, white);
        }

        .cert-logo {
            padding: 2rem;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s;
            height: 150px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .cert-logo:hover {
            transform: scale(1.1);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }

        .cert-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        /* CTA Section */
        .cta-section {
            padding: 80px 0;
            background: #ff6600;
            color: white;
            text-align: center;
        }

        .cta-section h2 {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 2rem;
        }

        .cta-btn {
            padding: 15px 40px;
            font-size: 1.2rem;
            border-radius: 50px;
            border: none;
            background: #212529;
            color: white;
            font-weight: 600;
            transition: all 0.3s;
        }

        .cta-btn:hover {
            background: white;
            color: #ff6600;
            transform: scale(1.1);
        }

        /* Contact Form Section */
        body {
            font-family: "Roboto", sans-serif;
            padding-top: 76px;
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.95), rgba(118, 75, 162, 0.95)), url('../images/contact-hero.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 120px 0 80px;
            text-align: center;
        }

        .hero-section h1 {
            font-size: 3.5rem;
            font-weight: bold;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        /* Contact Info Cards Section */
        .contact-info-section {
            padding: 80px 0;
            background: linear-gradient(to bottom, #f8f9fa, white);
        }

        .info-card {
            background: white;
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            text-align: center;
            transition: all 0.3s;
            height: 100%;
            border: 3px solid transparent;
        }

        .info-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
            border-color: #667eea;
        }

        .info-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
            margin-bottom: 1.5rem;
        }

        /* Contact Form Section */
        .form-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        }

        .contact-form-container {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.2);
        }

        .form-control, .form-select {
            border-radius: 10px;
            padding: 12px 15px;
            border: 2px solid #e9ecef;
            transition: all 0.3s;
        }

        .form-control:focus, .form-select:focus {
            border-color: #f093fb;
            box-shadow: 0 0 0 0.2rem rgba(240, 147, 251, 0.25);
        }

        .btn-submit {
            background: linear-gradient(135deg, #f093fb, #f5576c);
            color: white;
            border: none;
            padding: 15px 50px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s;
        }

        .btn-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(240, 147, 251, 0.5);
        }

        /* Map Section */
        .map-section {
            padding: 80px 0;
            background: white;
        }

        .map-container {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            height: 500px;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Business Hours Section */
        .hours-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            color: white;
        }

        .hours-card {
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(10px);
            padding: 2.5rem;
            border-radius: 20px;
            border: 2px solid rgba(255,255,255,0.3);
        }

        .day-row {
            display: flex;
            justify-content: space-between;
            padding: 1rem 0;
            border-bottom: 1px solid rgba(255,255,255,0.3);
        }

        .day-row:last-child {
            border-bottom: none;
        }

        /* Why Contact Section */
        .why-contact-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
            color: rgb(252, 249, 249);
        }

        .feature-box {
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(10px);
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            margin-bottom: 2rem;
            transition: all 0.3s;
            border: 2px solid rgba(255,255,255,0.3);
        }

        .feature-box:hover {
            background: rgba(255,255,255,0.3);
            transform: scale(1.05);
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        /* FAQ Section */
        .faq-section {
            padding: 80px 0;
            background: linear-gradient(to bottom, #f8f9fa, white);
        }

        .faq-item {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            margin-bottom: 1.5rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border-left: 5px solid #667eea;
            transition: all 0.3s;
        }

        .faq-item:hover {
            transform: translateX(10px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }

        .faq-question {
            font-size: 1.2rem;
            font-weight: 600;
            color: #667eea;
            margin-bottom: 0.8rem;
        }

        /* Social Media Section */
        .social-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
            text-align: center;
            color: white;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 2rem;
        }

        .social-icon {
            width: 70px;
            height: 70px;
            background: white;
            color: #fa709a;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            transition: all 0.3s;
            text-decoration: none;
        }

        .social-icon:hover {
            transform: scale(1.2) rotate(10deg);
            box-shadow: 0 10px 25px rgba(0,0,0,0.3);
            color: #fa709a;
        }

        /* Emergency Contact Section */
        .emergency-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #FF6B6B, #C44569);
            color: white;
            text-align: center;
        }

        .emergency-box {
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(10px);
            padding: 3rem;
            border-radius: 20px;
            border: 3px solid rgba(255,255,255,0.4);
        }

        .emergency-number {
            font-size: 3rem;
            font-weight: bold;
            margin: 1.5rem 0;
        }

        .pulse-button {
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        /* CTA Section */
        .cta-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            text-align: center;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 3rem;
            text-align: center;
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: currentColor;
            margin: 1rem auto 0;
            border-radius: 2px;
        }
        

        .alert {
            border-radius: 15px;
            padding: 1.5rem;
            margin-bottom: 2rem;
        }

        .call-now-fixed {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: linear-gradient(135deg, #f093fb, #f5576c);
            color: white;
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            box-shadow: 0 10px 30px rgba(240, 147, 251, 0.5);
            z-index: 1000;
            transition: all 0.3s;
        }

        .call-now-fixed:hover {
            transform: scale(1.1);
            color: white;
        }


        /* Blog Section */
.blog-post img {
  max-height: 400px;
  object-fit: cover;
}

.blog-post h2 {
  color: #667eea;
  margin-bottom: 10px;
}

.blog-post p {
  line-height: 1.7;
}

.blog-post a.btn {
  margin-top: 10px;
  border-radius: 50px;
  padding: 10px 25px;
}

.sidebar {
  border-left: 4px solid #667eea;
}

.sidebar ul li {
  margin-bottom: 10px;
}

.sidebar ul li a {
  text-decoration: underline !important;
  color:  #007bff !important;
  transition: color 0.3s;
}

.sidebar ul li a:hover {
  color: #667eea;
}

/* Blog Page Header */
.blog-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.blog-hero h1 {
    font-size: 3rem;          /* Large heading */
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    text-align: center; 
}

.blog-hero p {
    font-size: 1.25rem;
    color: white;
    text-align: center; 
}

.custom-btn {
  background-color: black;
  color: red;
  padding: 12px 24px;
  border-radius: 6px;
  display: inline-block;
  text-decoration: none;
}
.custom-btn:hover {
  opacity: 0.8; /* slight hover effect */
}

html {
  scroll-behavior: smooth;
}

.scroll-top-fixed {
    position: fixed;
    bottom: 20px;       /* Adjust to place above Call Now if needed */
    right: 20px;
    background-color: red;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    z-index: 1000;
    display: none;      /* Hidden by default */
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.scroll-top-fixed:hover {
    background-color: #c00;
    transform: scale(1.05);
}
:root {
            --primary: #0d6efd;
            --secondary: #6c757d;
            --success: #198754;
            --info: #0dcaf0;
            --warning: #ffc107;
            --danger: #dc3545;
            --dark: #212529;
            --teal: #20c997;
            --purple: #6f42c1;
            --orange: #fd7e14;
        }

        body {
            font-family: "Roboto", sans-serif;
            overflow-x: hidden;
        }

        /* Navbar */
        .navbar {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 1rem 0;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }

        .navbar-brand {
            font-size: 1.8rem;
            font-weight: bold;
            color: white !important;
        }

        .nav-link {
            color: rgba(255,255,255,0.9) !important;
            margin: 0 0.5rem;
            transition: all 0.3s;
        }

        .nav-link:hover {
            color: white !important;
            transform: translateY(-2px);
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 120px 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 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,144C960,149,1056,139,1152,122.7C1248,107,1344,85,1392,74.7L1440,64L1440,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;
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            animation: fadeInUp 1s;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.95;
        }

        .cta-button {
            padding: 15px 40px;
            font-size: 1.1rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s;
            border: none;
            background: white;
            color: #667eea;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }

        /* Features Section */
        .features-section {
            padding: 80px 0;
            background: linear-gradient(to bottom, #f8f9fa, white);
        }

        .feature-card {
            background: white;
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s;
            margin-bottom: 2rem;
            border: 2px solid transparent;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
            border-color: var(--primary);
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            display: inline-block;
        }

        /* Who We Are Section */
        .about-preview {
            padding: 80px 0;
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            color: white;
        }

        /* Working Process */
        .process-section {
            padding: 80px 0;
            background: white;
        }

        .process-step {
            text-align: center;
            padding: 2rem;
            margin-bottom: 2rem;
            position: relative;
        }

        .process-number {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: bold;
            color: white;
            margin-bottom: 1.5rem;
        }

        .process-step:nth-child(1) .process-number { background: linear-gradient(135deg, #667eea, #764ba2); }
        .process-step:nth-child(2) .process-number { background: linear-gradient(135deg, #f093fb, #f5576c); }
        .process-step:nth-child(3) .process-number { background: linear-gradient(135deg, #4facfe, #00f2fe); }
        .process-step:nth-child(4) .process-number { background: linear-gradient(135deg, #43e97b, #38f9d7); }
        .process-step:nth-child(5) .process-number { background: linear-gradient(135deg, #fa709a, #fee140); }
        .process-step:nth-child(6) .process-number { background: linear-gradient(135deg, #30cfd0, #330867); }

        /* Services Section */
        .services-section {
            padding: 80px 0;
            background: linear-gradient(to bottom, #667eea10, #764ba220);
        }

        .service-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s;
            margin-bottom: 2rem;
            height: 100%;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .service-img {
            height: 200px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            color: white;
        }

        .service-body {
            padding: 1.5rem;
        }

        /* Statistics Section */
        .stats-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            color: white;
        }

        .stat-box {
            text-align: center;
            padding: 2rem;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
        }

        /* Testimonials */
        .testimonials-section {
            padding: 80px 0;
            background: white;
        }

        .testimonial-card {
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            margin-bottom: 2rem;
            position: relative;
        }

        .testimonial-quote {
            font-size: 3rem;
            color: var(--primary);
            position: absolute;
            top: 1rem;
            left: 1.5rem;
            opacity: 0.3;
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 1;
        }

        /* Why Choose Us */
        .why-choose-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
            color: white;
        }

        .choose-card {
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(10px);
            padding: 2rem;
            border-radius: 15px;
            margin-bottom: 1.5rem;
            border: 2px solid rgba(255,255,255,0.3);
            transition: all 0.3s;
        }

        .choose-card:hover {
            background: rgba(255,255,255,0.3);
            transform: translateX(10px);
        }

        /* Call to Action */
        .cta-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            text-align: center;
        }

        /* Footer */
      

        .section-title {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 3rem;
            text-align: center;
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: currentColor;
            margin: 1rem auto 0;
            border-radius: 2px;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .call-now-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: linear-gradient(135deg, #f093fb, #f5576c);
            color: white;
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            box-shadow: 0 10px 30px rgba(240, 147, 251, 0.5);
            z-index: 1000;
            transition: all 0.3s;
        }

        .call-now-btn:hover {
            transform: scale(1.1);
            color: white;
        }


         /* Page Header */
        .page-header {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            height: 100px;
            padding: 150px 0 80px;
            text-align: center;
        }

        .page-header h1 {
            font-size: 3.5rem;
            font-weight: bold;
            margin-bottom: 1rem;
        }

        /* Company Story Section */
        .story-section {
            padding: 80px 0;
            background: linear-gradient(to bottom, #f8f9fa, white);
        }

        .story-card {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        /* Mission Vision Section */
        .mission-vision-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            color: white;
        }

        .mv-card {
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(10px);
            padding: 2.5rem;
            border-radius: 20px;
            border: 2px solid rgba(255,255,255,0.3);
            height: 100%;
            transition: all 0.3s;
        }

        .mv-card:hover {
            background: rgba(255,255,255,0.25);
            transform: translateY(-10px);
        }

        .mv-icon {
            font-size: 4rem;
            margin-bottom: 1.5rem;
        }

        /* Core Values Section */
        .values-section {
            padding: 80px 0;
            background: white;
        }

        .value-box {
            text-align: center;
            padding: 2rem;
            margin-bottom: 2rem;
            transition: all 0.3s;
        }

        .value-box:hover {
            transform: scale(1.05);
        }

        .value-icon {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: white;
            margin-bottom: 1.5rem;
        }

        /* Team Section */
        .team-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            color: white;
        }

        .team-member {
            text-align: center;
            padding: 2rem;
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            margin-bottom: 2rem;
            transition: all 0.3s;
        }

        .team-member:hover {
            background: rgba(255,255,255,0.25);
            transform: translateY(-10px);
        }

        .team-avatar {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: linear-gradient(135deg, #667eea, #764ba2);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            margin-bottom: 1rem;
            color: white;
        }

        /* Certifications Section */
        .certifications-section {
            padding: 80px 0;
            background: linear-gradient(to bottom, #fff, #f8f9fa);
        }

        .cert-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            text-align: center;
            margin-bottom: 2rem;
            transition: all 0.3s;
            border: 3px solid transparent;
        }

        .cert-card:hover {
            border-color: #667eea;
            transform: translateY(-5px);
        }

        .cert-badge {
            font-size: 4rem;
            margin-bottom: 1rem;
        }

        /* Timeline Section */
        .timeline-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
            color: black;
        }

        .timeline-item {
            padding: 2rem;
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            margin-bottom: 2rem;
            border-left: 5px solid white;
            transition: all 0.3s;
        }

        .timeline-item:hover {
            background: rgba(255,255,255,0.3);
            transform: translateX(10px);
        }

        .timeline-year {
            font-size: 2rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
        }

        /* Achievements Section */
        .achievements-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
            color: white;
        }

        .achievement-card {
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(10px);
            padding: 2rem;
            border-radius: 15px;
            margin-bottom: 2rem;
            text-align: center;
            transition: all 0.3s;
        }

        .achievement-card:hover {
            background: rgba(255,255,255,0.3);
            transform: scale(1.05);
        }

        .achievement-number {
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
        }

        /* Testimonial Preview */
        .testimonial-preview {
            padding: 80px 0;
            background: white;
        }

        .testimonial-box {
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            margin-bottom: 2rem;
            position: relative;
        }

        .quote-icon {
            font-size: 3rem;
            color: #667eea;
            opacity: 0.3;
            position: absolute;
            top: 1rem;
            left: 1.5rem;
        }

        .testimonial-content {
            position: relative;
            z-index: 1;
        }

        .rating {
            color: #ffc107;
            font-size: 1.2rem;
            margin-bottom: 1rem;
        }

        /* CTA Section */
        .cta-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            text-align: center;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 3rem;
            text-align: center;
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: currentColor;
            margin: 1rem auto 0;
            border-radius: 2px;
        }

        .cta-button {
            padding: 15px 40px;
            font-size: 1.1rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s;
            border: none;
            background: white;
            color: #667eea;
            text-decoration: none;
            display: inline-block;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
            color: #667eea;
        }

        /* Footer */
      

        .call-now-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: linear-gradient(135deg, #f093fb, #f5576c);
            color: white;
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            box-shadow: 0 10px 30px rgba(240, 147, 251, 0.5);
            z-index: 1000;
            transition: all 0.3s;
        }

        .call-now-btn:hover {
            transform: scale(1.1);
            color: white;
        }


/*contact*/
section {
    padding: 60px 15px;
}
form input, form textarea {
    width: 100%;
    margin-bottom: 15px;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
}
form button {
    background-color: #d2691e;
    color: white;
    padding: 10px 25px;
    border: none;
    border-radius: 8px;
    transition: 0.3s;
}
form button:hover {
    background-color: #b5530f;
}


/*projects*/
.projects-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}
.project-item {
    width: 250px;
    text-align: center;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    transition: transform 0.3s, box-shadow 0.3s;
}
.project-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.project-item p {
    padding: 10px 0;
    font-weight: 500;
}
.project-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}


/*services*/
 body {
            font-family: "Roboto", sans-serif;
            padding-top: 76px;
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.95), rgba(118, 75, 162, 0.95)), url('../images/services-hero.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 120px 0 80px;
            text-align: center;
        }

        .hero-section h1 {
            font-size: 3.5rem;
            font-weight: bold;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        /* Services Grid Section */
        .services-grid {
            padding: 80px 0;
            background: linear-gradient(to bottom, #f8f9fa, white);
        }

        .service-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s;
            height: 100%;
            border: 3px solid transparent;
            
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
            border-color: #667eea;
        }

        .service-image {
            height: 200px;
            overflow: hidden;
            position: relative;
        }

        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }

        .service-card:hover .service-image img {
            transform: scale(1.1);
        }

        .service-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.8), rgba(118, 75, 162, 0.8));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: white;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .service-card:hover .service-overlay {
            opacity: 1;
        }

        .service-body {
            padding: 1.5rem;
            
        }

        .service-body h5 {
            color: #667eea;
            font-weight: 600;
            margin-bottom: 1rem;
            
        }
        
        




       /* Process Section */
.process-section {
    padding: 80px 0;
   background: linear-gradient(135deg, rgba(102, 126, 234, 0.8), rgba(118, 75, 162, 0.8));
    color: white;
}

.process-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    height: 100%;
    transition: all 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.process-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.process-icon {
    width: 80px;
    height: 80px;
    background: white;
    color: #f5576c;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}
        /* Featured Services */
        .featured-services {
            padding: 80px 0;
            background: linear-gradient(135deg, #FFD700, #FFA500);
            color: #333;
        }

        .featured-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            transition: all 0.3s;
            height: 100%;
        }

        .featured-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        }

        .featured-card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }

        .featured-card-body {
            padding: 1.5rem;
            text-align: center;
        }

        /* Why Choose Section */
        .why-choose {
            padding: 80px 0;
            background: white;
        }

        .why-card {
            text-align: center;
            padding: 2rem;
            transition: all 0.3s;
        }

        .why-card:hover {
            transform: translateY(-10px);
        }

        .why-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        /* Testimonials */
        .testimonials-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            color: white;
        }

        .testimonial-card {
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(10px);
            padding: 2rem;
            border-radius: 20px;
            text-align: center;
            height: 100%;
            border: 2px solid rgba(255,255,255,0.3);
        }

        .testimonial-card .quote {
            font-size: 2rem;
            opacity: 0.5;
            margin-bottom: 1rem;
        }

        /* Certifications */
        .certifications-section {
            padding: 80px 0;
            background: linear-gradient(to bottom, #f8f9fa, white);
        }

        .cert-logo {
            padding: 2rem;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s;
            height: 150px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .cert-logo:hover {
            transform: scale(1.1);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }

        .cert-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        /* CTA Section */
        .cta-section {
            padding: 80px 0;
            background: #ff6600;
            color: white;
            text-align: center;
        }

        .cta-section h2 {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 2rem;
        }

        .cta-btn {
            padding: 15px 40px;
            font-size: 1.2rem;
            border-radius: 50px;
            border: none;
            background: #212529;
            color: white;
            font-weight: 600;
            transition: all 0.3s;
        }

        .cta-btn:hover {
            background: white;
            color: #ff6600;
            transform: scale(1.1);
        }

        /* Contact Form Section */
        body {
            font-family: "Roboto", sans-serif;
            padding-top: 76px;
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.95), rgba(118, 75, 162, 0.95)), url('../images/contact-hero.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 120px 0 80px;
            text-align: center;
        }

        .hero-section h1 {
            font-size: 3.5rem;
            font-weight: bold;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        /* Contact Info Cards Section */
        .contact-info-section {
            padding: 80px 0;
            background: linear-gradient(to bottom, #f8f9fa, white);
        }

        .info-card {
            background: white;
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            text-align: center;
            transition: all 0.3s;
            height: 100%;
            border: 3px solid transparent;
        }

        .info-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
            border-color: #667eea;
        }

        .info-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
            margin-bottom: 1.5rem;
        }

        /* Contact Form Section */
        .form-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        }

        .contact-form-container {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.2);
        }

        .form-control, .form-select {
            border-radius: 10px;
            padding: 12px 15px;
            border: 2px solid #e9ecef;
            transition: all 0.3s;
        }

        .form-control:focus, .form-select:focus {
            border-color: #f093fb;
            box-shadow: 0 0 0 0.2rem rgba(240, 147, 251, 0.25);
        }

        .btn-submit {
            background: linear-gradient(135deg, #f093fb, #f5576c);
            color: white;
            border: none;
            padding: 15px 50px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s;
        }

        .btn-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(240, 147, 251, 0.5);
        }

        /* Map Section */
        .map-section {
            padding: 80px 0;
            background: white;
        }

        .map-container {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            height: 500px;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Business Hours Section */
        .hours-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            color: white;
        }

        .hours-card {
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(10px);
            padding: 2.5rem;
            border-radius: 20px;
            border: 2px solid rgba(255,255,255,0.3);
        }

        .day-row {
            display: flex;
            justify-content: space-between;
            padding: 1rem 0;
            border-bottom: 1px solid rgba(255,255,255,0.3);
        }

        .day-row:last-child {
            border-bottom: none;
        }

        /* Why Contact Section */
        .why-contact-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
            color: rgb(252, 249, 249);
        }

        .feature-box {
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(10px);
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            margin-bottom: 2rem;
            transition: all 0.3s;
            border: 2px solid rgba(255,255,255,0.3);
        }

        .feature-box:hover {
            background: rgba(255,255,255,0.3);
            transform: scale(1.05);
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        /* FAQ Section */
        .faq-section {
            padding: 80px 0;
            background: linear-gradient(to bottom, #f8f9fa, white);
        }

        .faq-item {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            margin-bottom: 1.5rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border-left: 5px solid #667eea;
            transition: all 0.3s;
        }

        .faq-item:hover {
            transform: translateX(10px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }

        .faq-question {
            font-size: 1.2rem;
            font-weight: 600;
            color: #667eea;
            margin-bottom: 0.8rem;
        }

        /* Social Media Section */
        .social-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
            text-align: center;
            color: white;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 2rem;
        }

        .social-icon {
            width: 70px;
            height: 70px;
            background: white;
            color: #fa709a;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            transition: all 0.3s;
            text-decoration: none;
        }

        .social-icon:hover {
            transform: scale(1.2) rotate(10deg);
            box-shadow: 0 10px 25px rgba(0,0,0,0.3);
            color: #fa709a;
        }

        /* Emergency Contact Section */
        .emergency-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #FF6B6B, #C44569);
            color: white;
            text-align: center;
        }

        .emergency-box {
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(10px);
            padding: 3rem;
            border-radius: 20px;
            border: 3px solid rgba(255,255,255,0.4);
        }

        .emergency-number {
            font-size: 3rem;
            font-weight: bold;
            margin: 1.5rem 0;
        }

        .pulse-button {
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        /* CTA Section */
        .cta-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            text-align: center;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 3rem;
            text-align: center;
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: currentColor;
            margin: 1rem auto 0;
            border-radius: 2px;
        }
        

        .alert {
            border-radius: 15px;
            padding: 1.5rem;
            margin-bottom: 2rem;
        }

        .call-now-fixed {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: linear-gradient(135deg, #f093fb, #f5576c);
            color: white;
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            box-shadow: 0 10px 30px rgba(240, 147, 251, 0.5);
            z-index: 1000;
            transition: all 0.3s;
        }

        .call-now-fixed:hover {
            transform: scale(1.1);
            color: white;
        }


        /* Blog Section */
.blog-post img {
  max-height: 400px;
  object-fit: cover;
}

.blog-post h2 {
  color: #667eea;
  margin-bottom: 10px;
}

.blog-post p {
  line-height: 1.7;
}

.blog-post a.btn {
  margin-top: 10px;
  border-radius: 50px;
  padding: 10px 25px;
}

.sidebar {
  border-left: 4px solid #667eea;
}

.sidebar ul li {
  margin-bottom: 10px;
}

.sidebar ul li a {
  text-decoration: none;
  color: #333;
  transition: color 0.3s;
}

.sidebar ul li a:hover {
  color: #667eea;
}

/* Blog Page Header */
.blog-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.blog-hero h1 {
    font-size: 3rem;          /* Large heading */
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    text-align: center; 
}

.blog-hero p {
    font-size: 1.25rem;
    color: white;
    text-align: center; 
}

.custom-btn {
  background-color: black;
  color: red;
  padding: 12px 24px;
  border-radius: 6px;
  display: inline-block;
  text-decoration: none;
}
.custom-btn:hover {
  opacity: 0.8; /* slight hover effect */
}

html {
  scroll-behavior: smooth;
}

.scroll-top-fixed {
    position: fixed;
    bottom: 20px;       /* Adjust to place above Call Now if needed */
    right: 20px;
    background-color: red;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    z-index: 1000;
    display: none;      /* Hidden by default */
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.scroll-top-fixed:hover {
    background-color: #c00;
    transform: scale(1.05);
}

.call-now-fixed {
    bottom: 60px !important;   /* moves up from footer */
}

.call-now-fixed {
    bottom: 60px !important;   /* moves up from footer */
}



















/* Landpage */

 section {
            padding-top: 50px;
            padding-bottom: 50px;
        }
        #features, #about, #process, #services {
            padding-top: 40px;
            padding-bottom: 40px;
        }

        /* Hero Section */
        .hero-section {
            padding: 60px 15px;
            text-align: left;
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
        }
        .hero-section .hero-title {
            font-weight: 700;
            font-size: 3rem;
            line-height: 1.2;
        }
        .hero-section .hero-subtitle {
            font-size: 1.2rem;
            margin-bottom: 20px;
        }
        .cta-button {
            background: #ff6600;
            color: white;
            border: none;
            padding: 10px 25px;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .cta-button:hover {
            background: #e65c00;
        }

        .hero-section img {
            width: 100%;
            max-width: 400px;
            height: auto;
            animation: float 3s ease-in-out infinite;
            margin-top: 20px;
        }
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        /* Feature Cards */
        .feature-card, .service-card {
            border-radius: 12px;
            text-align: center;
            padding: 15px;
            margin-bottom: 20px;
            transition: transform 0.3s ease;
            box-shadow: 0 0 12px rgba(0,0,0,0.1);
        }
        .feature-icon {
            font-size: 2rem;
            margin-bottom: 10px;
        }

        /* Services */
        .service-img {
            width: 80px;
            height: 80px;
            margin: 0 auto 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            font-size: 2rem;
            color: white;
        }
        .service-body h4 {
            font-size: 1.2rem;
            margin-bottom: 8px;
        }
        .service-body p {
            font-size: 0.9rem;
            margin-bottom: 10px;
        }
        .service-body .btn {
            font-size: 0.85rem;
            padding: 5px 10px;
        }

        /* Process Steps */
        .process-step {
            margin-bottom: 25px;
        }
        .process-number {
            font-size: 1.5rem;
            font-weight: 700;
            background: #ff6600;
            color: white;
            width: 50px;
            height: 50px;
            line-height: 50px;
            text-align: center;
            border-radius: 50%;
            margin-bottom: 10px;
        }

        /* Sidebar */
        .side-menu {
            position: fixed;
            top: 120px;
            right: 20px;
            width: 220px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            border-radius: 12px;
            padding: 20px;
            z-index: 999;
            margin-top: 20px;
        }
        .side-menu h5 {
            font-weight: 700;
            color: #ff6600;
            font-size: 25px;
            text-align: center;
            margin-bottom: 15px;
        }
        .side-menu ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .side-link {
            text-decoration: none;
            color: white;
            display: block;
            padding: 8px 12px;
            border-radius: 8px;
            transition: all 0.3s ease;
            font-size: 18px;
            margin: 8px 0;
        }
        .side-link:hover, .side-link.active {
            background: #ff6600;
            color: white;
        }

        /* Scroll to Top Button */
        #scrollTopBtn {
            position: fixed;
            bottom: 130px;
            right: 85px;
            display: none;
            background: #ff6600;
            color: #fff;
            border: none;
            border-radius: 50%;
            padding: 15px 18px;
            font-size: 22px;
            cursor: pointer;
            box-shadow: 0 0 12px rgba(0,0,0,0.3);
            z-index: 9999;
            transition: all 0.3s ease;
        }
        #scrollTopBtn:hover { transform: scale(1.1); }

        /* Floating Call Button */
        .call-now-fixed {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #ff6600;
            color: #fff;
            padding: 12px 20px;
            border-radius: 50px;
            font-weight: bold;
            z-index: 9999;
            display: flex;
            align-items: center;
            gap: 10px;
            animation: pulse 1.5s infinite;
            cursor: pointer;
            text-decoration: none;
        }
        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .side-menu { display: none; }
            .hero-section { text-align: center; }
            .hero-section .hero-title { font-size: 2.3rem; }
            .hero-section .hero-subtitle { font-size: 1rem; }
            .cta-button { width: 100%; margin-bottom: 10px; }
            .hero-section img { max-width: 300px; margin: 20px auto; }
        }
        @media (max-width: 768px) {
            .service-img { width: 60px; height: 60px; font-size: 1.5rem; }
            .service-body h4 { font-size: 1rem; }
            .service-body p { font-size: 0.85rem; }
            .section-title { font-size: 1.5rem; }
            .feature-card, .service-card { padding: 15px; margin-bottom: 15px; }
            .process-step { margin-bottom: 20px; }
        }

        body {
    overflow-x: hidden;
}

/* Optional: make all sections responsive */
section {
    max-width: 100%;
    overflow-x: hidden;
}










/* About page */

/* Position carousel buttons on the sides */
#timelineCarousel .carousel-control-prev,
#timelineCarousel .carousel-control-next {
  width: 5%; /* make control areas smaller */
  top: 50%;
  transform: translateY(-50%);
  opacity: 1; /* fully visible */
}

/* Move buttons outside slide container */
#timelineCarousel .carousel-control-prev {
  left: -60px; /* adjust as needed */
}
#timelineCarousel .carousel-control-next {
  right: -60px;
}

/* Customize arrow icons */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: #e2a217ff; /* your theme color */
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background-size: 70%;
  background-position: center;
  background-repeat: no-repeat;
}



body {
    /* margin-right: 260px; gives space for sidebar */
}

@media (max-width: 992px) {
    .side-menu {
        display: none;
    }
    body {
        margin-left: 0;
    }
}

/* Prevent horizontal overflow */
body {
    overflow-x: hidden;
}

/* Optional: make all sections responsive */
section {
    max-width: 100%;
    overflow-x: hidden;
}


@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.3rem; /* smaller on mobile */
        word-wrap: break-word; /* prevent overflow */
    }

    .hero-section p.lead {
        font-size: 1.1rem;
    }

    .hero-section {
        padding: 3rem 1rem; /* smaller padding for mobile */
    }
}






/* contact page  */




body {
    overflow-x: hidden;
}

/* Optional: make all sections responsive */
section {
    max-width: 100%;
    overflow-x: hidden;
}



.why-contact-section .col-md-3 {
    display: flex;
}

.why-contact-section .feature-box {
    flex: 1;
}



/* Mobile Optimization */
@media (max-width: 576px) {
    .emergency-box {
        padding: 25px 20px;
    }

    .emergency-box h2 {
        font-size: 20px !important;
    }

    .emergency-box p.lead {
        font-size: 15px !important;
    }

    .emergency-box i {
        font-size: 40px !important;
    }

    .emergency-number a {
        font-size: 18px !important;
    }
}












/* Gallery  */

        .masonry img {
            width: 100%;
            border-radius: 8px;
            margin-bottom: 16px;
            cursor: pointer;
            transition: transform 0.3s;
        }
        .masonry img:hover {
            transform: scale(1.05);
        }
        #lightbox {
            position: fixed;
            top:0; left:0; width:100%; height:100%;
            background: rgba(0,0,0,0.8);
            display:none; align-items:center; justify-content:center;
        }
        #lightbox img {
            max-width:90%; max-height:85vh; border-radius:10px;
        }

.gallery-item img {
    width: 150%;       /* full column width */
    height: 250px;     /* fixed height */
    object-fit: cover; /* crop to fit nicely */
    border-radius: 8px;
    transition: transform 0.3s;
}

.gallery-item img:hover {
    transform: scale(1.05);
}

.gallery-item p {
    font-size: 1.2rem;   /* Increase font size */
    font-weight: 600;    /* Make it bold */
    color: #333;         /* Optional: text color */
    margin-top: 8px;     /* Spacing */
      /* Align text to the left */
}


/* Example for larger titles */
.gallery-item p.title-large {
    font-size: 1.5rem;
    font-weight: 700;
}
.gallery-item {
    text-align: center;  /* Ensures title and any text inside is centered */
}
.gallery-item {
    text-align: center;
    margin-bottom: 20px;
}

.gallery-item img {
    width: 100%;
    height: 250px;       /* fixed height for all images */
    object-fit: cover;   /* crops image to fit box */
    border-radius: 10px;
    transition: transform 0.4s ease;
}

.gallery-item img:hover {
    transform: scale(1.05);
}

.btn {
    color: #fff;
    border: none;
    padding: 8px 18px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.btn:hover {
    transform: scale(1.05);
}

/* Professional color palette */
.btn-orange { background-color:#3d348b; }   /* Orange */
.btn-orange:hover { background-color: #3d348b; }

.btn-blue { background-color: #7678ed; }     /* Classic Blue */
.btn-blue:hover { background-color: #7678ed; }

.btn-gray { background-color: #f7b801; }     /* Neutral Gray */
.btn-gray:hover { background-color: #f7b801; }

.btn-teal { background-color: #f18701; }     /* Teal / Modern Green */
.btn-teal:hover { background-color: #f18701; }

.btn-purple { background-color: #f35b04; }   /* Professional Purple */
.btn-purple:hover { background-color: #f35b04; }


@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.3rem; /* smaller on mobile */
        word-wrap: break-word; /* prevent overflow */
    }

    .hero-section p.lead {
        font-size: 1.5rem;
    }

    .hero-section {
        padding: 3rem 1rem; /* smaller padding for mobile */
    }
}






/* Product page  */

 .product-item {
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.3s ease;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            background: #fff;
            padding: 10px;
        }
        .product-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }
        .product-item img {
            max-height: 180px;
            object-fit: cover;
            width: 100%;
            border-radius: 8px;
        }
        .product-item p {
            margin-top: 8px;
            font-weight: 600;
            color: #333;
        }

  

.product-item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    background: #fff;
    padding: 10px;
    height: 100%; /* make it fill parent */
}

.product-item p {
    margin-top: 8px;
    font-weight: 600;
    color: black;
}

/* Optional: limit description height to keep boxes uniform */
.product-item .text-muted {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5; /* limits to 5 lines */
    -webkit-box-orient: vertical;


}

.product-item .text-muted {
    overflow: visible; /* allow full description */
    display: block;
}







/* Projects   */

@media (max-width: 576px) {
    .project-item {
        margin: 0 25px; /* adds spacing left & right */
    }

    .project-item img {
        width: 100%;
        border-radius: 10px;
    }
}
