/*
Theme Name: CCR - Main Styles
Author: flyingstars
Description: Desktop-only styles for the CCR theme.
*/
html, body {
    overflow-x: hidden;
    max-width: 100%;
}

:root {
    --primary-green: #1F5A3A;
    --dark-green: #17452C;
    --accent-gold: #C8A96A;
    --bg-soft: #F7F8F7;
    --border-color: #E3E6E3;
    --text-primary: #222222;
    --font-heading: 'Merriweather', serif;
    --font-body: 'Inter', sans-serif;
}

/* ========== Global Reset & Typography ========== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background-color: var(--bg-soft);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* ========== Header Structure ========== */
.site-header {
    background-color: #fff;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    z-index: 100;
}

/* ========== Header Branding ========== */
.header-branding {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    min-height: 90px;
}

.brand-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.brand-logo {
    height: 64px;
    width: auto;
    object-fit: contain;
}

.brand-center {
    flex-grow: 1;
    padding: 0 24px;
    text-align: left;
}

.site-title {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 4px;
    line-height: 1.2;
}

.site-title a {
    color: inherit;
    text-decoration: none;
}

.site-subtitle {
    display: block;
    font-size: 1rem;
    color: var(--dark-green);
    font-weight: 500;
    position: relative;
    padding-bottom: 8px;
}

.site-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--accent-gold);
}

/* ========== Brand Right (Social + CTA) ========== */
.brand-right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.header-social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.2s ease;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.social-icon:hover {
    color: var(--primary-green);
}



/* ========== CTA Button (Golden Gradient) ========== */
.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 24px;
    background: linear-gradient(135deg, #d4a94c 0%, #b8912e 40%, #c9a04a 60%, #a07823 100%);
    color: #fff;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    white-space: nowrap;
    border: none;
    box-shadow: 0 2px 6px rgba(180, 140, 50, 0.3);
}

.btn-cta:hover {
    background: linear-gradient(135deg, #c49a3c 0%, #a8811e 40%, #b9903a 60%, #906813 100%);
    box-shadow: 0 4px 12px rgba(180, 140, 50, 0.45);
}

/* ========== Mobile Menu Panel (hidden on desktop) ========== */
.mobile-menu-panel {
    display: none;
}

/* ========== Primary Navigation ========== */
.main-navigation {
    background-color: var(--primary-green);
}

.main-navigation .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Main menu list */
.main-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-menu>li {
    position: relative;
}

.main-menu>li>a {
    display: block;
    padding: 14px 18px;
    font-family: var(--font-body);
    font-weight: 500;
    text-decoration: none;
    color: #fff;
    font-size: 0.95rem;
    transition: color 0.3s ease, background-color 0.3s ease;
    position: relative;
    white-space: nowrap;
}

/* Hover underline animation */
.main-menu>li>a::after {
    content: '';
    position: absolute;
    width: calc(100% - 36px);
    height: 2px;
    bottom: 8px;
    left: 18px;
    background-color: var(--accent-gold);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

.main-menu>li>a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.main-menu>li>a:hover {
    color: var(--accent-gold);
}

/* Dropdown arrow for items with children */
.main-menu>li.menu-item-has-children>a {
    padding-right: 28px;
}

.main-menu>li.menu-item-has-children>a::before {
    content: '';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid #fff;
    transition: transform 0.3s ease;
}

/* Sub-menu (hidden by default on desktop) */
.main-menu .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 220px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    border-top: 2px solid var(--accent-gold);
    list-style: none;
    padding: 0;
    margin: 0;
    z-index: 999;
}

.main-menu>li:hover>.sub-menu {
    display: block;
}

.main-menu .sub-menu li a {
    display: block;
    padding: 10px 16px;
    color: var(--text-primary);
    font-size: 0.9rem;
    text-decoration: none;
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.2s ease, color 0.2s ease;
}

.main-menu .sub-menu li:last-child a {
    border-bottom: none;
}

.main-menu .sub-menu li a:hover {
    background-color: var(--bg-soft);
    color: var(--primary-green);
}

/* ========== Mobile Nav Bar (compact strip) ========== */
.mobile-nav-bar {
    display: none;
}

/* ========== Menu Toggle (hidden on desktop) ========== */
.menu-toggle {
    display: none;
}

/* ================================================================
   FOOTER
   ================================================================ */

/* Footer Main Area */
.footer-main {
    background-color: var(--dark-green);
    color: #fff;
    padding: 48px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1.2fr 1.2fr;
    gap: 32px;
}

/* Column headings */
.footer-heading {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent-gold);
}

/* Link lists */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-links li a:hover {
    color: var(--accent-gold);
}

/* Diamond bullets for Quick Links */
.footer-links--diamond li {
    padding-left: 18px;
    position: relative;
}

.footer-links--diamond li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 7px;
    height: 7px;
    background-color: var(--accent-gold);
    transform: rotate(45deg);
}

/* Arrow bullets for Important Links */
.footer-links--arrow li {
    padding-left: 18px;
    position: relative;
}

.footer-links--arrow li::before {
    content: '›';
    position: absolute;
    left: 2px;
    top: -1px;
    font-size: 1.2rem;
    color: var(--accent-gold);
    font-weight: 700;
    line-height: 1;
}

/* Contact Us */
.footer-contact {
    font-style: normal;
}

.footer-contact__address {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 16px;
    text-align: left;
}

.footer-contact__phone,
.footer-contact__email {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
}

.footer-contact__phone svg,
.footer-contact__email svg {
    color: var(--accent-gold);
    flex-shrink: 0;
}

.footer-contact__phone a,
.footer-contact__email a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact__phone a:hover,
.footer-contact__email a:hover {
    color: var(--accent-gold);
}

/* Footer Branding */
.footer-brand {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    /* ← STACK items vertically */
    gap: 16px;
}

.footer-brand__logos {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.footer-brand__logo {
    height: 56px;
    width: auto;
    object-fit: contain;
}

.footer-brand__text {
    text-align: left;
}

.footer-brand__university {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1.4;
    font-style: italic;
    margin: 0;
}

.footer-brand__divider {
    border: none;
    border-top: 1px solid var(--accent-gold);
    margin: 10px 0;
    width: 60px;
}

.footer-brand__ccr {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin: 0;
}

/* ========== Footer Bottom Bar ========== */
.footer-bottom {
    background-color: #122e1f;
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom__copy {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.82rem;
    margin: 0;
}

.footer-bottom__links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-bottom__links a {
    color: var(--accent-gold);
    text-decoration: underline;
    font-size: 0.82rem;
    transition: color 0.2s ease;
}

.footer-bottom__links a:hover {
    color: #fff;
}

.footer-bottom__links .sep {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.82rem;
}

.footer-bottom__social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom__social a {
    color: var(--accent-gold);
    transition: color 0.2s ease;
    display: inline-flex;
}

.footer-bottom__social a:hover {
    color: #fff;
}

/* ================================================================
   HERO SECTION
   ================================================================ */
.hero-section {
    position: relative;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    color: #fff;
    padding-top: 140px;
    padding-bottom: 120px;
    /* Space for content */
    margin-bottom: 80px;
    /* Space for overlapping cards */
}

/* Dark gradient overlay for text readability */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    /* Only covers left side primarily */
    height: 100%;
    background: linear-gradient(90deg, rgba(5, 26, 14, 0.9) 0%, rgba(5, 26, 14, 0.7) 50%, rgba(5, 26, 14, 0) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.hero-content {
    max-width: 650px;
}

/* "Welcome to the" */
.hero-welcome {
    font-family: 'Great Vibes', cursive;
    font-size: 3.5rem;
    color: var(--accent-gold);
    margin-bottom: -15px;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1;
}

/* "Centre for Child Rights" */
.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 16px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    color: #fff;
}

/* Subtitles */
.hero-subtitle-group {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    line-height: 1.4;
    margin-bottom: 24px;
    color: #e0e0e0;
}

.hero-subtitle {
    margin-bottom: 0;
    font-weight: 300;
}

.hero-subtitle-2 {
    margin-bottom: 0;
}

.hero-subtitle-2 span {
    color: #fff;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: var(--accent-gold);
    text-decoration-thickness: 3px;
    text-underline-offset: 4px;
}

/* Divider with gold line */
.hero-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.hero-divider-line {
    width: 60px;
    height: 3px;
    background-color: var(--accent-gold);
    border-radius: 2px;
}

.hero-divider-text {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-weight: 700;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.btn-hero--primary {
    background-color: #1F5A3A;
    background: linear-gradient(180deg, #2A7A4D 0%, #1F5A3A 100%);
    color: #fff;
    border: 1px solid #2A7A4D;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.btn-hero--primary:hover {
    background: linear-gradient(180deg, #32915b 0%, #266e47 100%);
    transform: translateY(-2px);
}

.btn-hero--outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    backdrop-filter: blur(4px);
}

.btn-hero--outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

/* ================================================================
   HERO CARDS (Overlapping)
   ================================================================ */
.hero-cards {
    position: absolute;
    bottom: -60px;
    /* Overlap effect */
    left: 0;
    width: 100%;
    z-index: 10;
}

.hero-cards-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.hero-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px 10px;
    text-decoration: none;
    color: var(--text-primary);
    border-right: 1px solid #f0f0f0;
    transition: background-color 0.3s ease;
    height: 100%;
    min-height: 140px;
}

.hero-card:last-child {
    border-right: none;
}

.hero-card:hover {
    background-color: #f9fdfa;
}

.hero-card__icon {
    color: var(--primary-green);
    margin-bottom: 12px;
}

.hero-card__icon svg {
    stroke-width: 1.5;
}

/* ================================================================
   PATRON SECTION
   ================================================================ */
.patron-section {
    padding: 80px 0;
    background-color: #fff;
}

.margin-top-large {
    margin-top: 60px;
    /* Space from heavy hero overlap */
}

/* Section Header */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: #1F5A3A;
    /* Dark Green */
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.title-line {
    display: block;
    width: 60px;
    height: 2px;
    background-color: var(--accent-gold);
}

.section-description {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    line-height: 1.6;
    color: #4a4a4a;
}

/* Patron Grid */
.patron-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin: 0 auto;
}

/* Patron Card */
.patron-card {
    background: linear-gradient(180deg, #f9fdfa 0%, #edf5ef 100%);
    border: 1px solid #e0eae2;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.patron-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.patron-card__image-wrapper {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: inline-block;
}

.patron-card__image {
    display: block;
    width: 100%;
    max-width: 250px;
    /* Adjust based on image resolution */
    height: auto;
    object-fit: cover;
}

.patron-card__content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.patron-card__name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: #1F5A3A;
    margin-bottom: 12px;
    font-weight: 700;
}

.patron-card__divider {
    width: 40px;
    height: 3px;
    background-color: var(--accent-gold);
    margin-bottom: 12px;
    border-radius: 2px;
}

/* ================================================================
   TEAM SECTION
   ================================================================ */
.team-section {
    padding: 80px 0;
    background-color: #fcfcfc;
    /* Slight off-white */
    background-image: radial-gradient(#e0eae2 1px, transparent 1px);
    background-size: 20px 20px;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Left Content */
.team-content {
    max-width: 500px;
}

.team-title {
    justify-content: flex-start;
    /* Override center alignment */
    margin-bottom: 20px;
}

.team-description {
    text-align: left;
    margin-bottom: 32px;
    font-size: 1.2rem;
    color: #555;

}

.btn-team {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 32px;
    background-color: #1F5A3A;
    color: #fff;
    border: 1px solid var(--accent-gold);
    border-radius: 50px;
    /* Pill shape */
    font-family: var(--font-heading);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-team:hover {
    background-color: #164029;
    box-shadow: 0 4px 12px rgba(31, 90, 58, 0.3);
}

/* Right Card */
.team-card-wrapper {
    display: flex;
    justify-content: center;
}

.team-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    max-width: 300px;
    width: 100%;
    position: relative;
    border-bottom: 4px solid #1F5A3A;
    /* Green bottom border as per design hint */
}

.team-card__image-wrapper {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #f0f4f1;
    /* Fallback/background for transparent image */
}

.team-card__image {
    display: block;
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: top;
    /* If image has transparent background, maybe align bottom? */
}

.team-card__content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.team-card__info {
    flex-grow: 1;
}

.team-card__name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: #1F5A3A;
    font-weight: 700;
    margin-bottom: 8px;
}
.team-card__name a{
	color: #2e7d32;
	text-decoration:none;
	transition: color 0.3s ease;
}
.team-card__name a:hover {
    color: #14402a; /* darker green on hover */
}
.team-card__divider {
    display: block;
    width: 40px;
    height: 3px;
    background-color: var(--accent-gold);
    margin-bottom: 8px;
    border-radius: 2px;
}

.team-card__title {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: #555;
    font-weight: 600;
    margin: 0;
}

.team-card__social {
    flex-shrink: 0;
    margin-left: 16px;
}

.social-link-linkedin {
    color: #0077b5;
    /* LinkedIn Blue */
    transition: transform 0.2s ease;
    display: inline-block;
}

.social-link-linkedin:hover {
    transform: scale(1.1);
}

/* ================================================================
   ABOUT SECTION (CARCIL)
   ================================================================ */
.about-section {
    padding: 60px 0;
    background-color: #fff;
    /* Optional: Leaves background would go here */
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto 60px;
}

.about-card {
    background: linear-gradient(135deg, #fdfbf7 0%, #f6f1e9 100%);
    border: 1px solid #e6dfd1;
    border-radius: 16px;
    padding: 40px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
}

/* Inner border effect (pseudo-element) - optional refinement */
.about-card::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid rgba(197, 169, 102, 0.2);
    /* Subtle gold inner line */
    border-radius: 12px;
    pointer-events: none;
}

.about-card__icon {
    width: 60px;
    height: 60px;
    background-color: #fceea6;
    /* Pale yellow */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #c5a045;
    /* Darker gold for icon */
}

.about-card__title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #1F5A3A;
    margin-bottom: 12px;
    font-weight: 700;
}

.about-card__divider {
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--accent-gold);
    margin-bottom: 20px;
    border-radius: 2px;
}

.about-card__text {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

.about-footer {
    display: flex;
    justify-content: center;
}

.btn-about {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 40px;
    background-color: #3b5249;
    /* Slightly different green */
    border: 1px solid var(--accent-gold);
    color: #fff;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-about:hover {
    background-color: #2c3e37;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* ================================================================
   EVENTS SECTION
   ================================================================ */
.events-section {
    padding: 100px 0;
    background-color: #fff;
    color: #fff;

}

.events-title {
    color: #17452c;
    justify-content: center;
    margin-bottom: 50px;
    font-size: 3.5rem;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto 60px;
}

.event-card {
    background-color: #164029;
    /* Darker Green */
    border-radius: 16px;
    padding: 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.event-date-badge {
    background-color: #fff;
    border: 4px solid #4d7c60;
    /* Medium green border */
    border-radius: 50%;
    width: 90px;
    height: 90px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #1F5A3A;
    font-family: var(--font-heading);
    line-height: 1.1;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.event-month {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.event-day {
    font-size: 1.8rem;
    font-weight: 700;
}

.event-year {
    font-size: 0.7rem;
    font-weight: 600;
}

.event-content {
    flex-grow: 1;
}

.event-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.4;
    font-weight: 700;
}

.event-excerpt {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn-event-know-more {
    display: inline-block;
    padding: 8px 24px;
    background-color: #3b5249;
    /* Lighter green pill */
    color: #fff;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.btn-event-know-more:hover {
    background-color: #4a665b;
}

.events-footer {
    display: flex;
    justify-content: center;
}

.btn-view-all-events {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 32px;
    background-color: #17452c;
    border: 1px solid #c8a96a;
    color: #fff;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.btn-view-all-events:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* ================================================================
   NOTIFICATION SECTION
   ================================================================ */
.notification-section {
    padding: 60px 0 60px;
    background-color: #f6f6f6;
    position: relative;
    z-index: 5;
}

.notification-wrapper {
    display: flex;
    justify-content: center;
}

.notification-card {
    width: 100%;
    max-width: 900px;
    background-color: #fdfdfd;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0eae2;
}

.notification-header {
    background-color: #17452c;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 16px;
    color: #fff;
}

.notification-header__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    color: #fff;
}

.notification-header__title {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.notification-list {
    list-style: none;
    margin: 0;
    padding: 10px 0;
}

.notification-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 30px;
    border-bottom: 1px solid #eee;
    transition: background-color 0.2s ease;
}

.notification-item:last-child {
    border-bottom: none;
}

.notification-item:hover {
    background-color: #f4f8f5;
}

.notification-item__content {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-grow: 1;
    padding-right: 20px;
}

.notification-item__content::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    background-color: #17452c;
    border-radius: 50%;
    flex-shrink: 0;
}

.notification-item__text {
    font-family: var(--font-body);
    font-size: 1rem;
    color: #333;
    line-height: 1.5;
}

.notification-item__text strong {
    font-weight: 700;
    color: #1a1a1a;
}

.notification-item__date {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #888;
    white-space: nowrap;
    flex-shrink: 0;
}

.notification-footer {
    padding: 20px 30px 30px;
    display: flex;
    justify-content: center;
}

.btn-notification-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 32px;
    background-color: #3b5249;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-notification-view-all:hover {
    background-color: #17452c;
    transform: translateY(-2px);
}

/* ========== Entrance Animations (Reveal) ========== */
.reveal {
    opacity: 0;
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: transform, opacity;
}

.reveal--up {
    transform: translateY(40px);
}

.reveal--left {
    transform: translateX(-40px);
}

.reveal--right {
    transform: translateX(40px);
}

.reveal--active {
    opacity: 1 !important;
    transform: translate(0, 0) !important;
}

/* Staggered Delay Utilities */
.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

.reveal-delay-5 {
    transition-delay: 0.5s;
}

/* ================================================================
   SOCIAL MEDIA CONNECT SECTION
   ================================================================ */
.social-connect-section {
    padding: 80px 0;
    background-color: var(--bg-soft);
    position: relative;
}

.social-connect-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.social-connect-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.social-connect-container {
    background-color: #17452c;
    /* Dark Green Border Area */
    padding: 30px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.social-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    height: auto;
    background-color: #f7f9f7;
}

.social-card__header {
    background-color: #3e6b4d;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
}

.social-card__header svg {
    width: 24px;
    height: 24px;
}

.social-card__body {
    height: 500px;
    /* Fixed height for scrollable area */
    display: block;
    padding: 0;
    overflow-y: auto;
    background: #fff;
    -webkit-overflow-scrolling: touch;
}

.social-card__profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 15px;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.social-card__avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #f0f0f0;
    margin-bottom: 15px;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: block;
    /* Ensure it stays visible for script fallback */
}

.avatar-fallback {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    border: 3px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

/* User silhouette using pure CSS */
.avatar-fallback::before {
    content: "";
    width: 32px;
    height: 32px;
    background: #9ca3af;
    border-radius: 50%;
    position: absolute;
    top: 15px;
}

.avatar-fallback::after {
    content: "";
    width: 52px;
    height: 40px;
    background: #9ca3af;
    border-radius: 50% 50% 0 0;
    position: absolute;
    bottom: -10px;
}

.social-card__handle {
    color: var(--primary-green);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.social-card__stats {
    display: flex;
    gap: 15px;
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 10px;
}

.social-card__bio {
    font-size: 0.85rem;
    color: #444;
    line-height: 1.5;
    margin-bottom: 15px;
}

.social-card__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 24px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.social-card__btn--follow {
    background-color: var(--primary-green);
    color: #fff;
}

.social-card__btn--follow:hover {
    background-color: var(--dark-green);
}

.social-card__feed {
    flex-grow: 1;
    border-top: 1px solid #eee;
    padding-top: 20px;
    overflow-y: auto;
}

/* Responsiveness */
@media (max-width: 992px) {
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .social-grid {
        grid-template-columns: 1fr;
    }

    .social-connect-title {
        font-size: 1.8rem;
    }

    .social-connect-container {
        padding: 15px;
    }
}

/* ================================================================
   ABOUT US PAGE STYLES
   ================================================================ */
.about-page {
    background-color: #fff;
}

/* Breadcrumb */
.page-breadcrumb {
    background-image: url('../../../../uploads/2026/02/about-us-1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
    position: relative;
    color: #fff;
}

.breadcrumb-nav {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
}

.breadcrumb-nav a {
    color: #ffd700;
    /* Gold/Yellow from design */
    text-decoration: none;
    transition: opacity 0.3s;
}

.breadcrumb-nav a:hover {
    opacity: 0.8;
}

.breadcrumb-separator {
    margin: 0 10px;
    color: #ffd700;
}

.breadcrumb-current {
    font-weight: 700;
}



/* About Content */
.about-content-section {
    padding: 80px 0;
    overflow: hidden;
}

.about-title-wrapper {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.about-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--primary-green);
    display: inline-block;
    position: relative;
    padding: 0 40px;
}

.about-title::before,
.about-title::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 45px;
    height: 2px;
    background-color: #f1b34a;
    /* Orange line */
}

.about-title::before {
    left: -40px;
}

.about-title::after {
    right: -40px;
}

.about-title-decoration {
    width: 80px;
    height: 3px;
    background-color: var(--primary-green);
    margin: 10px auto 0;
    border-radius: 2px;
}

.about-title-decoration.gold {
    background-color: var(--accent-gold);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-description {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #444;
}

.about-description strong {
    color: var(--primary-green);
    font-weight: 800;
}

/* Image Decoration */
.about-image-col {
    position: relative;
    padding: 20px;
}

.about-image-decoration {
    position: absolute;
    top: 40px;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-green);
    border-radius: 20px;
    z-index: 1;
    opacity: 0.9;
    transform: rotate(2deg);
}

.about-image-wrapper {
    position: relative;
    z-index: 2;
    border: 3px solid #f1b34a;
    /* Gold/Orange border */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.about-main-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image-wrapper:hover .about-main-image {
    transform: scale(1.05);
}

/* Responsiveness for About Page */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 600px) {
    .about-title {
        font-size: 2rem;
    }

    .about-description {
        font-size: 1.1rem;
    }
}

/* Founder Section */
.founder-section {
    background: linear-gradient(to right, #fdfdfd 0%, #f7f9f7 100%);
    padding: 80px 0;
    overflow: hidden;
}

.founder-grid {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 60px;
    align-items: center;
}

.founder-image-wrapper {
    background: #fff;
    padding: 15px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
}

.founder-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

.founder-name {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.founder-designation {
    font-size: 1.1rem;
    color: #f1b34a;
    /* Orange/Gold from design */
    font-weight: 600;
    margin-bottom: 25px;
}

.founder-bio {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 30px;
}

.founder-achievements {
    list-style: none;
    padding: 0;
    margin: 0;
}

.founder-achievements li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.achievement-icon {
    width: 28px;
    height: 28px;
    background-color: #fef3c7;
    /* Light orange bg */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #f1b34a;
    border: 1px solid #f1b34a;
    padding: 4px;
}

.founder-achievements p {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.5;
    margin: 0;
}

.founder-achievements strong {
    color: #222;
    font-weight: 700;
}

/* Mission & Vision Section */
.mission-vision-section {
    background-color: #fff;
    padding: 100px 0;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.about-card {
    background-color: #fff;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.about-card__icon {
    width: 64px;
    height: 64px;
    background-color: #edf2ed;
    color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.about-card__title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.about-card__divider {
    width: 50px;
    height: 3px;
    background-color: #f1b34a;
    margin-bottom: 20px;
    border-radius: 2px;
}

.about-card__text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
}

/* Mission & Vision Section */
.mission-vision-section {
    background-color: #fff;
    padding: 120px 0;
    border-bottom: 1px solid #f9f9f9;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* MOU Section */
.mou-section {
    background: linear-gradient(135deg, #f8fbf8 0%, #eef5ee 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}
@media (max-width: 768px) {
    .mou-archive-section {
        padding-bottom: 30px;
    }
}
.mou-section::before {
    content: "";
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(26, 77, 46, 0.03);
    border-radius: 50%;
    z-index: 0;
}

.about-subtitle {
    font-size: 1.4rem;
    color: #444;
    margin-top: -10px;
}

.about-subtitle strong {
    color: var(--primary-green);
    border-bottom: 2px solid #f1b34a;
}

.mou-card {
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    max-width: 1100px;
    margin: 40px auto 0;
    border: 1px solid #f0f0f0;
    position: relative;
    z-index: 1;
}

.mou-grid {
    display: grid;
    grid-template-columns: 45% 55%;
    align-items: center;
}

.mou-image-col {
    padding: 30px;
    background-color: #f1f5f1;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mou-image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.mou-main-image {
    width: 100%;
    height: auto;
    display: block;
}

.mou-content-col {
    padding: 50px 60px;
    position: relative;
}

.mou-content-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.mou-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
}

.mou-footer-branding {
    margin-top: 40px;
    display: flex;
    justify-content: flex-end;
}

.unicef-branding-logo {
    height: 40px;
    width: auto;
    opacity: 0.9;
}

/* MOU Button */
.mou-actions {
    margin-top: 35px;
}

.btn-mou-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    background-color: var(--primary-green);
    color: #fff;
    border: 1px solid var(--accent-gold);
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(31, 90, 58, 0.15);
}

.btn-mou-all svg {
    transition: transform 0.3s ease;
}

.btn-mou-all:hover {
    background-color: #164029;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(31, 90, 58, 0.25);
    border-color: #f1b34a;
}

.btn-mou-all:hover svg {
    transform: translateX(5px);
}

.mou-feature-list {
    margin-bottom: 25px !important;
}

/* ================================================================
   MEET OUR TEAM SECTION
   ================================================================ */
.team-section {
    background-color: #fff;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    padding-bottom: 100px;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 10% 20%, rgba(31, 90, 58, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(200, 169, 106, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* Featured Card (Rector) */
.team-featured-card {
    background-color: #fff;
    border-radius: 24px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    margin: 60px auto;
    max-width: 1000px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.team-featured-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.featured-card-inner {
    display: flex;
    align-items: center;
}

.featured-image-col {
    flex: 0 0 350px;
    padding: 30px;
}

.featured-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.featured-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.team-featured-card:hover .featured-image {
    transform: scale(1.05);
}

.linkedin-overlay {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    background-color: #0077B5;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all 0.3s ease;
    z-index: 2;
}

.linkedin-overlay:hover {
    background-color: #005a8a;
    transform: scale(1.1);
}

.featured-content-col {
    flex: 1;
    padding: 40px 60px 40px 20px;
}

.featured-content-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--primary-green);
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.featured-content-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--accent-gold);
}

.featured-description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
}

/* Faculty Grid */
.faculty-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.faculty-card {
    background-color: #fff;
    border-radius: 16px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.faculty-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(31, 90, 58, 0.1);
}

.faculty-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    aspect-ratio: 1 / 1;
}

.faculty-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.faculty-card:hover .faculty-image {
    transform: scale(1.1);
}

.linkedin-icon {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background-color: #0077B5;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.faculty-card:hover .linkedin-icon {
    opacity: 1;
    transform: translateY(0);
}

.linkedin-icon:hover {
    background-color: #005a8a;
}

.faculty-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--primary-green);
    margin-bottom: 5px;
}

.faculty-designation {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0;
}

/* Team View All Button */
.team-actions {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.btn-team-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    background-color: var(--primary-green);
    color: #fff;
    border: 1px solid var(--accent-gold);
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(31, 90, 58, 0.15);
}

.btn-team-all svg {
    transition: transform 0.3s ease;
}

.btn-team-all:hover {
    background-color: #164029;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(31, 90, 58, 0.25);
    border-color: #f1b34a;
}

.btn-team-all:hover svg {
    transform: translateX(5px);
}

/* ================================================================
   MEDIA CENTRE SECTION
   ================================================================ */
.media-centre-page {
    background-color: #fdfbf7;
}

/* First section */
.news-section {
    padding-top: 60px;
    padding-bottom: 0;
}

/* Middle stacked sections */
.press-releases-section,
.photo-gallery-section,
.video-gallery-section {
    padding-top: 60px;
    padding-bottom: 0;
}

/* Last section before footer */
.blogs-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 50px 0px;
}

.news-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.news-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.news-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.news-card:hover .news-image {
    transform: scale(1.1);
}

.news-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-date {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-title {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    line-height: 1.4;
    color: var(--primary-green);
    margin-bottom: 18px;
    font-weight: 700;
}

.news-title em {
    font-style: italic;
    font-weight: 500;
    font-family: var(--font-body);
}

.news-description {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 25px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.archive-header {
    padding-top: 60px;
    padding-bottom: 10px;
    background-color: white;
}

.news-archive-section {
    padding-bottom: 60px;

}

.read-more {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--primary-green);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    margin-top: auto;
}

.read-more .arrow {
    transition: transform 0.3s ease;
}

.read-more:hover {
    color: var(--accent-gold);
}

.read-more:hover .arrow {
    transform: translateX(5px);
}

.btn-news-all {
    margin-top: 60px;
}

/* GREEN TINT OVERLAY */
.page-breadcrumb::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(24, 86, 52, 0.75);
    /* green tint */
    z-index: 1;
}

/* keep text above overlay */
.page-breadcrumb * {
    position: relative;
    z-index: 2;
}

/* Video Gallery Specifics */
.video-card .news-image-wrapper {
    position: relative;
    cursor: pointer;
}

.video-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    z-index: 5;
    transition: transform 0.3s ease, opacity 0.3s ease;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

.news-card.video-card:hover .video-play-overlay {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-play-overlay svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* ================================================================
   NEWS SINGLE PAGE
   ================================================================ */
.news-single-page {
    background-color: #fdfbf7;
}

.news-single-page .page-breadcrumb {
    background-image: url('../../../../uploads/2026/02/about-us-1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.news-single-page .breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.news-single-page .breadcrumb-nav a {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.news-single-page .breadcrumb-nav a:hover {
    color: #fff;
}

.news-single-page .breadcrumb-current {
    color: #fff;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


/* Layout Grid */
.news-single-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
    margin-top: 20px;
}

/* Main Column */
.article-main-col {
    background-color: transparent;
}

.article-title {
    font-size: 2.8rem;
    color: var(--primary-green);
    line-height: 1.25;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.article-date {
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 40px;
    display: block;
    font-family: var(--font-heading);
}

.article-featured-image {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.article-featured-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.article-body {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #333;
}

.article-body p {
    margin-bottom: 25px;
}

.article-subheading {
    font-size: 1.8rem;
    color: var(--primary-green);
    margin: 40px 0 25px;
    font-family: var(--font-heading);
}

.article-list {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 25px;
}

.article-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
    color: #444;
}

.article-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 10px;
    height: 10px;
    background-color: var(--accent-gold);
    border-radius: 50%;
}

/* Sidebar */
.article-sidebar {
    position: sticky;
    top: 40px;
    height: fit-content;
}

.latest-news-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.sidebar-title {
    background-color: var(--primary-green);
    color: #fff;
    padding: 20px 25px;
    font-size: 1.4rem;
    margin: 0;
    font-family: var(--font-heading);
    position: relative;
    z-index: 1;
}

.sidebar-title::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(200, 169, 106, 0.1) 0%, rgba(200, 169, 106, 0) 100%);
    z-index: -1;
}

.sidebar-news-list {
    list-style: none;
    padding: 15px 0;
    margin: 0;
}

.sidebar-news-item {
    padding: 20px 25px;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.3s ease;
}

.sidebar-news-item:last-child {
    border-bottom: none;
}

.sidebar-news-item:hover {
    background-color: #f9fdfa;
}

.sidebar-news-date {
    display: block;
    color: var(--accent-gold);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.sidebar-news-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    line-height: 1.4;
    display: block;
    font-family: var(--font-heading);
    transition: color 0.3s ease;
}

.sidebar-news-link:hover {
    color: var(--primary-green);
}

/* ================================================================
   TEAM SINGLE PAGE
   ================================================================ */
.team-single-page {
    background-color: #fdfbf7;
}
.member-header-section {
    padding-top: 60px;
}
.member-designation-top {
    font-size: 1.25rem;
    color: var(--accent-gold);
    font-weight: 500;
    margin-top: 15px;
    font-family: var(--font-heading);
}

.member-card-container {
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

.member-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 0;
}

.member-profile-col {
    padding: 40px;
    background-color: #f9fbf9;
    border-right: 1px solid #f0f0f0;
}

.member-sticky-top {
    position: sticky;
    top: 40px;
}

.member-image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    background-color: #fff;
    padding: 10px;
}

.member-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.member-sidebar-info {
    padding: 10px 0;
}

.member-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #555;
    font-size: 0.95rem;
}

.member-contact-item svg {
    color: var(--primary-green);
    flex-shrink: 0;
}

.member-actions {
    margin-top: 25px;
}

.btn-cv {
    display: block;
    text-align: center;
    padding: 12px 20px;
    background-color: var(--primary-green);
    color: #fff;
    border: 1px solid var(--accent-gold);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-family: var(--font-heading);
    transition: all 0.3s ease;
}

.btn-cv:hover {
    background-color: #164029;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(31, 90, 58, 0.2);
}

.member-content-col {
    padding: 60px;
}

.member-tabs-nav {
    display: flex;
    gap: 10px;
    margin-bottom: 40px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 0;
}

.tab-btn {
    padding: 12px 25px;
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: #777;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 10px 10px 0 0;
}

.tab-btn:hover {
    color: var(--primary-green);
    background-color: #f9fbf9;
}

.tab-btn.active {
    color: #fff;
    background-color: var(--primary-green);
    border: 1px solid var(--accent-gold);
    border-bottom: none;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.4s ease;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.member-section-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--primary-green);
    margin-bottom: 5px;
}

.member-designation {
    font-size: 1.25rem;
    color: var(--accent-gold);
    font-weight: 500;
    margin-bottom: 30px;
    font-family: var(--font-heading);
}

.member-bio {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.member-bio h3 {
    font-family: var(--font-heading);
    color: var(--primary-green);
    margin: 35px 0 20px;
    font-size: 1.5rem;
}

.interest-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.interest-list li {
    padding-left: 20px;
    position: relative;
}

.interest-list li::before {
    content: "•";
    color: var(--accent-gold);
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    line-height: 1;
}

.member-additional-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
}

.member-sidebar-card {
    background-color: #fdfbf7;
    border: 1px solid #f1e9db;
    border-radius: 20px;
    padding: 30px;
}

.sidebar-card-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--primary-green);
    margin-bottom: 20px;
    border-bottom: 1px solid #f1e9db;
    padding-bottom: 15px;
}

.publications-list {
    list-style: none;
    padding: 0;
}

.publications-list li {
    margin-bottom: 15px;
    color: #444;
    line-height: 1.5;
    position: relative;
    padding-left: 20px;
}

.publications-list li::before {
    content: "";
    width: 6px;
    height: 6px;
    background-color: var(--accent-gold);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 8px;
}

.publications-list li span {
    color: var(--accent-gold);
    font-weight: 600;
}

.sidebar-contact p {
    margin-bottom: 10px;
    color: #555;
}

.sidebar-contact p strong {
    color: var(--primary-green);
}

@media (max-width: 991px) {
    .member-grid {
        grid-template-columns: 1fr;
    }

    .member-profile-col {
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
        text-align: center;
    }

    .member-profile-col .member-contact-item {
        justify-content: center;
    }

    .member-image-wrapper {
        max-width: 300px;
        margin: 0 auto 30px;
    }

    .member-content-col {
        padding: 40px;
    }

    .member-additional-grid {
        grid-template-columns: 1fr;
    }
}
/*about us page student team section padding */
.student-team-section{
	padding:60px 0px;
}
/* ================================================================
   STUDENT SINGLE PAGE
   ================================================================ */
.student-single-page {
    background-color: #fdfbf7;
}

.student-card-wrapper {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    padding: 40px;
    border: 1px solid #f0f0f0;
}

.student-main-grid {
    display: grid;
    grid-template-columns: 300px 1fr 300px;
    gap: 40px;
    margin-bottom: 40px;
}

.student-image-frame {
    background: #fff;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.student-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
}

.student-name-internal {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--primary-green);
    margin-bottom: 5px;
}

.student-course {
    font-size: 1.2rem;
    color: var(--accent-gold);
    font-weight: 500;
    margin-bottom: 30px;
    font-family: var(--font-heading);
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
}

.student-info-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.student-bullet-list {
    list-style: none;
    padding: 0;
}

.student-bullet-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: #555;
}

.student-bullet-list li::before {
    content: "";
    width: 8px;
    height: 8px;
    background-color: var(--accent-gold);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 8px;
}

.student-contact-card {
    background-color: #fdf5f2;
    padding: 30px;
    border-radius: 20px;
}

.student-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #555;
    font-size: 0.95rem;
}

.student-contact-item svg {
    color: var(--primary-green);
    flex-shrink: 0;
}

.student-bottom-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 0;
    border-top: 1px solid #f0f0f0;
}

.student-bottom-card {
    padding: 30px;
}

.student-bottom-card:first-child {
    background-color: #fdf5f2;
    border-radius: 0 0 0 20px;
}

@media (max-width: 1199px) {
    .student-main-grid {
        grid-template-columns: 250px 1fr;
    }

    .student-contact-col {
        grid-column: 1 / -1;
    }
}

@media (max-width: 767px) {
    .student-main-grid {
        grid-template-columns: 1fr;
    }

    .student-image-col {
        max-width: 300px;
        margin: 0 auto;
    }

    .student-bottom-grid {
        grid-template-columns: 1fr;
    }

    .student-bottom-card:first-child {
        border-radius: 0;
    }
}

/* ================================================================
   MOU SINGLE PAGE
   ================================================================ */
.mou-featured-image-wrapper {
    margin-bottom: 50px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    max-height: 500px;
}

.mou-featured-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.mou-single-content-wrapper {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    padding: 20px;
    border: 1px solid #f0f0f0;
}

.mou-single-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 0;
}

.mou-overview-col {
    padding: 60px;
}

.mou-overview-col .mou-section-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--primary-green);
    margin-bottom: 30px;
}

.mou-text-content {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
}

.mou-objectives-col {
    padding: 20px;
}

.objectives-card {
    background-color: #fdf5f2;
    padding: 50px 40px;
    border-radius: 20px;
    height: 100%;
}

.mou-objectives-col .mou-section-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-bottom: 25px;
}

.mou-bullet-list {
    list-style: none;
    padding: 0;
}

.mou-bullet-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 20px;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
}

.mou-bullet-list li::before {
    content: "";
    width: 8px;
    height: 8px;
    background-color: var(--accent-gold);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 10px;
}

@media (max-width: 991px) {
    .mou-single-grid {
        grid-template-columns: 1fr;
    }

    .mou-overview-col {
        padding: 40px;
    }

    .objectives-card {
        padding: 40px;
    }

    .mou-featured-image,
    .mou-featured-image-wrapper {
        height: 300px;
        max-height: 300px;
    }
}

/* ================================================================
   EVENTS SINGLE PAGE
   ================================================================ */
.event-meta-info {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.event-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 1rem;
    font-weight: 500;
}

.event-meta-item svg {
    color: var(--accent-gold);
}

.events-archive-page .events-grid-archive {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

@media (max-width: 991px) {
    .events-archive-page .events-grid-archive {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .event-meta-info {
        gap: 15px;
    }
}