/* ============================================================
   Satyadeo College Gouripur - Main Stylesheet
   Color Theme: Orange (#fda31b) + Blue (#116e63) + White
   ============================================================ */

/* --- Google Fonts Import --- */
/* Playfair Display */
@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/PlayfairDisplay-Regular.ttf') format('truetype');
    font-weight: 400;
}contact

@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/PlayfairDisplay-Bold.ttf') format('truetype');
    font-weight: 700;
}

/* Nunito Sans */
@font-face {
    font-family: 'Nunito Sans';
    src: url('../fonts/NunitoSans-Regular.ttf') format('truetype');
    font-weight: 400;
}

@font-face {
    font-family: 'Nunito Sans';
    src: url('../fonts/NunitoSans-Bold.ttf') format('truetype');
    font-weight: 700;
}
/* --- CSS Variables --- */
:root {
    --primary-orange: #fda31b;
    --primary-orange-dark: #e08c0e;
    --primary-orange-light: #febb55;
    --primary-blue: #116e63;
    --primary-blue-dark: #0d5a51;
    --primary-blue-light: #1a8f80;
    --white: #FFFFFF;
    --light-bg: #F7F8FC;
    --light-grey: #EEF0F5;
    --text-dark: #1A1A2E;
    --text-medium: #4A4A68;
    --text-light: #8888A8;
    --shadow-sm: 0 2px 12px rgba(17,110,99,0.08);
    --shadow-md: 0 6px 30px rgba(17,110,99,0.13);
    --shadow-lg: 0 16px 48px rgba(17,110,99,0.18);
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Nunito Sans', 'Segoe UI', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    line-height: 1.25;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* ============================================================
   TOP STRIP
   ============================================================ */
.top-strip {
    background: var(--primary-blue);
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 7px 0;
    letter-spacing: 0.02em;
}

    .top-strip a {
        color: rgba(255,255,255,0.85);
        transition: var(--transition);
    }

        .top-strip a:hover {
            color: var(--primary-orange-light);
        }

    .top-strip .strip-item {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        margin-right: 24px;
    }

        .top-strip .strip-item i {
            color: var(--primary-orange-light);
            font-size: 0.88rem;
        }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
    background: linear-gradient(135deg, var(--white) 0%, #FFF8F2 100%);
    padding: 18px 0;
    border-bottom: 3px solid var(--primary-orange);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.header-logo {
    width: 90px;
    height: 90px;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(253,163,27,0.25));
    transition: var(--transition);
}

    .header-logo:hover {
        transform: scale(1.05) rotate(3deg);
        filter: drop-shadow(0 8px 20px rgba(253,163,27,0.4));
    }

.college-name-block {
    padding-left: 20px;
}

    .college-name-block .college-name {
        font-family: var(--font-display);
        font-size: 1.95rem;
        font-weight: 900;
        color: var(--primary-blue);
        line-height: 1.1;
        letter-spacing: -0.01em;
    }

        .college-name-block .college-name span {
            color: var(--primary-orange);
        }

    .college-name-block .college-sub {
        font-size: 0.88rem;
        color: var(--text-medium);
        font-weight: 600;
        margin-top: 4px;
        letter-spacing: 0.06em;
        text-transform: uppercase;
    }

    .college-name-block .college-tagline {
        font-size: 0.82rem;
        color: var(--primary-orange-dark);
        font-style: italic;
        font-weight: 600;
        margin-top: 2px;
    }

.header-accreditation {
    text-align: right;
}

.accred-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-dark));
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 6px;
    box-shadow: 0 4px 12px rgba(253,163,27,0.3);
}

.affil-text {
    font-size: 0.78rem;
    color: var(--text-medium);
    font-weight: 600;
}

    .affil-text strong {
        color: var(--primary-blue);
    }

/* ============================================================
   NAVBAR
   ============================================================ */
.site-navbar {
    background: var(--primary-blue);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(17,110,99,0.3);
    transition: var(--transition);
}

    .site-navbar.scrolled {
        background: rgba(17,110,99,0.97);
        backdrop-filter: blur(10px);
    }

    .site-navbar .navbar-brand {
        display: none;
    }

    .site-navbar .navbar-toggler {
        border-color: rgba(255,255,255,0.4);
        padding: 6px 12px;
    }

    .site-navbar .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255%2C255%2C255%2C0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    .site-navbar .nav-link {
        color: rgba(255,255,255,0.88) !important;
        font-size: 0.88rem;
        font-weight: 700;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        padding: 18px 14px !important;
        position: relative;
        transition: var(--transition);
    }

        .site-navbar .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            background: var(--primary-orange);
            transition: var(--transition);
            border-radius: 2px 2px 0 0;
        }

        .site-navbar .nav-link:hover,
        .site-navbar .nav-link.active {
            color: var(--white) !important;
        }

            .site-navbar .nav-link:hover::after,
            .site-navbar .nav-link.active::after {
                width: 60%;
            }

    .site-navbar .dropdown-menu {
        background: var(--white);
        border: none;
        border-top: 3px solid var(--primary-orange);
        border-radius: 0 0 var(--border-radius) var(--border-radius);
        box-shadow: var(--shadow-lg);
        min-width: 220px;
        padding: 8px 0;
        animation: dropFade 0.2s ease;
    }

@keyframes dropFade {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

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

.site-navbar .dropdown-item {
    color: var(--text-dark);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 9px 20px;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

    .site-navbar .dropdown-item:hover {
        background: linear-gradient(90deg, rgba(253,163,27,0.08), transparent);
        color: var(--primary-orange);
        border-left-color: var(--primary-orange);
        padding-left: 24px;
    }

/* ============================================================
   NOTICE BOARD TICKER
   ============================================================ */
.notice-ticker-bar {
    background: linear-gradient(90deg, var(--primary-orange), var(--primary-orange-dark));
    padding: 10px 0;
    overflow: hidden;
    position: relative;
    z-index: 100;
}

.ticker-label {
    background: var(--primary-blue);
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 18px;
    border-radius: 0 20px 20px 0;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    margin-right: 20px;
}

    .ticker-label i {
        animation: bellRing 1.5s ease-in-out infinite;
    }

@keyframes bellRing {
    0%, 100% {
        transform: rotate(0);
    }

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

    40% {
        transform: rotate(20deg);
    }

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

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

.ticker-wrapper {
    overflow: hidden;
    flex: 1;
}

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

    .ticker-content:hover {
        animation-play-state: paused;
    }

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 0.88rem;
    font-weight: 700;
    margin-right: 60px;
    cursor: pointer;
    padding: 2px 0;
}

    .ticker-item .ticker-dot {
        width: 7px;
        height: 7px;
        background: rgba(255,255,255,0.6);
        border-radius: 50%;
        flex-shrink: 0;
    }

    .ticker-item .ticker-new {
        background: var(--white);
        color: var(--primary-orange);
        font-size: 0.65rem;
        font-weight: 900;
        padding: 2px 7px;
        border-radius: 10px;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        animation: pulse 1.5s ease-in-out infinite;
    }

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

.ticker-item:hover {
    text-decoration: underline;
}

@keyframes tickerScroll {
    0% {
        transform: translateX(0);
    }

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

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-slider {
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 80px;
}

    .hero-slide.active {
        opacity: 1;
        z-index: 1;
    }

.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 8s ease;
}

.hero-slide.active .hero-slide-bg {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 90deg, rgba(17,110,99,0.75) 0%, rgba(17,110,99,0.5) 35%, rgba(17,110,99,0.2) 60%, rgba(17,110,99,0.05) 100% );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left; 
    color: var(--white);
    padding: 0 20px;
    max-width: 600px; 
    margin-left: 0px; 
}

    .hero-content .hero-badge {
        display: inline-block;
        background: var(--primary-orange);
        color: white;
        font-size: 0.75rem;
        font-weight: 800;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        padding: 6px 20px;
        border-radius: 20px;
        margin-bottom: 20px;
        animation: fadeInDown 0.8s ease forwards;
    }

    .hero-content h1 {
        font-size: 3.2rem;
        font-weight: 900;
        line-height: 1.1;
        text-shadow: 0 2px 20px rgba(0,0,0,0.3);
        margin-bottom: 16px;
        animation: fadeInUp 0.9s ease 0.2s both;
    }

    .hero-content p {
        font-size: 1.15rem;
        opacity: 0.92;
        margin-bottom: 30px;
        font-weight: 400;
        animation: fadeInUp 0.9s ease 0.4s both;
    }

.hero-cta-group {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    flex-wrap: wrap;
    animation: fadeInUp 0.9s ease 0.6s both;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.btn-hero-primary {
    background: var(--primary-orange);
    color: white;
    border: 2px solid var(--primary-orange);
    padding: 13px 32px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 0.92rem;
    letter-spacing: 0.04em;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(253,163,27,0.4);
}

    .btn-hero-primary:hover {
        background: var(--primary-orange-dark);
        border-color: var(--primary-orange-dark);
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 12px 32px rgba(253,163,27,0.5);
    }

.btn-hero-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.7);
    padding: 13px 32px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 0.92rem;
    letter-spacing: 0.04em;
    transition: var(--transition);
}

    .btn-hero-outline:hover {
        background: white;
        color: var(--primary-blue);
        border-color: white;
        transform: translateY(-3px);
    }

.hero-indicators {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    padding: 0;
}

    .hero-dot.active {
        background: var(--primary-orange);
        width: 28px;
        border-radius: 5px;
    }

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.5);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

    .hero-arrow:hover {
        background: var(--primary-orange);
        border-color: var(--primary-orange);
    }

.hero-arrow-prev {
    left: 24px;
}

.hero-arrow-next {
    right: 24px;
}

@media (max-width: 768px) {
    .hero-slide {
        justify-content: center;
        padding-left: 0;
    }

    .hero-content {
        text-align: center;
    }

    .hero-cta-group {
        justify-content: center;
    }
}

/* ============================================================
   SECTION COMMONS
   ============================================================ */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

    .section-title .section-pretitle {
        display: inline-block;
        font-size: 0.78rem;
        font-weight: 800;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--primary-orange);
        margin-bottom: 10px;
        position: relative;
    }

        .section-title .section-pretitle::before,
        .section-title .section-pretitle::after {
            content: '—';
            margin: 0 8px;
            opacity: 0.5;
        }

    .section-title h2 {
        font-size: 2.2rem;
        font-weight: 900;
        color: var(--primary-blue);
        margin-bottom: 14px;
    }

    .section-title p {
        font-size: 1rem;
        color: var(--text-medium);
        max-width: 600px;
        margin: 0 auto;
    }

.section-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), var(--primary-orange-light));
    border-radius: 2px;
    margin: 16px auto 0;
}

section {
    padding: 80px 0;
}

/* ============================================================
   STATS / QUICK HIGHLIGHTS
   ============================================================ */
.stats-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    background: linear-gradient( rgba(17,110,99,0.8), rgba(17,110,99,0.8) ), url('/images/stats-bg.jpg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

    .stats-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='20' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1'/%3E%3C/svg%3E") repeat;
    }

.stat-card {
    text-align: center;
    color: var(--white);
    padding: 32px 20px;
    position: relative;
    z-index: 1;
}

    .stat-card::after {
        content: '';
        position: absolute;
        right: 0;
        top: 20%;
        height: 60%;
        width: 1px;
        background: rgba(255,255,255,0.15);
    }

    .stat-card:last-child::after {
        display: none;
    }

    .stat-card .stat-icon {
        width: 64px;
        height: 64px;
        background: rgba(253,163,27,0.2);
        border: 2px solid rgba(253,163,27,0.5);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 16px;
        font-size: 1.5rem;
        color: var(--primary-orange-light);
        transition: var(--transition);
    }

    .stat-card:hover .stat-icon {
        background: var(--primary-orange);
        border-color: var(--primary-orange);
        transform: scale(1.1);
    }

    .stat-card .stat-number {
        font-family: var(--font-display);
        font-size: 2.6rem;
        font-weight: 900;
        line-height: 1;
        color: var(--white);
    }

        .stat-card .stat-number span {
            color: var(--primary-orange-light);
        }

    .stat-card .stat-label {
        font-size: 0.88rem;
        font-weight: 700;
        letter-spacing: 0.06em;
        color: rgba(255,255,255,0.75);
        text-transform: uppercase;
        margin-top: 6px;
    }

/* ============================================================
   QUICK HIGHLIGHTS CARDS
   ============================================================ */
.highlights-section {
    background: var(--light-bg);
}

.highlight-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    height: 100%;
}

    .highlight-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--primary-orange), var(--primary-blue));
        transform: scaleX(0);
        transition: var(--transition);
        transform-origin: left;
    }

    .highlight-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
    }

        .highlight-card:hover::before {
            transform: scaleX(1);
        }

    .highlight-card .card-icon {
        width: 72px;
        height: 72px;
        background: linear-gradient(135deg, rgba(253,163,27,0.12), rgba(17,110,99,0.08));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        font-size: 1.8rem;
        color: var(--primary-orange);
        transition: var(--transition);
    }

    .highlight-card:hover .card-icon {
        background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-dark));
        color: white;
        transform: rotate(10deg) scale(1.1);
    }

    .highlight-card h4 {
        font-size: 1.15rem;
        font-weight: 900;
        color: var(--primary-blue);
        margin-bottom: 10px;
    }

    .highlight-card p {
        font-size: 0.88rem;
        color: var(--text-medium);
        line-height: 1.65;
    }

    .highlight-card .card-link {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        color: var(--primary-orange);
        font-size: 0.85rem;
        font-weight: 800;
        margin-top: 16px;
        letter-spacing: 0.04em;
        text-transform: uppercase;
    }

        .highlight-card .card-link:hover {
            color: var(--primary-orange-dark);
            gap: 10px;
        }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
    background: var(--white);
}

.about-img-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

    .about-img-wrapper img {
        width: 100%;
        height: 400px;
        object-fit: cover;
        display: block;
        transition: transform 0.6s ease;
    }

    .about-img-wrapper:hover img {
        transform: scale(1.04);
    }

.about-img-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--primary-orange);
    color: white;
    padding: 12px 20px;
    border-radius: var(--border-radius-sm);
    font-weight: 800;
    font-size: 0.85rem;
}

.about-content {
    padding: 20px 0;
}

    .about-content h2 {
        font-size: 2rem;
        color: var(--primary-blue);
        margin-bottom: 16px;
    }

    .about-content p {
        color: var(--text-medium);
        font-size: 0.97rem;
        margin-bottom: 14px;
    }

.about-features {
    list-style: none;
    margin: 20px 0;
}

    .about-features li {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 10px;
        font-size: 0.92rem;
        color: var(--text-medium);
    }

        .about-features li i {
            color: var(--primary-orange);
            margin-top: 3px;
            flex-shrink: 0;
        }

.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-dark));
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 800;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(253,163,27,0.35);
}

    .btn-primary-custom:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 30px rgba(253,163,27,0.45);
        color: white;
        background: linear-gradient(135deg, var(--primary-orange-dark), #A8511A);
    }

.btn-outline-custom {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    padding: 11px 28px;
    border-radius: 25px;
    font-weight: 800;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    margin-left: 14px;
}

    .btn-outline-custom:hover {
        background: var(--primary-blue);
        color: white;
        transform: translateY(-3px);
    }

/* ============================================================
   NEWS & EVENTS
   ============================================================ */
.news-section {
    background: var(--light-bg);
}

.news-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

    .news-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-md);
    }

    .news-card .news-img {
        height: 200px;
        overflow: hidden;
        position: relative;
    }

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

    .news-card:hover .news-img img {
        transform: scale(1.08);
    }

    .news-card .news-category {
        position: absolute;
        top: 14px;
        left: 14px;
        background: var(--primary-orange);
        color: white;
        font-size: 0.72rem;
        font-weight: 800;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        padding: 4px 12px;
        border-radius: 12px;
    }

    .news-card .news-body {
        padding: 24px;
    }

    .news-card .news-date {
        font-size: 0.78rem;
        color: var(--text-light);
        font-weight: 700;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .news-card h5 {
        font-size: 1.05rem;
        color: var(--primary-blue);
        margin-bottom: 10px;
        line-height: 1.3;
    }

    .news-card p {
        font-size: 0.87rem;
        color: var(--text-medium);
        margin-bottom: 16px;
    }

    .news-card .read-more {
        color: var(--primary-orange);
        font-size: 0.83rem;
        font-weight: 800;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        transition: var(--transition);
    }

        .news-card .read-more:hover {
            gap: 10px;
            color: var(--primary-orange-dark);
        }

/* ============================================================
   DEPARTMENTS
   ============================================================ */
.departments-section {
    background: var(--white);
}

.dept-card {
    background: var(--light-bg);
    border-radius: var(--border-radius);
    padding: 30px 24px;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    height: 100%;
    border: 1px solid transparent;
}

    .dept-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--primary-orange), var(--primary-blue));
        transform: scaleX(0);
        transition: var(--transition);
    }

    .dept-card:hover {
        background: var(--white);
        box-shadow: var(--shadow-md);
        transform: translateY(-5px);
        border-color: rgba(253,163,27,0.2);
    }

        .dept-card:hover::after {
            transform: scaleX(1);
        }

.dept-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 18px;
    transition: var(--transition);
}

    .dept-icon.orange {
        background: rgba(253,163,27,0.12);
        color: var(--primary-orange);
    }

    .dept-icon.blue {
        background: rgba(17,110,99,0.12);
        color: var(--primary-blue);
    }

    .dept-icon.green {
        background: rgba(34,139,34,0.12);
        color: #228B22;
    }

    .dept-icon.purple {
        background: rgba(128,0,128,0.12);
        color: purple;
    }

.dept-card:hover .dept-icon {
    background: var(--primary-orange);
    color: white;
}

.dept-card h5 {
    font-size: 1.05rem;
    color: var(--primary-blue);
    margin-bottom: 8px;
    font-weight: 800;
}

.dept-card p {
    font-size: 0.85rem;
    color: var(--text-medium);
    margin-bottom: 14px;
}

.dept-count {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--primary-orange);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ============================================================
   FACULTY
   ============================================================ */
.faculty-section {
    background: var(--light-bg);
}

.faculty-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

    .faculty-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-md);
    }

.faculty-img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    margin: 28px auto 16px;
    display: block;
    border: 4px solid var(--primary-orange);
    box-shadow: 0 6px 20px rgba(253,163,27,0.25);
}

.faculty-card .faculty-body {
    padding: 0 20px 24px;
}

.faculty-card h5 {
    font-size: 1rem;
    color: var(--primary-blue);
    margin-bottom: 4px;
}

.faculty-card .faculty-dept {
    font-size: 0.82rem;
    color: var(--primary-orange);
    font-weight: 700;
    margin-bottom: 8px;
}

.faculty-card .faculty-qual {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-section {
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 12px;
}

.gallery-item {
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

    .gallery-item:first-child {
        grid-column: span 2;
        grid-row: span 2;
    }

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

    .gallery-item:hover img {
        transform: scale(1.1);
    }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(17,110,99,0.7), transparent);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: white;
    font-size: 2rem;
    transform: scale(0.7);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

.img-popup {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
}

.popup-content {
    display: block;
    margin: auto;
    max-width: 80%;
    max-height: 80%;
    border-radius: 10px;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 40px;
    cursor: pointer;
}

/* ============================================================
   IMPORTANT LINKS
   ============================================================ */
.links-section {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
    padding: 60px 0;
}

    .links-section .section-title h2 {
        color: white;
    }

    .links-section .section-title .section-pretitle {
        color: var(--primary-orange-light);
    }

    .links-section .section-title p {
        color: rgba(255,255,255,0.75);
    }

.link-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--border-radius);
    padding: 24px 20px;
    text-align: center;
    color: white;
    transition: var(--transition);
    cursor: pointer;
    height: 100%;
}

    .link-card:hover {
        background: rgba(253,163,27,0.2);
        border-color: var(--primary-orange);
        transform: translateY(-5px);
    }

    .link-card i {
        font-size: 2rem;
        color: var(--primary-orange-light);
        margin-bottom: 14px;
        display: block;
    }

    .link-card span {
        font-size: 0.9rem;
        font-weight: 700;
        display: block;
    }

/* ============================================================
   CONTACT SECTION
   ============================================================ */

/* CONTACT SECTION */
.contact-section {
    background: var(--light-bg);
}

/* INFO CARD */
.contact-info-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-sm);
}

/* CONTACT ITEM */
.contact-item {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
}

.ci-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.ci-text strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
}

.ci-text span {
    font-size: 0.88rem;
    color: var(--text-medium);
}

/* MAP */
.map-container {
    height: 100%;
    min-height: 350px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

    .map-container iframe {
        width: 100%;
        height: 100%;
        border: 0;
    }

/* QUICK CONTACT */
.quick-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.quick-card {
    background: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: 0.3s;
}

    .quick-card i {
        font-size: 1.5rem;
        color: var(--primary-orange);
        margin-bottom: 8px;
    }

    .quick-card h6 {
        font-size: 0.9rem;
        color: var(--primary-blue);
        margin-bottom: 4px;
    }

    .quick-card span {
        font-size: 0.8rem;
        color: var(--text-medium);
    }

    /* HOVER EFFECT */
    .quick-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-md);
    }

/*.contact-section {
    background: var(--light-bg);
}

.contact-info-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 36px;
    box-shadow: var(--shadow-sm);
    height: 100%;
}

    .contact-info-card h4 {
        color: var(--primary-blue);
        margin-bottom: 24px;
        font-size: 1.35rem;
    }

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    align-items: flex-start;
}

    .contact-item .ci-icon {
        width: 44px;
        height: 44px;
        background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-dark));
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1rem;
        flex-shrink: 0;
    }

    .contact-item .ci-text strong {
        display: block;
        font-size: 0.85rem;
        color: var(--text-dark);
        margin-bottom: 2px;
        font-weight: 800;
    }

    .contact-item .ci-text span {
        font-size: 0.88rem;
        color: var(--text-medium);
    }

.contact-form-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 36px;
    box-shadow: var(--shadow-sm);
}

    .contact-form-card h4 {
        color: var(--primary-blue);
        margin-bottom: 24px;
        font-size: 1.35rem;
    }

.form-control-custom {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--light-grey);
    border-radius: var(--border-radius-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-dark);
    transition: var(--transition);
    background: var(--light-bg);
    outline: none;
    margin-bottom: 16px;
}

    .form-control-custom:focus {
        border-color: var(--primary-orange);
        background: white;
        box-shadow: 0 0 0 3px rgba(253,163,27,0.12);
    }

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    height: 280px;
    margin-top: 20px;
}

    .map-container iframe {
        width: 100%;
        height: 100%;
        border: 0;
    }*/

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: #0b3b35;
    color: rgba(255,255,255,0.75);
    padding: 60px 0 0;
}

.footer-logo-area img {
    width: 72px;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
}

.footer-college-name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 900;
    color: white;
    margin-bottom: 12px;
}

    .footer-college-name span {
        color: var(--primary-orange-light);
    }

.footer-about-text {
    font-size: 0.87rem;
    line-height: 1.75;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: var(--transition);
    color: white;
}

    .social-icon.fb {
        background: #1877F2;
    }

    .social-icon.tw {
        background: #1DA1F2;
    }

    .social-icon.yt {
        background: #FF0000;
    }

    .social-icon.ig {
        background: linear-gradient(45deg, #833ab4, #fd1d1d, #fcb045);
    }

    .social-icon.wa {
        background: #25D366;
    }

    .social-icon:hover {
        transform: translateY(-4px) scale(1.1);
        box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    }

.footer-heading {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

    .footer-heading::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 32px;
        height: 3px;
        background: var(--primary-orange);
        border-radius: 2px;
    }

.footer-links {
    list-style: none;
}

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

    .footer-links a {
        color: rgba(255,255,255,0.65);
        font-size: 0.87rem;
        transition: var(--transition);
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .footer-links a::before {
            content: '›';
            color: var(--primary-orange);
            font-size: 1.1rem;
            line-height: 1;
        }

        .footer-links a:hover {
            color: var(--primary-orange-light);
            padding-left: 6px;
        }

.footer-contact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 14px;
    font-size: 0.87rem;
}

    .footer-contact-item i {
        color: var(--primary-orange);
        margin-top: 3px;
        flex-shrink: 0;
    }

.footer-bottom {
    background: rgba(0,0,0,0.3);
    margin-top: 50px;
    padding: 18px 0;
    text-align: center;
    font-size: 0.83rem;
    color: rgba(255,255,255,0.5);
}

    .footer-bottom a {
        color: var(--primary-orange-light);
    }

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 46px;
    height: 46px;
    background: var(--primary-orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 6px 20px rgba(253,163,27,0.4);
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    border: none;
}

    .scroll-top.visible {
        opacity: 1;
        pointer-events: all;
    }

    .scroll-top:hover {
        background: var(--primary-orange-dark);
        transform: translateY(-4px);
    }

/* ============================================================
   PLACEHOLDER IMAGES (SVG-based backgrounds)
   ============================================================ */
.hero-bg-1 {
    background-color: #116e63;
    background-image: linear-gradient(135deg, #116e63 0%, #1a8f80 100%);
}

.hero-bg-2 {
    background-color: #fda31b;
    background-image: linear-gradient(135deg, #e08c0e 0%, #fda31b 100%);
}

.hero-bg-3 {
    background-color: #0d5a51;
    background-image: linear-gradient(135deg, #0d5a51 0%, #116e63 100%);
}

.placeholder-img {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--light-grey), var(--light-bg));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 2rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
    .hero-section {
        height: 480px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .gallery-item:first-child {
        grid-column: span 1;
        grid-row: span 1;
    }

    .college-name-block .college-name {
        font-size: 1.5rem;
    }

    section {
        padding: 60px 0;
    }
}

@media (max-width: 767px) {
    .top-strip {
        font-size: 0.75rem;
        text-align: center;
    }

        .top-strip .strip-item {
            margin-bottom: 3px;
            display: block;
            text-align: center;
        }

    .hero-section {
        height: 420px;
    }

    .hero-content h1 {
        font-size: 1.7rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .site-header {
        padding: 14px 0;
    }

    .header-logo {
        width: 68px;
        height: 68px;
    }

    .college-name-block .college-name {
        font-size: 1.2rem;
    }

    .header-accreditation {
        display: none;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title h2 {
        font-size: 1.7rem;
    }

    .hero-arrow {
        display: none;
    }

    .stat-card::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.4rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .college-name-block .college-name {
        font-size: 1rem;
    }

    .college-name-block .college-sub, .college-name-block .college-tagline {
        font-size: 0.7rem;
    }
}

/* ============================================================
   HERO OVERLAP CARDS
   ============================================================ */
.hero-section {
    padding-bottom: 0;
}

.hero-overlap-cards-wrapper {
    position: relative;
    z-index: 30;
    margin-top: -90px; 
    padding-bottom: 60px; 
}

    .hero-overlap-cards-wrapper .container {
        max-width: 1000px;
        margin-left: auto;
        margin-right: 0;
    }

/* ------------------------------------------------------------------
   Individual feature card
   ------------------------------------------------------------------ */
.feature-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 36px 28px 32px;
    box-shadow: 0 10px 40px rgba(17, 110, 99, 0.15);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border-bottom: 4px solid transparent;
    display: flex;
    flex-direction: column;
    gap: 0;
}

    /* Hover: lift + deeper shadow + accent border */
    .feature-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 24px 60px rgba(17, 110, 99, 0.22);
        border-bottom-color: var(--primary-orange);
    }

/* ------------------------------------------------------------------
   Card top row: icon circle + large number side-by-side
   ------------------------------------------------------------------ */
.feature-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 24px;
}

/* ------------------------------------------------------------------
   Circular icon container — teal variant (cards 1 & 3)
   ------------------------------------------------------------------ */
.feature-card--teal .feature-card__icon-circle {
    width: 64px;
    height: 64px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff;
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease;
}

.feature-card--teal:hover .feature-card__icon-circle {
    background: var(--primary-orange);
    transform: rotate(8deg) scale(1.1);
}

/* ------------------------------------------------------------------
   Circular icon container — orange variant (cards 2 & 4)
   ------------------------------------------------------------------ */
.feature-card--orange .feature-card__icon-circle {
    width: 64px;
    height: 64px;
    background: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff;
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease;
}

.feature-card--orange:hover .feature-card__icon-circle {
    background: var(--primary-blue);
    transform: rotate(-8deg) scale(1.1);
}

/* ------------------------------------------------------------------
   Large ghost number (top-right corner of each card)
   ------------------------------------------------------------------ */
.feature-card__number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.04em;
    color: rgba(17, 110, 99, 0.10);
    user-select: none;
}

/* ------------------------------------------------------------------
   Card title
   ------------------------------------------------------------------ */
.feature-card__title {
    font-family: var(--font-display);
    font-size: 1.12rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

/* ------------------------------------------------------------------
   Card description
   ------------------------------------------------------------------ */
.feature-card__desc {
    font-size: 0.875rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin: 0;
}

/* ------------------------------------------------------------------
   Responsive breakpoints
   ------------------------------------------------------------------ */

/* Tablet (≤ 991px): 2 columns, reduce negative overlap */
@media (max-width: 991px) {
    .hero-overlap-cards-wrapper {
        margin-top: -50px;
        padding-bottom: 48px;
    }
}

/* Mobile (≤ 767px): 1 column, minimal overlap */
@media (max-width: 767px) {


    .hero-overlap-cards-wrapper {
        margin-top: -30px;
        padding-bottom: 36px;
    }

    .feature-card {
        padding: 28px 22px 26px;
    }

    .feature-card__number {
        font-size: 2.4rem;
    }
}

/* ============================================================
   ABOUT SECTION — REDESIGNED (image collage layout)
   ============================================================ */
.about-section-new {
    background: var(--white);
    padding: 100px 0;
    overflow: hidden;
}

/* Left image collage */
.about-collage {
    position: relative;
    min-height: 520px;
}

.about-img-main {
    position: absolute;
    left: 0;
    top: 0;
    width: 52%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

    .about-img-main img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.about-img-circle {
    position: absolute;
    right: 0;
    top: 0;
    width: 46%;
    height: 220px;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid #fff;
    box-shadow: var(--shadow-md);
}

    .about-img-circle img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.about-img-bottom {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 46%;
    height: 240px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 4px solid #fff;
}

    .about-img-bottom img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.about-badge-overlay {
    position: absolute;
    bottom: 28px;
    left: 16px;
    background: var(--primary-orange);
    color: #fff;
    border-radius: 14px;
    padding: 16px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 8px 28px rgba(253,163,27,0.4);
    z-index: 10;
    max-width: 200px;
}

    .about-badge-overlay .badge-icon {
        width: 48px;
        height: 48px;
        background: rgba(255,255,255,0.2);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.4rem;
        flex-shrink: 0;
    }

    .about-badge-overlay .badge-text {
        font-size: 0.9rem;
        font-weight: 800;
        line-height: 1.3;
    }

/* Right about content */
.about-content-new {
    padding-left: 20px;
}

.about-pretitle-new {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--primary-orange);
    margin-bottom: 14px;
}

    .about-pretitle-new i {
        font-size: 1rem;
        color: var(--primary-orange);
    }

.about-heading-new {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 18px;
}

    .about-heading-new .text-accent {
        color: var(--primary-orange);
    }

.about-desc-new {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 28px;
}

.about-features-new {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 28px;
}

.about-feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.about-feature-icon {
    width: 52px;
    height: 52px;
    background: var(--primary-orange);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
    flex-shrink: 0;
    transition: var(--transition);
}

.about-feature-item:hover .about-feature-icon {
    background: var(--primary-blue);
    transform: scale(1.08);
}

.about-feature-text h6 {
    font-size: 1rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.about-feature-text p {
    font-size: 0.85rem;
    color: var(--text-medium);
    line-height: 1.6;
    margin: 0;
}

.about-quote-box {
    background: var(--light-bg);
    border-left: 4px solid var(--primary-blue);
    border-radius: 0 12px 12px 0;
    padding: 18px 22px;
    margin-bottom: 28px;
    position: relative;
}

    .about-quote-box p {
        font-size: 0.9rem;
        color: var(--text-medium);
        line-height: 1.75;
        margin: 0;
        font-style: italic;
    }

.about-quote-mark {
    position: absolute;
    bottom: 12px;
    right: 18px;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-blue);
    line-height: 1;
    opacity: 0.3;
}

.about-cta-row {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.about-call-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-call-icon {
    width: 44px;
    height: 44px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
}

.about-call-text {
    font-size: 0.82rem;
    color: var(--text-medium);
    font-weight: 600;
}

    .about-call-text strong {
        display: block;
        font-size: 0.98rem;
        color: var(--text-dark);
        font-weight: 800;
    }

/* Responsive - about collage */
@media (max-width: 991px) {
    .about-collage {
        min-height: 380px;
    }

    .about-heading-new {
        font-size: 1.9rem;
    }

    .about-content-new {
        padding-left: 0;
        margin-top: 32px;
    }

    .hero-card-item {
        margin-top: 0;
        height: auto;
    }

    .hero-overlap-cards-wrapper {
        margin-top: -40px;
    }
}

@media (max-width: 767px) {
    .about-collage {
        min-height: 300px;
    }

    .about-img-circle {
        display: none;
    }

    .about-img-main {
        width: 58%;
    }

    .about-img-bottom {
        width: 40%;
    }

    .hero-overlap-cards-wrapper {
        margin-top: -20px;
    }

    .hero-cards-bg-strip {
        padding: 36px 0 30px;
    }

    .hero-card-item {
        margin-top: 0;
    }
}
