        /* Custom styles */
        :root {
            --primary-color: #2c3e50;
            --secondary-color: #3498db;
            --accent-color: #e74c3c;
            --light-color: #ecf0f1;
            --dark-color: #2c3e50;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            scroll-behavior: smooth;
        }
        
        .navbar {
            background-color: var(--primary-color) !important;
        }
        
        .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                        url('assets\img\5ba55c94-0ef6-4098-b817-d4cfd1d6596e.jfif');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 150px 0;
            text-align: center;
        }
        
        .section-title {
            position: relative;
            margin-bottom: 50px;
            color: var(--primary-color);
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--secondary-color);
        }
        
        .btn-primary {
            background-color: var(--secondary-color);
            border-color: var(--secondary-color);
        }
        
        .btn-danger {
            background-color: var(--accent-color);
            border-color: var(--accent-color);
        }
        
        .service-card {
            transition: transform 0.3s;
            margin-bottom: 30px;
            height: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
        }
        
        .service-icon {
            font-size: 3rem;
            color: var(--secondary-color);
            margin-bottom: 20px;
        }
        
        .testimonial-card {
            background-color: var(--light-color);
            padding: 20px;
            border-radius: 5px;
            margin-bottom: 20px;
        }
        
        .testimonial-img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 15px;
        }
        
        footer {
            background-color: var(--dark-color);
            color: white;
            padding: 50px 0 20px;
        }
        
        .contact-info i {
            margin-right: 10px;
            color: var(--secondary-color);
        }
        
        .social-icons a {
            color: rgb(79, 34, 184);
            font-size: 1.5rem;
            margin-right: 15px;
            transition: color 0.3s;
        }
        
        .social-icons a:hover {
            color: var(--secondary-color);
        }
        
        .back-to-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            display: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: var(--accent-color);
            color: white;
            text-align: center;
            line-height: 50px;
            font-size: 1.2rem;
            z-index: 999;
        }
        
        .back-to-top:hover {
            color: white;
            background-color: var(--secondary-color);
        }
        .gallery-img-wrapper {
            min-width: 320px;
            height: 220px;
            position: relative;
            flex: 0 0 auto;
        }
        .gallery-img-caption {
            border-bottom-left-radius: 0.5rem;
            border-bottom-right-radius: 0.5rem;
            /* Ensures the caption matches the image's rounded corners */
        }
        .gallery-img-wrapper img {
            width: 100%;
            height: 100%;
            display: block;
            border-radius: 0.5rem;
        }
        .animate-fade-in-up {
            opacity: 0;
            transform: translateY(40px);
            animation: fadeInUp 1s forwards;
        }
        .animate-fade-in-up[style*="animation-delay"] {
            animation-delay: inherit;
        }
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
