:root {
            --primary-color: rgb(241, 91, 41);
            --footer-bg: rgb(16, 76, 113);
            --text-dark: #333;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            scroll-behavior: smooth;
        }

        /* Navbar Styles */
        .navbar {
            background-color: white !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 15px 0;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .navbar-brand {
            font-size: 28px;
            font-weight: 800;
            color: var(--primary-color) !important;
            letter-spacing: 1px;
        }

        .navbar-brand i {
            margin-right: 8px;
        }

        .navbar-nav .nav-link {
            color: var(--text-dark) !important;
            font-weight: 600;
            margin: 0 15px;
            padding: 8px 15px !important;
            transition: all 0.3s ease;
            border-radius: 5px;
        }

        .navbar-nav .nav-link:hover {
            color: var(--primary-color) !important;
        }

        .navbar-nav .nav-link.active {
            color: white !important;
            background-color: var(--primary-color);
        }

        .btn-booking {
            background-color: var(--primary-color);
            color: white;
            padding: 10px 30px;
            border-radius: 25px;
            font-weight: 600;
            border: none;
            transition: all 0.3s ease;
        }

        .btn-booking:hover {
            background-color: #d6572a;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(241, 91, 41, 0.3);
        }

        /* Section Styles */
        section {
            padding: 100px 0 80px;
            min-height: 100vh;
        }

        .section-title {
            font-size: 42px;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 15px;
            text-align: center;
        }

        .section-subtitle {
            font-size: 18px;
            color: #666;
            text-align: center;
            margin-bottom: 50px;
        }

        /* Home Section */
        .home-content h1 {
            font-size: 56px;
            font-weight: 800;
            margin-bottom: 20px;
            animation: fadeInUp 1s ease;
        }

        .home-content p {
            font-size: 22px;
            margin-bottom: 30px;
            animation: fadeInUp 1.2s ease;
        }

        .home-content .btn {
            animation: fadeInUp 1.4s ease;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* About Section */
        #about {
            background-color: #f8f9fa;
        }

        .about-content {
            display: flex;
            gap: 50px;
        }

        .about-image {
            flex: 1;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .about-text {
            flex: 1;
        }

        .about-text h2 {
            font-size: 42px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 20px;
        }

        .about-text p {
            font-size: 18px;
            color: #666;
            line-height: 1.8;
            margin-bottom: 15px;
        }

        .about-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 30px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .feature-item i {
            font-size: 32px;
            color: var(--primary-color);
        }

        .feature-item span {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-dark);
        }

        /* Services Section */
        #services {
            background-color: white;
        }

        .service-card {
            text-decoration: none;
            color: inherit;
            display: block;
            transition: all 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-10px);
            text-decoration: none;
        }

        .card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            height: 100%;
        }

        .card:hover {
            box-shadow: 0 10px 40px rgba(241, 91, 41, 0.3);
        }

        .card-img-top {
            height: 250px;
            object-fit: cover;
        }

        .card-body {
            padding: 25px;
        }

        .card-title {
            font-size: 24px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 10px;
        }

        .card-price {
            font-size: 28px;
            font-weight: 800;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        .card-text {
            font-size: 16px;
            color: #666;
            line-height: 1.6;
        }

        .service-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background-color: var(--primary-color);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
        }

        /* Footer Styles */
        footer {
            background-color: var(--footer-bg);
            color: white;
            padding: 60px 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h3 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 20px;
            color: white;
        }

        .footer-section p {
            font-size: 16px;
            line-height: 1.8;
            color: rgba(255,255,255,0.8);
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--primary-color);
            padding-left: 5px;
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 50%;
            color: white;
            font-size: 20px;
            transition: all 0.3s ease;
        }

        .social-icons a:hover {
            background-color: var(--primary-color);
            transform: translateY(-5px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.8);
        }

        .contact-info {
            margin-top: 20px;
        }

        .contact-info p {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
            font-size: 16px;
        }

        .contact-info i {
            color: var(--primary-color);
            font-size: 18px;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .about-content {
                flex-direction: column;
            }

            .home-content h1 {
                font-size: 42px;
            }

            .section-title {
                font-size: 36px;
            }

            .about-features {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .home-content h1 {
                font-size: 32px;
            }

            .home-content p {
                font-size: 18px;
            }

            .navbar-nav .nav-link {
                margin: 5px 0;
            }

            section {
                padding: 80px 0 60px;
            }
        }
    








        
      .testimonial-section {
            padding: 40px 10px;
        }

        @media (min-width: 768px) {
            .testimonial-section {
                padding: 60px 0;
            }
        }

        .testimonial-card {
            border-radius: 15px;
            transition: all 0.3s ease;
            border: none;
        }

        .testimonial-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }

        .testimonial-img {
            width: 100px;
            height: 100px;
            object-fit: cover;
        }

        @media (min-width: 768px) {
            .testimonial-img {
                width: 100px;
                height: 100px;
            }
        }

        .title {
            font-weight: bold;
            color: #0d6efd;
            font-size: 1.5rem;
        }

        @media (min-width: 768px) {
            .title {
                font-size: 2rem;
            }
        }

        .testimonial-text {
            font-size: 0.9rem;
        }

        @media (min-width: 768px) {
            .testimonial-text {
                font-size: 1rem;
            }
        }


.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    z-index: 100;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.whatsapp-float img {
    width: 35px;
    height: 35px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}


/* Gallery Section */
        .gallery-section {
            padding: 80px 0;
        }

        .section-title {
            font-size: 42px;
            font-weight: 800;
            color: var(--text-dark);
            text-align: center;
            margin-bottom: 15px;
        }

        .section-subtitle {
            font-size: 18px;
            color: #666;
            text-align: center;
            margin-bottom: 50px;
        }

        /* Filter Buttons */
        .filter-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .filter-btn {
            padding: 12px 30px;
            background: white;
            border: 2px solid #e0e0e0;
            border-radius: 25px;
            color: var(--text-dark);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .filter-btn:hover,
        .filter-btn.active {
            background: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(241, 91, 41, 0.3);
        }

        /* Gallery Grid */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            cursor: pointer;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .gallery-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(241, 91, 41, 0.3);
        }

        .gallery-item img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.8));
            opacity: 0;
            transition: opacity 0.3s ease;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 25px;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-overlay h5 {
            color: white;
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .gallery-overlay p {
            color: rgba(255,255,255,0.9);
            font-size: 14px;
            margin: 0;
        }

        .gallery-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0);
            width: 60px;
            height: 60px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            transition: transform 0.3s ease;
        }

        .gallery-item:hover .gallery-icon {
            transform: translate(-50%, -50%) scale(1);
        }

        /* Lightbox Modal */
        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 9999;
            animation: fadeIn 0.3s ease;
        }

        .lightbox.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .lightbox-content {
            position: relative;
            max-width: 90%;
            max-height: 90vh;
            animation: zoomIn 0.3s ease;
        }

        @keyframes zoomIn {
            from { transform: scale(0.5); }
            to { transform: scale(1); }
        }

        .lightbox-content img {
            max-width: 100%;
            max-height: 90vh;
            object-fit: contain;
            border-radius: 10px;
        }

        .lightbox-info {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.9));
            padding: 30px;
            color: white;
            border-radius: 0 0 10px 10px;
        }

        .lightbox-info h4 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .lightbox-info p {
            font-size: 16px;
            margin: 0;
            opacity: 0.9;
        }

        /* Lightbox Controls */
        .lightbox-close {
            position: absolute;
            top: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--primary-color);
            border: none;
            border-radius: 50%;
            color: white;
            font-size: 24px;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10000;
        }

        .lightbox-close:hover {
            background: #d6572a;
            transform: rotate(90deg);
        }

        .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 60px;
            height: 60px;
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255,255,255,0.3);
            border-radius: 50%;
            color: white;
            font-size: 28px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .lightbox-nav:hover {
            background: var(--primary-color);
            border-color: var(--primary-color);
            transform: translateY(-50%) scale(1.1);
        }

        .lightbox-prev {
            left: 30px;
        }

        .lightbox-next {
            right: 30px;
        }

        /* Counter */
        .lightbox-counter {
            position: absolute;
            top: 30px;
            left: 30px;
            background: rgba(0,0,0,0.7);
            color: white;
            padding: 10px 20px;
            border-radius: 25px;
            font-weight: 600;
            font-size: 16px;
        }

        /* Hidden class for filtering */
        .gallery-item.hidden {
            display: none;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .gallery-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
                gap: 15px;
            }

            .gallery-item img {
                height: 250px;
            }

            .lightbox-nav {
                width: 50px;
                height: 50px;
                font-size: 22px;
            }

            .lightbox-prev {
                left: 15px;
            }

            .lightbox-next {
                right: 15px;
            }

            .lightbox-close {
                top: 15px;
                right: 15px;
                width: 45px;
                height: 45px;
                font-size: 20px;
            }

            .lightbox-counter {
                top: 15px;
                left: 15px;
                font-size: 14px;
                padding: 8px 15px;
            }

            .section-title {
                font-size: 32px;
            }
        }

        @media (max-width: 576px) {
            .gallery-grid {
                grid-template-columns: 1fr;
            }
        }


        /* Video CSS */

         .video-section {
            padding: 60px 0;
            background: #f9f9f9;
        }

        .section-title {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-title h2 {
            font-weight: bold;
        }

        .video-card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: 0.3s;
            background: #fff;
        }

        .video-card:hover {
            transform: translateY(-5px);
        }

        .video-title {
            padding: 15px;
            font-weight: 600;
            font-size: 16px;
        }

        .ratio iframe {
            border-radius: 10px 10px 0 0;
        }

    .call-float {
        position: fixed;
        width: 55px;
        height: 55px;
        bottom: 90px; /* above WhatsApp */
        right: 20px;
        background-color: #007bff;;
        color: white;
        border-radius: 50%;
        text-align: center;
        font-size: 22px;
        box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
        z-index: 100;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
    }

    .call-float {
    background-color: #007bff;
}

.call-float:hover {
    background-color: #0056b3;  /* darker blue */
}