.logo {
    animation: zoomIn 2s ease-in-out;
    width: 100px;
    margin: 20px auto 10px;
}

.profile-logo {
    width: 100px;
    margin: 20px auto 10px;
}

h1 {
    margin-top: 0;
    margin-bottom: 10px;
}

.contact-field,
.contact-field1 {
    border: 0 solid #ccc;
    border-radius: 10px;
    padding: 5px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.contact-field {
    padding-left: 15px;
}

.contact-field1 {
    position: relative;
}

.contact-field img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

.social-media img {
    width: 48px;
    height: 48px;
}

.dark-bg {
    padding: 10px 0;
    margin: 0 auto;
    width: 100%;
    border-radius: 30px;
}

.contact-field a,
.contact-field1 a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.about-us,
.services,
.awards {
    margin-top: 20px;
    background-color: white;
    padding: 15px;
    border-radius: 10px;
    position: relative;
}

.about-us p,
.services p,
.awards p,
.services ul,
.awards ul {
    color: black;
    font-size: 16px;
    text-align: left;
}

.services ul,
.awards ul {
    list-style-type: disc;
    padding-left: 20px;
}

.footer1 {
    margin-top: 20px;
    background-color: white;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.whatsapp-button i {
    font-size: 24px;
}

.gallery-row img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    cursor: pointer;
}

.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.popup img {
    max-width: 90%;
    max-height: 90%;
    display: block;
}

.popup .close-btn {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 24px;
    cursor: pointer;
    font-weight: bold;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    padding: 5px 10px;
    z-index: 10;
}

.youtube-videos {
    margin-top: 20px;
    background-color: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.youtube-video {
    margin-bottom: 20px;
}

.youtube-video iframe {
/*    width: 100%;
    height: 200px;*/
    border-radius: 10px;
}

.whatsapp-input {
    display: flex;
    align-items: center;
    gap: 10px;
}

#countryCode,
#whatsappNumber {
    font-size: 13px;
    border: 1px solid #ccc;
    border-radius: 4px;
    height: 30px;
}

#countryCode {
    width: 50px;
    text-align: center;
}

#whatsappButton {
    display: flex;
    align-items: center;
    gap: 5px;
    background-color: #25D366;
    border: none;
    padding: 0 10px;
    border-radius: 4px;
    cursor: pointer;
    color: white;
    font-weight: bold;
    height: 30px;
    font-size: 13px;
}

#whatsappButton .fa-whatsapp {
    font-size: 16px;
}

#useful-links {
    margin: 20px 0;
    padding: 10px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 10px;
}

#useful-links h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
    text-align: center;
    color: #333;
}

.link-item {
    margin: 10px 0;
}

.link-item a {
    text-decoration: none;
    color: #007bff;
    font-weight: bold;
    display: block;
    font-size: 16px;
    text-align: left;
}

.link-item a:hover {
    text-decoration: underline;
    color: #0056b3;
}

.photo-container {
    box-sizing: border-box;
    width: 100%;
    padding: 30px 30px 10px;
    background-color: white;
    border: 1.5px solid grey;
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 6px 20px 0 #dbdbe8;
}

.photo-container img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.caption {
    margin-top: 10px;
    font-size: 16px;
    color: black;
    font-style: italic;
    word-wrap: break-word;
}

.contact-icon {
    font-size: 20px;
    margin-right: 15px;
    color: white;
    transform: scaleX(-1);
}

.contact-item span {
    font-size: 16px;
    font-weight: bold;
}

.curved-button:hover {
    background-color: #0056b3;
}

.copy-link {
    background: none;
    border: none;
    color: #007bff;
    cursor: pointer;
    font-size: 16px;
    margin-left: 10px;
}

.copy-link:hover {
    color: #0056b3;
}

.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-center-row {
    align-items: center;
    justify-content: space-between;
}

.header-center-row h3 {
    margin: 0;
    margin-bottom: 20px;
    display: inline;
    color: #222;
}

.header-row h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 50%;
    height: 2px;
    background: linear-gradient(to right, #007bff, #00c6ff);
    border-radius: 1px;
}

.enquire-now-btn {
    background-color: #25D366;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
    width: 100%;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
}

.enquire-now-btn:hover {
    background-color: #128C7E;
}


.business-hours {
    margin-top: 20px;
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    color: #222;
    font-size: 16px;
    line-height: 1.5;
}

.business-hours h3 {
    margin-top: 0;
    color: #007bff;
}

.contact-us-form {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    margin: 20px auto;
    font-family: Arial, sans-serif;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
    text-align: left;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    box-sizing: border-box;
}

.form-group textarea {
    resize: vertical;
    height: 100px;
}

.contact-us-form button.send-btn {
    background-color: #25D366;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
}

.contact-us-form button.send-btn:hover {
    background-color: #128C7E;
}

.navigation-buttons {
    display: flex;
    justify-content: center;
    margin-top: 15px;
    gap: 15px;
}

.carousel-btn {
    background-color: white;
    color: black;
    border: none;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    font-weight: bolder;
}

ol, li {
    text-align: left;
}

.rounded-image {
    border-radius: 15px;
}

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    width: 330px;
    max-width: 90%;
    text-align: left;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ccc;
    margin-bottom: 20px;
}

.modal-body {
    margin-bottom: 20px;
    line-height: 1.6;
}

.close-btn {
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    color: #333;
}

.modal-footer {
    display: flex;
}

.modal-footer button {
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    background-color: #007bff;
    color: #fff;
    cursor: pointer;
}

.modal-footer button:hover {
    background-color: #0056b3;
}

.menu {
    background-color: #2596be;
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 100%;
    margin: auto;
    border-radius: 10px;
    margin-bottom: 20px;
}

.menu a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    padding: 10px;
    padding-bottom: 0;
    padding-top: 5px;
    border-radius: 5px;
    box-sizing: border-box;
}

.menu a:hover {
    text-decoration: underline;
    background-color: #207d71;
}

@media (max-width: 768px) {
    .menu a {
        margin: 5px;
        font-size: 14px;
    }
}

.scrolling-text {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    box-sizing: border-box;
    background: #000;
    color: #fff;
}

.scrolling-text::after {
    content: '';
    display: block;
    width: 100%;
    animation: scroll-text 10s linear infinite;
}

@keyframes scroll-text {
    from {
        transform: translateX(100%);
    }
}

@keyframes marquee-blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

@keyframes zoomIn {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.bounce-effect {
    animation: bounce 1s ease-in-out 10;
}

.why-us-carousel-container {
    width: 100%;
    max-width: 800px;
    overflow: hidden;
    position: relative;
    padding: 20px 0 0;
}

.why-us-carousel {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    width: max-content;
    animation: why-us-scroll 10s linear infinite;
}

@keyframes why-us-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

.app-links {
    text-align: center;
    margin-top: 20px;
}

.app-links img {
    width: 150px;
    margin: 10px;
    cursor: pointer;
}

.video-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.video-item {
    width: 300px;
    background-color: #fff;
    border: 1px solid grey;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.video-item video {
    width: 100%;
    border-radius: 5px;
}

.video-title {
    margin-top: 10px;
    font-size: 18px;
    color: #333;
}

/* Footer Menu CSS Starts */
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 1;
}

.footer-menu {
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(255, 251, 251, 0.1) inset;
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
    list-style-type: none;
    overflow: auto;
    position: relative;
    background: white;
    display: flex;
    background-image:
        linear-gradient(to right, white, white),
        linear-gradient(to right, white, white),
        linear-gradient(to right, rgba(0, 0, 20, 0.5), rgba(255, 255, 255, 0)),
        linear-gradient(to left, rgba(0, 0, 20, 0.5), rgba(255, 255, 255, 0));
    background-position: left center, right center, left center, right center;
    background-repeat: no-repeat;
    background-color: white;
    background-size: 20px 100%, 20px 100%, 20px 100%, 20px 100%;
    background-attachment: local, local, scroll, scroll;
}

.footer-menu li {
    flex: 1;
    min-width: 80px;
}

.footer-menu .footer-menu-link {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 6px;
    padding-bottom: 10px;
    box-sizing: border-box;
    color: #555555;
    text-decoration: none;
}

.footer-menu .footer-menu-text {
    font-size: 12px;
    color: inherit;
    text-decoration: none;
}

h3 {
    color: #007bff;
}

/* Offer section styles */
.offer-section {
    text-align: center;
    margin: 20px auto;
    font-family: Arial, sans-serif;
}

.offer-section h3 {
    color: #007bff;
    font-size: 24px;
    margin-bottom: 20px;
}

/* Carousel container styling */
.offer-carousel-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.offer-carousel {
    display: flex;
    transition: transform 0.3s ease-in-out;
    gap: 20px;
}

.offer-card {
    flex: 0 0 60%;
    background-color: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
}

.offer-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
    color: #333;
    height: 50px;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.offer-image {
    max-width: 100%;
    display: block;
    cursor: pointer;
    pointer-events: auto;
}

.offer-details p {
    font-size: 16px;
    margin: 5px 0;
}

.navigation {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 2;
}

.navigation button {
    pointer-events: auto;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    font-size: 18px;
    opacity: 0.8;
    z-index: 3;
}

.navigation button:hover {
    opacity: 1;
}

/* Lightbox overlay styling */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    display: none;
}

.lightbox-content img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    font-size: 18px;
    opacity: 0.8;
}

.lightbox-close:hover {
    opacity: 1;
}

/* Testimonial Section */
.testimonial-section {
    text-align: center;
    margin: 20px auto;
    font-family: Arial, sans-serif;
}

.testimonial-section h3 {
    color: #007bff;
    font-size: 24px;
    margin-bottom: 20px;
}

.testimonial-carousel-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-carousel {
    display: flex;
    transition: transform 0.3s ease-in-out;
    gap: 20px;
}

.testimonial-card {
    flex: 0 0 60%;
    background-color: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
}

.testimonial-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
    color: #333;
    height: 50px;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-image {
    max-width: 100%;
    display: block;
    cursor: pointer;
    pointer-events: auto;
}

.testimonial-details p {
    font-size: 16px;
    margin: 5px 0;
}
