/*
Theme Name: Blueblocks
Theme URI: https://blueblocks.in
Author: Techu Mayur
Author URI: https://yourwebsite.com
Description: Custom WordPress Theme for Blueblocks School
Version: 1.0
Text Domain: blueblocks
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/

/* ==============================
    Root Variables (Fluid Defaults)
    ================================= */
:root {
    --theme-color: #F9A78F;
    --primary-color: #95D6ED;
    --heading-color: #111118;
    --btn-color: #0C54A0;
    --badge-color: #121297;
    --highlight-color: #4281E9;
    --nav-color: #131313;
    --para-color: #11111899;
    --white-color: #fff;
    --black-color: #000;
    --skin-color: #F5E9DA;
    --topbar-color: #D97B58;
    --light-yellow-color: #F9E48F;
    --banner-font: 400 clamp(2.625rem, 1.5rem + 5vw, 6.738rem) / clamp(3.625rem, 3rem + 4vw, 7.688rem) "Inter", sans-serif;
    --heading-font: 400 clamp(2.625rem, 1.5rem + 5vw, 4.738rem) / clamp(3.625rem, 3rem + 4vw, 5.288rem) "Inter", sans-serif;
    --small-heading-font: 600 clamp(0.874rem, 0.75rem + 1vw, 1.25rem) / 1.5 "Raleway", sans-serif;
    --sub-heading-font: 400 clamp(2.203rem, 2rem + 1vw, 2.443rem) / clamp(2.688rem, 2.5rem + 1vw, 2.938rem) "Inter", sans-serif;
    --para-font: 400 clamp(1.09rem, 1rem + 1vw, 1.2rem) / 1.5 "Inter", sans-serif;
    --body-font: 400 1rem / 1.5 "Inter", sans-serif;
    --badge-font: 400 clamp(0.875rem, 0.8rem + 1vw, 1.086rem) / clamp(1.313rem, 1.2rem + 1vw, 1.625rem) "Poppins", sans-serif;
    --input-font: 400 clamp(0.687rem, 0.6rem + 1vw, 1rem) / 1.5rem "Inter", sans-serif;
    --nav-font: 400 1rem / 1.5rem "Poppins", sans-serif;
    --footer-font: 400 0.875rem / 1rem "Inter", sans-serif;
}

/* ==============================
    Reset & Global Defaults
    ================================= */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    background-color: var(--body-color);
    font: var(--body-font);
    color: var(--para-color);
    font-display: swap;
}

/* ==============================
    Typography
    ================================= */
h1 {
    font: var(--banner-font);
    color: var(--heading-color);
    font-display: swap;
}

h2 {
    font: var(--heading-font);
    color: var(--heading-color);
    font-display: swap;
}

h3 {
    font: var(--sub-heading-font);
    color: var(--heading-color);
    font-display: swap;
}

p {
    font: var(--para-font);
    color: var(--para-color);
    font-display: swap;
}

a {
    font: var(--body-font);
    text-decoration: none;
    color: var(--heading-color);
    font-display: swap;
}

a:hover {
    color: var(--heading-color);
}

/* ==============================
    Forms & Buttons
    ================================= */
.navbar-toggler:focus,
.form-control,
.form-select,
button {
    transition: 0.3s ease-in-out;
    background: none;
    box-shadow: none;
    outline: 0;
}

.form-control:focus,
.form-select:focus,
button:focus {
    border: 0;
}

/* ==============================
    Scrollbar & Selection
    ================================= */
::-webkit-scrollbar {
    width: 0.35rem;
}

::-webkit-scrollbar-track {
    background: var(--theme-color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

::selection {
    color: var(--white-color);
    background: var(--theme-color);
}

/* ==============================
    Button
    ================================= */
.primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: clamp(0.7rem, 0.5rem + 1vw, 0.84rem) clamp(1.5rem, 1rem + 2vw, 0.5rem);
    font: var(--btn-font);
    color: var(--white-color);
    background: var(--btn-color);
    border: 1px solid var(--btn-color);
    border-radius: 52px;
    cursor: pointer;
    text-decoration: none;
    transition: 0.25s ease-in-out;
    width: fit-content;
}

.primary-btn:hover {
    background: var(--white-color);
    color: var(--btn-color);
}

/* ==============================
    Utilities
    ================================= */
.section-spacing {
    padding: 3rem 0;
}

.highlight {
    color: var(--primary-color);
}

.container-fluid {
    padding: 0;
    margin: 0;
    overflow: hidden;
}

picture {
    display: block;
}

.main-badge {
    display: inline-block;
    background: rgba(39, 39, 230, 0.05);
    border-radius: 52px;
    color: var(--badge-color);
    padding: clamp(0.3rem, 0.2rem + 1vw, 0.5rem) clamp(0.8rem, 0.5rem + 2vw, 1.5rem);
    font: var(--badge-font);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.highlight-color {
    color: var(--highlight-color);
}

/* ==============================
    Hover Effects
    ================================= */
.zoom-hover picture {
    position: relative;
    overflow: hidden;
    display: block;
}

.zoom-hover picture img {
    transition: 1.5s cubic-bezier(0, 0, 0.2, 1);
}

.zoom-hover:hover picture img {
    transform: scale(1.1);
}

/* ==============================
    Loader
    ================================= */
.loader {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 999999999;
    background: var(--white-color) url("../images/logo.svg") 50% 50% no-repeat;
}

/* ==============================
    Swiper Slider
    ================================= */
.swiper {
    width: 100%;
    height: 100%;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 0;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color);
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 18px;
    font-weight: 700;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 6px 16px rgba(255, 122, 0, 0.4);
}

.swiper-button-active {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 6px 16px rgba(255, 122, 0, 0.4);
}

.swiper-pagination-bullet {
    background: var(--theme-color);
    opacity: 0.6;
}

.swiper-pagination-bullet-active {
    background: var(--primary-color);
    opacity: 1;
}

/* ==============================
    Navbar
    ================================= */
.top-bar {
    background-color: var(--topbar-color);
    color: var(--white-color);
    text-align: center;
    font: var(--body-font);
    padding: 0.4rem 1rem;
}

.top-bar p {
    display: inline-block;
    margin-bottom: 0;
    color: var(--white-color);
    font: var(--body-font);
    padding-inline-end: 2rem;
    text-transform: uppercase;
    letter-spacing: 0%;
}

.top-bar p::before {
    content: "";
    display: inline-block;
    height: 10px;
    width: 10px;
    border: 1px solid var(--white-color);
    border-radius: 100%;
    background: var(--white-color);
    margin-inline-end: 0.5rem;
}

#navigation_bar {
    position: fixed;
    transition: top .6s ease-in-out;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(50px);
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
}

#navigation_bar.nav-down {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(50px);
    transition: top 0.6s ease-in-out;
    top: 0
}

#navigation_bar.nav-up {
    top: -140px
}

#navigation_bar .navbar .navbar-brand {
    aspect-ratio: 82 / 68;
    display: inline-block;
}

#navigation_bar .navbar .navbar-brand picture {
    width: 82px;
    height: auto;
    display: inline-block;
}

#navigation_bar .navbar-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
}

#navigation_bar .navbar .nav-link {
    position: relative;
    font: var(--nav-font);
    color: var(--nav-color);
    transition: color 0.3s ease;
    padding-bottom: 0px;
}

/* ==============================
        Home Page Styles
    ================================= */
/* ==============================
        Banner section
    ================================= */
#home-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    text-align: center;
    position: relative;
    height: 100%;
    overflow: hidden;
    padding-bottom: 12%;
    padding-top: 10%;
}

#home-banner p {
    margin: 2rem 0 3rem;
}

#home-banner .banner-btn {
    width: fit-content;
    margin: auto;
    display: flex;
    justify-content: center;
    gap: 20px;
}

#home-banner .banner-btn img {
    filter: brightness(0) invert(1);
    margin-inline-start: 20px;
}

#home-banner .watch-story-btn img {
    filter: unset;
}

#home-banner .watch-story-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(70, 77, 92, 0.3);
    backdrop-filter: blur(16.7px);
    border-radius: 52px;
    color: #1D1D1D;
}

#home-banner .banner-btn .primary-btn:hover img {
    filter: unset;
}

#home-banner .watch-story-btn:hover {
    background: var(--btn-color);
    color: var(--white-color);
}

#home-banner .banner-btn .watch-story-btn:hover img {
    filter: brightness(0) invert(1);
}

#home-banner .banner-bg {
    position: absolute;
    position: absolute;
    bottom: 0;
    z-index: -1;
    left: 0;
    right: 2%;
}

#home-banner .banner-image picture {
    height: auto;
    width: 200px;
}

#home-banner .banner-image-one {
    position: absolute;
    top: 22%;
    left: 2%;
    mix-blend-mode: normal;
    transform: rotate(-7.79deg);
}

#home-banner .banner-image-two {
    position: absolute;
    top: 22%;
    right: 2%;
    transform: rotate(3.5deg);
}

#home-banner .banner-image-three {
    position: absolute;
    bottom: -20%;
    left: 1%;
    mix-blend-mode: normal;
    transform: rotate(13.43deg);
}

#home-banner .banner-image-four {
    position: absolute;
    bottom: -20%;
    right: 1%;
    transform: rotate(-11.09deg);
}

/* ==============================
        Philosophy section
    ================================= */
#home-philosophy {
    position: relative;
    overflow: hidden;
    padding-top: 15%;
    padding-bottom: 15%;
}

.philosophy-bg {
    position: absolute;
    left: -21.5%;
    overflow: hidden;
    top: 0;
    z-index: -1;
}

#home-philosophy .philosophy-content p {
    margin: 2rem 0 3rem;
}

#home-philosophy .philosophy-images {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    align-items: center;
}

#home-philosophy .philosophy-images-one {
    height: 301px;
    width: 301px;
    display: block;
    overflow: hidden;
    border-radius: 20px;
}

#home-philosophy .philosophy-images-two {
    height: 250px;
    width: 250px;
    display: block;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 1.5rem;
}

#home-philosophy .philosophy-images-three {
    height: 250px;
    width: 363px;
    display: block;
    overflow: hidden;
    border-radius: 20px;
    position: relative;
}

#home-philosophy .philosophy-images-three .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* ==============================
        Our School section
    ================================= */
#home-our-school {
    background: var(--skin-color);
    position: relative;
    overflow: hidden;
    padding-top: 10%;
    padding-bottom: 10%;
}

div#school-tabs {
    text-align: left;
    justify-content: left;
    margin: 3rem 0;
}

div#school-tabs .nav-link {
    font-weight: 400;
    font-size: 24px;
    line-height: 150%;
    letter-spacing: 0.18px;
    text-transform: uppercase;
    color: #414141;
    text-align: left;
    margin: 0.5rem 0;
    width: 55%;
    border-radius: 0;
    display: flex;
    justify-content: space-between;
    transition: 0.3s ease-in-out;
    border-bottom: 1px solid #DADADA;
}

div#school-tabs.nav-pills .nav-link.active,
div#school-tabs.nav-pills .nav-link:hover,
div#school-tabs.nav-pills .show>.nav-link {
    color: var(--white-color);
    background-color: var(--highlight-color);
}

div#school-tabs.nav-pills .nav-link.active img,
div#school-tabs.nav-pills .show>.nav-link img {
    filter: brightness(0) invert(1);
}

#home-our-school .our-school-card {
    background: var(--white-color);
    border: 4px solid var(--black-color);
    border-radius: 65px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 72px;
    gap: 10px;
    height: 100%;
}

#home-our-school .our-school-card-image {
    height: 126px;
    width: 126px;
    display: block;
    margin-bottom: 4rem;
}

#home-our-school .tab-pane {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

#home-our-school .tab-pane.show.active {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

#home-our-school a.our-school-card-btn {
    display: flex;
    text-decoration: underline;
}

/* ==============================
       Programs section
    ================================= */
#home-programs {
    position: relative;
    overflow: hidden;
    padding-top: 10%;
    padding-bottom: 10%;
    background: url(../blueblocks/assets/images/home/home-programs-bg.svg) no-repeat center center/cover;
}

#home-programs .card {
    border: none;
    border-radius: 20px;
    padding: 30px 10px 10px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

#home-programs .programs-badge {
    background: var(--white-color);
    border-radius: 52px;
    color: var(--badge-color);
    padding: 10px;
    font: var(--body-font);
    text-transform: uppercase;
    display: inline-block;
    width: fit-content;
    margin-left: auto;
    margin-right: 10px;
}

#home-programs .card.card-1 {
    background: var(--theme-color);
}

#home-programs .card.card-1:hover {
    transform: rotate(-7.14deg);
}

#home-programs .card.card-2 {
    background: var(--light-yellow-color);
}

#home-programs .card.card-2:hover {
    transform: rotate(7.29deg);
}

#home-programs .card.card-3 {
    background: var(--primary-color);
}

#home-programs .card.card-3:hover {
    transform: rotate(-3.35deg);
}

#home-programs .card.card-4 {
    background: #273C75;
}

#home-programs .card.card-4:hover {
    transform: rotate(6.21deg);
}

#home-programs .card.card-4 .card-body h3,
#home-programs .card.card-4 .card-body p,
#home-programs .card.card-4 .card-body a {
    color: var(--white-color);
}

#home-programs .card.card-4 .card-body img {
    filter: brightness(0) invert(1);
}

#home-programs .card .card-body h3 {
    color: #171717;
}

#home-programs .card .card-body p {
    color: #313131CC;
    font: var(--body-font);
    margin-top: 1.5rem;
}

#home-programs a.our-school-card-btn {
    display: flex;
    text-decoration: underline;
    justify-content: end;
    margin-top: 3rem;
}

/* ==============================
        Beyond Classroom section
    ================================= */
#home-beyond-classroom {
    position: relative;
    overflow: hidden;
    padding-top: 5%;
    padding-bottom: 5%;
    background: var(--skin-color);
}

#home-beyond-classroom .badge {
    background: var(--highlight-color);
    color: var(--white-color);
}

#home-beyond-classroom .beyond-classroom-card {
    background: var(--white-color);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
    gap: 10px;
}

#home-beyond-classroom .beyond-classroom-card-image {
    height: 165px;
    width: 100%;
    display: block;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

#home-beyond-classroom .beyond-classroom-card-body h3 {
    margin-bottom: 1rem;
}

#home-beyond-classroom .beyond-classroom-card-body p {
    color: #313131CC;
    font: var(--body-font);
    margin-bottom: 3rem;
}

#home-beyond-classroom a.our-school-card-btn {
    display: flex;
    text-decoration: underline;
    justify-content: end;
    margin-top: 3rem;
}

#home-beyond-classroom .card-1 {
    background: var(--primary-color);
}

#home-beyond-classroom .card-2 {
    background: var(--theme-color);
}

#home-beyond-classroom .card-3 {
    background: #273C75;
}

#home-beyond-classroom .card-3 h3,
#home-beyond-classroom .card-3 p,
#home-beyond-classroom .card-3 a {
    color: var(--white-color);
}

#home-beyond-classroom .card-3 a img {
    filter: brightness(0) invert(1);
}

#home-beyond-classroom .card-4 {
    background: var(--light-yellow-color);
}

/* ==============================
        Testimonial section
    ================================= */
#home-testimonial {
    position: relative;
    overflow: hidden;
    padding-top: 5%;
    padding-bottom: 5%;
    padding-inline: 1.2rem;
}

#home-testimonial .container-fluid {
    background: var(--topbar-color);
    padding: 4rem 0;
    border-radius: 24px;
}

#home-testimonial .testimonial-content {
    padding-bottom: 4rem;
    padding-inline: 4rem;
}

#home-testimonial .badge {
    color: var(--white-color);
    background: rgba(255, 255, 255, 0.2);
}

#home-testimonial .testimonial-content p {
    color: var(--white-color);
    font: var(--para-font);
    text-align: right;
    margin: 2rem 0 0;
}

#home-testimonial .testimonial-content h2 {
    color: var(--white-color);
}

#home-testimonial .testimonialSwiper {
    padding: 3rem 0;
}

#home-testimonial .card {
    border: none;
    border-radius: 20px;
    padding: 30px 20px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

#home-testimonial .card .card-body {
    padding: 0;
}

#home-testimonial .testimonial-quote-image {
    width: 56px;
    height: auto;
}

#home-testimonial .card p {
    color: #313131CC;
    font: var(--body-font);
    margin-top: 0rem;
}

#home-testimonial .card .author-info {
    display: flex;
    align-items: baseline;
}

#home-testimonial .card .author-info .author-image {
    border-radius: 100%;
    height: 50px;
    width: 50px;
    object-fit: cover;
    margin-right: 1rem;
}

#home-testimonial .card .author-info .author-image img {
    border-radius: 100%;
}

#home-testimonial .card .author-info .author-content h3 {
    font-size: var(--body-font);
    line-height: 30px;
    color: var(--black-color);
    margin-bottom: 0;
}

#home-testimonial .card .author-info .author-content span {
    font-size: 13px;
    line-height: 20px !important;
    display: block;
    font-weight: 300;
    color: rgba(19, 19, 19, 0.7);
}

#home-testimonial .testimonialSwiper .swiper-slide:nth-child(3) {
    transform: rotate(-2.38deg);
}

#home-testimonial .testimonialSwiper .swiper-slide:nth-child(4) {
    transform: rotate(2.12deg);
}

/* ==============================
        Insight section
    ================================= */
#home-insights {
    position: relative;
    overflow: hidden;
    padding-top: 5%;
    padding-bottom: 5%;
    background-color: var(--skin-color);
    overflow: hidden;
}

#home-insights .insight-content-image {
    display: block;
    width: 200px;
    height: auto;
    border-radius: 6px;
    z-index: 99;
}

#home-insights .insight-content-image img {
    border-radius: 6px;
}

#home-insights .insight-content {
    display: flex;
    justify-content: space-between;
    padding: 2rem 0 3rem;
    border-width: 1.4px 0px;
    border-style: solid;
    border-color: #D4D4D4;
    align-items: center;
    position: relative;
    overflow: visible;
}

#home-insights .insight-content::after {
    transform: scaleX(0);
    pointer-events: none;
    will-change: transform;
}

#home-insights .insight-content:hover::after {
    transform: scaleX(1);
}

#home-insights .insight-content::after {
    content: "";
    position: absolute;
    top: 35%;
    left: -4%;
    width: 150px;
    height: 100px;
    background-image: url("../blueblocks/assets/images/home/insight-object.svg");
    background-size: contain;
    background-repeat: no-repeat;
    transition: transform 0.3s ease-in-out;
}

#home-insights .insight-inner-content {
    display: flex;
    gap: 30px;
}

#home-insights .insight-content-btn a {
    display: flex;
    align-items: center;
    text-decoration: underline;
}

#home-insights .insight-content-btn a img,
#home-insights .view-all-insights-btn img {
    margin-left: 10px;
}

#home-insights .insight-content-text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#home-insights .insight-content-text p {
    margin-bottom: 0;
}

#home-insights .view-all-insights-btn {
    display: flex;
    justify-content: center;
    text-decoration: none;
}

/* ==============================
        FAQ section
    ================================= */
#home-faq {
    position: relative;
    overflow: hidden;
    padding-top: 5%;
    padding-bottom: 2%;
    overflow: hidden;
}

#home-faq .accordion-button:focus {
    box-shadow: none !important;
}

#home-faq .accordion-item {
    border: none;
    background-color: var(--white-color);
    margin-bottom: 2px;
    border-radius: 0;
}

#home-faq .accordion-item:first-child {
    border-radius: 0;
}

#home-faq .accordion-item:last-child {
    border-radius: 0;
}

#home-faq .accordion-button {
    background-color: var(--white-color);
    color: var(--heading-color);
    font: 400 clamp(1.5rem, 1.2rem + 1vw, 1.914rem) / 1.3 "Inter", sans-serif;
    padding: 30px 40px;
    border: none;
    box-shadow: none !important;
    position: relative;
}

#home-faq .accordion-button:not(.collapsed) {
    background-color: #F0F6FF;
    color: var(--heading-color);
}

#home-faq .accordion-button::after {
    content: '+';
    background-image: none !important;
    width: auto;
    height: auto;
    font-size: 2rem;
    font-weight: 300;
    line-height: 1;
    color: var(--heading-color);
    margin-left: auto;
    transform: none !important;
}

#home-faq .accordion-button:not(.collapsed)::after {
    content: '×';
    transform: none !important;
    font-size: 2.5rem;
}

#home-faq .accordion-button:hover {
    background-color: #F0F6FF;
}

#home-faq .accordion-button:focus {
    border: none;
    outline: none;
}

#home-faq .accordion-body {
    padding: 0 40px 32px 40px;
    background-color: #F0F6FF;
    color: #11111899;
    font: var(--body-font);
    line-height: 1.6;
}

#home-faq .accordion-collapse {
    border: none;
}

#home-faq .close-icon {
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 1.5rem;
    color: #1a1a1a;
    cursor: pointer;
    opacity: 0.6;
}

#home-faq .close-icon:hover {
    opacity: 1;
}

/* ==============================
        Client Section
    ================================= */
#home-clients {
    position: relative;
    overflow: hidden;
    padding-top: 2%;
    padding-bottom: 5%;
}

#home-clients .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    background: white;
    border-radius: 10px;
    transition: all 0.3s ease;
}

#home-clients .swiper-slide:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

#home-clients .clients-slider-item img {
    max-width: 80%;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

#home-clients .swiper-slide:hover .clients-slider-item img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ==============================
        CTA Section
    ================================= */
#home-cta {
    padding-top: 10%;
    padding-bottom: 5%;
}

#home-cta .cta-content {
    position: relative;
    padding: 3rem;
    background: #273C75;
    border-radius: 24px;
    color: var(--white-color);
    position: relative;
}

#home-cta .cta-content h2 {
    color: var(--white-color);
    font: 400 clamp(2.5rem, 2rem + 3vw, 4rem) / clamp(3.5rem, 3rem + 3vw, 4.625rem) "Inter", sans-serif;
}

#home-cta .cta-content p {
    color: #FFFFFF99;
    font: var(--body-font);
}

#home-cta .cta-image {
    position: absolute;
    bottom: 0%;
    width: 40%;
    right: 2%;
}

#home-cta .primary-btn {
    background: var(--white-color);
    color: #273C75;
    margin-top: 1rem;
}

#home-cta .primary-btn:hover {
    background: #273C75;
    color: var(--white-color);
    border: 1px solid var(--white-color);
}

#home-cta .primary-btn:hover img {
    filter: brightness(0) invert(1);
}

/* ==============================
        Footer section
    ================================= */
#footer.footer-section {
    background-color: #1a1a1a;
    color: var(--white-color);
    padding: 60px 0 30px;
}

#footer .school-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
}

#footer .school-image {
    width: 100%;
    height: 110vh;
    object-fit: cover;
    border-radius: 20px;
}

#footer .recognition-badge {
    padding: 15px 20px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

#footer .badge-text {
    color: var(--white-color);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
}

#footer .email-form {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

#footer .email-input {
    flex: 0 0 10%;
    background-color: #2a2a2a;
    border: none;
    border-radius: 8px;
    padding: 15px 10px;
    color: #999;
    font-size: 14px;
    width: 100%;
}

#footer .email-input:focus {
    outline: none;
    background-color: #333;
}

#footer .submit-btn {
    background-color: var(--white-color);
    color: #000;
    border: none;
    border-radius: 8px;
    padding: 15px 10px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}

#footer .social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

#footer .social-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--white-color);
    text-decoration: none;
    font-size: 16px;
    padding: 10px 0;
    border-bottom: 1px solid #333;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

#footer .social-link:hover {
    color: var(--white-color);
}

#footer .social-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

#footer .footer-links {
    margin-top: 40px;
}

#footer .footer-column h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white-color);
}

#footer .footer-column ul {
    list-style: none;
    padding: 0;
}

#footer .footer-column ul li {
    margin-bottom: 12px;
}

#footer .footer-column ul li a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
}

#footer .footer-column ul li a:hover {
    color: var(--white-color);
}

#footer .footer-bottom {
    margin-top: 20px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #999;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

#footer .contact-info {
    display: flex;
    gap: 30px;
}

#footer .contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

#footer a {
    color: #999;
}

/* ==============================
      Mega Menu
    ================================= */
/* To allow full width dropdown */
.nav-item.position-static {
    position: static !important;
}

.dropdown-menu.mega-menu {
    width: 100%;
    margin-top: 0;
    border: none;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 30px;
    background-color: var(--white-color);
}

/* Header Link Styling */
.menu-header-link {
    color: #888;
    font-size: 0.9rem;
    text-decoration: none;
    margin-bottom: 20px;
    display: inline-block;
    font-family: "Inter", sans-serif;
}

.menu-header-link:hover {
    color: var(--heading-color);
}

/* Program Items */
.program-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.program-title {
    font: var(--small-heading-font);
    color: var(--heading-color);
    margin-bottom: 5px;
}

.program-desc {
    font: var(--para-font);
    color: var(--para-color);
    font-size: 0.8rem;
    /* Overriding clamp for cleaner menu text */
    margin-bottom: 0;
}

/* Right Side Divider */
.right-divider {
    border-left: 1px solid #eee;
}

/* CTA Card (Beige Box) */
.cta-card {
    background-color: var(--skin-color);
    padding: 25px;
    border-radius: 8px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cta-title {
    font: var(--nav-font);
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 10px;
}

.cta-desc {
    font-size: 0.8rem;
    color: var(--para-color);
    margin-bottom: 20px;
}

.btn-custom {
    background-color: var(--btn-color);
    color: var(--white-color);
    border: none;
    padding: 10px 20px;
    font-size: 0.9rem;
    border-radius: 6px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.btn-custom:hover {
    background-color: #084280;
    /* Slightly darker shade */
    color: white;
}

/* Social Icons Stack */
.social-stack {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-icon-box {
    width: 45px;
    height: 45px;
    background-color: #f1f1f1;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black-color);
    font-size: 1.2rem;
    text-decoration: none;
    transition: 0.3s;
}

.social-icon-box:hover {
    background-color: #e2e2e2;
    color: var(--btn-color);
}

.program-image {
    flex: 0 0 20%;
}

.menu-header-link {
    display: flex;
}
/* Popup Background */
.thankyou-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease forwards;
}

/* Popup Card */
.thankyou-content {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    animation: slideUp 0.4s ease forwards;
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #F9A78F;
    border: none;
    outline: none;
    font-size: 16px;
    color: #111118;
    padding: 5px 10px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.2s;
}

.close-btn:hover {
    background: #95D6ED;
}

/* Typography */
.thankyou-content h2 {
    color: #111118;
    font-size: 24px;
    margin-bottom: 10px;
}

.thankyou-content p {
    font-size: 15px;
    color: #333;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
