:root {
    --primary: #FF9F85;
    /* Pastel Peach */
    --light: #FFF5F3;
    --dark: #103741;
}

body {
    background-image: url('https://ik.imagekit.io/yb23h60gk6/Pragya/Learnings/cutep%20copy.png');
    background-size: contain;
    background-position: center;
    background-attachment: fixed;
    background-repeat: repeat;
    font-family: 'Roboto', sans-serif;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary {
    color: #FFFFFF;
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}


/*** Heading ***/
h1,
h2,
h3,
h4,
.h1,
.h2,
.h3,
.h4,
.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}

h5,
h6,
.h5,
.h6 {
    font-weight: 600;
}

.font-secondary {
    font-family: 'Roboto', sans-serif;
}

/*** Ticker ***/
.top-ticker {
    background: #FF9F85;
    /* Using the primary pastel peach */
    color: #fff;
    padding: 8px 0;
    overflow: hidden;
    position: relative;
    z-index: 1031;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.ticker-wrapper {
    display: flex;
    width: 100%;
}

.ticker-content {
    display: flex;
    white-space: nowrap;
    animation: scroll-ticker 30s linear infinite;
}

.ticker-content span {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding-right: 50px;
    display: inline-block;
}

@keyframes scroll-ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/*** Hero Text Refinement ***/
.hero-admissions-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 25px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.text-highlight {
    color: #FFD24D;
    /* Vibrant yellow/gold highlight */
    font-weight: 800;
    text-shadow: 0 0 10px rgba(255, 210, 77, 0.3);
}


/*** Navbar ***/
.navbar {
    background-color: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.nav-logo {
    height: 40px;
    width: auto;
    padding: 0 5px;
    transition: 0.3s;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.logo-separator {
    height: 25px;
    width: 1px;
    background-color: #e0e0e0;
    margin: 0 10px;
}

.btn-nav-call {
    background-color: #FFD24D !important;
    /* Vibrant yellow/gold */
    color: #103741 !important;
    /* Dark Teal */
    border: none !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(255, 210, 77, 0.3) !important;
    transition: 0.3s !important;
}

.btn-nav-call i {
    animation: phone-ring 2s ease-in-out infinite;
    display: inline-block;
}

.btn-nav-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 210, 77, 0.4) !important;
    background-color: #ffc107 !important;
}

@keyframes phone-ring {
    0% {
        transform: rotate(0deg);
    }

    5% {
        transform: rotate(15deg);
    }

    10% {
        transform: rotate(-15deg);
    }

    15% {
        transform: rotate(15deg);
    }

    20% {
        transform: rotate(-15deg);
    }

    25% {
        transform: rotate(10deg);
    }

    30% {
        transform: rotate(-10deg);
    }

    35% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 10px 15px !important;
    }

    .nav-logo {
        height: 30px;
    }

    .logo-separator {
        margin: 0 5px;
    }

    .btn-nav-call {
        padding: 8px 15px !important;
        font-size: 0.8rem;
    }
}


@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 15px;
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        top: calc(100% - 15px);
        margin-top: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;

    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Hero Form Mobile Optimization ***/
@media (max-width: 576px) {
    .hero-form-container {
        padding: 0 !important;
        margin-top: 20px !important;
        margin-bottom: 20px !important;
        background: transparent !important;
    }
}

/*** Header ***/
.header-carousel::before,
.header-carousel::after,
.page-header::before,
.page-header::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 10px;
    top: 0;
    left: 0;
    background: url(../img/bg-header-top.png) center center repeat-x;
    z-index: 1;
}

.header-carousel::after,
.page-header::after {
    height: 19px;
    top: auto;
    bottom: 0;
    background: url(../img/bg-header-bottom.png) center center repeat-x;
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item p {
        font-size: 16px !important;
        font-weight: 400 !important;
    }

    .header-carousel .owl-carousel-item h1 {
        font-size: 30px;
        font-weight: 600;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .2), rgba(0, 0, 0, .2)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, .5);
}


/*** Facility ***/
.facility-item .facility-icon {
    position: relative;
    margin: 0 auto;
    width: 100px;
    height: 100px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.facility-item .facility-icon::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .9);
    transition: .5s;
    z-index: 1;
}

.facility-item .facility-icon span {
    position: absolute;
    content: "";
    width: 15px;
    height: 30px;
    top: 0;
    left: 0;
    border-radius: 50%;
}

.facility-item .facility-icon span:last-child {
    left: auto;
    right: 0;
}

.facility-item .facility-icon i {
    position: relative;
    z-index: 2;
}

.facility-item .facility-text {
    position: relative;
    min-height: 250px;
    padding: 30px;
    border-radius: 100%;
    display: flex;
    text-align: center;
    justify-content: center;
    flex-direction: column;
}

.facility-item .facility-text::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .9);
    transition: .5s;
    z-index: 1;
}

.facility-item .facility-text * {
    position: relative;
    z-index: 2;
}

.facility-item:hover .facility-icon::before,
.facility-item:hover .facility-text::before {
    background: transparent;
}

.facility-item * {
    transition: .5s;
}

.facility-item:hover * {
    color: #FFFFFF !important;
}


/*** About ***/
.about-img img {
    transition: .5s;
}

.about-img img:hover {
    background: var(--primary) !important;
}


/*** Classes ***/
.classes-item {
    transition: .5s;
}

.classes-item:hover {
    margin-top: -10px;
}


/*** Team ***/
.team-item .team-text {
    position: absolute;
    width: 250px;
    height: 250px;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #FFFFFF;
    border: 17px solid var(--light);
    border-radius: 250px;
    transition: .5s;
}

.team-item:hover .team-text {
    border-color: var(--primary);
}


/*** Testimonial ***/
.testimonial-carousel {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 576px) {
    .testimonial-carousel {
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

.testimonial-carousel .testimonial-item .border {
    border: 1px dashed rgba(0, 185, 142, .3) !important;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 45px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 45px;
    font-size: 20px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--dark);
}


/* Obsolete traditional footer styles removed */
.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .2);
}

.footer .copyright a {
    color: #FFFFFF;
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .copyright a:hover,
.footer .footer-menu a:hover {
    color: var(--primary) !important;
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

/*** Why Choose Us Cards ***/
.choose-card {
    display: flex;
    align-items: stretch;
    /* Ensures both sides are equal height */
    border-radius: 15px;
    padding: 0;
    /* Padding handled by children */
    margin-bottom: 20px;
    overflow: hidden;
    /* Clips the background */
    transition: 0.3s;
    height: 100%;
    /* Ensures card takes full height of column */
}

.choose-card .card-icon {
    width: 80px;
    min-width: 80px;
    /* Prevent shrinking */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    margin: 0;
}

.choose-card .card-body-text {
    padding: 20px;
    flex-grow: 1;
}

.choose-card .card-body-text h3,
.choose-card .card-body-text p {
    color: white;
    margin: 0;
}

.choose-card .card-body-text h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

/* Color Themes */
/* Red Card -> Pastel Peach */
.card-red .card-icon {
    background-color: #FF9F85;
}

.card-red .card-body-text {
    background-color: #FFB5A7;
}

/* Yellow Card -> Pastel Yellow */
.card-yellow .card-icon {
    background-color: #FBC531;
}

.card-yellow .card-body-text {
    background-color: #f5d375;
}

/* Blue Card -> Pastel Periwinkle */
.card-blue .card-icon {
    background-color: #8D91C7;
}

.card-blue .card-body-text {
    background-color: #9EA1D4;
}

/* Teal */
.card-teal .card-icon {
    background-color: #76B5B3;
}

.card-teal .card-body-text {
    background-color: #8AC6C3;
}

/* Purple */
.card-purple .card-icon {
    background-color: #B39CD0;
}

.card-purple .card-body-text {
    background-color: #ccb0de;
}

/*** Director's Vision ***/
.director-vision {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.director-img {
    position: relative;
    height: 100%;
    min-height: 300px;
    border-radius: 15px;
    overflow: hidden;
}

.director-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vision-text h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.vision-quote {
    font-size: 1.25rem;
    font-style: italic;
    color: #555;
    margin-bottom: 25px;
    position: relative;
    padding-left: 20px;
    border-left: 5px solid var(--primary);
}

.director-name {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 5px;
}


/*** Our Programmes ***/
.program-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: 0.5s;
    height: 100%;
}

.program-card:hover {
    transform: translateY(-10px);
}

.program-img {
    height: 250px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.program-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.program-card:hover .program-img img {
    transform: scale(1.1);
}

.program-text {
    padding: 30px;
    height: 100%;
}

.program-text h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
}

.program-text p {
    color: white;
    margin-bottom: 0;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Colors derived from pastel theme */
.program-teal .program-text {
    background: #76B5B3;
    /* Pastel Teal from yellow card icon */
}

.program-peach .program-text {
    background: #FF9F85;
    /* Pastel Peach from red card icon */
}

/*** Out of Syllabus ***/
.extra-item {
    text-align: center;
    padding: 20px;
    transition: transform 0.3s;
}

.extra-item:hover {
    transform: translateY(-5px);
}

.icon-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    color: white;
    font-size: 2.2rem;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.extra-item:hover .icon-circle {
    transform: scale(1.1);
}

.extra-item h5 {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0;
}

/* Updated Pastel Palette for Icons */
.bg-pastel-peach {
    background-color: #FF9F85;
}

.bg-pastel-teal {
    background-color: #76B5B3;
}

.bg-pastel-blue {
    background-color: #8D91C7;
}

.bg-pastel-yellow {
    background-color: #FBC531;
}

/* Slightly deeper yellow for contrast */
.bg-pastel-green {
    background-color: #8AC6C3;
}

/* Reusing soft teal/green variant or specific green */
.bg-pastel-purple {
    background-color: #9EA1D4;
}

/*** Our Learning Space ***/
.learning-space-bg {
    position: relative;
    z-index: 1;
}

.learning-space-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://ik.imagekit.io/yb23h60gk6/Pragya/Learnings/cutep.png');
    background-size: contain;
    background-repeat: repeat;
    background-position: center;
    opacity: 0.21;
    z-index: -1;
}

.learning-carousel .owl-dots {
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.learning-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #DDDDDD;
    transition: .5s;
    border-radius: 15px;
}

.learning-carousel .owl-dot.active {
    width: 30px;
    background: var(--primary);
}

.learning-item {
    text-align: center;
    padding: 20px;
}

.learning-item img {
    border-radius: 50%;
    width: 350px !important;
    height: 350px !important;
    max-width: 350px;
    object-fit: cover;
    margin: 0 auto;
    border: 10px solid;
    transition: 0.5s;
    display: inline-block;
}

.learning-item:hover img {
    transform: rotate(5deg) scale(1.05);
}

/* Colorful Borders - Targeting owl-item to cycle correctly */
.owl-item:nth-child(5n+1) .learning-item img {
    border-color: #FF9F85;
}

/* Peach */
.owl-item:nth-child(5n+2) .learning-item img {
    border-color: #76B5B3;
}

/* Teal */
.owl-item:nth-child(5n+3) .learning-item img {
    border-color: #8D91C7;
}

/* Blue/Purple */
.owl-item:nth-child(5n+4) .learning-item img {
    border-color: #FBC531;
}

/* Yellow */
.owl-item:nth-child(5n+5) .learning-item img {
    border-color: #8AC6C3;
}

/* Green */


/*** Presence Flowchart ***/
.presence-flowchart {
    position: relative;
    padding: 20px 0;
    text-align: center;
}

.flow-level {
    display: flex;
    justify-content: center;
    width: 100%;
}

.flow-node {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

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

.main-node {
    border-top: 4px solid var(--dark);
    min-width: 250px;
}

.sub-node {
    min-width: 100%;
    /* Make card fill column width */
    border-top: 4px solid var(--primary);
}

.branch-right .sub-node {
    border-top-color: #8D91C7;
    /* Pastel blue/purple for styling variety */
}


.flow-logo-lg {
    height: 70px;
    object-fit: contain;
    margin-bottom: 10px;
}

.flow-logo-md {
    height: 55px;
    object-fit: contain;
    margin-bottom: 10px;
}

.presence-flowchart h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0px;
}


/* Connectors */
.flow-connectors {
    position: relative;
    height: 50px;
    margin-bottom: 0px;
}

.vertical-line-top {
    width: 3px;
    height: 25px;
    background: var(--dark);
    margin: 0 auto;
}

.horizontal-bar {
    width: 60%;
    /* Adjusted for column spacing */
    height: 3px;
    background: var(--dark);
    margin: 0 auto;
    position: relative;
}

.vertical-lines-bottom {
    width: 60%;
    /* Same as horizontal bar */
    height: 25px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.vertical-lines-bottom::before,
.vertical-lines-bottom::after {
    content: '';
    width: 3px;
    height: 100%;
    background: var(--dark);
}

/* Branch List (Obsolete, keeping for structure reference until all done) */
.branch-details-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
}

.branch-detail-card {
    background: #fff;
    border: 1.5px dashed #ccc;
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    text-align: left;
    transition: 0.3s;
}

.branch-detail-card:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.branch-right .branch-detail-card:hover {
    border-color: #8D91C7;
}

.branch-detail-card .card-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background: #f8f9fa;
    border: 1px solid #eee;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e63946;
    /* Match the red icon in reference */
    font-size: 1.2rem;
}

.branch-detail-card .card-info h6 {
    font-weight: 700;
    color: #e63946;
    margin-bottom: 5px;
    font-size: 1rem;
}

.branch-detail-card .card-info .classes {
    font-weight: 700;
    color: #333;
    font-size: 0.85rem;
    margin-bottom: 5px;
}

.branch-detail-card .card-info .address,
.branch-detail-card .card-info .contacts {
    margin-bottom: 2px;
    font-size: 0.8rem;
    color: #666;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .presence-flowchart {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Vertical connector line for mobile */
    .presence-flowchart::before {
        content: '';
        position: absolute;
        top: 100px;
        bottom: 50px;
        left: 50%;
        width: 2px;
        background: var(--dark);
        z-index: 0;
        opacity: 0.3;
    }

    .flow-level,
    .flow-branch {
        position: relative;
        z-index: 1;
        width: 100%;
        margin-bottom: 30px;
    }

    .horizontal-bar,
    .vertical-lines-bottom,
    .vertical-line-top {
        display: none;
    }

    .flow-connectors {
        height: 0;
        margin: 0;
    }

    .branch-details-container {
        width: 100%;
        gap: 10px;
    }

    .branch-detail-card {
        padding: 12px;
        gap: 10px;
    }

    .branch-detail-card .card-info h6 {
        font-size: 0.95rem;
    }
}

/*** FAQ Section ***/
#faqAccordion .accordion-item {
    border: none;
    background: transparent;
}

#faqAccordion .accordion-button {
    background-color: #fff;
    color: var(--dark);
    font-weight: 700;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    padding: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

#faqAccordion .accordion-button:not(.collapsed) {
    background-color: var(--primary);
    color: #fff;
    box-shadow: none;
}

#faqAccordion .accordion-button::after {
    filter: grayscale(1) brightness(0);
}

#faqAccordion .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

#faqAccordion .accordion-body {
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 0 0 12px 12px;
    padding: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-top: none;
    color: #555;
    line-height: 1.6;
}

.branch-faq-list {
    list-style: none;
    padding-left: 0;
}

.branch-faq-list li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.branch-faq-list li::before {
    content: "\f111";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 6px;
    color: var(--primary);
    position: absolute;
    left: 0;
    top: 9px;
}

/*** Card-Based Footer Refinement (Premium Polish) ***/
.footer {
    background: linear-gradient(135deg, #FF9F85 0%, #ff8b6b 100%) !important;
    position: relative;
    overflow: hidden;
}

/* Subtle background image support */
.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://ik.imagekit.io/yb23h60gk6/Pragya/home1.png?updatedAt=1767891178641');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.12;
    z-index: 0;
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer-card {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.footer-card:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-10px);
    border-color: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card-icon-bg {
    width: 65px;
    height: 65px;
    background: #fff;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 25px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: 0.4s;
}

.footer-card:hover .card-icon-bg {
    transform: rotate(10deg) scale(1.1);
    background: var(--primary);
    color: #fff;
}

.footer-card h5 {
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
}

.footer-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    margin-bottom: 0;
    /* Removed margin since button is gone */
}

.btn-footer-common {
    background-color: #fff !important;
    color: var(--primary) !important;
    border: none !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px 40px !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    margin-top: 20px;
}

.btn-footer-common i {
    animation: phone-ring 2s ease-in-out infinite;
    display: inline-block;
}

.btn-footer-common:hover {
    background-color: var(--dark) !important;
    color: #fff !important;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25) !important;
}

.footer .btn-primary {
    background-color: #fff !important;
    color: var(--primary) !important;
    border: none !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    padding: 12px 25px !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.3s ease !important;
}

.footer .btn-primary:hover {
    background-color: var(--dark) !important;
    color: #fff !important;
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2) !important;
}

.footer .copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .footer-card {
        margin-bottom: 20px;
    }
}