.top-left .info i {
    color: #fff;
}

.top-center .social {
    color: #fff;
    margin: 0 6px;
    font-size: 1.1rem;
    transition: transform 0.3s, color 0.3s;
}

.top-center .social:hover {
    color: #ffd700;
    transform: scale(1.3);
}




.gallery-section img {
    margin-top: 20px;
}


.top-section {
    background: linear-gradient(90deg, #d7eaff 0%, hsl(210, 100%, 97%) 100%);
    font-size: 14px;
    padding: 20px;
}

/* Contact Info Icons */
.top-section .info i {
    font-size: 15px;
    vertical-align: middle;
}

/* Social Icons */
.social {
    font-size: 18px;
    transition: all 0.3s ease;
}

/* Brand Colors */
.social.facebook i {
    color: #1877f2;
}

.social.twitter i {
    color: #1da1f2;
}

.social.instagram i {
    color: #e4405f;
}

.social.linkedin i {
    color: #0077b5;
}

.social.youtube i {
    color: #ff0000;
}

/* Hover Effects */
.social:hover {
    transform: translateY(-3px) scale(1.1);
    filter: brightness(1.2);
}



.navbar {
    position: sticky !important;
    top: 0px !important;
    z-index: 999 !important;
    padding: 5px;
    background-color: white;
}

.main-btn button {
    background-color: #0077b5;
    color: white;
    border: none;
    padding: 10px 20px;
    margin-left: 20px;
    border-radius: 5px;
}

.line-box {
    width: 120px;
    height: 3px;
    background: #ccc;
    margin: 15px auto 25px;
    position: relative;
    overflow: hidden;
    border-radius: 50px;
}

.heading-section {
    text-align: center;
    padding: 40px 0px;
}

.heading-section h3 {
    color: #0077b5;
    font-size: 45px;
}


.dot {
    width: 16px;
    height: 16px;
    background: #007bff;
    /* blue dot */
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    animation: moveDot 2.5s ease-in-out infinite alternate;
}

/* Animation: left ↔ right */
@keyframes moveDot {
    from {
        left: 0;
    }

    to {
        left: calc(100% - 16px);
        /* move to far right, keeping inside border */
    }
}


.about-section {
    padding: 40px 0px;
}




/* --- Section Styling --- */
.service-section {
    background: #f9f9f9;
    color: #333;
    padding: 100px 10%;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

/* --- Heading --- */
.service-section .heading {
    margin-bottom: 60px;
}

.service-section .heading h2 {
    font-size: 2.5rem;
    color: #222;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
}

.service-section .heading p {
    color: #555;
    font-size: 1rem;
    max-width: 700px;
    margin: 10px auto 0;
}



/* --- Service Boxes --- */
.service-box {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    transition: 0.3s ease;
    padding-bottom: 30px;
    border: 1px solid #eee;
}

.service-box:hover {
    transform: translateY(-5px);
}

.service-box img {
    width: 100%;
    height: 230px;
    object-fit: cover;

}

.service-box h3 {
    color: #0077b5;
    font-size: 1.6rem;
font-weight: 700;
    margin: 20px 0 10px;
    text-transform: uppercase;
}

.service-box p {
    color: #555;
    font-size: 0.95rem;
    padding: 0 20px;
    line-height: 1.6;
    min-height: 90px;
}

/* --- Button --- */
.btn-call {
    background-color: #0077b5;
    color: white;
    border: none;
    padding: 13px 40px;
    border-radius: 5px;
    text-decoration: none;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}



/* --- Heading --- */
.heading-section {
    text-align: center;
    margin-bottom: 60px;
}

.heading-section h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    text-transform: uppercase;
    letter-spacing: 1px;
}


.heading-section p {
    color: #555;
    font-size: 1rem;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

/* --- Content Layout --- */
.about-text h1 {
    font-size: 2rem;
    color: #111;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-text p {
    color: #555;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 20px;
}


/* --- Image Styling --- */
.about-img {
    width: 100%;
    max-width: 500px;
    height: 560px;
    border-radius: 100px 0px;
    border: 5px solid #fff;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}


/* --- Heading --- */
.choose-heading {
    font-size: 2.3rem;
    font-weight: 700;
    color: #111;
    text-transform: uppercase;
}



/* --- Boxes --- */
.choose-box {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #f9f9f9;
    border-radius: 12px;
    padding: 18px 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.choose-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 204, 0, 0.3);
    background: #fffceb;
}

.choose-box .icon {
    min-width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #ffcc00;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    transition: all 0.3s ease;
}

.choose-box:hover .icon {
    background: #fff;
    color: #ffcc00;
    border: 2px solid #ffcc00;
}

.choose-box p {
    margin: 0;
    color: #333;
    font-size: 1rem;
    line-height: 1.6;
}

/* --- Image --- */
.choose-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    height: 500px;
}

.choose-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    border-radius: 20px;
}

.choose-img-wrapper:hover .choose-img {
    transform: scale(1.05);
}



/* --- Gallery Images --- */
.gallery-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* --- Modal --- */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.gallery-modal .close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.gallery-modal .close:hover {
    color: #ffcc00;
}
#fullImage{
    object-fit: contain;
}
.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    border-radius: 12px;
}

#caption {
    margin: 15px auto;
    text-align: center;
    color: #ccc;
    font-size: 16px;
}






.accordion-button {
    font-weight: 600;
    color: #111;
    background: #fff;
    transition: 0.3s;
    box-shadow: none !important;
}



.accordion-body {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
}


.review-section {
    font-family: 'Poppins', sans-serif;

}

.review-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111;
    text-transform: uppercase;
}


@keyframes moveDot {
    0% {
        left: 0;
    }

    100% {
        left: calc(100% - 12px);
    }
}

.review-carousel .review-box {
    background: #fff;
    padding: 25px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin: 15px;
}

.review-box .stars {
    color: #ffcc00;
    margin-bottom: 15px;
    font-size: 18px;
}

.review-box p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
}

.review-box h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #111;
}

.review-box span {
    font-size: 0.85rem;
    color: #999;
}




.contact-section {
    font-family: 'Poppins', sans-serif;
}

.contact-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111;
    text-transform: uppercase;
}



@keyframes moveDot {
    0% {
        left: 0;
    }

    100% {
        left: calc(100% - 12px);
    }
}

/* Contact Form */
.contact-form {
    background: #fff;
    padding: 30px 25px;
    border-radius: 15px;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-form label {
    display: block;
    font-weight: 600;
    margin-top: 15px;
    margin-bottom: 5px;
    color: #111;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid #ddd;
    margin-bottom: 10px;
    transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #ffcc00;
    outline: none;
}

.contact-form input[type="submit"] {
    background: #0077b5;
    color: white;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: 0.3s;
}

.contact-form input[type="submit"]:hover {
    background: #e6b800;
}

/* Contact Info Boxes */
.contact-box {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 20px 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    transition: 0.3s;
    height: 160px;
}


.contact-box i {
    font-size: 30px;
    color: #0077b5;
    margin-right: 15px;
}

.contact-box h4 {
    margin: 0;
    font-weight: 600;
    color: #111;
}

.contact-box p {
    margin: 0;
    color: #555;
    font-size: 0.95rem;
}

.contact-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}



/* Map Box */
.map-box iframe {
    width: 100%;
    height: 350px;
    border-radius: 10px;
}


.footer-section {
    background: #0177B5;
    color: #fff;
    padding: 60px 0 20px;
    font-family: 'Poppins', sans-serif;
}

.footer-section h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #ffcc00;
    text-transform: uppercase;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links li a:hover {
    color: #ffcc00;
    padding-left: 5px;
}

.footer-contact li i {
    color: #ffcc00;
    margin-right: 10px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 15px;
    color: #aaa;
    font-size: 0.9rem;
}


.video-section {
    font-family: 'Poppins', sans-serif;
}

.video-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 40px;
}

.video-wrapper {
    position: relative;
    cursor: pointer;
    border-radius: 15px;
    overflow: hidden;
}

.video-thumb {

    border-radius: 15px;
    transition: 0.3s;
    height:300px ;
}
.video-pack{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}
.video-thumb:hover {
    transform: scale(1.05);
}

.play-btn {

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 204, 0, 0.8);
    color: #111;
    font-size: 2rem;
    padding: 20px;
    border-radius: 50%;
    transition: 0.3s;
}

.play-btn:hover {
    background: rgba(255, 204, 0, 1);
}

/* Modal */
.video-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

.video-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.video-modal video {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.close-btn {
    position: absolute;
    top: -20px;
    right: -20px;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
}



@media screen and (max-width: 576px) {
    .top-section {
        display: none;
    }

    
    .about-section {
        padding: 40px 0px !important;
    }

    .heading-section {
        margin-bottom: 0px;
    }

    .about-img {
        height: 300px;
        margin-top: 30px;
    }

    .service-section {
        padding: 30px 0px;
    }

    .choose-img-wrapper {
        height: 300px;
    }

    .modal-content {
        margin: 40px auto;
    }
}