body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

.contact-page-wrapper {
    overflow-x: hidden;
    width: 100%;
}

.hero-section-new {
    background-color: #ffffff;
    overflow: hidden;
    position: relative;
}

.blue-blur-circle {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.circle-right {
    width: 450px;
    height: 450px;
    background: linear-gradient(to left, rgba(224, 247, 250, 0), #E0F7FA);
    left: 80%;
    top: auto;
}

.circle-left {
    width: 250px;
    height: 250px;
    background: linear-gradient(to right, rgba(224, 247, 250, 0), #E0F7FA);
    right: 85%;
    top: 60%;
    left: auto;
    bottom: auto;
}

.hero-content {
    position: relative;
    z-index: 10;
    padding-top: 100px;
    padding-bottom: 50px;
    text-align: center;
}

.hero-heading {
    font-weight: 800;
    font-size: 2.5rem;
    line-height: 1.2;
    color: #000;
    margin-bottom: 2rem;
}

.breadcrumb-text {
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 500;
}

.breadcrumb-text span {
    color: #00aaff;
}

.hero-mobile-new {
    position: relative;
    overflow: hidden;
    background-color: #ffffff;
    padding-bottom: 150px;
    text-align: center;
    margin-top: 3.9rem;
}

.mobile-blue-bg {
    position: absolute;
    top: 26% !important;
    right: 37% !important;
    width: 100% !important;
    height: 100% !important;
    max-width: 300px !important;
    max-height: 350px !important;
    background: linear-gradient(to right, rgba(224, 247, 250, 0), #CBEFFC);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.mobile-content {
    position: relative;
    z-index: 2;
    padding-top: 60px;
    padding-left: 20px;
    padding-right: 20px;
}

.mobile-heading {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 2rem;
    color: #000;
}

.hero-carousel {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-carousel .carousel-item img {
    height: 500px;
    object-fit: cover;
}

/* Carousel Indicators Styling */
.hero-carousel .carousel-indicators {
    bottom: 20px;
    justify-content: center;
    margin: 0;
}

.hero-carousel .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #fff;
    opacity: 0.5;
    border: 2px solid transparent;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.hero-carousel .carousel-indicators .active {
    opacity: 1;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .hero-carousel {
        margin-left: 10px;
        margin-right: 10px;
        border-radius: 15px;
    }

    .hero-carousel .carousel-item img {
        height: 250px;
    }

    .hero-carousel .carousel-indicators [data-bs-target] {
        width: 8px;
        height: 8px;
    }
}

.contact-card {
    border-radius: 30px;
    padding: 40px 20px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-8px);
    background-color: #00aaff;
    border-color: #00aaff;
    box-shadow: 0 15px 35px rgba(0, 170, 255, 0.3);
}

.contact-card:hover .card-title,
.contact-card:hover .card-main-text,
.contact-card:hover .card-main-text a,
.contact-card:hover .card-sub-text {
    color: #ffffff !important;
}

.contact-card:hover .card-icon {
    background-color: #ffffff !important;
    color: #00aaff !important;
}

.card-icon {
    margin-bottom: 25px;
    font-size: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: capitalize;
}

.card-main-text {
    font-size: .9rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
    text-transform: uppercase;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-sub-text {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.6;
    min-height: 90px;
}

.card-white {
    background-color: #ffffff;
    border: 1px solid #eeeeee;
    color: #000;
    transition: all 0.3s ease;
}

.card-white .card-icon {
    color: #00aaff;
    background: #e0f7ff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.card-white .card-main-text a {
    color: inherit;
    text-decoration: none;
}

.global-heading {
    font-weight: 700;
    margin-bottom: 25px;
    color: #000;
}

.nav-scroller-custom {
    background-color: #e1f6ff;
    border-radius: 50px;
    padding: 5px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.nav-scroller-custom .nav-pills-custom {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
    background-color: #e1f6ff !important;
}

.nav-scroller-custom .nav-pills-custom::-webkit-scrollbar {
    display: none !important;
}

.nav-scroller-custom .nav-pills-custom .nav-link,
.nav-scroller-custom .nav-pills-custom .nav-link.active,
#pills-tab .nav-link,
#pills-tab .nav-link.active {
    color: #333 !important;
    font-weight: 500 !important;
    font-size: 16px !important;
    border-radius: 40px !important;
    padding: 10px 25px !important;
    margin: 0 2px !important;
    border: none !important;
    box-sizing: border-box !important;
    white-space: nowrap !important;
    background: #e1f6ff !important;
    transition: background-color 0.3s ease, color 0.3s ease !important;
    min-width: auto !important;
    max-width: none !important;
    flex-shrink: 0 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    line-height: 1.5 !important;
}

.nav-scroller-custom .nav-pills-custom .nav-link.active,
#pills-tab .nav-link.active {
    background-color: #00AEEF !important;
    color: #fff !important;
    font-weight: 500 !important;
    padding: 10px 25px !important;
    box-shadow: 0 4px 10px rgba(0, 174, 239, 0.3) !important;
}

/* Mobile Styling */
@media (max-width: 991px) {
    .nav-scroller-custom {
        width: 100%;
        max-width: 100%;
        margin: 0;
        border-radius: 32px;
        background: #e1f6ff;
        justify-content: space-between;
    }

    .location-pills {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        width: 100%;
        background: transparent;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .location-pills::-webkit-scrollbar {
        display: none;
    }

    .location-pills .nav-item {
        flex: 0 0 auto;
    }

    .nav-scroll-arrow {
        display: flex !important;
        color: #00acee;
        font-size: 1.1rem;
        padding: 0 10px;
    }
}

@media (min-width: 992px) {
    .nav-scroll-arrow {
        display: none !important;
    }

    .location-pills {
        flex-wrap: nowrap;
        width: auto;
        max-width: 100%;
    }
}

.tab-content {
    min-height: 450px !important;
    max-height: 450px !important;
    height: 450px !important;
    position: relative;
    width: 100%;
    overflow: visible;
}

.tab-pane {
    display: none;
    width: 100%;
    height: 450px;
    opacity: 0;
    transition: opacity 0.15s linear;
}

.tab-pane.active {
    display: block;
    opacity: 1;
}

.tab-pane.show {
    opacity: 1;
}

.contact-map-container {
    width: 100%;
    max-width: 100%;
    height: 450px !important;
    margin: 0 auto;
    border-radius: 20px;
    position: relative;
    background-color: #f8f9fa;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-map-container iframe {
    width: 100% !important;
    height: 450px !important;
    border-radius: 15px;
    display: block;
}