body {
    font-family: 'Karla', sans-serif;
}

.section-heading {
    font-size: 48px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
}

.section-para {
    font-size: 16px;
    font-family: 'Karla', sans-serif;
    font-weight: 400;
}

.section-padding {
    padding: 5rem 0 !important;
}

/* --- Header Section Styling --- */
.header-section {
    color: #fff;
    text-align: left;
    position: relative;
}

.header-content {
    position: absolute;
    position: absolute;
    bottom: 41%;
    left: 0;
    right: 0;
}

.header-content h1 {
    font-size: 64px;
    color: #fff;
    font-weight: 600;
    font-family: 'Cormorant Garamond', serif;
    text-align: left;
}

.team-banner-img {
    width: 100%;
    height: auto;
}

/*secound section css start */
/* Custom CSS to match the image style */

/* Background color for the entire section */
.contact-section {
    background-color: #EDF9FF;
    /* Light blue background */
}

.contact-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Styling for the "Get In Touch" title */
.contact-title {
    color: #1C355E;
    /* Darker blue color for the text */
}

.m-banner {
    display: none;
}

/* Styling for the dark blue contact cards */
.card-dark-blue {
    background-color: #1C355E;
    color: #ffffff !important;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    height: 100%;
    transition: background-color 0.3s;
    display: block;
    line-height: 1;
    gap: 15px;
    font-family: 'Karla', sans-serif;
}

/* Ensure the links take up space and the text is centered vertically */
.contact-link {
    min-height: 50px;
    /* Minimum height for better tap area on mobile */
}

.contact-link i {
    color: #238DC1;
}

/* Hover effect */
.card-dark-blue:hover {
    background-color: #2b4566;
    /* Slightly lighter on hover */
    color: #ffffff;
}

/*secound section end*/

/*map section start*/

/* Body/Section Background Color */
.map-section-container {
    /* Light blue/grey background to match the image */
    background-color: #f0f8ff;
}


/* Heading Style */
.map-title {
    /* Use a serif font similar to the image, if available */
    color: #1C355E;
    /* Dark navy color */
    text-align: center;
    margin-bottom: 3rem;
}

/* Map Card Header Style (The dark blue bar) */
.map-card {
    background-color: #192a56;
    /* Dark Navy Blue */
    border-radius: 10px;
    padding: 5px;
}

.map-card-header {
    color: #fff;
    font-size: 20px;
}

/* Container for the iframe to control its aspect ratio and height */
.map-iframe-container {
    /* This ensures the iframe section has a fixed height */
    height: 400px;
    width: 100%;
}

.map-iframe-container iframe {
    /* The iframe takes up 100% of the container's dimensions */
    display: block;
}

/* Responsive adjustment for smaller screens to make the map taller */
@media (max-width: 768px) {
    .map-iframe-container {
        height: 350px;
        /* Slightly shorter on mobile */
    }
}

/*map section end*/


/*google review css start*/
/* --- Left Section (Overall Rating) --- */
.excellent-title {
    color: #000;
    font-weight: 600;
}


.based-on-text {
    font-size: 20px;
    color: #000;
}

.based-on-text span {
    font-weight: 600;
}

.google-logo {
    /* You will need to replace this with your actual Google logo image */
    width: 100px;
    height: auto;
}

.star-rating {
    display: flex;
}

.star-rating-card {
    display: flex;
    padding-top: 20px;
}

.star-rating .star {
    color: #F4D404;
    font-size: 1.5rem;
    padding: 0 5px;
}

.star-rating-card .star {
    color: #F4D404;
    padding: 0 5px;
}

/* --- Right Section (Review Cards) --- */
.review-card {
    background: #fff;
    display: flex;
    flex-direction: column;
    padding-right: 4rem;
}

.initials-avatar {
    width: 38px;
    height: 38px;
    background-color: #eee;
    /* Light gray circle */
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.1rem;
}

.reviewer-name {
    font-size: 15px;
    font-weight: 600;
    color: #000;
}

.review-date {
    color: #000;
    font-size: 13px;
}

.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
    display: block !important;
}

.google-icon {
    /* You will need to replace this with your actual small Google G icon */
    width: 24px;
    height: 24px;
}

.review-text {
    font-size: 14px;
    color: #000;
    line-height: 1.5;
}

/* --- Owl Carousel Customization --- */

/* Hide default Owl Navigation dots */
.review-carousel .owl-dots {
    display: none;
}

.reviewer-header {
    display: flex;
    justify-content: space-between;
}

.reviewer-header img {
    width: 100%;
    height: auto;
    max-width: 10%;
}

.star img {
    width: 100%;
    height: auto;
    max-width: 50%;
}

/* Style the navigation buttons (prev/next arrows) */
.review-carousel .owl-nav button.owl-prev,
.review-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none !important;
    /* Override Owl default background */
    width: 40px;
    height: 40px;
    line-height: 30px !important;
    opacity: 0.8;
    transition: opacity 0.2s, background-color 0.2s;
}

.review-carousel .owl-nav button.owl-prev span,
.review-carousel .owl-nav button.owl-next span {
    font-size: 3rem;
    color: #363636;
}

.review-carousel .owl-nav button.owl-prev {
    left: -70px;
    /* Adjust position relative to the carousel wrapper */
}

.review-carousel .owl-nav button.owl-next {
    right: -20px;
    /* Adjust position relative to the carousel wrapper */
}

.review-carousel .owl-nav button.owl-prev:hover,
.review-carousel .owl-nav button.owl-next:hover {
    opacity: 1;
    background-color: #f0f0f0 !important;
}

/* Adjust button placement for smaller screens (Bootstrap standard breakpoints) */
@media screen and (min-width: 1025px) and (max-width: 1380px) {
    .contact-info{
        flex-direction: column;
    } 
    .card-dark-blue{
        margin-bottom: 20px;
    }
}

@media screen and (min-width: 992px) and (max-width: 1024px) {
    .contact-info{
        flex-direction: column;
    } 
    .card-dark-blue{
        margin-bottom: 20px;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) { 
  .d-banner{
    display: block !important;
  }
  .m-banner{
    display: none !important;
  }
}


@media (max-width: 991px) {

    /* Center the left side content on mobile/tablet */
    .review-section .col-lg-4 {
        align-items: center !important;
    }

    .review-carousel .owl-nav button.owl-prev {
        left: 0px;
    }

    .review-carousel .owl-nav button.owl-next {
        right: 0px;
    }

    .review-card {
        padding: 0 3rem;
    }

    .review-section {
        padding: 4rem 0;
    }

    .contact-info {
        flex-wrap: wrap;
        justify-content: center;
        flex-direction: column;
    }

    .contact-info-inner-wrapper {
        margin-bottom: 1rem;
    }

    .card-dark-blue {
        font-size: 14px;
    }

    .m-banner {
        display: block;
    }

    .d-banner {
        display: none;
    }

    .header-content {
        bottom: 8%;
    }


}

/*google review section  end */