@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
    --green-dark: #d38400;
    --green-mid: #007a3d;
    --green-light: #5dbf6e;
    --green-lime: #dda950;
    --gold: #c9a84c;
    --gold-light: #e8c97a;
    --cream: #faf8f3;
    --dark: #111a13;
    --dark-2: #1e2d21;
    --gray: #6b7a6e;
    --gray-light: #e8ede9;
    --white: #ffffff;
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    --shadow-green: 0 10px 40px rgba(45, 140, 78, 0.25);
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--dark);
    overflow-x: hidden;
    line-height: 1.7;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--gray-light);
}

::-webkit-scrollbar-thumb {
    background: var(--green-mid);
    border-radius: 3px;
}

/* Base container */
.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.py-60 {
    padding: 60px 0;
}

/* Small devices (≥576px) */
@media (min-width:576px) {
    .container {
        max-width: 540px;
    }
}

/* Medium devices (≥768px) */
@media (min-width:768px) {
    .container {
        max-width: 720px;
    }
}

/* Large devices (≥992px) */
@media (min-width:992px) {
    .container {
        max-width: 960px;
    }
}

/* Extra large devices (≥1200px) */
@media (min-width:1200px) {
    .container {
        max-width: 1300px;
    }
}

/* XXL devices (≥1400px) */
@media (min-width:1400px) {
    .container {
        max-width: 1320px;
    }
}

/* ── NAVBAR ── */
#navbar {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid white;
    background: #fff;
    transition: var(--transition);
    padding: 0 2rem;
}

#navbar.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}

.nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.nav-logo img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.logo-text {
    display: none;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 0.2rem;
}

.nav-menu a {
    display: block;
    padding: 0.5rem 1rem;
    color: #000000;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    position: relative;
    transition: var(--transition);
    border-radius: 6px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #fff;
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-menu a:hover {
    color: #007a3d;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 60%;
}

.nav-menu a.active {
    color: #007a3d;
}

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark-2);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 0.5rem;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-8px);
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    list-style: none;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-size: 0.82rem;
    white-space: nowrap;
}

.dropdown-menu li a:hover {
    background: rgba(93, 191, 110, 0.15);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: #196600;
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav */
.mobile-nav {
    display: none;
    position: fixed;
    top: 84px;
    left: 0;
    right: 0;
    background: rgba(17, 26, 19, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    flex-direction: column;
    gap: 0.3rem;
}

.mobile-nav.open {
    display: flex;
}

.mobile-nav a {
    color: var(--white);
    text-decoration: none;
    padding: 0.9rem 1.2rem;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 10px;
    transition: var(--transition);
}

.mobile-nav a:hover,
.mobile-nav a.active {
    background: rgba(93, 191, 110, 0.15);
    color: var(--green-light);
}

.mobile-sub {
    padding-left: 1.5rem !important;
    font-size: 0.85rem !important;
    opacity: 0.8;
}

/* ── HERO (home) ── */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--dark);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    height: 138.4%;
    background:
        radial-gradient(ellipse 80% 60% at 70% 50%, rgba(45, 140, 78, 0.35) 0%, transparent 60%),
        radial-gradient(ellipse 50% 80% at 10% 80%, rgba(141, 198, 63, 0.2) 0%, transparent 50%),
        linear-gradient(135deg, #0a1f0e 0%, #111a13 50%, #0d2d14 100%);
}

.hero-particles {
    position: absolute;
    height: 100%;
    inset: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    animation: float linear infinite;
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.15;
    }

    90% {
        opacity: 0.15;
    }

    100% {
        transform: translateY(-100px) rotate(720deg);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    padding-top: 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(93, 191, 110, 0.15);
    border: 1px solid rgba(93, 191, 110, 0.3);
    padding: 3px 1.2rem;
    border-radius: 50px;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green-light);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease both;
}

.hero-badge span {
    width: 6px;
    height: 6px;
    background: var(--green-light);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.5);
    }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 60px;
    font-weight: 900;
    line-height: 1.08;
    color: var(--white);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s 0.1s ease both;
}

.hero-title .accent {
    background: linear-gradient(135deg, var(--green-light), var(--green-lime));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.05rem;
    max-width: 520px;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.6s 0.2s ease both;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s 0.3s ease both;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--green-mid), #00d670);
    color: var(--white);
    padding: 10px 2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: var(--transition);
    box-shadow: var(--shadow-green);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 50px rgba(45, 140, 78, 0.4);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--white);
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.04em;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
    cursor: pointer;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--green-light);
    color: var(--green-light);
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
    animation: fadeInUp 0.6s 0.4s ease both;
}

.stat-item {
    text-align: left;
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--green-light);
    line-height: 1;
}

.stat-label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 2px;
}

.hero-visual {
    position: relative;
    animation: fadeInRight 0.8s 0.2s ease both;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.hero-card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.hero-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.hero-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.hero-card:nth-child(2) {
    margin-top: 1.5rem;
}

.hero-card:nth-child(4) {
    margin-top: -1.5rem;
}

.card-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--green-mid), var(--green-lime));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.hero-card h4 {
    font-size: 0.9rem;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.hero-card p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ── SECTION BASE ── */
.section {
    padding: 60px 0;
    max-width: 1400px;
    margin: 0 auto;
    background: #ffffff2b;
}

.section-full {
    padding: 60px 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-tag {
    display: inline-block;
    background: #ffffff;
    border: 1px solid #007a3d;
    color: var(--green-mid);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 46px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title .accent {
    color: var(--green-mid);
}

.section-subtitle {
    color: var(--gray);
    font-size: 1rem;
    /* max-width: 600px; */
    margin: 0 auto;
}

/* Dark section */
.section-dark {
    background: var(--dark);
}

.section-dark .section-title {
    color: var(--white);
}

.section-dark .section-subtitle {
    color: rgba(255, 255, 255, 0.55);
}

.section-dark .section-tag {
    background: rgba(93, 191, 110, 0.1);
    color: var(--green-light);
    border-color: rgba(93, 191, 110, 0.2);
}

/* ── PAGE HERO (internal pages) ── */
.page-hero {
    height: 300px;
    background: url(../images/sub-banner.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    /* margin-top: 80px; */
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    /* background: radial-gradient(#006b4e, #194360, #124963); */
}

.page-hero-content {
    position: relative;
    z-index: 1;
    padding: 2rem;
}

.page-hero-tag {
    display: inline-block;
    background: rgba(93, 191, 110, 0.15);
    border: 1px solid rgba(93, 191, 110, 0.3);
    color: var(--green-light);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--white);
    /* margin-bottom: 0.8rem; */
}

.page-hero p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1rem;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb a {
    color: var(--green-light);
    text-decoration: none;
}

.breadcrumb-sep {
    opacity: 0.4;
}

/* ── ACHIEVERS CARDS ── */
.achievers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .achievers-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem;
    }
}

@media (max-width: 475px) {
    .achievers-grid {
        grid-template-columns: repeat(1, 1fr) !important;
        gap: 1rem;
    }
}

.achivers-section .achiever-card {
    margin: auto;
    overflow: unset;
    border-radius: unset;
    background: transparent;
    box-shadow: unset;
}

.pt-0 {
    padding-top: 0;
}

.achiever-card {
    background: var(--white);
    border-radius: 20px;
    margin: 0 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    position: relative;
}

.achiever-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.achiever-card-img {
    /* width: 100%; */
    height: 250px;
    object-fit: cover;
    display: block;
    background: linear-gradient(135deg, var(--green-dark), var(--green-light));
}

.achiever-img-placeholder {
    /* width: 100%; */
    /* height: 220px;kk  */
    background: radial-gradient(#00000000, #009952) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: rgba(255, 255, 255, 0.3);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.achiever-img-placeholder img {
    margin: auto;
    height: 270px;
    width: 100%;
    object-fit: cover;
    object-position: top;
}

.achiever-card-body {
    padding: 15px 10px;
}

.achiever-card-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.2rem;
}

.achiever-rank {
    display: inline-block;
    background: linear-gradient(135deg, var(--green-mid), var(--green-lime));
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    padding: 0.2rem 0.8rem;
    border-radius: 50px;
    /* margin-bottom: 0.6rem; */
    letter-spacing: 0.06em;
}

.achiever-card-body p {
    font-size: 0.83rem;
    color: var(--gray);
    line-height: 1.5;
    text-align: justify;
}

.achiever-score {
    /* font-family: 'Playfair Display', serif; */
    font-size: 16px;
    font-weight: 700;
    color: var(--green-mid);
    margin-top: 0.6rem;
}

/* Row images */
.slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.row-images {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 1rem 0 1rem;
    scrollbar-width: none;
    /* Firefox */
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.row-images::-webkit-scrollbar {
    display: none;
    /* Chrome / Safari */
}

.row-img-item {
    flex: 0 0 190px;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
}

.row-img-item .img-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    display: flex;
    color: #fff;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.row-img-item:hover .img-placeholder {
    transform: scale(1.05);
}

/* Arrow Buttons */
.slider-btn {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--green-mid);
    background: white;
    color: var(--green-mid);
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
    z-index: 2;
}

.slider-btn:hover {
    background: var(--green-mid);
    color: white;
}

/* ── FOOTER ── */
footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 70px 2rem 0;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--green-mid), transparent);
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
}

.footer-brand img {
    height: 55px;
    margin-bottom: 1rem;
    filter: brightness(1.1);
}

.footer-brand p {
    font-size: 0.88rem;
    line-height: 1.8;
    /* max-width: 280px; */
    color: rgba(255, 255, 255, 0.5);
}

.footer-social {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.social-btn {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.social-btn:hover {
    background: var(--green-mid);
    border-color: var(--green-mid);
    color: var(--white);
}

.footer-col h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: 0.6rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: var(--green-mid);
    border-radius: 2px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.6rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.87rem;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--green-light);
    padding-left: 4px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 0.9rem;
    font-size: 0.87rem;
}

.footer-contact-item .icon {
    font-size: 1rem;
    margin-top: 2px;
    color: var(--green-light);
    flex-shrink: 0;
}

.footer-bottom {
    max-width: 1400px;
    margin: 3rem auto 0;
    padding: 1.2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
}

.footer-bottom a {
    color: #fff;
    text-decoration: none;
}

/* ── ABOUT ── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 5rem;
    align-items: center;
}

.about-img-wrap {
    position: relative;
}

.about-img-main {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    /* background: linear-gradient(135deg, var(--green-dark), var(--green-mid)); */
    aspect-ratio: 4/5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: rgba(255, 255, 255, 0.15);
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.about-badge-float {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--white);
    border-radius: 18px;
    padding: 1.2rem 1.5rem;
    box-shadow: var(--shadow);
    text-align: center;
}

.about-badge-float .big-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--green-mid);
    line-height: 1;
}

.about-badge-float span {
    font-size: 0.75rem;
    color: var(--gray);
    display: block;
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 1.2rem;
}

.about-text p {
    color: var(--gray);
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}

.values-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin: 1.5rem 0;
}

.values-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: var(--dark);
}

.check-icon {
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, var(--green-mid), #00d670);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.65rem;
    flex-shrink: 0;
}

/* ── COURSES ── */
.course-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.course-card {
    background: var(--white);
    border-radius: 20px;
    padding: 1.8rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green-mid), var(--green-lime));
}

.course-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: rgba(45, 140, 78, 0.1);
}

.course-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(45, 140, 78, 0.1), rgba(141, 198, 63, 0.1));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.course-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.course-card p {
    font-size: 0.87rem;
    color: var(--gray);
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.course-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.2rem;
    flex-wrap: wrap;
}

.meta-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--gray-light);
    color: var(--gray);
    font-size: 0.75rem;
    padding: 0.25rem 0.7rem;
    border-radius: 50px;
    font-weight: 500;
}

.course-card .btn-primary {
    font-size: 0.82rem;
    padding: 0.6rem 1.4rem;
}

/* ── TESTIMONIALS ── */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.quote-icon {
    font-size: 3rem;
    line-height: 1;
    color: var(--green-light);
    opacity: 0.4;
    font-family: Georgia, serif;
    margin-bottom: 0.5rem;
}

.testimonial-card p {
    font-size: 0.92rem;
    color: var(--gray);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--white);
    font-size: 1rem;
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
}

.author-info span {
    font-size: 0.78rem;
    color: var(--gray);
}

.stars {
    color: var(--gold);
    font-size: 0.8rem;
    margin-bottom: 0.8rem;
}

/* ── GALLERY ── */
.gallery-filter {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--gray-light);
    color: var(--gray);
    border: none;
    padding: 0.5rem 1.4rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'DM Sans', sans-serif;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--green-mid);
    color: var(--white);
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}

.gallery-item {
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    group: true;
}


.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    transition: transform 0.4s ease;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    color: var(--white);
    font-size: 1.5rem;
}

.gallery-item:hover .gallery-placeholder {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* ── VIDEO GALLERY ── */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.video-card {
    background: var(--dark-2);
    border-radius: 18px;
    overflow: hidden;
    transition: var(--transition);
}

.video-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.video-thumb {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #0a1f0e, #1a5c2a);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.2);
}

.play-btn {
    position: absolute;
    width: 54px;
    height: 54px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-dark);
    font-size: 1.1rem;
    transition: var(--transition);
    padding-left: 4px;
}

.video-thumb:hover .play-btn {
    transform: scale(1.1);
    background: var(--green-light);
    color: var(--white);
}

.video-info {
    padding: 1.2rem;
}

.video-info h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.3rem;
}

.video-info span {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ── CONTACT ── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.8rem;
}

.contact-icon-wrap {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(45, 140, 78, 0.1), rgba(141, 198, 63, 0.1));
    border: 1px solid rgba(45, 140, 78, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-info-item h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--green-mid);
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.contact-info-item p {
    font-size: 0.92rem;
    color: var(--gray);
    line-height: 1.6;
}

.contact-form {
    background: var(--white);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray);
    margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1.1rem;
    border: 1.5px solid var(--gray-light);
    border-radius: 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--dark);
    background: var(--cream);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--green-mid);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(45, 140, 78, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ── LIGHTBOX ── */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox.open {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--green-light);
    transform: rotate(90deg);
}

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 16px;
    overflow: hidden;
    background: var(--dark-2);
    padding: 2rem;
    text-align: center;
    color: var(--white);
}

/* ── SCROLL REVEAL ── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── BACK TO TOP ── */
#back-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 46px;
    height: 46px;
    background: var(--green-mid);
    border: none;
    border-radius: 12px;
    color: var(--white);
    font-size: 1rem;
    cursor: pointer;
    box-shadow: var(--shadow-green);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 900;
    display: flex;
    align-items: center;
    justify-content: center;
}

#back-top.show {
    opacity: 1;
    visibility: visible;
}

#back-top:hover {
    transform: translateY(-3px);
}

/* ── DIVIDER ── */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gray-light), transparent);
    margin: 0 2rem;
}

/* ── MEDIA QUERIES ── */
@media (max-width: 1100px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-subtitle {
        margin: 0 auto 2.5rem;
    }

    .hero-visual {
        max-width: 500px;
        margin: 0 auto;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-content {
        padding: 0 1.2rem;
        padding-top: 100px;
    }

    .hero-card-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-card:nth-child(2),
    .hero-card:nth-child(4) {
        margin-top: 0;
    }

    .section {
        padding: 70px 1.2rem;
    }

    .section-full {
        padding: 70px 1.2rem;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .stat-num {
        font-size: 1.6rem;
    }

    .about-badge-float {
        position: static;
        margin-top: 1rem;
        display: inline-block;
    }

    .about-img-wrap {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-card-grid {
        grid-template-columns: 1fr;
    }

    .achievers-grid {
        grid-template-columns: 1fr;
    }

    .course-cards {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .image-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .video-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .page-hero {
        height: 280px;
    }
}

/* Color palettes for placeholder items */
.bg-g1 {
    background: linear-gradient(135deg, #1a5c2a, #2d8c4e);
}

.bg-g2 {
    background: linear-gradient(135deg, #2d8c4e, #5dbf6e);
}

.bg-g3 {
    background: linear-gradient(135deg, #5dbf6e, #8dc63f);
}

.bg-g4 {
    background: linear-gradient(135deg, #0a1f0e, #1a5c2a);
}

.bg-g5 {
    background: linear-gradient(135deg, #8dc63f, #c9a84c);
}

.bg-g6 {
    background: linear-gradient(135deg, #1a5c2a, #8dc63f);
}

.bg-g7 {
    background: linear-gradient(135deg, #2d8c4e, #0a1f0e);
}

.bg-g8 {
    background: linear-gradient(135deg, #c9a84c, #2d8c4e);
}

.award {
    overflow: hidden;
}

.award .slider-card {
    display: flex;
    width: 100%;
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
}

.award .content-panel {
    flex: 0 0 60%;
    height: 100%;
    min-height: 100%;
    /* background: linear-gradient(145deg, #164d1e 0%, #0c2f12 60%, #081a0a 100%); */
    padding: 56px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.award .content-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2325972f' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 1;
    pointer-events: none;
}

.award .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(78, 175, 82, 0.18);
    border: 1px solid rgba(78, 175, 82, 0.35);
    color: #5dbf6e;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 24px;
    width: fit-content;
}

.slider-panel .arrow-next {
    right: 0 !important;
}

.award .badge::before {
    content: '';
    width: 7px;
    height: 7px;
    background: var(--lime);
    border-radius: 50%;
    animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .5;
        transform: scale(1.4);
    }
}

.award .content-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.22;
    margin-bottom: 18px;
    position: relative;
}

.award .content-title span {
    color: var(--lime);
}

.award .content-desc {
    font-size: 14.5px;
    color: #fff;
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 500px;
}

.award .slide-info {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 12px;
    padding: 18px 22px;
    margin-bottom: 32px;
    transition: all .4s ease;
}

.award .slide-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--white);
    margin-bottom: 6px;
    transition: all .4s ease;
}

.award .slide-info p {
    font-size: 13px;
    color: #fff;
    line-height: 1.6;
    transition: all .4s ease;
}

.award .view-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--green2), var(--lime));
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 14px 30px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    width: fit-content;
    text-decoration: none;
    transition: transform .25s, box-shadow .25s;
    box-shadow: 0 4px 20px rgba(37, 151, 47, 0.4);
    position: relative;
    overflow: hidden;
}

.award .counter {
    margin-top: 28px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.award .counter span {
    color: white;
}

.award .slider-panel {
    flex: 1;
    position: relative;
    overflow: hidden;
    background: #0a1a0c;
}

.award .slides-track {
    display: flex;
    height: 100%;
    transition: transform .65s cubic-bezier(.77, 0, .175, 1);
    will-change: transform;
}

.award .slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.award .slide img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    display: block;
    /* transition: transform 8s ease; */
}

.award .slide.active img {
    /* transform: scale(1.08); */
}

.award .arrow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.25);
    background: rgba(15, 45, 18, 0.65);
    backdrop-filter: blur(8px);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all .25s ease;
}

.award .arrow-btn svg {
    width: 25px !important;
}

.award .progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background: var(--lime);
    width: 0%;
    z-index: 10;
}

@media (max-width:768px) {
    .award .slider-card {
        flex-direction: column;
        min-height: auto;
    }

    .award .content-panel {
        flex: none;
        padding: 36px 28px;
    }

    .award .slider-panel {
        height: 280px;
    }
}

.campus-life {
    background: #16211b00;
}

@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&family=Oswald:wght@700;800&display=swap');

.offer .admission-banner {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(90deg, #194360, #124963, #00d49a, #2ec4b6);
    display: flex;
    align-items: center;
    padding: 2rem;
    box-sizing: border-box;
    min-height: 400px;
}

.offer .banner-bg-icons {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.offer .bg-icon {
    position: absolute;
    font-size: 2.2rem;
    opacity: 0.08;
}

.offer .banner-light-arc {
    position: absolute;
    right: 220px;
    top: 50%;
    transform: translateY(-50%);
    width: 220px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.offer .banner-content {
    position: relative;
    z-index: 2;
    flex: 1;
}

.offer .banner-script {
    font-family: 'Dancing Script', cursive;
    font-size: 2.4rem;
    margin-bottom: 20px;
    color: #fff;
    display: block;
    line-height: 1;
    text-shadow: 1px 2px 6px rgba(0, 0, 0, 0.3);
}

.offer .banner-admission {
    font-family: 'Oswald', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    color: #FFD700;
    letter-spacing: 2px;
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
}

.offer .banner-globe {
    font-size: 2rem;
}

.offer .banner-open {
    font-family: 'Oswald', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 3px;
}

.offer .banner-btn {
    display: inline-block;
    margin-top: 1rem;
    background: linear-gradient(135deg, #f5a623, #f7c948);
    color: #5a3600;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 2px;
    padding: 10px 30px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.5);
    transition: transform 0.2s, box-shadow 0.2s;
}

.offer .banner-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 166, 35, 0.7);
}

.offer .banner-student {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 100%;
    display: flex;
    align-items: flex-end;
    z-index: 2;
}

.offer .banner-student img {
    height: 110%;
    width: auto;
    object-fit: contain;
    object-position: bottom;
}

.contact-sec .contact-row i {
    color: #002b14;
}

.campus-life .row-images .arunai-spl {
    text-align: center;
    font-size: 18px;
    height: 150px;
}

.gallery-placeholder img {
    width: 300px;
    height: 325px;
    object-fit: cover;
}

.mission-list {
    padding-left: 40px;
}

.why-arunai {
    background: linear-gradient(135deg, #d8ffe5, #eef7f2);
    font-family: 'Poppins', sans-serif;
}

.why-container {
    max-width: 1300px;
    margin: auto;
}

.why-title {
    text-align: center;
    margin-bottom: 40px;
}

.why-title h2 {
    font-size: 42px;
    font-weight: 700;
    color: #0c5c3d;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.why-title p {
    font-size: 18px;
    color: #555;
}

/* Cards Grid */
.why-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* Individual Box */
.why-box {
    position: relative;
    padding: 24px 24px 14px 24px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    font-size: 17px;
    font-weight: 500;
    color: #222;
    transition: all 0.35s ease;
    border: 1px solid rgba(255, 255, 255, 0.6);
    overflow: hidden;
}

/* Gradient left border effect */
.why-box::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 6px;
    background: linear-gradient(180deg, #0c5c3d, #1ba76c);
    border-radius: 6px 0 0 6px;
}

/* Tick icon */
.why-box::after {
    content: "✔";
    position: absolute;
    right: 18px;
    top: 18px;
    font-size: 18px;
    color: #1ba76c;
    font-weight: bold;
}

/* Hover Premium Effect */
.why-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
    background: #ffffff;
}

/* Responsive */
@media (max-width: 1100px) {
    .why-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .why-cards {
        grid-template-columns: 1fr;
    }

    .why-title h2 {
        font-size: 30px;
    }
}

/* ===== PGTRB SECTION ===== */

.pgtrb-section {
    background: #f3faf6;
    font-family: 'Poppins', sans-serif;
}


.pgtrb-header {
    text-align: center;
    margin-bottom: 60px;
}

.pgtrb-header h2 {
    font-size: 40px;
    color: #0b5d3b;
    font-weight: 700;
    margin-bottom: 10px;
}

.pgtrb-header p {
    color: #555;
    font-size: 18px;
}

/* Grid */
.pgtrb-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Cards */
.pgtrb-card {
    background: #ffffff;
    padding: 25px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: 0.35s ease;
    border-top: 5px solid #004a63;
}

.pgtrb-card span {
    font-size: 42px;
    font-weight: 700;
    color: rgba(11, 93, 59, 0.12);
    position: absolute;
    top: 15px;
    right: 20px;
}

.pgtrb-card h3 {
    font-size: 18px;
    color: #222;
    font-weight: 600;
}

.pgtrb-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

/* Responsive */
@media (max-width: 992px) {
    .pgtrb-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .pgtrb-grid {
        grid-template-columns: 1fr;
    }

    .pgtrb-header h2 {
        font-size: 28px;
    }
}

.card {
    width: 220px;
    position: relative;
}

/* 1. The U-Shaped Image Container */
.image-area {
    position: relative;
    width: 147px;
    height: 180px;
    /* background: #00aaff; */
    /* Fallback */
    border-radius: 90px 90px 0 0;
    /* Creates the top arch */
    overflow: visible;
    /* Allows mark label to pop out */
}

.image-area img {
    margin-top: 10px !important;
    height: 100%;
    width: 143px;
    object-fit: cover;
    margin: auto;
    border-radius: 90px 90px 0 0;
    display: block;
}

/* 2. The Mark Wing Shape */
.mark-wing {
    position: absolute;
    border-radius: 0 113px 0 0;
    right: -60px;
    bottom: 0;
    height: 37px;
    width: 123px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    clip-path: polygon(0 0, 93% 0, 100% 100%, 0% 100%);
    z-index: 2;
}

/* 3. The Details Box */
.details {
    background-color: #e6e7e8;
    padding: 4px 13px;
    margin-top: 0px;
    position: relative;
    border-bottom-right-radius: 60px;
    width: 180px;
}

.details h3 {
    margin: 0;
    font-size: 16px;
    font-style: italic;
    color: #333;
}

.details p {
    margin: -5px 0 0;
    font-size: 14px;
    color: #666;
}

/* 4. The Orange Curved Accent */
.accent-border {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 107px;
    height: 100%;
    border-right: 4px solid #cc7a33;
    border-bottom: 4px solid #cc7a33;
    border-bottom-right-radius: 104px;
}

/* Colors from Image */
.green {
    background-color: #008f4c;
}

.purple {
    background-color: #a366a3;
}

.blue {
    background-color: #0083c2;
}

.dark-purple {
    background-color: #5d4191;
}

.pt-20 {
    padding-top: 20px;
}

@media screen and (max-width: 768px) {
    .mobile-nav.open {
        max-height: 90%;
        overflow: scroll;
        z-index: 9999;
    }
}

@media screen and (max-width:575px) {
    .gallery-placeholder img {
        height: 200px;
    }
}

.poster-section {
    background: #dcdcdc;
}

.poster-section .carousel-inner .carousel-item img {
    border-radius: 30px;
    height: 400px;
    width: 100%;
    object-fit: cover;
}

.year-tabs {
    gap: 18px;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 12px;
}

/* default button */
.year-btn {
    border: none;
    background: transparent;
    font-size: 15px;
    font-weight: 700;
    padding: 8px 22px;
    border-radius: 10px;
    color: #008e53;
    /* blue like 2024/2025 */
    transition: 0.3s ease;
    border: 1px solid #007a38d4;
}

/* hover */
.year-btn:hover {
    color: #0aa36c;
}

/* active button (like white card in screenshot) */
.year-btn.active {
    background: #008e53;
    color: #d9d9d9;
    box-shadow: 0 6px 18px rgb(21 32 26 / 30%);
    border: 1px solid #007a38d4;
}

.nav-dropdown {
    position: relative;
}

/* Hide dropdown by default */
.nav-dropdown .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 200px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    list-style: none;
    z-index: 999;
}

/* Dropdown items */
.nav-dropdown .dropdown-menu li a {
    display: block;
    padding: 8px 15px;
    color: #333;
    text-decoration: none;
}

/* Hover effect */
.nav-dropdown .dropdown-menu li a:hover {
    background: #f2f2f2;
}

/* Show on hover */
.nav-dropdown:hover .dropdown-menu {
    display: block;
}

/* .carousel-item {
    transform: none !important;
    transition: opacity 0.2s ease-in-out !important;
} */

/* Fade effect */
/* .carousel-fade .carousel-item {
    opacity: 0.7;
} */

.carousel-fade .carousel-item.active {
    opacity: 1;
}

ol,
ul {
    padding-left: 1rem !important;
}

.d-none {
    display: none !important;
}

.achivers-section .card {
    border: none !important;
}

#slider2022 .carousel-item {
    display: flex;
}

#slider2022 .carousel-item .card {
    flex: 0 0 33.333%;
    margin: 10px;
}

#slider2022 .carousel-inner {
    display: flex;
}

.featured-card-parent {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 20px !important;
    gap: unset !important;
    justify-content: space-evenly;
}

@media (max-width: 576px) {

    .nav-logo {
        display: flex;
        align-items: center;
    }

    .nav-logo img {
        height: 55px;
    }

    .botony-img img {
        height: 27px !important;
    }

    .botony-img {
        /* border-left: 2px solid green; */
    }

    .featured-card {
        padding: 10px;
        width: 49%;
        margin-bottom: 18px;
    }

    .banner-student img {
        display: none;
    }

    .offer .banner-admission {
        font-size: 2.8rem;
    }

    .offer .banner-script {
        font-size: 2rem;
    }

    .offer .banner-open {
        font-size: 1.2rem;
    }

    .featured-card-parent {
        justify-content: center;
    }
}

/* Mobile small */
@media (max-width: 576px) {
    .reveal {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    .reveal>div {
        margin-top: -5px;
    }

    .mark-wing {
        bottom: -11px;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    /* position near header */
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    animation: blinkWhatsapp 1.2s infinite;
    transition: transform 0.3s ease;
}

.whatsapp-float img {
    width: 32px;
    height: 32px;
    filter: invert(1);
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Blinking / pulse effect */
@keyframes blinkWhatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.rank-badge {
    position: absolute;
    top: -5px;
    right: 0px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    padding: 6px 12px;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.rank-badge i {
    color: #FFC107;
    /* golden star */
    font-size: 24px;
}

.rank-text {
    line-height: 1.1;
    text-align: left;
}

.rank-text span {
    font-size: 13px;
    font-weight: 600;
    color: #555;
}

.rank-text strong {
    font-size: 18px;
    color: #000;
}

.call-float {
    position: fixed;
    bottom: 170px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #256ad3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    animation: blinkWhatsapp 1.2s infinite;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.call-float svg {
    color: #fff;
    filter: invert(1);
    width: 30px;
}

.call-float:hover {
    transform: scale(1.1);
}

.youtube-float {
    position: fixed;
    bottom: 80px;
    left: 25px;
    width: 60px;
    height: 60px;
    background: #FF0000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    animation: blinkWhatsapp 1.2s infinite;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.youtube-float svg {
    color: #fff;
    filter: invert(1);
    width: 30px;
}

.youtube-float:hover {
    transform: scale(1.1);
}

.highlight-btn {
    background-color: #fff;
    padding: 2px 8px;
    border-radius: 50px;
    border: 1px solid #007c43;
}

.highlight-btn a {
    color: #00c497;
}

.highlight-btn .active {
    color: #00c497 !important;
}

.highlight-btn:hover {
    background-color: #00c497;
    padding: 2px 8px;
    border-radius: 50px;
    border: 1px solid #fff;
}

.highlight-btn:hover a {
    color: #fff;
    text-decoration: none;
}

.study-material {
    padding: 60px 20px;
    background: #0e1a13;
    text-align: center;
}

.study-material h2 {
    color: #fff;
}

.study-material .title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #0d2b4d;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: auto;
}

.pdf-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
}

.pdf-card:hover {
    transform: translateY(-8px);
}

.pdf-card img {
    width: 80px;
    margin-bottom: 15px;
}

.pdf-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #005d40;
}

.study-material .btn {
    transition: none;
    color: #d38400;
    font-weight: 700;
    font-size: 14px;
    border: 1px solid #d38400;
    transition: all 0.5s !important;
    padding: 6px 16px;
}

.study-material .btn:hover {
    transition: none;
    background: #d38400;
    color: #fff;
    font-weight: 700;
    border: 1px solid #d38400;
}

.btn:hover {
    background: #084298;
}

.profile-rank {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.9);
    padding: 1px 1px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #333;
}

.achievers-slider .achiever-card img {
    height: 330px;
    width: 100%;
    object-fit: cover;
}

.achievers-slider .achiever-card {
    border-radius: 20px;
    border: 2px solid #fff;
}

.our-achivers {
    background:linear-gradient(45deg, #003503d6, #012200b4), url(../images/green-bg.png);

    border-radius: 35px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    animation: bgZoom 8s ease-in-out infinite alternate;
    overflow: hidden;
}

/* ===== BACKGROUND ZOOM ANIMATION ===== */

@keyframes bgZoom {

    0% {
        background-size: 100%;
    }

    100% {
        background-size: 115%;
    }

}

@media screen and (max-width:768px) {
    .our-achivers {
        background-size: cover !important;
    }
}

.achievers-slider .achiever-card .achiever-rank {
    display: inline-block;
    background: linear-gradient(135deg, var(--green-mid), var(--green-lime));
    color: var(--white);
    font-size: 20px;
    font-weight: 600;
    padding: 0.2rem 0.8rem;
    border-radius: 50px;
    letter-spacing: 0.06em;
    position: absolute;
    top: 5px;
    left: 5px;
    background: transparent;
}

.achievers-slider .achiever-card .achiever-content {
    text-align: center;
}

.achievers-slider .achiever-card .achiever-content h3 {
    font-size: 20px;
    padding: 10px 0;
}

.achievers-slider .swiper-button-next {
    background: rgb(255, 255, 255);
    width: 40px;
    height: 40px;
    display: flex;
    border-radius: 50%;
    align-items: center;
    right: -10px;
}

.achievers-slider .swiper-button-next::after {
    font-size: 20px;
    font-weight: 800;
    color: #002b14;
}

.achievers-slider .swiper-button-prev {
    background: rgb(255, 255, 255);
    width: 40px;
    height: 40px;
    display: flex;
    border-radius: 50%;
    align-items: center;
    left: -10px;
}

.achievers-slider .swiper-button-prev::after {
    font-size: 20px;
    font-weight: 800;
    color: #002b14;
}

.achievers-slider .swiper-pagination {
    bottom: -40px !important;
}

.our-achivers .swiper {
    overflow: unset !important;
}

.achievers-slider .swiper-pagination span {
    background: rgb(255, 255, 255);
}

.achiever-card .achiever-rank span {
    font-size: 30px;
    color: #d38400;
}


/* --- Header Section --- */
.achievement-section .header-container {
    margin-bottom: 30px;
}

.achievement-section .leaf-icon {
    font-size: 18px;
}

/* --- Cards Layout Row --- */
.achievement-section .cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
}

/* --- Theme Configuration Variables --- */
.achievement-section .card-green {
    --theme-color: #1e7e34;
    --bg-light: #f4faf4;
    --footer-bg: #0f521d;
}

.achievement-section .card-blue {
    --theme-color: #1a5296;
    --bg-light: #f3f7fc;
    --footer-bg: #0f396b;
}

.achievement-section .card-purple {
    --theme-color: #6f2b8c;
    --bg-light: #faf4fc;
    --footer-bg: #49165e;
}

.achievement-section .card-orange {
    --theme-color: #c45500;
    --bg-light: #fff8f2;
    --footer-bg: #a33f00;
}

.card-green .trophy-icon i {
    color: #1e7e34;
}

.card-blue .trophy-icon i {
    color: #1a5296;
}

.card-purple .trophy-icon i {
    color: #6f2b8c;
}

.card-orange .trophy-icon i {
    color: #c45500;
}

/* --- Card Architecture --- */
.achievement-section .card {
    background: #ffffff;
    border: 1.5px solid var(--theme-color);
    border-radius: 14px;
    width: 260px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    transition: transform 0.2s ease;
}

.achievement-section .card:hover {
    transform: translateY(-4px);
}

.achievement-section .card-body {
    padding: 20px 15px 15px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* --- Inside Card Top Header --- */
.achievement-section .card-header-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin-bottom: 15px;
}

.achievement-section .trophy-icon {
    font-size: 28px;
    filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.1));
}

.achievement-section .year {
    font-size: 22px;
    font-weight: 800;
    color: var(--theme-color);
    text-align: left;
    line-height: 1.1;
}

.achievement-section .exam-name {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    text-align: left;
    letter-spacing: 0.2px;
}

/* --- Laurels & Counters Center Block --- */
.achievement-section .laurel-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 10px 0;
}

.laurel-wrapper span img {
    height: 120px;
}

.achievement-section .laurel-branch {
    font-size: 42px;
    opacity: 0.85;
    user-select: none;
}

.achievement-section .laurel-branch.left {
    transform: scaleX(-1) rotate(-15deg);
}

.achievement-section .laurel-branch.right {
    transform: rotate(-15deg);
}

.achievement-section .selection-count {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
}

.achievement-section .number {
    font-size: 44px;
    font-weight: 800;
    color: var(--theme-color);
    line-height: 1;
}

.achievement-section .label {
    font-size: 10px;
    font-weight: 800;
    color: #222;
    letter-spacing: 0.5px;
    line-height: 1.2;
    margin-top: 2px;
    text-align: center;
}

/* --- Card Bottom Banner --- */
.achievement-section .card-footer {
    background-color: var(--footer-bg);
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 10px;
    line-height: 1.4;
    border-radius: 11px !important;
    text-align: center;
}

.achievement-section .card-footer span {
    font-size: 22px;
}

/* --- Slider Navigation Dots --- */
.achievement-section .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.achievement-section .dot {
    width: 10px;
    height: 10px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

.achievement-section .dot.active {
    background-color: #1e7e34;
}

/* --- Responsive Layout Rules --- */
@media (max-width: 600px) {
    .achievement-section .cards-container {
        flex-direction: column;
        align-items: center;
    }
}

.achievement-section {
    background: url('../images/achive-bg.jfif');
    background-position: center;
    background-size: cover;
    /* border-top: 1px solid var(--green-mid); */
}

/* ===== BUTTON SECTION ===== */

.academy-button-wrapper {
    display: flex;
    gap: 25px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 30px 20px;
    background: #fff9eb;
}

/* ===== COMMON BUTTON STYLE ===== */

.academy-btn {
    min-width: 230px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 17px;
    font-weight: 700;
    font-family: Arial, sans-serif;
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* ===== JOIN NOW BUTTON ===== */

.academy-enroll-btn {
    background: linear-gradient(to bottom, #0b7d22, #056315);
    color: #fff;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.18);
}

.academy-enroll-btn:hover {
    transform: translateY(-3px);
}

/* ===== VIEW RESULTS BUTTON ===== */

.academy-result-btn {
    background: linear-gradient(to bottom, #ff8a00, #ff6b00);
    color: #fff;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.18);
}

.academy-result-btn:hover {
    transform: translateY(-3px);
}

/* ===== CONTACT BUTTON ===== */

.academy-contact-btn {
    background: #fff;
    color: #157437;
    border: 1px solid #7fb48f;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.5s;
}

.academy-contact-btn:hover {
    background: #157437;
    color: #fff;
}

/* ===== MOBILE RESPONSIVE ===== */

@media(max-width:768px) {

    .academy-btn {
        min-width: 100%;
        font-size: 16px;
        height: 60px;
    }

    .academy-button-wrapper {
        gap: 18px;
    }
}

.our-achivers .swiper-wrapper {
    justify-content: center;
}
.home-banner .carousel-control-prev-icon{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgb(255, 255, 255);
    border-radius: 50%;
    filter: invert(1);
}
.home-banner .carousel-control-prev-icon i{
    color: #00320d
}
.home-banner .carousel-control-next-icon{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgb(255, 255, 255);
    border-radius: 50%;
    filter: invert(1);
}
.home-banner .carousel-control-next-icon i{
    color: #00320d
}
