    /* Navbar Styling */
    .navbar-custom {
        background: linear-gradient(to right, rgb(67, 198, 198), rgb(54, 105, 144), #d1a8b3);
        transition: all 0.3s ease-in-out;
    }
    .nav-link {
        color: white !important;
        font-weight: 500;
        transition: color 0.3s ease-in-out, transform 0.2s ease-in-out;
    }
    .nav-link:hover {
        color: black !important;
        background-color: rgba(255, 255, 255, 0.2);
        border-radius: 5px;
        font-weight: bold;
    }
    
    /* Book Now Button */
    .book-now-btn {
        background: rgb(177, 112, 122);
        color: black !important;
        font-weight: bold;
        border-radius: 10px;
        padding: 8px 15px;
        transition: all 0.3s ease-in-out;
        border: none;
    }
    .book-now-btn:hover {
        background: rgb(139, 34, 52);
        color: black !important;
        border: 1px solid pink;
    }
    /* home Section */
    #home {
        position: relative;
        width: 100%;
        height: 90vh;
    }
    
    .carousel-item img {
        height: 90vh;
        object-fit: cover;
        filter: brightness(75%);
    }
    
    .carousel-caption {
        position: absolute;
        bottom: 20%;
        left: 10%;
        text-align: left;
    }
    
    .carousel-caption h2 {
        font-size: 2.5rem;
        font-weight: bold;
        text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
        animation: fadeInUp 1s ease-in-out;
    }
    
    .carousel-caption p {
        font-size: 1.2rem;
        text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.6);
        animation: fadeInUp 1.2s ease-in-out;
    }
    
    .carousel-control-prev, .carousel-control-next {
        width: 5%;
    }
    
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* About Us Section */
    .about-us {
        background: rgb(54, 105, 144) !important;
        padding: 60px 0;
        position: relative;
        overflow: hidden;
    }
    .about-us h2 {
        color: white;
        font-size: 2.5rem;
        font-weight: bold;
        text-transform: uppercase;
        animation: fadeInDown 1s ease-in-out;
    }
    /* About Us Card Styling */
    .card {
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        border: none;
        transition: all 0.4s ease-in-out;
        opacity: 0;
        transform: translateY(30px);
        border-radius: 12px;
        overflow: hidden;
        position: relative;
    }
    
    /* Apply Scroll Animation */
    .card.visible {
        opacity: 1;
        transform: translateY(0);
    }
    
    /* Elegant Hover Effect */
    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
    }
    
    /* Image Zoom Effect */
    .card .card-img-top {
        transition: transform 0.4s ease-in-out, filter 0.3s ease-in-out;
    }
    
    .card:hover .card-img-top {
        transform: scale(1.08);
        filter: brightness(85%);
    }
    
    /* Overlay Effect on Hover */
    .card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.15);
        opacity: 0;
        transition: opacity 0.4s ease-in-out;
        border-radius: 12px;
    }
    
    .card:hover::before {
        opacity: 1;
    }
    
    /* Subtle Content Highlight on Hover */
    .card-body {
        text-align: center;
        transition: background 0.3s ease-in-out;
    }
    
    .card:hover .card-body {
        background: rgba(54, 105, 144, 0.1);
    }
    
    /* Title & Text Animation */
    .card-title, .card-text {
        transition: color 0.3s ease-in-out, transform 0.3s ease-in-out;
    }
    
    .card:hover .card-title {
        color: #2a3d66;
        transform: translateY(-3px);
    }
    
    .card:hover .card-text {
        color: #444;
    }
    .about-text {
      font-size: 1.1rem;
      line-height: 1.7;
      color: #f0f0f0;
      padding: 10px;
    }
    
    /* Scroll Animation */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(50px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    @keyframes fadeInDown {
        from {
            opacity: 0;
            transform: translateY(-30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Apply Scroll Animation */
    .card.visible {
        animation: fadeInUp 0.8s ease-in-out;
        opacity: 1;
        transform: translateY(0);
    }
    
    /* Contact Us Section Styling */
    .contact-us {
        background: #e9ecef;
        padding: 60px 0;
        position: relative;
        overflow: hidden;
    }
    
    /* Contact Form Container */
    .contact-form {
        background: white;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        opacity: 0;
        transform: translateY(40px);
        transition: all 0.6s ease-in-out;
    }
    
    /* Contact Form Appears on Scroll */
    .contact-form.visible {
        opacity: 1;
        transform: translateY(0);
    }
    
    /* Input Fields */
    .contact-form input, 
    .contact-form textarea {
        border: 2px solid transparent;
        transition: all 0.3s ease-in-out;
    }
    
    /* Input Focus Effect */
    .contact-form input:focus, 
    .contact-form textarea:focus {
        border-color: #2a3d66;
        box-shadow: 0 4px 10px rgba(42, 61, 102, 0.2);
    }
    
    /* Submit Button Styling */
    .contact-form button {
        background: linear-gradient(to right, #2a3d66, #5484a6);
        color: white;
        font-weight: bold;
        padding: 10px;
        border: none;
        border-radius: 8px;
        transition: all 0.3s ease-in-out;
    }
    
    /* Button Hover Effect */
    .contact-form button:hover {
        background: linear-gradient(to right, #1e2f4a, #3b6b8e);
        transform: scale(1.05);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    }
    
    /* Google Map Fade-in Animation */
    .contact-us iframe {
        opacity: 0;
        transform: scale(0.9);
        transition: all 0.6s ease-in-out;
        height:343px;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
    
    /* Make Map Visible on Scroll */
    .contact-us iframe.visible {
        opacity: 1;
        transform: scale(1);
    }
    
    /* Scroll Animation */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(50px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Contact Section Title Animation */
    .contact-us h2 {
        font-size: 2.5rem;
        font-weight: bold;
        color: #2a3d66;
        text-transform: uppercase;
        text-align: center;
        margin-bottom: 30px;
        opacity: 0;
        transform: translateY(-20px);
        animation: fadeInUp 0.8s ease-in-out forwards;
    }
    
    /* Contact Us Icons Animation */
    .contact-icon {
        font-size: 24px;
        color: #2a3d66;
        transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
    }
    
    .contact-icon:hover {
        transform: scale(1.2);
        color: #5484a6;
    }
    
    
    @keyframes slideInLeft {
        from {
            opacity: 0;
            transform: translateX(-50px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    /* Services Section */
    .services {
        background-color: white;
        padding: 80px 0;
        text-align: center;
    }
    
    .services h2 {
        font-size: 2.5rem;
        font-weight: bold;
        color: rgb(54, 105, 144);
        text-transform: uppercase;
        position: relative;
        display: inline-block;
        animation: fadeInDown 1s ease-in-out;
    }
    
    .services h2::after {
        content: "";
        display: block;
        width: 80px;
        height: 4px;
        background: rgb(177, 112, 122);
        margin: 10px auto 20px;
        border-radius: 2px;
    }
    
    .service-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px;
        margin-top: 40px;
    }
    
    .service-item {
        background: #fff;
        padding: 30px;
        width: 280px;
        text-align: center;
        border-radius: 15px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
        opacity: 0;
        transform: translateY(30px);
        position: relative;
    }
    
    .service-item.visible {
        animation: fadeInUp 0.8s ease-in-out forwards;
    }
    
    .service-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }
    
    /* Service Icon Styling */
    .service-icon {
        font-size: 50px;
        color: rgb(67, 198, 198);
        transition: color 0.3s ease-in-out, transform 0.3s ease-in-out;
    }
    
    .service-item:hover .service-icon {
        color: rgb(139, 34, 52);
        transform: rotate(10deg) scale(1.1);
    }
    
    /* Service Text */
    .service-item h3 {
        font-size: 1.5rem;
        margin-top: 15px;
        font-weight: bold;
        color: rgb(54, 105, 144);
        transition: color 0.3s ease-in-out;
    }
    
    .service-item:hover h3 {
        color: rgb(139, 34, 52);
    }
    
    .service-item p {
        font-size: 1rem;
        color: #555;
        margin-top: 10px;
    }
    .service-icon {
        font-size: 50px;
        color: rgb(67, 198, 198);
        transition: color 0.3s ease-in-out, transform 0.3s ease-in-out;
    }
    
    .service-item:hover .service-icon {
        color: rgb(139, 34, 52);
        transform: rotate(10deg) scale(1.1);
    }
    
      /* Custom Review Card Styling */
     /* Customer Review Heading  */
    .review-section h2 {
        text-align: center;
        font-size: 2.5rem;
        font-weight: bold;
        color: rgb(54, 105, 144);
        text-transform: uppercase;
        position: relative;
        display: block; /* Ensures full-width centering */
        animation: fadeInDown 1s ease-in-out;
        margin-bottom: 20px;
    }
    
    /* Decorative Line Below Heading */
    .review-section h2::after {
        content: "";
        display: block;
        width: 80px;
        height: 4px;
        background: rgb(177, 112, 122);
        margin: 10px auto 20px;
        border-radius: 2px;
    }
    
      .review-card {
        border: 1px solid #ddd;
        border-radius: 10px;
        padding: 15px;
        text-align: center;
        background: #fff;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease-in-out;
    }
    
    .review-card:hover {
        transform: translateY(-5px);
    }
    
    .review-card img {
        width: 100%;
        height: 140px;
        object-fit: cover;
        border-radius: 8px;
    }
    
    
    .star-rating {
        font-size: 14px;
        color: gold;
        margin-top: 10px;
    }
    .star {
        margin-right: 2px;
    }
    /* Carousel Controls */
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        background-color: black;
        border-radius: 50%;
        padding: 10px;
    }
    
    /* Gallery Section */
    .gallery-section {
        text-align: center;
        padding: 60px 20px;
        background-color: #f9f9f9;
    }
    
    .gallery-section h2 {
        text-align: center;
        font-size: 2.5rem;
        font-weight: bold;
        color: rgb(54, 105, 144);
        text-transform: uppercase;
        position: relative;
        display: block; /* Ensures full-width centering */
        animation: fadeInDown 1s ease-in-out;
        margin-bottom: 20px;
    }
    
    /* Decorative Line Below Heading */
    .gallery-section h2::after {
        content: "";
        display: block;
        width: 80px;
        height: 4px;
        background: rgb(177, 112, 122);
        margin: 10px auto 20px;
        border-radius: 2px;
    }
    /* Gallery Container */
    .gallery-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    /* Individual Gallery Cards */
    .service-item {
        width: 300px;
        background: #fff;
        border-radius: 10px;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
        text-align: center;
        padding: 15px;
        position: relative;
    }
    
    .service-item img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 8px;
        transition: transform 0.3s ease-in-out;
    }
    
    /* Hover Effect */
    .service-item:hover {
        transform: translateY(-5px);
        box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
    }
    
    /* Image Hover Effect (Zoom-in) */
    .service-item:hover img {
        transform: scale(1.1);
    }
    
    /* Text Styling */
    .service-item h3 {
        font-size: 20px;
        margin: 15px 0 10px;
        color: #333;
    }
    
    .service-item p {
        font-size: 14px;
        color: #666;
    }
    /* Footer Section */
    .footer {
        background: rgb(54, 105, 144) ;
        color: #fff;
        padding: 20px 0;
        width: 100%;
        display: flex;
        justify-content: space-around;
        align-items: center;
        flex-wrap: wrap;
    }
    
    /* Footer Columns */
    .footer-col {
        text-align: center;
        padding: 10px;
        flex: 1;
        min-width: 200px;
    }
    
    /* Footer Links & Icons */
    .footer-col i {
        margin-right: 10px;
        color: #ffcc00;
        font-size: 18px;
    }
    
    .footer-col a {
        color: #fff;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    .footer-col a:hover {
        color: #ffcc00;
        text-decoration: underline;
    }
    
    /* Sticky Floating Icons */
    .sticky-icons {
        position: fixed;
        bottom: 30px;
        right: 20px;
        display: flex;
        flex-direction: column;
        gap: 12px;
        z-index: 1000;
    }
    
    .sticky-icons a {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background-color: white;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s, background-color 0.3s;
    }
    
    .sticky-icons a img {
        width: 30px;
        height: 30px;
    }
    
    .sticky-icons a:hover {
        transform: scale(1.1);
    }
    
    /* Specific Colors */
    .sticky-icons .whatsapp { background-color: #25D366; }
    .sticky-icons .phone { background-color: #007bff; }
    .sticky-icons .google { background-color: #fbbc05; }
    
    .sticky-icons .whatsapp:hover { background-color: #1da851; }
    .sticky-icons .phone:hover { background-color: #0056b3; }
    .sticky-icons .google:hover { background-color: #e09b00; }
    