:root {
    --primary: #20D6FB;
    --primary-light: rgba(111, 66, 193, 0.1);
    --accent: #1ED2F7;
    --accent-light: rgba(255, 107, 107, 0.1);
    --bg: #f9f9f9;
    --dark: black;
    --text: #222;
    --text-light: #555;
    --white: #ffffff;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --linear: linear-gradient(135deg, #1ED2F7 0%, #20D6FB 45%, #d6aa53 55%, #AD7A2C 100%);

}
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden; /* prevent horizontal scroll */
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

/* Navbar */
.navbar {
    background-color: var(--dark);
    box-shadow: var(--shadow);
    padding: 10px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary) !important;
}

.nav-link {
    font-weight: 500;
    color: var(--white) !important;
    margin: 0 10px;
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--linear);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.nav-link:hover:after {
    width: 100%;
}

.navbar-toggler {
    border: none;
    outline: 1px solid var(--white);
}

.navbar-toggler-icon {
    color: var(--bg);
}



.hero-container {
            position: relative;
            height: 70vh;
            min-height: 600px;
            overflow: hidden;
        }
        
.hero-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
        }
        
.hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
            z-index: 1;
        }
        
 .hero-content {
            position: relative;
            z-index: 2;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: #fff;
            padding: 20px;
        }
        
        .hero-content h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }
        
        .hero-content p {
            font-size: 1.5rem;
            margin-bottom: 30px;
            max-width: 800px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }
        
        @media (max-width: 576px) {
  .hero-content h1 {
      font-size: 2rem;
  }
  .hero-content p {
      font-size: 1rem;
  }
}


/* CTA Button */
.cta-button {
    background: linear-gradient(135deg, #1ED2F7 0%, #20D6FB 45%, #d6aa53 55%, #AD7A2C 100%);
    color: var(--white);
    border: none;
    padding: 8px 18px;
    /* smaller and cleaner */
    border-radius: 5px;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    color: var(--white);
}

.cta-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.cta-button:hover:before {
    left: 100%;
}

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    font-weight: 700;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 50%;
    height: 4px;
    background: var(--linear);
    bottom: -10px;
    left: 25%;
    border-radius: 2px;
}

.feature-box {
    padding: 15px;
    border-radius: 12px;
    background: #fff;
    height: 100%;
    box-shadow: 0 5px 12px rgba(84, 186, 230, 0.08);
    transition: all 0.3s ease;
    border-bottom: 2px solid #20D6FB;
    border-right: 2px solid #20D6FB;
    border-top: 2px solid goldenrod;
    border-left: 2px solid goldenrod;
}

.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 25px rgba(111, 66, 193, 0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.8rem;
    background: #fff;
    color: #20D6FB;
    box-shadow: 0 4px 10px rgba(92, 168, 218, 0.1);
    transition: all 0.3s ease;
}

.feature-box:hover .feature-icon {
    background: linear-gradient(135deg, #00F0F5 0%, #20D6FB 40%, #D6AA53 70%, #AD7A2C 100%);
    color: #fff;
    transform: rotateY(180deg);
}

/* Button Group */
.custom-btn-group {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
}

.custom-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 10px;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    min-width: 150px;
    transition: background 0.2s ease;
}

.custom-btn i {
    margin-right: 6px;
    font-size: 16px;
}

/* WhatsApp Button */
.custom-btn-whatsapp {
    background: black;
    color: #fff;
}

.custom-btn-whatsapp:hover {
    border-top: 1px solid black;
    border-bottom: 1px solid black;
}

/* Contact Button */
.custom-btn-contact {
    background: #1ED2F7;
    color: #000;
}

.custom-btn-contact:hover {
    background: #20BEEA;
}

/* Card Styling */
.service-card {
    border: 1px solid #eee;
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
    transition: transform 0.2s ease;
    height: 100%;
 box-shadow: 0 4px 10px rgba(13, 149, 207, 0.1);
}

.service-card:hover {
    transform: translateY(-5px);
}

.card-img-wrapper {
    overflow: hidden;
}

.card-img-top {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.card-img-wrapper:hover .card-img-top {
    transform: scale(1.05);
}

.service-card .card-body {
    padding: 15px;
}

.service-card .card-title {
    color: #20BEEA;
    font-weight: 600;
    margin-bottom: 12px;
}

.btn-show {
    background-color: #333;
    color: #fff;
    border: none;
    padding: 8px 18px;
    border-radius: 4px;
}

.btn-show:hover {
    background: #000;
}

/* Responsive */
@media (max-width: 600px) {
    .custom-btn-group {
        flex-direction: column;
        align-items: center;
    }

    .custom-btn {
        width: 100%;
    }
}

.text-suc {
    color: #20BEEA;
}

/* Booking Section */

.booking-row {
    border-radius: 12px;
    overflow: hidden;
}

.booking-img {
    background: url('../image/booking.jpeg') center/cover no-repeat;
    min-height: 80%;
}

.booking-form {
    background: linear-gradient(135deg, rgba(30, 210, 247, 0.08) 0%, rgba(173, 122, 44, 0.08) 100%), #fff;
}

.booking-input {
    border-radius: 8px;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

.booking-input:focus {
    border-color: #1ED2F7;
    box-shadow: 0 0 8px rgba(30, 210, 247, 0.3);
}

.booking-btn {
    background: var(--primary);
    border: none;
    color: var(--text);
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.booking-btn:hover {
    background-color: #000;
    color: var(--white);
    opacity: 0.9;
    transform: translateY(-2px);
}


.stats {
    height: 60vh;
    background: url('../image/cli5.jpg') no-repeat center center/cover;
    background-attachment: fixed;
    background-blend-mode: overlay;
    background-color: #323131;
    color: white;
    margin-top: 30px;
}

.testimonials-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f9fafb 0%, #eef2f6 100%);
    position: relative;
    overflow: hidden;
}


.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    position: relative;
    margin: 0 15px;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.testimonial-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border: 5px solid rgba(42, 107, 156, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-quote {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 3rem;
    color: rgba(42, 107, 156, 0.1);
}

.client-name {
    font-weight: 700;
    color: var(--primary);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.client-title {
    color: var(--secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.stars {
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.testimonial-text {
    line-height: 1.7;
    color: #555;
    font-style: italic;
    position: relative;
    padding: 0 1rem;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    opacity: 1;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.carousel-control-prev {
    left: -25px;
}

.carousel-control-next {
    right: -25px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--secondary);
    transform: translateY(-50%) scale(1.1);
}

.carousel-indicators {
    bottom: -60px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--primary);
    opacity: 0.4;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.carousel-indicators button.active {
    opacity: 1;
    transform: scale(1.3);
    background-color: var(--secondary);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .testimonial-card {
        padding: 2rem;
    }

    .carousel-control-prev {
        left: 10px;
    }

    .carousel-control-next {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 3rem 0;
    }

    .testimonial-card {
        padding: 1.5rem;
        margin: 0 10px;
    }

    .testimonial-img {
        width: 80px;
        height: 80px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 576px) {
    .testimonial-card {
        padding: 1.2rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }
}

.reach-us {
    color: #000;
}

.reach-us .section-title {
    font-weight: 600;
    font-size: 2rem;
}

.reach-us .icon-box {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    color: #20D6FB;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.reach-us .icon-box:hover {
    transform: scale(1.1);
}

.reach-us .fw-bold {
    color: #000;
}

.reach-us .map-box iframe {
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

footer {
    background-color: black;
    border-top: 4px solid #00d2ff;
    color: white;
    width: 100%;
}

.footer-container {
    padding: 3rem 1rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}

.footer-col {
    flex: 1;
    min-width: 250px;
    padding: 0 15px;
}

.footer-logo {
    transition: transform 0.3s ease;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-logo:hover {
    transform: scale(1.03);
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    font-weight: 600;
    margin-left: 30px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(135deg, #d5b63aff 0%, #00d2ff 100%);
    border-radius: 2px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin: 20px 0;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
}

.social-icons a:hover {
    background: #00d2ff;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-info {
    list-style: none;
}

.contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 15px;
    color: #00d2ff;
    font-size: 1.2rem;
    width: 25px;
}

.contact-info a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #00d2ff;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}

.footer-links a:hover {
    color: #00d2ff;
    padding-left: 5px;
}

.copyright {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 20px;
 
       color: #00d2ff;
    font-size: 0.9rem;
}

.copyright a {
    color: #aaa;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.copyright a:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .footer-col {
        flex: 0 0 calc(50% - 30px);
    }

}

@media (max-width: 768px) {
    .footer-col {
        flex: 0 0 100%;
        text-align: center;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-icons {
        justify-content: center;
    }

    .contact-info li {
        justify-content: center;
    }

}

@media (max-width: 480px) {
    .footer-container {
        padding: 2rem 0.5rem 1rem;
    }

    .social-icons a {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

.gallery-img {
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-img:hover {
    transform: scale(1.05);
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.2);
}

.gallery-masonry {
    column-count: 3;
    /* 3 columns on large screens */
    column-gap: 1rem;
    /* space between images */
}

.gallery-masonry img {
    width: 100%;
    margin-bottom: 1rem;
    border-radius: 8px;
    display: block;
    break-inside: avoid;
    /* prevent breaking */
    cursor: pointer;
}

/* Tablets */
@media (max-width: 992px) {
    .gallery-masonry {
        column-count: 2;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .gallery-masonry {
        column-count: 2;
        /* show 2 side by side on small screen */
    }
}

