

.tm-why-choose-section {
    padding: 85px 0;
    background: #f4f8fc;

    position: relative;
    overflow: hidden;
}

/* Luxury Soft Mesh Glows */
.tm-mesh-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    pointer-events: none;
    z-index: 1;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(0, 58, 122, 0.12);
    /* Light #003a7a Glow */
    top: -10%;
    right: 5%;
}

.orb-2 {
    width: 350px;
    height: 350px;
    background: rgba(11, 78, 162, 0.08);
    bottom: -10%;
    left: 5%;
}

/* Typography & Headers */
.tm-section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 58, 122, 0.06);
    /* Tint of #003a7a */
    border: 1px solid rgba(0, 58, 122, 0.12);
    border-radius: 30px;
    color: #003a7a;
    /* Core Brand Color */
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.tm-section-heading {
    font-size: 35px;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.25;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.tm-section-heading span {
    color: #003a7a;
    /* Main Highlight Color */
}

.tm-section-desc {
    color: #475569;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 95%;
}

/* Premium Features Grid & White Bento Cards */
.tm-features-grid {
    position: relative;
    z-index: 2;
}

.tm-feature-card {
    background: #ffffff;
    /* Pure Crystal White Cards */
    border: 1px solid rgba(0, 58, 122, 0.06);
    padding: 18px 22px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    height: 100%;
    box-shadow: 0 4px 15px rgba(0, 58, 122, 0.02);
}

.tm-feature-card span {
    color: #334155;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
}

.tm-icon-wrapper {
    width: 40px;
    height: 40px;
    background: rgba(0, 58, 122, 0.07);
    /* Light variant of core color */
    border: 1px solid rgba(0, 58, 122, 0.15);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.tm-icon-wrapper i {
    color: #003a7a;
    /* Core Accent Icon */
    font-size: 18px;
}

/* Highlighted Item Modification */
.highlighted-card {
    background: linear-gradient(90deg, rgba(0, 58, 122, 0.03), #ffffff);
    border-left: 3px solid #003a7a;
}

/* Hover Interaction Work */
.tm-feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 58, 122, 0.15);
    box-shadow: 0 12px 30px rgba(0, 58, 122, 0.08);
}

.tm-feature-card:hover .tm-icon-wrapper {
    background: #003a7a;
    border-color: #003a7a;
}

.tm-feature-card:hover .tm-icon-wrapper i {
    color: #ffffff;
}

/* Premium Video Column Architecture */
.tm-video-wrapper {
    position: relative;
    z-index: 2;
}

.tm-video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* Perfect 16:9 Aspect Ratio */
    height: 0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 58, 122, 0.12);
    border: 6px solid #ffffff;
    /* Thick White Premium Frame border */
    background: #000000;
}

.tm-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tm-video-caption {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    justify-content: center;
    color: #003a7a;
    font-size: 14.5px;
    font-weight: 600;
}

.tm-video-caption i {
    color: #003a7a;
    font-size: 18px;
}

/*==================================================
  RESPONSIVE CONFIGURATIONS
==================================================*/
@media(max-width: 991px) {
    .tm-why-choose-section {
        padding: 65px 0;
    }

    .tm-section-heading {
        font-size: 32px;
    }

    .tm-video-wrapper {
        margin-top: 25px;
    }
}

@media(max-width: 576px) {
    .tm-section-heading {
        font-size: 26px;
    }

    .tm-feature-card {
        padding: 16px;
    }
}

.tm-cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.tm-btn-call,
.tm-btn-whatsapp {

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    padding: 15px 32px;

    border-radius: 10px;

    text-decoration: none;

    font-weight: 600;

    font-size: 15px;

    transition: .4s;

    position: relative;

    overflow: hidden;

}

/* Call Button */

.tm-btn-call {

    background: #fff;

    color: #003a7a;

    box-shadow: 0 12px 30px rgba(0, 0, 0, .18);

}

.tm-btn-call:hover {

    background: #FFD166;

    color: #111;

    transform: translateY(-5px);

    box-shadow: 0 18px 35px rgba(0, 0, 0, .25);

}

/* WhatsApp */

.tm-btn-whatsapp {

    background: #05ae44;

    color: #fff;

    box-shadow: 0 12px 30px rgba(37, 211, 102, .35);

}

.tm-btn-whatsapp:hover {

    background: #1fb85a;

    color: #fff;

    transform: translateY(-5px);

    box-shadow: 0 18px 35px rgba(37, 211, 102, .45);

}

/* Icons */

.tm-btn-call i,
.tm-btn-whatsapp i {

    font-size: 20px;

}

/* Mobile */

@media(max-width:576px) {

    .tm-cta-buttons {

        flex-direction: column;

    }

    .tm-btn-call,
    .tm-btn-whatsapp {

        width: 100%;

    }

}

.tm-premium-cta {
    padding: 65px 0;

    background-image:
        linear-gradient(rgba(0, 34, 68, 0.85), rgba(0, 58, 122, 0.85)),

        url('assets/img/bg-imge.jpg'),

        linear-gradient(-45deg, #003a7a, #0b4ea2, #0f65d8, #002244);

    background-size: 100% 100%, cover, 400% 400%;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: normal, overlay, normal;

    animation: tmGradientShift 12s ease infinite;
    position: relative;
    overflow: hidden;
}

/* Background Animation Loop */
@keyframes tmGradientShift {
    0% {
        background-position: center, center, 0% 50%;
    }

    50% {
        background-position: center, center, 100% 50%;
    }

    100% {
        background-position: center, center, 0% 50%;
    }
}

/* Ambient Moving Blurs */
.tm-bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.25;
    pointer-events: none;
}

.shape1 {
    width: 300px;
    height: 300px;
    background: #00d4ff;
    top: -80px;
    left: -80px;
    animation: tmOrbFloat 8s ease-in-out infinite alternate;
}

.shape2 {
    width: 250px;
    height: 250px;
    background: #ffffff;
    right: -60px;
    bottom: -60px;
    animation: tmOrbFloat 8s ease-in-out infinite alternate-reverse;
}

@keyframes tmOrbFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(20px, 15px) scale(1.1);
    }
}

/* Left Content System */
.tm-small-title {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    backdrop-filter: blur(8px);
}

.tm-premium-cta h2 {
    font-size: 35px;
    /* Perfectly balanced title sizing */
    font-weight: 600;
    line-height: 1.25;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.tm-premium-cta h2 span {
    color: white;
    display: block;
    /* Gives a premium break structure */
}

.tm-premium-cta p {
    font-size: 17px;
    line-height: 1.75;
    color: #e2ecff;
    margin-bottom: 25px;
    max-width: 95%;
}

/* Micro-optimized Feature List */
.tm-feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2x2 Clean grid layout */
    gap: 12px 20px;
}

.tm-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
}


/* Pure White Premium Form Architecture */
.tm-booking-form {
    background: #ffffff;
    /* Crystal Pure White requested */
    padding: 35px 40px;
    /* Reduced to balance space constraints */
    border-radius: 10px;
    box-shadow:
        0 10px 25px rgba(0, 34, 68, 0.15),
        0 30px 70px rgba(0, 20, 40, 0.2);
    position: relative;
    z-index: 5;
    border: 1px solid rgba(0, 58, 122, 0.05);
}

.form-heading {
    text-align: center;
    margin-bottom: 25px;
}

.form-heading h3 {
    font-size: 26px;
    font-weight: 700;
    color: #003a7a;
    /* Uses section branding palette color */
    margin: 0;
}

.form-heading p {
    color: #222223;
    font-size: 14px;
    margin-top: 6px;
    margin-bottom: 0;
}

/* Premium Form Inputs Customization */
.tm-booking-form .form-control {
    height: 50px;
    /* Shaved down from 58px for massive space optimization */
    border-radius: 12px;
    border: 1.5px solid #e2e8f0;
    background: #f8fafc;
    box-shadow: none;
    font-size: 14.5px;
    padding: 10px 16px;
    color: #1e293b;
    transition: all 0.3s ease;
}

.tm-booking-form .form-control::placeholder {
    color: #94a3b8;
}

.tm-booking-form textarea.form-control {
    height: 100px;
    /* Optimized height */
    resize: none;
    padding-top: 12px;
}

/* Smooth Focus Glow Ring */
.tm-booking-form .form-control:focus {
    background: #ffffff;
    border-color: #0b4ea2;
    box-shadow: 0 0 0 4px rgba(11, 78, 162, 0.12);
}

/* High-Response CTA Action Button */
.tm-submit-btn {
    width: 100%;
    height: 52px;
    border: none;
    border-radius: 12px;
    background: #003a7a;
    color: #002244;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.tm-submit-btn:hover {
    background: #003a7a;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 58, 122, 0.25);
}

.tm-submit-btn:hover i {
    transform: translateX(4px);
}

.tm-submit-btn i {
    transition: transform 0.3s ease;
}

/*==================================================
  RESPONSIVE ADAPTATIONS
==================================================*/
@media(max-width: 991px) {
    .tm-premium-cta {
        padding: 55px 0;
    }

    .tm-premium-cta h2 {
        font-size: 34px;
    }

    .tm-booking-form {
        margin-top: 15px;
        padding: 30px;
    }

    .tm-feature-list {
        grid-template-columns: 1fr;
        /* Stack into single column on tablets/mobile */
        gap: 10px;
    }
}

@media(max-width: 576px) {
    .tm-premium-cta h2 {
        font-size: 28px;
    }

    .tm-booking-form {
        padding: 25px 20px;
    }

    .tm-small-title {
        font-size: 13px;
    }
}

.hc-overlap-services {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 10%, rgba(0, 58, 122, 0.08), transparent 35%),
        radial-gradient(circle at 90% 90%, rgba(13, 110, 253, 0.06), transparent 35%),
        #ffffff;
    padding: 6px 0;
        font-family: "Cormorant Garamond", serif !important;
}

/* --- HEADER --- */
.hc-main-heading {
    font-size: 34px;
    font-weight: 700;
    color: #1a2530;
}
@media(max-width: 576px){
    .hc-main-heading{
        font-size: 25px !important;
    }
}
.hc-text-primary {
    color: #003a7a;
    /* Exact premium medical blue from image_6e1d20.jpg */
}

.hc-sub-heading {
    color: #201f1f;

    margin: 10px auto 0 auto;
    font-size: 15px;
    line-height: 1.5;
}



/* --- COMPACT OVERLAPPING ENGINE (As per image_6e1d20.jpg) --- */
.hc-overlap-card {
    position: relative;
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
    /* Fixed extreme gap underneath */
}

/* Background Image Box */
.hc-card-bg-img {
    width: 100%;
    height: 210px;
    /* Perfectly scaled aspect ratio */
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.hc-card-bg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* Overlapping Content Container */
.hc-content-wrapper {
    position: relative;
    width: 90%;
    margin: -45px auto 0 auto;
    /* Tightened pull overlap gap to match image */
    z-index: 5;
    text-align: center;
}

/* Circular Blue Icon Block */
.hc-card-icon {
    width: 54px;
    height: 54px;
    background-color: #003a7a;
    border: 4px solid #ffffff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
    position: relative;
    z-index: 10;
    margin-bottom: -27px;
    /* Splitting the circle exactly halfway down */
}

/* White Content Box */
.hc-text-block {
    background: #ffffff;
    padding: 40px 18px 22px 18px;
    /* Tighter padding values */
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid #edf2f7;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hc-text-block h4 {
    font-size: 22px;
    font-weight: 700;
    color: #003a7a;
    margin-bottom: 10px;
    line-height: 1.3;
}

.hc-text-block p {
    font-size: 16px;
    color: #222223;
    line-height: 1.5;
    margin-bottom: 12px;
}

/* Read More Button with Icons */
.hc-readmore-btn {
    font-size: 13px;
    font-weight: 600;
    color: #003a7a;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hc-readmore-btn i {
    font-size: 11px;
    transition: transform 0.2s ease;
}

/* --- HOVER EFFECTS --- */
.hc-overlap-card:hover .hc-card-bg-img img {
    transform: scale(1.05);
}

.hc-overlap-card:hover .hc-text-block {
    box-shadow: 0 12px 30px rgba(11, 91, 156, 0.12);
    transform: translateY(-3px);
}

.hc-overlap-card:hover .hc-readmore-btn {
    border-color: #003a7a;
}

.hero-text h1 {
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.hero-text p {
    color: #eaeaea;
    margin-bottom: 25px;
}

/* BUTTONS */
.btn-main {
    background: #fff;
    color: #003a7a;
    padding: 10px 22px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    margin-right: 10px;
}

.btn-outline {
    border: 1px solid #fff;
    color: #fff;
    padding: 10px 22px;
    border-radius: 30px;
    text-decoration: none;
}

/* FORM BOX */
.hero-form {
    background: #ffffff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    width: 100%;
}

.hero-form h4 {
    color: #003a7a;
    margin-bottom: 15px;
}

/* INPUT */
.hero-form input,
.hero-form textarea {
    width: 100%;
    margin-bottom: 12px;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    outline: none;
    font-size: 14px;
}

/* BUTTON */
.hero-form button {
    width: 100%;
    padding: 12px;
    border-radius: 25px;
    border: none;
    background: linear-gradient(135deg, #003a7a, #06b2e5);
    color: #fff;
    font-weight: 600;
    transition: 0.3s;
}

.hero-form button:hover {
    opacity: 0.9;
}

.slick-dotted.slick-slider {
    margin-bottom: 0px !important;
}

/* ЁЯФе RESPONSIVE FIX */
@media (max-width: 992px) {
    .hero {
        text-align: center;

    }

    .hero-text h1 {
        font-size: 30px;
    }

    .hero-form {
        margin-top: 30px;
    }
}

@media (max-width: 576px) {
    .hero-text h1 {
        font-size: 24px;
    }

    .btn-main,
    .btn-outline {
        display: inline-block;
        margin-bottom: 10px;
    }
}

    .banner-slider-section {
        overflow: hidden;
        position: relative;
    }

    .banner-slider .banner-item img {
        width: 100%;
        height: 500px;
        object-fit: cover;
        display: block;
    }

    /* arrows */
    .banner-slider .slick-prev,
    .banner-slider .slick-next {
        z-index: 10;
        width: 50px;
        height: 50px;
    }

    .banner-slider .slick-prev {
        left: 20px;
    }

    .banner-slider .slick-next {
        right: 20px;
    }

    .banner-slider .slick-prev:before,
    .banner-slider .slick-next:before {
        font-size: 40px;
        color: #fff;
    }

    /* dots */
    .banner-slider .slick-dots {
        bottom: 20px;
    }

    .banner-slider .slick-dots li button:before {
        color: #fff;
        font-size: 12px;
    }

    @media (min-width:769px) and (max-width:1024px) {

        .banner-slider .banner-item img {
            height: 350px;
            object-fit: cover;
        }

        .banner-slider .slick-prev,
        .banner-slider .slick-next {
            width: 40px;
            height: 40px;
        }

        .banner-slider .slick-prev:before,
        .banner-slider .slick-next:before {
            font-size: 30px;
        }
    }

    /* mobile responsive */
    @media(max-width:768px) {

        .banner-slider .banner-item img {
            height: 170px;
            object-fit: cover;
        }

        .banner-slider .slick-prev,
        .banner-slider .slick-next {
            display: none !important;
        }
    }
    
.survivor-gallery {
    padding: 50px 0;
    background: #003a7a;
    overflow: hidden;
}

.gallery-tag {
    display: inline-block;
    padding: 5px 14px;
    background: white;
    color: #003a7a;
    font-weight: 700;
    border-radius: 30px;
    font-size: 12px;
    letter-spacing: 0.8px;
}

.gallery-heading {
    font-size: 32px;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
    margin: 0;
    letter-spacing: -0.5px;
}

.gallery-heading span {
    color: #fff;
}

.slider-btns {
    display: flex;
    gap: 8px;
}

.slider-btn {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(0, 58, 122, 0.1);
    border-radius: 50%;
    background: #ffffff;
    font-size: 16px;
    color: #003a7a;
    box-shadow: 0 4px 12px rgba(0, 58, 122, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.slider-btn:hover {
    background: #003a7a;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 58, 122, 0.15);
}

.gallery-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 58, 122, 0.03);
    border: 1px solid rgba(0, 58, 122, 0.05);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.gallery-img-wrapper {
    width: 100%;
    height: 230px;
    overflow: hidden;
    position: relative;
    background: #e2e8f0;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-content {
    padding: 16px 20px;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.gallery-content h5 {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
    color: #334155;
    margin: 0;
}

.gallery-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 58, 122, 0.12);
    box-shadow: 0 12px 30px rgba(0, 58, 122, 0.08);
}

.gallery-card:hover img {
    transform: scale(1.04);
}

@media (max-width: 576px) {
    .py-5 {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }

    .gallery-tag {
        font-size: 11px;
        padding: 5px 12px;
    }

    .gallery-heading {
        font-size: 22px;
    }

    .slider-btn {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }

    .gallery-card img {
        height: 200px;
    }

    .gallery-content {
        padding: 16px;
    }

    .gallery-content h5 {
        font-size: 15px;
        line-height: 1.4;
    }

    .d-flex {
        gap: 10px;
    }
}

                .at-book-btn {
                    display: inline-flex;
                    align-items: center;
                    justify-content: center;
                    gap: 10px;
                    padding: 12px 18px;
                    background: #003a7a !important;
                    color: #fff !important;
                    border: 2px solid transparent;
                    border-radius: 50px;
                    font-size: 15px;
                    font-weight: 600;
                    text-decoration: none;
                    transition: all .35s ease;
                    box-shadow: 0 10px 25px rgba(211, 47, 47, .25);
                }

                .at-book-btn i {
                    font-size: 16px;
                    transition: .35s;
                }

                .at-book-btn:hover {
                    background: #fff;
                    color: #003a7a !important;
                    border-color: #d32f2f;
                    transform: translateY(-3px);
                    box-shadow: 0 15px 35px rgba(211, 47, 47, .35);
                }

                .at-book-btn:hover i {
                    transform: rotate(-10deg) scale(1.1);
                }

                .at-book-btn span {
                    white-space: nowrap;
                }

                @media (max-width:767px) {

                    .at-book-btn {
                        padding: 10px 20px;
                        font-size: 14px;
                    }

                    .at-book-btn i {
                        font-size: 15px;
                    }

                }
                
    .typing-box {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        text-align: center;
        flex-wrap: wrap;
    }

    .cursor {
        display: inline-block;
        animation: blink .10s infinite;
        font-weight: 700;
    }

    @keyframes blink {

        0%,
        50% {
            opacity: 1;
        }

        51%,
        100% {
            opacity: 0;
        }
    }
    
        .at-footer-wrap {
            position: relative;
            overflow: hidden;
            padding: 80px 0 0;
            background: linear-gradient(135deg, #003a7a 0%, #0057b8 50%, #003a7a 100%);
        }

        /* Background Shapes */

        .at-footer-wrap::before {
            content: "";
            position: absolute;
            width: 320px;
            height: 320px;
            top: -150px;
            left: -120px;
            background: rgba(255, 255, 255, .05);
            border-radius: 50%;
        }

        .at-footer-wrap::after {
            content: "";
            position: absolute;
            width: 380px;
            height: 380px;
            bottom: -180px;
            right: -150px;
            background: rgba(255, 255, 255, .04);
            border-radius: 50%;
        }

        /*=========================================
            Footer Box
=========================================*/

        .at-footer-box {
            position: relative;
            z-index: 2;
            height: 100%;
        }

        .at-footer-logo {
            width: 180px;
            margin-bottom: 25px;
        }

        .at-footer-desc {
            color: rgba(255, 255, 255, .82);
            line-height: 1.9;
            font-size: 15px;
            margin-bottom: 0;
        }

        /*=========================================
            Footer Heading
=========================================*/

        .at-footer-box h4 {
            position: relative;
            color: #fff;
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 35px;
        }

        .at-footer-box h4::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -12px;
            width: 55px;
            height: 3px;
            background: #ffffff;
            border-radius: 30px;
        }

        /*=========================================
            Footer Links
=========================================*/

        .at-footer-links {
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .at-footer-links li {
            margin-bottom: 15px;
        }

        .at-footer-links li:last-child {
            margin-bottom: 0;
        }

        .at-footer-links a {
            color: rgba(255, 255, 255, .85);
            text-decoration: none;
            transition: .35s;
            display: inline-block;
            position: relative;
        }

        .at-footer-links a::before {
            content: "›";
            margin-right: 8px;
            color: #fff;
        }

        .at-footer-links a:hover {
            color: #fff;
            padding-left: 8px;
        }

        /*=========================================
            Contact
=========================================*/

        .at-contact-row {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            margin-bottom: 22px;
        }

        .at-contact-row:last-child {
            margin-bottom: 0;
        }

        .at-contact-icon {
            width: 52px;
            height: 52px;
            min-width: 52px;
            background: rgba(255, 255, 255, .12);
            border: 1px solid rgba(255, 255, 255, .15);
            border-radius: 14px;

            display: flex;
            align-items: center;
            justify-content: center;

            color: #fff;
            font-size: 18px;

            transition: .35s;
        }

        .at-contact-row:hover .at-contact-icon {
            background: #fff;
            color: #003a7a;
            transform: translateY(-4px);
        }

        .at-contact-row strong {
            display: block;
            color: #fff;
            margin-bottom: 4px;
            font-size: 16px;
        }

        .at-contact-row p {
            margin: 0;
            color: rgba(255, 255, 255, .82);
            line-height: 1.8;
            font-size: 15px;
        }

        .at-contact-row a {
            color: rgba(255, 255, 255, .82);
            text-decoration: none;
            transition: .3s;
        }

        .at-contact-row a:hover {
            color: #fff;
        }

        /*=========================================
            Social Icons
=========================================*/

        .at-footer-social {
            display: flex;
            gap: 12px;
            margin-top: 25px;
        }

        .at-footer-social a {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: rgba(255, 255, 255, .12);
            border: 1px solid rgba(255, 255, 255, .15);

            display: flex;
            align-items: center;
            justify-content: center;

            color: #fff;
            text-decoration: none;

            transition: .35s;
        }

        .at-footer-social a:hover {
            background: #fff;
            color: #003a7a;
            transform: translateY(-4px);
        }

        /*=========================================
            Bottom Footer
=========================================*/

        .at-footer-bottom {
            margin-top: 10px;
            background: rgba(0, 0, 0, .18);
            border-top: 1px solid rgba(255, 255, 255, .12);
            padding: 18px 0;
            text-align: center;
        }

        .at-footer-bottom p {
            margin: 0;
            color: rgba(255, 255, 255, .85);
            font-size: 15px;
        }

        .at-footer-bottom a {
            color: #fff;
            text-decoration: none;
            font-weight: 600;
        }

        .at-footer-bottom a:hover {
            text-decoration: underline;
        }

        /*=========================================
            Responsive
=========================================*/

        @media (max-width:991px) {

            .at-footer-box {
                margin-bottom: 35px;
            }

        }

        @media (max-width:767px) {

            .at-footer-wrap {
                padding-top: 60px;
            }

            .at-footer-logo {
                width: 150px;
            }

            .at-footer-box h4 {
                font-size: 22px;
            }

            .at-contact-icon {
                width: 46px;
                height: 46px;
                min-width: 46px;
                font-size: 16px;
            }

            .at-footer-bottom {
                margin-top: 40px;
            }

        }
        
:root {
    --primary-blue: #003a7a;
    --accent-red: #e20707;
    --light-bg: #f8fafc;
    --card-border: rgba(0, 58, 122, 0.06);
}

.fullwidth-testimonial-section {
    background-color: white;
    padding: 50px 0;
    width: 100%;
    overflow: hidden;
}

/* Full Width Container Setup */
.fw-slider-container {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 40px;
}

/* Premium Card Design inside Slider */
.testimonial-twin-card {
    background: #ffffff;
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 45px;
    box-shadow: 0 15px 35px -15px rgba(0, 58, 122, 0.05);
    position: relative;
    overflow: hidden;
    height: auto;
    margin-bottom: 15px;
    /* shadow clipping prevent karne ke liye */
}

/* Premium Multi-color accent top indicator bar */
.testimonial-twin-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--accent-red) 100%);
}

.quote-twin-icon {
    font-size: 3rem;
    line-height: 1;
    color: rgba(226, 7, 7, 0.1);
    font-family: "Cormorant Garamond", serif !important;
    position: absolute;
    top: 25px;
    right: 35px;
}

.twin-star-rating {
    color: #ffb800;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.twin-testimonial-text {
    color: #1e293b;
    font-size: 1.05rem;
    line-height: 1.7;
    font-weight: 500;
    margin-bottom: 30px;
}

/* Avatar & Profile */
.twin-user-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ffffff;
    box-shadow: 0 4px 10px rgba(0, 58, 122, 0.08);
}

.twin-user-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 2px;
}

.twin-user-designation {
    font-size: 0.8rem;
    color: #222223;
    font-weight: 500;
}

/* --- Customized Swiper Indicator Dots --- */
.swiper-pagination-custom {
    position: relative !important;
    margin-top: 45px;
    bottom: 0 !important;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.swiper-pagination-custom .swiper-pagination-bullet {
    width: 10px !important;
    height: 10px !important;
    background-color: #cbd5e1 !important;
    opacity: 1 !important;
    margin: 0 !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border-radius: 50%;
}

/* Active bullet expands smoothly into capsule string with accent red */
.swiper-pagination-custom .swiper-pagination-bullet-active {
    background-color: var(--accent-red) !important;
    width: 26px !important;
    border-radius: 30px !important;
}

/* Layout tweaks for edge safety */
@media (max-width: 767px) {
    .fw-slider-container {
        padding: 0 20px;
    }

    .testimonial-twin-card {
        padding: 35px 25px;
    }
}

:root {
    --primary-blue: #003a7a;
    --accent-red: #e20707;
    --light-bg: #f8fafc;
    --card-border: rgba(0, 58, 122, 0.06);
}

.premium-gallery-section {
    background-color: white;
    padding: 80px 0;
    width: 100%;
    overflow: hidden;
}

.gallery-fw-container {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 40px;
}

/* --- Top Right Controls Framework --- */
.gallery-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 35px;
    position: relative;
}

.gallery-nav-actions {
    display: flex;
    gap: 12px;
    z-index: 20;
}

/* Custom Arrows Fixes */
.btn-gallery-arrow {
    width: 48px;
    height: 48px;
    background-color: #ffffff;
    border: 1px solid var(--card-border);
    border-radius: 12px;
    color: var(--primary-blue);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 20px -6px rgba(0, 58, 122, 0.08);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    user-select: none;
}

.btn-gallery-arrow:hover {
    background-color: var(--primary-blue);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px -5px rgba(0, 58, 122, 0.2);
}

.btn-gallery-arrow:active {
    transform: translateY(0);
}

/* --- Swiper Slide Layout & Dimension Override --- */
.premiumGallerySwiper {
    width: 100%;
    padding: 10px 5px 25px 5px !important;
    /* Prevents shadow clipping */
}

.gallery-slide-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 280px;
    /* Locked Premium Compact Height */
    background-color: #0f172a;
    box-shadow: 0 12px 24px -10px rgba(0, 58, 122, 0.1);
    border: 1px solid transparent;
    transition: all 0.4s ease;
    width: 100%;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Hover micro-interactions */
.gallery-overlay-frame {
    position: absolute;
    inset: 0;
    background: rgba(0, 58, 122, 0.12);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-slide-card:hover .gallery-img {
    transform: scale(1.05);
}

.gallery-slide-card:hover .gallery-overlay-frame {
    opacity: 1;
}

.gallery-slide-card:hover {
    border-color: var(--accent-red);
    box-shadow: 0 20px 35px -10px rgba(0, 58, 122, 0.15);
}

/* Responsive Control Safeguards */
@media (max-width: 991px) {
    .gallery-fw-container {
        padding: 0 24px;
    }

    .gallery-header-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .gallery-nav-actions {
        width: 100%;
        justify-content: flex-end;
    }
}

@media (max-width: 575px) {
    .gallery-slide-card {
        height: 230px;
    }
}

.tm-youtube-gallery {
    padding: 70px 0;
    background: #ffffff;
    /* Clean light layout base */
    position: relative;
    overflow: hidden;
}

/* Luxury Soft Background Accent */
.tm-video-orb {
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(0, 58, 122, 0.04);
    /* Light variant of #003a7a */
    border-radius: 50%;
    filter: blur(120px);
    top: 20%;
    right: -10%;
    pointer-events: none;
    z-index: 1;
}

/* Section Header Typography */
.tm-video-tag {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(0, 58, 122, 0.06);
    color: #003a7a;
    font-weight: 700;
    border-radius: 30px;
    font-size: 12px;
    letter-spacing: 0.8px;
}

.tm-video-heading {
    font-size: 36px;
    font-weight: 600;
    color: #1e293b;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.tm-video-heading span {
    color: #003a7a;
    /* Core Brand Color */
}

.tm-video-desc {
    color: #222223;
    font-size: 17px;
    margin-top: 10px;
    line-height: 1.6;
}

/* Premium Framed Video Card Structure */
.tm-video-card {
    background: #ffffff;
    border: 1px solid rgba(0, 58, 122, 0.07);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 58, 122, 0.03);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
    position: relative;
    z-index: 2;
}

/* Responsive Fluid 16:9 Aspect Ratio Container */
.tm-thumbnail-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 Standard ratio */
    height: 0;
    background: #000000;
}

.tm-thumbnail-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Card Body Text Configuration */
.tm-card-body {
    padding: 22px;
}

.tm-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #003a7a;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.tm-card-body h4 {
    font-size: 17px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.45;
    margin: 0;
    transition: color 0.3s ease;
}

/* Micro-Interaction Hover Animation */
.tm-video-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 58, 122, 0.15);
    box-shadow: 0 20px 45px rgba(0, 58, 122, 0.08);
}

.tm-video-card:hover h4 {
    color: #003a7a;
}

/* Premium Action Channel Button Blueprint */
.tm-channel-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    background: #003a7a;
    /* Pure brand primary color action button */
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: 700;
    font-size: 15.5px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(0, 58, 122, 0.2);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.tm-channel-btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.tm-channel-btn:hover {
    background: #002244;
    /* Darker elite navy tone */
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 58, 122, 0.3);
}

.tm-channel-btn:hover i {
    transform: translate(2px, -2px);
}

/*==================================================
  RESPONSIVE CONFIGURATIONS (MOBILE VIEW CORRECTED)
==================================================*/
@media(max-width: 991px) {
    .tm-youtube-gallery {
        padding: 50px 0;
    }

    .tm-video-heading {
        font-size: 30px;
    }

    .tm-card-body {
        padding: 18px;
    }

    .tm-card-body h4 {
        font-size: 16px;
    }
}

@media(max-width: 576px) {
    .tm-youtube-gallery {
        padding: 35px 0;
    }

    .tm-video-heading {
        font-size: 22px;
    }

    .tm-video-desc {
        font-size: 13.5px;
    }

    .tm-card-body {
        padding: 14px;
    }

    .tm-card-body h4 {
        font-size: 14.5px;
    }

    .tm-channel-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 24px;
        font-size: 14px;
    }
}

:root {
    --primary-blue: #003a7a;
    --accent-red: #e20707;
    --light-bg: #f8fafc;
    --input-focus-shadow: rgba(0, 58, 122, 0.08);
}

.premium-contact-section {
    background-color: var(--light-bg);
    padding: 60px 0;
}

/* Left Side: Contact Info Card */
.contact-info-card {
    background: linear-gradient(145deg, var(--primary-blue) 0%, #002247 100%);
    color: white;
    border-radius: 24px;
    padding: 45px;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 58, 122, 0.12);
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: var(--accent-red);
    border-radius: 50%;
    opacity: 0.15;
    filter: blur(25px);
}

.info-icon-box {
    width: 50px;
    height: 50px;
    min-width: 60px;
    min-height: 60px;
    flex: 0 0 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, .08);
    border-left: 3px solid var(--accent-red);
    border-radius: 12px;

    transition: .35s ease;
}

.info-icon-box i,
.info-icon-box svg {
    font-size: 22px;
    line-height: 1;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.info-icon-box:hover {
    background: var(--accent-red);
    transform: translateY(-4px);
}

/* Right Side: Redesigned Bento Form Container */
.contact-form-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 45px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 58, 122, 0.06);
}

/* Upgraded Input Field Styling */
.input-group-custom {
    position: relative;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
}

.input-group-custom .input-icon {
    padding-left: 18px;
    color: #94a3b8;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.input-group-custom .form-control {
    background: transparent !important;
    border: none !important;
    padding: 16px 18px 16px 12px !important;
    font-size: 0.95rem;
    color: #0f172a;
    box-shadow: none !important;
}

.input-group-custom .form-control::placeholder {
    color: #94a3b8;
}

/* Interactive States on Focus */
.input-group-custom:focus-within {
    border-color: var(--primary-blue);
    background-color: #ffffff;
    box-shadow: 0 10px 20px -5px var(--input-focus-shadow), 0 0 0 4px rgba(0, 58, 122, 0.05);
}

.input-group-custom:focus-within .input-icon {
    color: var(--primary-blue);
}

/* Form Labels */
.form-label-custom {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #475569;
    margin-bottom: 8px;
    display: block;
}

/* Premium Submit Button */
.btn-premium-submit {
    background: var(--primary-blue);
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    padding: 16px 32px;
    border-radius: 12px;
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px -5px rgba(0, 58, 122, 0.3);
}

.btn-premium-submit:hover {
    background: #002d5f;
    transform: translateY(-2px);
    box-shadow: 0 15px 25px -5px rgba(0, 58, 122, 0.4);
    color: #ffffff;
}

.btn-premium-submit i {
    transition: transform 0.3s ease;
}

.btn-premium-submit:hover i {
    transform: translateX(4px);
}

.section-title-badge {
    color: var(--accent-red);
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.main-title-heading {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 35px;
}

.tm-faq-section {
    background: #f8fbff;
}

/* Heading */
.tm-faq-heading {
    font-size: 32px;
    font-weight: 700;

}

.tm-faq-sub {
    color: #6c757d;
}

/* Accordion */
.tm-faq-accordion .accordion-item {
    border: none;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Button */
.tm-faq-accordion .accordion-button {
    font-weight: 600;
    color: #03246b;
    background: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Active */
.tm-faq-accordion .accordion-button:not(.collapsed) {
    background: #003a7a;
    color: #fff;
}

/* Icon */
.tm-faq-accordion .accordion-button i {
    font-size: 18px;
}

/* Body */
.tm-faq-accordion .accordion-body {
    background: #fff;
    color: #555;
    font-size: 14px;
}

/* Remove default arrow */
.accordion-button::after {
    filter: brightness(0);
}

.tm-faq-accordion .accordion-button:not(.collapsed)::after {
    filter: brightness(100);
}

