        body {
            font-family: 'Inter', sans-serif;
        }

        .nav-scrolled {
            background-color: rgba(255, 255, 255, 1) !important;
            shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
        }

        .carousel-indicators {
            bottom: 20px;
            justify-content: center;
        }
		.carousel-item h1,	.carousel-item p{
			background:#000;
		}
.carousel-item h1, .carousel-item p {
  background: #00000073;
  padding: 10px;
}
        .carousel-indicators button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: white;
            opacity: 0.6;
            margin: 0 5px;
        }

        .carousel-indicators .active {
            opacity: 1;
            background-color: #2563eb;
        }

        .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
                url("https://images.pexels.com/photos/8961003/pexels-photo-8961003.jpeg");
            background-size: cover;
            background-position: center;
            padding: 90px 20px;
            color: white;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-content {
            max-width: 800px;
            margin: auto;
        }

        .hero-section h1 {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .hero-section p {
            font-size: 18px;
            margin-bottom: 25px;
            color: #dbeafe;
        }

        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }

        .call-btn,
        .whatsapp-btn {
            padding: 12px 24px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
            color: white;
            font-weight: 500;
            text-decoration: none;
            transition: .3s;
        }

        .call-btn {
            background: #1e3a8a;
        }

        .call-btn:hover {
            background: #1d4ed8;
        }

        .whatsapp-btn {
            background: #16a34a;
        }

        .whatsapp-btn:hover {
            background: #15803d;
        }

        .hero-services {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 25px;
        }

        .service-box {
            background: rgba(255, 255, 255, 0.08);
            padding: 20px;
            border-radius: 10px;
            backdrop-filter: blur(10px);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .service-box i {
            width: 35px;
            height: 35px;
            margin: auto;
            margin-bottom: 8px;
            color: #60a5fa;
        }

        .service-box h3 {
            font-size: 16px;
            font-weight: 600;
        }


        /* GALLERY */

        .gallery {
            padding: 50px 20px;
            background: #f9fafb;
            text-align: center;
        }

        #gallery {
            margin-top: 0;
        }

        .gallery-title {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 30px;
            margin-top: 0;
        }

        .gallery-menu {
            margin-bottom: 40px;
        }

        .gallery-menu button {
            padding: 10px 20px;
            border: none;
            background: #e5e7eb;
            margin: 5px;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 500;
            transition: .3s;
        }

        .gallery-menu button.active,
        .gallery-menu button:hover {
            background: #1e3a8a;
            color: white;
        }

        .gallery-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            max-width: 1200px;
            margin: auto;
        }

        .gallery-item {
            overflow: hidden;
            border-radius: 10px;
            position: relative;
        }

        .gallery-item img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            transition: .5s;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        html {
            scroll-padding-top: 80px;
        }

        #navbar {
            transition: box-shadow 0.3s ease;
        }

        /* Mobile menu animation */
        #mobileMenu {
            transition: opacity 0.2s ease;
        }

        /* Hamburger line transitions */
        .hamburger-line {
            transition: transform 0.3s ease, opacity 0.3s ease;
        }

        @media (max-width: 640px) {
            .hero-services {
                grid-template-columns: 1fr;
            }
        }