* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
   font-family: 'Inter', sans-serif;
    background: linear-gradient(180deg, #fffbf5 0%, #fff7ed 100%);
    overflow-x: hidden;

}

:root {
    --primary-orange: #795548;
    --primary-orange-dark: #795548;
    --deep-blue: #000000;
    --teal-green: #000000;
    --golden: #7f1221;
    --shadow-elegant: 0 25px 45px -12px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 7px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #f4a100;
    border-radius: 12px;
}
 @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
/* ===== HERO SECTION FIXED HEIGHT ===== */
.hero-banner {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 248, 235, 0.96) 0%, rgba(255, 242, 225, 0.94) 100%);
    overflow: hidden;
   padding:60px 0px;
    display: flex;
    align-items: center;

}

/* Background overlay */
.hero-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1524995997946-a1c2e315a42f?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}

.hero-banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 40%, rgba(255, 245, 225, 0.6) 0%, rgba(255, 248, 235, 0.88) 100%);
    pointer-events: none;
    z-index: 0;
}

/* Swiper Container - Fixed Height to prevent disorder */
.swiper-hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    height: auto;
}

.swiper {
    width: 100%;
    height: 100%;
}

.events-section .swiper-slide-event {
    padding: 0px 0 0px 0;
}

.swiper-slide {
    background: transparent;
    padding: 0px 0 0px 0;
    height: auto;
}

/* Fixed content wrapper to maintain consistent height */
.slide-content-wrapper {
    display: flex;
    align-items: center;
    min-height: 550px;
}

/* ===== BANNER CONTENT STYLING ===== */
.banner-subheading {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(30, 122, 108, 0.1));
    backdrop-filter: blur(8px);
    padding: 8px 24px;
    border-radius: 60px;
    margin-bottom: 28px;
    border: 1px solid rgba(245, 158, 11, 0.3);
    animation: fadeInUp 0.7s ease forwards;
}

.banner-subheading i {
    color: var(--primary-orange);
    font-size: 1rem;
}

.banner-subheading span {
    color: var(--deep-blue);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.banner-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--deep-blue);
    margin-bottom: 24px;
    animation: fadeInUp 0.7s ease 0.1s forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}

.banner-title .highlight {
    background: linear-gradient(135deg, var(--primary-orange), var(--golden));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.banner-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 10px;
    background: rgba(245, 158, 11, 0.25);
    border-radius: 10px;
    z-index: -1;
}

.banner-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #2c3e4e;
    margin-bottom: 35px;
    max-width: 90%;
    background: rgba(255, 255, 245, 0.65);
    padding: 14px 24px;
    border-radius: 28px;
    backdrop-filter: blur(4px);
    animation: fadeInUp 0.7s ease 0.2s forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}

/* Button Group */
.btn-group-premium {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 0.7s ease 0.3s forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}

.btn-primary-premium {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-dark));
    color: white;
    border: none;
    border-radius: 50px;
    padding: 14px 42px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-primary-premium::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary-premium:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary-premium:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(245, 158, 11, 0.5);
    color: white;
}

.btn-outline-premium {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--deep-blue);
    color: var(--deep-blue);
    border-radius: 50px;
    padding: 12px 42px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.btn-outline-premium:hover {
    background: var(--deep-blue);
    color: white;
    border-color: var(--deep-blue);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(10, 43, 62, 0.2);
}

/* ===== FIXED IMAGE SIZE - SAME DIMENSIONS FOR ALL SLIDES ===== */
.banner-image-wrapper {
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
    position: relative;
}

.banner-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 32px;
    box-shadow: var(--shadow-elegant);
    transition: all 0.5s ease;
    animation: fadeInRight 0.8s ease forwards;
}

.banner-image:hover {
    transform: scale(1.02) translateY(-8px);
    box-shadow: 0 35px 55px -15px rgba(0, 0, 0, 0.3);
}

/* Image overlay animation */
.image-glow-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 32px;
    background: radial-gradient(circle at 30% 40%, rgba(245, 158, 11, 0.15), transparent 70%);
    pointer-events: none;
    animation: pulseGlow 3s infinite;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes floatIcon {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(20px, -25px) rotate(8deg);
    }

    100% {
        transform: translate(-15px, 20px) rotate(-5deg);
    }
}

@keyframes gentleFloat {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    100% {
        transform: translateY(-30px) rotate(6deg);
    }
}

@keyframes pulseGlow {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.05);
    }
}

@keyframes shimmer {
    0% {
        background-position: -100% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* Floating Icons */
.floating-icon {
    position: absolute;
    font-size: 2rem;
    opacity: 0.22;
    z-index: 1;
    pointer-events: none;
    animation: floatIcon 14s infinite ease-in-out;
    color: var(--teal-green);
}

.floating-icon-slow {
    position: absolute;
    font-size: 2.3rem;
    opacity: 0.2;
    z-index: 1;
    pointer-events: none;
    animation: gentleFloat 16s infinite alternate;
    color: var(--primary-orange);
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    background: rgba(10, 43, 62, 0.75);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    backdrop-filter: blur(8px);
    transition: all 0.3s;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.3rem;
    font-weight: bold;
    color: white;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--primary-orange);
    transform: scale(1.1);
}

.swiper-pagination-bullet {
    background: var(--deep-blue);
    opacity: 0.4;
    width: 10px;
    height: 10px;
    transition: all 0.3s;
}

.swiper-pagination-bullet-active {
    background: var(--primary-orange);
    opacity: 1;
    width: 28px;
    border-radius: 10px;
}

/* Feature Cards Section with Enhanced Animation */
.feature-container {
    margin-top: -60px;
    position: relative;
    z-index: 20;
}

.feature-card-premium {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(8px);
    border-radius: 36px;
    padding: 35px 20px 30px;
    text-align: center;
    box-shadow: var(--shadow-elegant);
    border-bottom: 4px solid #fce78d;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card-premium::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(115deg, transparent, rgba(245, 158, 11, 0.08), transparent);
    transform: rotate(45deg);
    transition: all 0.6s;
    opacity: 0;
}

.feature-card-premium:hover::before {
    opacity: 1;
    animation: shimmer 1.5s ease;
}

.feature-card-premium:hover {
    transform: translateY(-18px);
    border-bottom-color: var(--primary-orange);
    box-shadow: 0 35px 55px -20px rgba(0, 0, 0, 0.3);
}

.feature-icon-premium {
    background: linear-gradient(145deg, #801222, #131515);
    width: 85px;
    height: 85px;
    line-height: 85px;
    border-radius: 50%;
    margin: 0 auto 20px;
    font-size: 2.3rem;
    color: white;
    transition: all 0.4s;
}

.feature-card-premium:hover .feature-icon-premium {
    background: #fff;
    color: #801222;
    transform: scale(1.1) rotate(8deg);
}


.feature-number-premium {
    font-size: 4rem;
    font-weight: 800;
    color: rgb(47 20 24 / 8%);
    position: absolute;
    right: 20px;
    top: 15px;

}

@media (max-width: 992px) {
    .banner-title {
        font-size: 2.5rem;
    }

    .slide-content-wrapper {
        min-height: auto;
    }

    .banner-image {
        height: 380px;
    }

    .feature-container {
        margin-top: -30px;
    }
}

@media (max-width: 768px) {
    .banner-title {
        font-size: 2rem;
    }

    .banner-description {
        max-width: 100%;
        font-size: 0.95rem;
    }

    .btn-group-premium {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .btn-primary-premium,
    .btn-outline-premium {
        text-align: center;
    }

    .banner-image {
        height: 300px;
    }

    .slide-content-wrapper {
        min-height: auto;
    }
}

/* ========== TOP BAR ========== */

.top-bar {
    background: linear-gradient(135deg, #000 0%, #000 100%);
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar a {
    color: #fbf1b7;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /*width: 25px;*/
    /*height: 25px;*/
    border-radius: 50%;
    /*background: rgba(255, 255, 255, 0.08);*/
    margin-right: 8px;
    font-size: 14px;
}

.top-bar a:hover {
    /*background: #795548;*/
  color: #fbf1b7;
    transform: translateY(-2px);
}

.top-bar .contact-info span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-right: 0px;
    font-size: 13px;
    letter-spacing: 0.3px;
}

.top-bar .contact-info i {
    font-size: 14px;
    color: #795548;

}

/* ========== MAIN HEADER WITH BOOTSTRAP GRID ========== */
.top-announcement {
    background-color: #821222;
}

.main-header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(8px);
    padding: 15px 0;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1001;
}

.main-header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    animation: slideDown 0.4s ease;
    z-index: 1000;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Logo & Brand Section */
.logo-brand-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.brand-text {
    line-height: 1.3;
}

.brand-text h1 {
    font-size: 22px;
    font-weight: 800;
    margin: 0;
    background: linear-gradient(120deg, #801222 30%, #795548 80%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.3px;
}

.brand-text span {
    font-size: 13px;
    color: #000;
    font-weight: 600;
    display: block;
    margin-top: 4px;
}

/* Desktop Navigation */
.nav-menu-desktop {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin: 0;
    padding: 0;
    list-style: none;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-weight: 600;
    margin: 0 6px;
    color: #1e2a36;
    position: relative;
    padding: 8px 0;
    transition: color 0.3s ease;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
    background: none;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: #795548;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2.5px;
    background: linear-gradient(90deg, #795548, #ffcd7e);
    transition: width 0.3s ease;
    border-radius: 4px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Dropdown (desktop) */
.dropdown {
    position: relative;
}

.dropdown-menu-custom {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
    padding: 12px 8px;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    pointer-events: none;
    border: 1px solid rgba(244, 161, 0, 0.2);
    z-index: 1050;
    list-style: none;
}

.dropdown:hover .dropdown-menu-custom {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
    pointer-events: auto;
}

.dropdown-item-custom {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    border-radius: 12px;
    font-weight: 500;
    font-size: 13px;
    color: #1e2a36;
    text-decoration: none;
    transition: all 0.2s;
}

.dropdown-item-custom i {
    width: 20px;
    font-size: 13px;
}

.dropdown-item-custom:hover {
    background: #fff6e5;
    color: #795548;
    transform: translateX(6px);
}

.btn-apply {
    background: linear-gradient(95deg, #811222, #ffb82e);
    color: #fff;
    border-radius: 12px;
    padding: 8px 22px;
    font-weight: 700;
    font-size: 17px;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 18px rgba(244, 161, 0, 0.25);
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}
.btn-apply:hover {
    background: linear-gradient(95deg, #e08e00, #795548);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(244, 161, 0, 0.35);
    color: white;
}

/* Hamburger Button */
.hamburger-left {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: background 0.2s;
    z-index: 1100;
}

.hamburger-left:hover {
    background: rgba(244, 161, 0, 0.1);
}

.hamburger-left i {
    font-size: 28px;
    color: #0f2b3d;
}

/* LEFT SIDE MENU */
.left-side-menu {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100%;
    background: #ffffff;
    box-shadow: 5px 0 30px rgba(0, 0, 0, 0.15);
    z-index: 2000;
    transition: left 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    overflow-y: auto;
    padding: 30px 20px 40px;
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(244, 161, 0, 0.2);
}

.left-side-menu.open {
    left: 0;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    z-index: 1999;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s;
}

.menu-overlay.active {
    visibility: visible;
    opacity: 1;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 2px solid #79554830;
}

.menu-logo-text {
    display: flex;
    align-items: center;
    gap: 12px;
}

.menu-logo-text img {
    width: 50px;
    height: 50px;
}

.menu-logo-text h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    color: #7a111e;
}

.menu-logo-text p {
    font-size: 11px;
    margin: 0;
    color: #c8932d;
}

.close-menu {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #000;
    transition: transform 0.2s;
}

.close-menu:hover {
    transform: rotate(90deg);
    color: #795548;
}

.side-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.side-nav-list li {
    margin-bottom: 10px;
}

.side-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: #f8fafc;
    border-radius: 16px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    transition: all 0.2s;
}

.side-nav-link i:first-child {
    width: 28px;
    color: #7a111e;
}

.side-nav-link span {
    flex: 1;
}

.side-nav-link:hover {
    background: #fff6e5;
    color: #795548;
    transform: translateX(5px);
}

.side-submenu {
    list-style: none;
    padding-left: 32px;
    margin-top: 6px;
    display: none;
    z-index: 10;
    transition: all 0.3s ease;
}

.side-submenu.show {
    display: block;
}

.side-submenu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    color: #4a5568;
    text-decoration: none;
    border-radius: 12px;
}

.side-submenu a:hover {
    background: #79554810;
    color: #795548;
}

.dropdown-toggle-icon {
    transition: transform 0.2s;
}

.rotated {
    transform: rotate(180deg);
}

body.menu-open {
    overflow: hidden;
}

/* Hero Section */
.hero-mock {
    background: linear-gradient(120deg, #eef2f7 0%, #e0e9f0 100%);
    padding: 80px 0;
    text-align: center;
}

/* Responsive */
@media (max-width: 1199.98px) {
    .nav-link {
        font-size: 12px;
        margin: 0 4px;
    }

    .btn-apply {
        padding: 6px 16px;
        font-size: 12px;
    }
}

@media (max-width: 991.98px) {
    .nav-menu-desktop {
        display: none;
    }

    .hamburger-left {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /*.top-bar .contact-info {*/
    /*    display: none;*/
    /*}*/

    .btn-apply {
        padding: 7px 18px;
        font-size: 12px;
    }

    .logo-img {
        width: 55px;
        height: 55px;
    }

    .brand-text h1 {
        font-size: 18px;
    }

    .brand-text span {
        font-size: 11px;
    }
}

@media (max-width: 576px) {
    .logo-img {
        width: 45px;
        height: 45px;
    }

    .brand-text h1 {
        font-size: 14px;
    }

    .brand-text span {
        font-size: 9px;
    }

    .btn-apply {
        padding: 5px 12px;
        font-size: 10px;
    }
}



/* Main Section */


.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #000;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: 60px;
    margin-bottom: 20px;
}


.section-badge i{
    color:#fceeaa;
}



/* Category Tabs */
.category-tabs {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 12px;
    margin-bottom: 30px;
}

.category-tabs::-webkit-scrollbar {
    height: 4px;
}

.tab-btn {
    background: #f0dfdc;
    border: none;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    color: #2c3e42;
    transition: all 0.3s;
    white-space: nowrap;
    cursor: pointer;
}

.tab-btn.active {
    background: linear-gradient(145deg, #801222, #131515);
    color: white;
}

/* Swiper Container - Force exactly 2 cards visible */
.events-swiper-container {
    width: 100%;
    overflow: hidden;
    padding: 10px 0 30px;
}

.swiper-slide {
    height: auto;
}

/* Event Cards */
.event-card {
    background: white;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    height: 100%;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(244, 161, 0, 0.15);
}

.card-img-top {
    height: 400px;
    object-fit: cover;
    width: 100%;
}

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(15, 43, 61, 0.9);
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    color: white;
}

.event-date {
    background: #000;
    padding: 8px 12px;
    border-radius: 18px;
    text-align: center;
    min-width: 60px;
}

.event-date .day {
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
    color:#fff;
}

.event-date .month {
    font-size: 10px;
    font-weight: 700;
     color:#fff;
}

/* Announcements - Hover on each item pauses scroll */
.announcement-card {
    background: white;
    border-radius: 28px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #795548;
    overflow: hidden;
}

.announcement-header {
    padding: 20px 24px;
    border-bottom: 1px solid #eef2f6;
}

.pulse-icon {
    background: #79554820;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #795548;
    font-size: 22px;
}

/* Auto-scroll container */
.scroll-container {
    overflow: hidden;
    position: relative;
    max-height: 500px;
}

.scroll-list {
    animation: scrollUp 28s linear infinite;
}

@keyframes scrollUp {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

.announcement-item {
    padding: 16px 24px;
    border-bottom: 1px solid #f0f2f5;
    transition: all 0.2s;
    cursor: pointer;
}

.announcement-item:hover {
    background: #fefaf5;
    padding-left: 28px;
}

.announcement-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: #1e2a36;
    margin-bottom: 6px;
}

.announcement-meta {
    font-size: 11px;
    color: #795548;
    font-weight: 600;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.badge-new {
    background: #795548;
    color: white;
    font-size: 9px;
    padding: 2px 8px;
    border-radius: 20px;
}

.stats-widget {
    background: linear-gradient(125deg, #0f2b3d, #1a4a5f);
    border-radius: 28px;
    padding: 24px;
    color: white;
    margin-top: 24px;
}

.swiper-button-prev-custom,
.swiper-button-next-custom {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.swiper-button-prev-custom:hover,
.swiper-button-next-custom:hover {
    background: #795548;
    color: white;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }

    .announcement-item {
        padding: 12px 20px;
    }
}



@media (max-width: 991.98px) {
    .navbar-container {
        flex-wrap: nowrap;
    }

    .action-icons {
        flex-shrink: 0;
    }

    .brand-wrapper {
        flex: 1;
    }

    .hamburger-left {
        margin-right: 12px;
    }

    .btn-apply {
        font-size: 12px;
        padding: 7px 16px;
    }
}



.dropdown-toggle-icon {
    transition: transform 0.2s;
}

.rotated {
    transform: rotate(180deg);
}

.side-nav-link .dropdown-toggle-icon {
    margin-left: auto;
}

.btn-outline-secondary {
    border-color: #cbd5e1;
}

.btn-outline-secondary:hover {
    background: #795548;
    border-color: #795548;
    color: white;
}


/* ========== MODERN FOOTER DESIGN ========== */
.footer {
    background: linear-gradient(145deg, #2b050d 0%, #4a0d15 100%);
    color: #e2e8f0;
    margin-top: auto;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #795548, #ffcd7e, #795548);
}

.footer-widget {
    padding: 70px 0 40px;
}

.footer-logo {
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
    text-decoration: none;
    align-items: center;
}

.footer-logo img {
    height: 150px;
}

.footer-logo p {
    color: #fbeca1;
    font-size: 19px;
}

.footer-logo span {
    background: linear-gradient(135deg, #ffffff, #ffffff);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    font-size: 16px;
}

.footer-about-text {
    color: #fff;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 16px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
    font-size: 16px;
    text-decoration: none;
}

.footer-social a:hover {
    background: #f0dfdc;
    color: #760f18;
    transform: translateY(-5px);
}

.footer-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 28px;
    position: relative;
    padding-bottom: 12px;
    color: #ffffff;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #795548, #ffcd7e);
    border-radius: 3px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.footer-links a i {
    font-size: 12px;
    color: #f9eeaa;
    transition: transform 0.2s;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(6px);
}

.footer-links a:hover i {
    transform: translateX(4px);
}

.footer-contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #fff;
    line-height: 1.5;
}

.footer-contact-info li i {
    width: 32px;
    height: 32px;
    background: rgba(244, 161, 0, 0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fbeb9c;
    font-size: 14px;
    flex-shrink: 0;
    transition: all 0.3s;
}

.footer-contact-info li:hover i {
    background: #fbeb9c;
    color: #000;
    transform: scale(1.05);
}

.newsletter-form {
    margin-top: 20px;
    position: relative;
}

.newsletter-input {
    width: 100%;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    color: #ffffff;
    font-size: 14px;
    transition: all 0.3s;
    outline: none;
}

.newsletter-input:focus {
    border-color: #fbeb9c;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 3px rgba(244, 161, 0, 0.2);
}

.newsletter-input::placeholder {
    color: #8aaec0;
}

.newsletter-btn {
    position: absolute;
    right: 5px;
    top: 5px;
    background: #000;
    border: none;
    padding: 9px 20px;
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s;
    cursor: pointer;
}

.newsletter-btn:hover {
    background: linear-gradient(95deg, #e08e00, #795548);
    transform: scale(0.98);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px 0;
    text-align: center;
    font-size: 13px;
    color: #8aaec0;
    background-color: #180802;
}

.footer-bottom a {
    color: #a5c4de;
    text-decoration: none;
    font-weight: 500;
}

.footer-bottom a:hover {
    text-decoration: none;
}

/* Responsive */
@media (max-width: 991.98px) {
    .nav-menu-desktop {
        display: none;
    }

    .hamburger-left {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .brand-wrapper {
        display: flex;
        align-items: center;
    }

    .footer-widget {
        padding: 50px 0 30px;
    }

    .footer-title {
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .newsletter-btn {
        position: relative;
        right: 0;
        top: 10px;
        width: 100%;
    }

    .newsletter-input {
        text-align: center;
    }
}

/* Swiper Container Styling */
.programs-swiper .swiper-slide {
    background: transparent;
    padding: 0px 0 0px 0;
    height: auto;
}

.programs-swiper {
    padding: 20px 10px 50px 10px;
    overflow: hidden;
}

.program-card {
    background: #ffffff;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid rgba(244, 161, 0, 0.1);
}

.program-img img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.program-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 45px -15px rgba(0, 0, 0, 0.15);
    border-color: rgba(244, 161, 0, 0.3);
}

.card-gradient-bg {
    height: 8px;
    background: linear-gradient(90deg, #795548, #ffcd7e, #795548);
}

.card-content {
    padding: 32px 28px 32px;
    flex: 1;
}

.program-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #fff6e5, #fff0e0);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s;
}

.program-card:hover .program-icon {
    transform: scale(1.05);
    background: linear-gradient(135deg, #79554820, #79554810);
}

.program-icon i {
    font-size: 36px;
    color: #795548;
}

.program-title {
    font-size: 26px;
    font-weight: 700;
    color: #0f2b3d;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.program-subtitle {
    font-size: 14px;
    font-weight: 600;
    color: #795548;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    display: inline-block;
}

.program-description {
    color: #5a6e7c;
    line-height: 1.65;
    font-size: 14px;
    margin-bottom: 24px;
}

.btn-view {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #795548;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    padding: 8px 0;
    transition: all 0.3s;
    border-bottom: 2px solid transparent;
}

.btn-view i {
    transition: transform 0.3s;
}

.btn-view:hover {
    color: #e08e00;
    gap: 14px;
}

.btn-view:hover i {
    transform: translateX(6px);
}

/* Swiper Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
    width: 48px;
    height: 48px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
    color: #795548;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #795548;
    box-shadow: 0 12px 25px rgba(244, 161, 0, 0.3);
}

.swiper-button-next:hover:after,
.swiper-button-prev:hover:after {
    color: white;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #cbd5e1;
    opacity: 1;
    transition: all 0.3s;
}

.swiper-pagination-bullet-active {
    background: #795548;
    width: 28px;
    border-radius: 10px;
}


.activities-section {
    padding: 0px 0;
    position: relative;
}


/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 56px;
}


.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #25130c 0%, #cf9d8b 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title span {
    background: linear-gradient(135deg, #795548, #ffc857);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    color: #475569;
    font-size: 1.1rem;
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Modern Grid Layout - 3 columns */

/* Activity Card with Image */
.activity-card {
    background: white;
    border-radius: 28px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(244, 161, 0, 0.12);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.activity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 45px -18px rgba(0, 0, 0, 0.2);
    border-color: rgba(244, 161, 0, 0.3);
}

/* Card Image Styling */
.card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.activity-card:hover .card-image {
    transform: scale(1.03);
}

.image-wrapper {
    position: relative;
    overflow: hidden;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
    pointer-events: none;
}

/* Card Content */
.card-content {
    padding: 24px 24px 28px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: 1.45rem;
    font-weight: 800;
    color: #000;
    letter-spacing: -0.3px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-title i {
    color: #7b0f1b;
    font-size: 1.3rem;
}

.card-description {
  font-size: clamp(15px, 1.3vw, 16px);
  display: -webkit-box;
  -webkit-line-clamp: 4; /* number of lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-subtitle {
    font-size: 14px;
    font-weight: 600;
    color: #795548;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    display: inline-block;
}

.text-muted {
    --bs-text-opacity: 1;
    color: #7b0f1b !important;
}

.theme-btn {
    position: relative;
    display: inline-block;
    padding: 14px 30px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: #7b0f1b;
    border: none;
    border-radius: 6px;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s ease;
}

.theme-btn i {
    padding: 0px 0px 0px 10px;
}

/* Circle fill effect */
.theme-btn::before {
    content: "";
    position: absolute;
    width: 300%;
    height: 300%;
    background: #000;
    /* hover color */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    border-radius: 50%;
    transition: transform 0.6s ease;
    z-index: -1;
}

/* Hover effect */
.theme-btn:hover::before {
    transform: translate(-50%, -50%) scale(1);
}


.theme-btn:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

a {
    text-decoration: none !important;
}


/* Responsive */
@media (max-width: 1024px) {
    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }

    .section-title {
        font-size: 2.3rem;
    }
}

@media (max-width: 768px) {
    .activities-section {
        padding: 60px 0;
    }

    .activities-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .card-image {
        height: 180px;
    }

    .card-content {
        padding: 20px;
    }

    .section-title {
        font-size: 1.9rem;
    }

    .card-title {
        font-size: 1.3rem;
    }
}

/*@media (max-width: 480px) {*/
/*    .container {*/
/*        padding: 0 20px;*/
/*    }*/
/*}*/

/* Animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.activity-card {
    animation: fadeUp 0.6s ease forwards;
    opacity: 0;
}


.row > .col-lg-4:nth-child(6) .activity-card { 
    position: relative;
    background-image: url(../assets/img/events/cta-img.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    padding: 40px 30px;
}

.row > .col-lg-4:nth-child(6) .activity-card::before {
    content: "";
    /* 🔥 REQUIRED */
    position: absolute;
    top: 0;
    left: 0;
    background-color: #000;
    opacity: 0.7;
    height: 100%;
    width: 100%;
}


.aa-logo img {
    height: 150px;
    margin-bottom: 17px;
    animation: pulse 2s infinite, bounce-subtle 6s ease-in-out infinite;
    border-radius: 50%;
}

/* Glow Animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgb(255 245 200);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(139, 26, 26, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(139, 26, 26, 0);
    }
}

@keyframes bouncesubtle {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.desc h2 {
    color: #fcefc3;
    font-size: 27px;
    font-weight: 600;
}

.desc p {
    color: #fff;
    font-size: 16px;
}

.cta-btn {
    background: linear-gradient(178deg, #791020, #faeca0);
    display: inline-block;
    text-decoration: none !important;
    padding: 12px 23px;
    border-radius: 12px;
}

.cta-btn a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 20px;
}


/* section container */
.testimonial-section {
    width: 100%;
    padding: 3rem 0;
}

/* section header */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #0a1c2f;
    margin-bottom: 0.5rem;
}

.section-header p {
    color: #5b6f82;
    font-size: 1rem;
}

/* modern card container */
.testimonial-card {
    background: #dbbec175;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 28px 40px -16px rgba(0, 0, 0, 0.12);
}

/* quote icon */
.quote-icon {
    color: #3c0911;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* rating stars */
.rating {
    margin-bottom: 1rem;
}

.rating i {
    color: #f5b042;
    font-size: 0.9rem;
    margin-right: 2px;
}

/* testimonial text */
.testimonial-text {
    font-size: 1rem;
    line-height: 1.5;
    color: #1e2a3a;
    margin-bottom: 1.5rem;
    font-weight: 450;
}

/* author section */

.author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid #400a123d;
    padding-top: 1.25rem;
}


.avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    flex-shrink: 0;
    background: linear-gradient(135deg, #1e2b3c, #2c3e4e);
}

.avatar img {
    height: 50px;
    width: 50px;
    border: 1px solid #000;
    border-radius: 50%;
}

/* different avatar colors */
.avatar-1 {
    background: linear-gradient(135deg, #1e3c2c, #2a4a35);
}

.avatar-2 {
    background: linear-gradient(135deg, #3c2e1e, #4a3a25);
}

.avatar-3 {
    background: linear-gradient(135deg, #2e2e5e, #3d3d7a);
}

.avatar-4 {
    background: linear-gradient(135deg, #8b5a2b, #a06e3a);
}

.avatar-5 {
    background: linear-gradient(135deg, #1e4a6b, #2c5a7a);
}

.avatar-6 {
    background: linear-gradient(135deg, #6b2e5e, #7a3a6a);
}

.author-details h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #0a1c2f;
    margin-bottom: 0.2rem;
}

.author-details p {
    font-size: 0.8rem;
    color: #5b6f82;
    margin-bottom: 0;
}

/* Swiper container */
.testimonialSwiper {
    width: 100%;
    padding: 0.5rem 0 3rem 0;
}

.swiper-slide {
    height: auto;
}

/* Swiper navigation buttons */
.swiper-button-prev,
.swiper-button-next {
    width: 42px;
    height: 42px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.2s ease;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 1.1rem;
    font-weight: bold;
    color: #2c3e4e;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: #ffffff;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    transform: scale(1.05);
}

/* Pagination bullets */
.swiper-pagination-bullet {
    background: #cbd5e1;
    opacity: 0.7;
    width: 8px;
    height: 8px;
    margin: 0 6px !important;
}

.swiper-pagination-bullet-active {
    background: #1e2b3c;
    opacity: 1;
    width: 24px;
    border-radius: 6px;
}

.swiper-pagination {
    bottom: 0px !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .testimonial-section {
        padding: 2rem 0;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }

    .swiper-button-prev,
    .swiper-button-next {
        width: 36px;
        height: 36px;
    }

    .swiper-button-prev:after,
    .swiper-button-next:after {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {

    .swiper-button-prev,
    .swiper-button-next {
        display: none;
    }
}

.principal-section {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
}

.message-card {
    background: #ffffff;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.message-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.2);
}

/* Left Column */
.principal-image-wrapper {
    position: relative;
    height: 100%;
    min-height: 500px;
    background: linear-gradient(135deg, #801222 0%, #0b0405 100%);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.principal-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../assets/img/faculty/prp.webp') center/cover;
    opacity: 0.15;
    z-index: 0;
}


.image-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.principal-photo {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
    object-fit: cover;
    background: #f0f0f0;
}

.principal-name {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.principal-title {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    font-weight: 400;
}


.mini-quote {
    font-style: italic;
    font-size: 0.95rem;
    opacity: 0.85;
    max-width: 280px;
    margin: 0 auto;
}

/* Right Column */
.message-content {
    padding: 3rem;
    background: white;
}

.quote-block {
    background: #f8f9fa;
    padding: 1.8rem;
    border-radius: 1rem;
    margin: 1.8rem 0;
    border-left: 4px solid #f8ed97;
    font-style: italic;
    font-size: 1.1rem;
    color: #000;

}

.quote-block i {
    color: #82323d;
    margin-right: 0.5rem;
}

.signature-section {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid #e9ecef;
}

.signature {
    font-size: 1.8rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 0.25rem;
}

.signature-line {
    font-size: 0.85rem;
    color: #6c757d;
}

/* Responsive */
@media (max-width: 992px) {
    .message-content {
        padding: 2rem;
    }

    .greeting {
        font-size: 1.8rem;
    }

    .message-text {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .principal-image-wrapper {
        min-height: 400px;
    }

    .principal-photo {
        width: 140px;
        height: 140px;
    }

    .principal-name {
        font-size: 1.5rem;
    }

    .greeting {
        font-size: 1.5rem;
    }

    .message-content {
        padding: 1.8rem;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.message-card {
    animation: fadeInUp 0.6s ease-out;
}


.ngo-bg {
    background-color: #fcea98;
}

.ngo-text {
    color: #fcea98;
}

.ngo-border {
    border-color: #fcea98;
}

.btn-ngo {
    background-color: #7b0f1b;
    color: #ffffff;
    border: none;
    font-weight: 600;
    font-size: 17px;
    padding: 14px 30px;
    border-radius: 9px;
    transition: all 0.25s ease-in-out;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.02);
}

.btn-ngo:hover {
    background-color: #000;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 20px -10px rgba(0, 0, 0, 0.12);
}

.btn-ngo-outline {
    background: transparent;
    border: 2px solid #7a0f1c;
    color: #2d2a24;
    font-weight: 600;
    border-radius: 40px;
    padding: 0.5rem 1.4rem;
    transition: all 0.2s;
}


.btn-ngo-outline:hover {
    background: #070705;
    color: #ffffff;
    transform: translateY(-2px);
}

/* blog card styling */
.blog-card {
    border: none;
    border-radius: 28px;
    background: white;
    transition: transform 0.2s ease, box-shadow 0.25s ease;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 12px 26px -12px rgba(0, 0, 0, 0.08);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 36px -14px rgba(0, 0, 0, 0.12);
}

.blog-img {
    height: 210px;
    object-fit: cover;
    width: 100%;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-img {
    transform: scale(1.02);
}

.blog-category {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: #7b0e1d26;
    display: inline-block;
    padding: 4px 12px;
    border-radius: 30px;
    color: #2c2b28;
}

.blog-title {
    font-weight: 600;
    font-size: 1.35rem;
    line-height: 1.4;
    margin: 0.75rem 0 0.5rem;
    color: #1f1e2a;
}

.blog-excerpt {
    color: #4b4a44;
    font-size: 0.95rem;
    line-height: 1.45;
}

.blog-meta {
    font-size: 0.8rem;
    color: #7a7568;
    border-top: 1px solid #f0ede5;
    padding-top: 0.9rem;
    margin-top: 0.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.highlight-ngo {
    color: #b27d40;
    background: linear-gradient(120deg, #fcea98 0%, #fcea98 40%, transparent 60%);
    background-repeat: no-repeat;
    background-size: 100% 30%;
    background-position: 0 85%;
    display: inline-block;
    padding: 0 0.1rem;
}

/* ngo callout row */
.ngo-impact-card {
    background: #2f2e29;
    border-radius: 36px;
    color: white;
    padding: 2rem 2rem;
    background-image: radial-gradient(circle at 10% 20%, rgba(252, 234, 152, 0.12) 0%, rgba(0, 0, 0, 0.2) 90%);
}

.stat-number {
    font-size: 2.6rem;
    font-weight: 800;
    color: #fcea98;
    line-height: 1;
}

.footer-ngo {
    background: #1f1e1a;
    color: #dbd7cc;
    border-radius: 2rem 2rem 0 0;
}

.btn-link-custom {
    color: #fcea98;
    font-weight: 500;
}

.btn-link-custom:hover {
    color: #ffe7a3;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.9rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .blog-title {
        font-size: 1.2rem;
    }
}

/*------------about us---------------*/
.about-container{
    position:relative;
}
.image-gallery {
    padding: 1.5rem;
    height: 100%;
    min-height: 450px;
    position:relative;

}

.gallery-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    height: 60%;
}

.gallery-bottom {
    height: 38%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
}

.gallery-img {
    position: relative;
    border-radius: 12px;
    cursor: pointer;
}

.gallery-img img {
    /* width: 100%;
    height: 100%; */
    object-fit: cover;
    transition: transform 0.5s ease;

}

.gallery-img:hover::after {
    opacity: 1;
}

.main-large {
    grid-row: span 2;
}

.main-large img {
    height: 249px;
    border-radius: 80px 80px 0 80px;
    position: relative;
}

.main-large img ::before {
    content: "";
    position: absolute;
    left: -15px;
    bottom: -15px;
    width: 100%;
    height: 100%;
    border: 5px solid rgb(255, 196, 0);
    border-radius: 30% 0 30% 30%;
}


/* Wrapper */
.spin-border {
    position: relative;
    display: inline-block;
    border-radius: 50%;
}

/* Image */
.gallery-img .img2 {
    height: 244px;
    width: 244px;
    border-radius: 50%;
    display: block;
    padding:7px;
}

/* Spinning dashed border */
.spin-border::before {
    content: "";
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    border: 2px dashed #7e0e1e;
    animation: spinBorder 40s linear infinite;
}

/* Animation */
@keyframes spinBorder {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.gallery-img .img3 {
    border-radius: 0px 80px 80px 80px;
    height: 173px;
}

.year-badge {
       position: absolute;
    bottom: 24%;
    left: 18%;
    background: #bf88903d;
    color: #821222;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.year-number {
    font-size: 2rem;
    font-weight: bold;
    display: inline-block;
    min-width: 60px;
}

.year-text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Content Section */
.content-section {
    padding: 2.5rem;
}


.description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-card:hover {
       background: #f0dfdc;
    transform: translateX(5px);
}

.feature-icon {
    width: 45px;
    height: 45px;
      background: #7b0f1b;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fffaf4;
    padding: 12px;
    font-size: 1.2rem;
}

.feature-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
    color: #333;
}

.feature-info p {
    font-size: 0.75rem;
    color: #6c757d;
    margin: 0;
}

/* Contact & Counter */
.contact-counter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}



.contact-info {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: #fceeaa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #821222;
    font-size: 1.2rem;
}

.contact-text h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
    color: #821222;
}

.contact-text p {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    color: #333;
}

.counter-box {
    text-align: center;
    background: #821222;
    color: #fceeaa;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    min-width: 150px;
}

.counter-number {
    font-size: 2rem;
    font-weight: bold;
    display: inline-block;
    min-width: 60px;
}

.counter-text {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 992px) {
    .image-gallery {
        min-height: 400px;
    }

    .gallery-main {
        height: 55%;
    }

    .gallery-bottom {
        height: 40%;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .contact-counter {
        flex-direction: column;
        text-align: center;
    }

    h1 {
        font-size: 1.8rem;
    }

    .content-section {
        padding: 1.5rem;
    }

    .image-gallery {
        padding: 1rem;
        gap: 0.8rem;
    }

    .gallery-main {
        gap: 0.8rem;
    }

    .gallery-bottom {
        gap: 0.8rem;
    }

    .year-badge {
        bottom: 15px;
        left: 15px;
        padding: 0.7rem 1.2rem;
    }

    .year-number {
        font-size: 1.5rem;
    }
}


/*---------start faqs------------*/
.faq-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}


/* FAQ Accordion Styling */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(244, 161, 0, 0.1);
}

.faq-item:hover {
    box-shadow: 0 12px 24px -12px rgba(0, 0, 0, 0.1);
    border-color: rgba(244, 161, 0, 0.25);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    transition: background 0.2s ease;
    gap: 16px;
}

.faq-question h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #0f2b3d;
    line-height: 1.4;
    flex: 1;
    letter-spacing: -0.2px;
}

.faq-icon {
    width: 32px;
    height: 32px;
    background: #fef5ea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #795548;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    background: #795548;
    color: white;
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 24px;
    border-top: 1px solid transparent;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px 24px;
    border-top-color: #f0f2f5;
}

.faq-answer p {
    color: #475569;
    line-height: 1.65;
    font-size: 0.95rem;
    margin-top: 16px;
}

/* Optional decorative elements */
.faq-decoration {
    position: absolute;
    top: 20%;
    right: -5%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(244, 161, 0, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.faq-decoration-left {
    position: absolute;
    bottom: 10%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(244, 161, 0, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Animation for items */
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-item {
    animation: fadeSlideUp 0.5s ease forwards;
    opacity: 0;
}


/* Responsive */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .faq-question {
        padding: 16px 20px;
    }

    .faq-question h3 {
        font-size: 0.95rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 18px 20px;
    }

    .faq-answer p {
        font-size: 0.9rem;
    }

    .faq-icon {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    /*.container {*/
    /*    padding: 0 20px;*/
    /*}*/

    .faq-question h3 {
        font-size: 0.9rem;
    }
}

/*-----------contact form css----------------------*/
.enquiry-form {
    background: linear-gradient(45deg, #360810a3, #030303), url('../assets/img/events/hs.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 60px 0px;
        border-top: 3px solid #f9b328;
            border-bottom: 3px solid #f9b328;
}

/* Left Panel - modern gradient + glass touch */
.contact-left {
    background: linear-gradient(135deg, #030303, #b22222);
    position: relative;
    z-index: 1;
    backdrop-filter: blur(2px);
}

.icon-circle {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.icon-circle i {
    color: #faefa4;
}

.contact-left .d-flex:hover .icon-circle {
    background: rgba(255, 255, 255, 0.35);
    transform: scale(1.05);
}
.contact-left .para-left{
    font-size:17px;
    
}
/* Form Wrapper (card effect) */
.form-wrapper {
    background: #fff;
    transition: transform 0.2s;
}

/* Modern input groups with icons & hover effects */
.input-icon-group {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 16px;
    color: #9e2a2a;
    font-size: 1.2rem;
    transition: all 0.25s;
    z-index: 2;
    pointer-events: none;
}

.enquiry-form  .form-control-icon,
.enquiry-form  .form-select-icon {
    padding-left: 48px;
    border-radius: 14px;
    border: 1.5px solid #e9ecef;
    background-color: #fff;
    transition: all 0.25s ease;
    font-weight: 500;
}

.form-control-icon:focus,
.form-select-icon:focus {
    border-color: #b22222;
    box-shadow: 0 0 0 4px rgba(178, 34, 34, 0.12);
    outline: none;
}

/* hover effect on input fields */
.form-control-icon:hover,
.form-select-icon:hover {
    border-color: #c94b4b;
    background-color: #fffaf7;
    transform: translateY(-1px);
}

/* textarea specific */
textarea.form-control-icon {
    padding-top: 12px;
}

/* star rating modern interactive */
.stars {
    display: flex;
    gap: 10px;
    align-items: center;
}

.stars i {
    font-size: 28px;
    color: #ccc;
    cursor: pointer;
    transition: all 0.2s ease;
}

.stars i:hover,
.stars i.active {
    color: #f4b400;
    transform: scale(1.18);
    text-shadow: 0 2px 8px rgba(244, 180, 0, 0.3);
}

.form-check-input:checked {
    background-color: #b22222;
    border-color: #b22222;
}

.form-check-label a:hover {
    text-decoration: underline;
}

/* Submit button with gradient and hover effect */
.submit-btn {
    background: linear-gradient(135deg, #8b0000, #b22222);
    color: #fff;
    padding: 14px;
    border: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    letter-spacing: 0.3px;
}



.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px -8px rgba(139, 0, 0, 0.4);
    background: linear-gradient(135deg, #a01212, #c43b3b);
}

/* progress bars modern */
.progress-box {
    width: 100%;
    max-width: 100%;
    color: #fff;
}

.progress-item {
    margin-bottom: 18px;
}

.progress-title {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
}

/* Background Track */
.progress {
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    overflow: hidden;
}

/* Actual Bar */
.progress-bar {
    height: 100%;
    background: #000;
    border-radius: 10px;
    width: 0;
    animation: load 10s ease forwards;
}

/* Animation */
@keyframes load {
    to {
        width: var(--value);
    }
}

/* ===== GLOBAL FIX ===== */


/* quote hover effect */
.fst-italic {
    transition: all 0.2s;
    border-left: 3px solid rgba(255, 255, 240, 0.6);
    padding-left: 12px;
}

.fst-italic:hover {
    border-left-color: #ffcd7e;
    transform: translateX(4px);
}

/* label styling */
.form-label-custom {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: #2c2e3a;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-label-custom i {
    color: #b22222;
    font-size: 1.1rem;
}

/* responsive adjustments */
@media (max-width: 768px) {
    .enquiry-form {
        padding: 30px 15px;
    }

    .input-icon {
        left: 14px;
        font-size: 1rem;
    }

    .form-control-icon,
    .form-select-icon {
        padding-left: 42px;
    }

    .stars i {
        font-size: 24px;
    }
}

/* subtle animation on form load */
.form-wrapper {
    animation: fadeSlideUp 0.5s ease-out;
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* extra hover effect for left panel contact items */
.contact-item-hover {
    transition: all 0.2s;
    border-radius: 16px;
    padding: 6px 0;
}

.contact-item-hover:hover {
    background: rgba(255, 255, 240, 0.08);
    transform: translateX(5px);
}

.enquiry-form .section-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: #fff;
    background: unset !important;
    background-clip: unset !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;

}


/* school*/


/* hero section with campus stats */
.campus-hero {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.campus-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
}

.stat-card {
    background: rgba(255, 248, 235, 0.8);
    backdrop-filter: blur(4px);
    padding: 0.8rem 1.8rem;
    border-radius: 80px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(139, 44, 26, 0.15);
}

.stat-card i {
    font-size: 1rem;
    color: #070706;
}

.stat-card span {
    font-size: 1rem;
    color: #3e2c1f;
}

.stat-card strong {
    font-size: 1.2rem;
    color: #8b2c1a;
    margin-right: 6px;
}


.house-card {
    background: #ffffff;
    border-radius: 2rem;
    padding: 2rem 1.5rem 1.8rem;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    box-shadow: 0 12px 28px -10px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(139, 44, 26, 0.08);
    text-align: center;
    position: relative;
    backdrop-filter: blur(2px);
    height:100%;
}

.house-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 36px -16px rgba(90, 46, 26, 0.2);
    border-color: rgba(139, 44, 26, 0.25);
    background: #fffef9;
}

/* icon container with distinct gradient */
.icon-wrapper {
    width: 90px;
    height: 90px;
    background: linear-gradient(145deg, #996307, #0d0c0b5e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    transition: 0.2s;
    box-shadow: 0 6px 14px rgba(139, 44, 26, 0.12);
}

.house-card:hover .icon-wrapper {
    transform: scale(1.02);
    background: linear-gradient(145deg, #f7de7f5e, #f7de7f5e);
}

.icon-wrapper i {
    font-size: 3rem;
    color: #7c0f1d;
    transition: 0.2s;
}

.house-card:hover .icon-wrapper i {
    transform: scale(1.05);
    color: #7c0f1d;
}

.house-name {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.3px;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #191412, #8b3c24);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.house-subtitle {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000;
    margin-bottom: 1.2rem;
    display: inline-block;
    border-bottom: 2px dotted #e7cfbf;
    padding-bottom: 4px;
}

.house-description {
    color: #4c3b2f;
    font-size: 0.92rem;
    line-height: 1.5;
    font-weight: 500;
    padding: 0 0.2rem;
}

/* Minimal decorative elements */


/* subtle emblem */
.emblem-dot {
    position: absolute;
    bottom: 18px;
    right: 20px;
    font-size: 0.7rem;
    color: #e2cbbc;
}

/* Responsive refinements */
@media (max-width: 768px) {
    .aryavart-container {
        padding: 2rem 1rem 3rem;
    }

    .campus-hero h1 {
        font-size: 2.2rem;
    }

    .stat-card {
        padding: 0.5rem 1.2rem;
    }

    .stat-card i {
        font-size: 1.3rem;
    }

    .house-name {
        font-size: 1.5rem;
    }

    .icon-wrapper {
        width: 75px;
        height: 75px;
    }

    .icon-wrapper i {
        font-size: 2.3rem;
    }
}

/* additional leaf motif (minimal) */
.leaf-accent {
    text-align: center;
    margin-top: 3rem;
    opacity: 0.5;
    font-size: 0.75rem;
    color: #b58a6b;
    letter-spacing: 2px;
}

hr {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e2cdbc, transparent);
    margin: 1.2rem 0;
}


/*---------------admission process css----------------------------------*/

.bread-crumbs {
    background: linear-gradient(98deg, #000000, #07060661), url(../assets/img/events/sc-building.webp);
    padding: 85px 0px;
    background-size: cover;
    background-position: center 105%;
    background-attachment: fixed;
}

/* subtle brand gradient */
.navbar-brand-custom {
    font-weight: 700;
    letter-spacing: -0.3px;
    background: linear-gradient(87deg, #fdf3b8 0%, #fae686 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subhead {
    font-size: 1.1rem;
    color: #000;
    border-left: 4px solid #7a111e;
    padding-left: 1rem;
    background: #eef5e9;
    border-radius: 0 16px 16px 0;
    display: inline-block;
    max-width:73%;
}

.step-card {
    transition: all 0.2s ease;
    border: none;
    border-radius: 28px;
    background: #fae6e1;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 30px -12px rgba(0, 32, 0, 0.12);
}



.btn-primary-custom {
    color: #fff;
    background: #7b0f1b;
    border: none;
    border-radius: px;
    padding: 10px 26px;
    font-weight: 600;
    transition: 0.2s;
}

.btn-primary-custom:hover {
    background: #000;
    color:#fff;
    transform: scale(1.02);
}

.btn-outline-custom {
    border: 1.5px solid #7b0f1b;
    color: #7b0f1b;
    border-radius: 40px;
    font-weight: 600;
    background: white;
}

.btn-outline-custom:hover {
    background: #7b0f1b;
    color: white;
}

.card-action {
    border-radius: 32px;
    border: none;
    background: #ffffffdd;
    backdrop-filter: blur(0px);
    box-shadow: 0 12px 28px -8px rgba(0, 32, 0, 0.08);
}

.card-action h4{
color:#7b0f1a;
}

.card-action .ic {
    color: #78101a;
    font-size: 30px;
    height: 40px;
    width: 40px;
    padding: 6px;
}
.bg-success1{
    background-color: #dbbec1;
}
.info-card {
    background: #ffffff;
    border-radius: 28px;
    transition: all 0.2s;
}
.info-card h3{
color:#801222;
}
.info-card i{
    color: #730f19;
    background: #dbbec1;
    padding: 12px;
    border-radius: 12px;
}
.info-card a{
    color:#000
}

.footer-link {
    text-decoration: none;
    color: #2c5e3a;
    font-weight: 500;
}

.footer-link:hover {
    color: #0f3d22;
    text-decoration: underline;
}

hr.divider {
    opacity: 0.4;
    margin: 2rem 0;
}

.badge-enquiry {
    background: #e9f3e6;
    color: #1f5438;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 40px;
}

@media (max-width: 768px) {
    .step-card {
        margin-bottom: 1rem;
    }
}



/*----------------------------------------------------*/

.scholarship .form-container {
      margin: 0 auto;
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(0px);
      border-radius: 2.5rem;
      box-shadow: 0 30px 50px -20px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(165, 42, 42, 0.08);
      overflow: hidden;
      transition: all 0.3s ease;
    }

    /* modern header with #a52a2a */
    .scholarship .hero-header {
      background: #a52a2a;
      background-image: radial-gradient(circle at 10% 30%, rgba(255,215,150,0.12) 2%, transparent 2.5%);
      background-size: 28px 28px;
      padding: 2rem 2.5rem 2rem 2.5rem;
      color: white;
      position: relative;
    }

    .scholarship .hero-header::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 6px;
      background: linear-gradient(90deg, #ffcd7e, #e7b45a, #ffcd7e);
    }

    .scholarship .hero-header h1 {
      font-size: 2.1rem;
      font-weight: 800;
      letter-spacing: -0.5px;
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 14px;
      margin-bottom: 0.5rem;
    }

    .scholarship .hero-header h1 i {
      font-size: 2rem;
      filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    }

   .scholarship .badge-new {
      background: rgba(255,255,240,0.2);
      backdrop-filter: blur(4px);
      padding: 0.25rem 1rem;
      border-radius: 60px;
      font-size: 0.8rem;
      font-weight: 500;
      letter-spacing: 0.3px;
      border: 1px solid rgba(255,255,200,0.3);
    }

    .scholarship .hero-header p {
      font-size: 1rem;
      opacity: 0.92;
      max-width: 85%;
      margin-top: 0.6rem;
      font-weight: 400;
    }

    /* modern stats/about row */
   .scholarship .stats-row {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      background: white;
      margin: 1.5rem 2rem 0 2rem;
      padding: 0.8rem 1.5rem;
      border-radius: 60px;
      box-shadow: 0 6px 14px rgba(0, 0, 0, 0.03), 0 0 0 1px #f0e3d8;
    }

    .scholarship .scholarship-highlight {
      background: #a52a2a10;
      color: #a52a2a;
      font-weight: 700;
      padding: 0.3rem 1rem;
      border-radius: 40px;
      font-size: 0.85rem;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

   .scholarship .scholarship-highlight i {
      font-size: 1rem;
    }

    .scholarship .test-badge {
      display: flex;
      gap: 12px;
      color: #4f3e2e;
      font-size: 0.85rem;
      font-weight: 500;
    }

    /* form styling modern */
   .scholarship form {
      padding: 2rem 2.5rem 2rem 2.5rem;
    }


    .full-width {
      grid-column: span 2;
    }

    .scholarship .input-group {
      display: flex;
      flex-direction: column;
      gap: 0.45rem;
    }

   .scholarship .input-group label {
      font-weight: 600;
      font-size: 0.85rem;
      letter-spacing: 0.2px;
      color: #2b241e;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .scholarship .required-star {
      color: #a52a2a;
      font-size: 1rem;
      font-weight: 700;
    }

    .scholarship input, .scholarship select, .scholarship textarea {
      font-family: 'Inter', sans-serif;
      padding: 0.85rem 1rem;
      border: 1.5px solid #e9e0d6;
     
      font-size: 0.9rem;
      transition: all 0.2s;
      background: #ffffff;
      outline: none;
      width: 100%;
    }

    .scholarship input:focus, .scholarship select:focus, .scholarship textarea:focus {
      border-color: #a52a2a;
      box-shadow: 0 0 0 4px rgba(165, 42, 42, 0.12);
    }

    /* file upload modern */
    .scholarship .file-upload-area {
      border: 1.5px dashed #cfc4b6;
      background: #fefcf9;
      border-radius: 20px;
      padding: 0.6rem 1rem;
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
      transition: 0.2s;
    }
   .scholarship .file-upload-area:hover {
      border-color: #a52a2a;
      background: #fffaf5;
    }

   .scholarship .file-hint {
      font-size: 0.7rem;
      color: #8f7a64;
      margin-top: 5px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    /* info card */
   .scholarship  .info-cards {
      background: #fef6ef;
      border-radius: 28px;
      padding: 1.3rem 1.6rem;
      margin: 1.6rem 0 1rem;
      border: 1px solid #ffdec2;
      transition: 0.2s;
    }

    .scholarship .info-cards h4 {
      color: #a52a2a;
      font-weight: 800;
      margin-bottom: 1rem;
      font-size: 1rem;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .scholarship .info-list-modern {
      display: flex;
      flex-wrap: wrap;
      gap: 0.7rem 1.8rem;
      list-style: none;
    }

    .scholarship .info-list-modern li {
      font-size: 0.85rem;
      display: flex;
      align-items: center;
      gap: 8px;
      background: white;
      padding: 0.3rem 1rem 0.3rem 0.8rem;
      border-radius: 40px;
      box-shadow: 0 1px 2px rgba(0,0,0,0.02);
    }

    .scholarship .info-list-modern li i {
      color: #a52a2a;
      font-size: 0.75rem;
    }

    /* declaration modern */
   .scholarship .declaration-modern {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      background: #ffffff;
      padding: 1rem 1.2rem;
      border-radius: 24px;
      margin: 1.8rem 0 1.4rem;
      border: 1px solid #f0e2d6;
      box-shadow: 0 2px 6px rgba(0,0,0,0.02);
    }

   .scholarship .declaration-modern input {
      width: 22px;
      height: 22px;
      margin-top: 2px;
      accent-color: #a52a2a;
    }

   .scholarship .btn-primary {
      background: #a52a2a;
      border: none;
      width: 100%;
      padding: 1rem;
      font-size: 1.05rem;
      font-weight: 700;
      color: white;
      border-radius: 60px;
      cursor: pointer;
      transition: all 0.25s;
      font-family: inherit;
      box-shadow: 0 8px 20px rgba(165, 42, 42, 0.25);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
    }

    .scholarship  .btn-primary:hover {
      background: #872222;
      transform: translateY(-2px);
      box-shadow: 0 15px 25px -8px rgba(165, 42, 42, 0.4);
    }

     .scholarship .contact-footer {
      text-align: center;
      padding: 1.2rem;
      background: #fbf8f3;
      border-top: 1px solid #ece1d6;
      font-size: 0.85rem;
      color: #4a3b2e;
    }

    .scholarship  .contact-footer a {
      color: #a52a2a;
      text-decoration: none;
      font-weight: 600;
      margin: 0 4px;
    }

   .scholarship .error-msg {
      color: #c0392b;
      font-size: 0.7rem;
      margin-top: 4px;
      display: none;
      font-weight: 500;
    }

    .scholarship  input.invalid,  .scholarship  select.invalid {
      border-color: #c0392b;
      background-color: #fff8f7;
    }

     .scholarship .custom-file-tag {
      background: #efebe5;
      border-radius: 40px;
      padding: 0.2rem 0.8rem;
      font-size: 0.75rem;
      color: #a52a2a;
    }

    .scholarship  .form-badge {
      background: #fef7e8;
      padding: 1rem 2rem;
      border-left: 6px solid #8b1a1ae6;
      margin: 1.2rem 1.8rem 0 1.8rem;
      border-radius: 20px;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      font-weight: 500;
    }

    .form-badge strong {
      color: #8b1a1ae6;
      font-weight: 700;
    }
    
    
    
    /* ---------------scholarship page css--------------- */
    @keyframes fadeSlideUp {
      0% { opacity: 0; transform: translateY(35px); }
      100% { opacity: 1; transform: translateY(0); }
    }
    @keyframes shimmer {
      0% { background-position: -200% 0; }
      100% { background-position: 200% 0; }
    }
    @keyframes floatSlow {
      0% { transform: translateY(0px); }
      50% { transform: translateY(-10px); }
      100% { transform: translateY(0px); }
    }
    @keyframes pulseBorder {
      0% { box-shadow: 0 0 0 0 rgba(165, 42, 42, 0.4); }
      70% { box-shadow: 0 0 0 15px rgba(165, 42, 42, 0); }
      100% { box-shadow: 0 0 0 0 rgba(165, 42, 42, 0); }
    }
    @keyframes subtleGlow {
      0% { opacity: 0.6; }
      100% { opacity: 1; text-shadow: 0 0 8px rgba(165,42,42,0.3); }
    }
    .animate-float {
      animation: floatSlow 4s ease-in-out infinite;
    }
    /* theme overrides */
    .bg-primary-custom { background: #a52a2a; }
    .text-primary-custom { color: #a52a2a; }
    .border-primary-custom { border-color: #a52a2a; }
    .btn-primary-custom {
      background: linear-gradient(115deg, #a52a2a, #7a1f1f);
      border: none;
      color: white;
      font-weight: 700;
      padding: 0.85rem 2rem;
      transition: all 0.3s ease;
      box-shadow: 0 8px 18px rgba(165, 42, 42, 0.25);
    }
    .btn-primary-custom:hover {
      transform: translateY(-3px);
      background: linear-gradient(115deg, #bc3f3f, #8b2b2b);
      box-shadow: 0 14px 26px rgba(165, 42, 42, 0.35);
      color: white;
    }
    .btn-outline-primary-custom {
      border: 2px solid #a52a2a;
      background: transparent;
      color: #a52a2a;
      font-weight: 600;
      transition: 0.2s;
    }
    .btn-outline-primary-custom:hover {
      background: #a52a2a;
      color: white;
      transform: translateY(-2px);
    }
   
    .badge-scholar {
      background: #fae6e1;
      color: #a52a2a;
      padding: 0.4rem 1.2rem;
      border-radius: 40px;
      font-weight: 700;
      font-size: 0.8rem;
    }
    .hero-scholarship {
      background: linear-gradient(115deg, #ffffff 0%, #fef3ef 100%);
      position: relative;
    }
    .hero-scholarship::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 60px;
      background: linear-gradient(to top, rgba(165,42,42,0.02), transparent);
      pointer-events: none;
    }
    .display-percent {
      font-size: 3.8rem;
      font-weight: 800;
      background: linear-gradient(125deg, #a52a2a, #b34b2c);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      line-height: 1;
    }
    .card-modern {
      border: none;
      border-radius: 1.75rem;
      background: white;
      transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
      box-shadow: 0 15px 30px -12px rgba(0, 0, 0, 0.08);
      height: 100%;
     
    }
   #eligibility .card-modern {
      border: none;
      border-radius: 1.75rem;
      background: white;
      transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
      box-shadow: 0 15px 30px -12px rgba(0, 0, 0, 0.08);
      height: 100%;
       border-bottom: 3px solid #d4c26d;
    border-top: 3px solid #d4c26d;
    }
    .card-modern:hover {
      transform: translateY(-8px);
      box-shadow: 0 28px 38px -14px rgba(165, 42, 42, 0.18);
    }
    .icon-circle-primary {
      width: 70px;
      height: 70px;
      background: var(--primary-soft);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      color: #a52a2a;
      transition: all 0.25s;
    }
    .card-modern:hover .icon-circle-primary {
      transform: scale(1.05);
      background: #f5ddd5;
    }
  .step-number {
        width: 44px;
    height: 44px;
    background: #79101a;
    color: #fef0bc;
    font-weight: 700;
    font-size: 1.3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    margin-bottom: 1rem;
}
    .card-modern:hover .step-number {
      background: #a52a2a;
      color: white;
    }
    .board-badge {
    background: #fbeca1;
    padding: 8px 8px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 12px;
    transition: all 0.2s;
    color: #010101;
}
    .board-badge:hover {
      background: #fae6e1;
      transform: translateY(-2px);
    }
    .pulse-btn {
      animation: pulseBorder 2.2s infinite;
    }
    footer {
      background: #1f1a17;
      color: #f0e2da;
    }
    hr {
      opacity: 0.2;
      background-color: #a52a2a;
    }
    @media (max-width: 768px) {
      .display-percent { font-size: 2.4rem; }
      .hero-scholarship { text-align: center; }
    }
    /* shimmer effect for special tag */
    .shimmer-badge {
      background: linear-gradient(90deg, #fae6e1 0%, #fff0ea 50%, #fae6e1 100%);
      background-size: 200% auto;
      animation: shimmer 2.5s infinite linear;
    }
    #apply-now i {
      color: #a02828;
    }

    #apply-now .list a {
      text-decoration: none !important;
      color: #000;
    }

    /* Glass Effect Card */
    .benefits .card-modern {
      background: rgb(128 18 34);
      /* transparent white */
      backdrop-filter: blur(12px);
      /* main glass effect */
      -webkit-backdrop-filter: blur(12px);
      /* safari support */
      border: 1px solid rgba(255, 255, 255, 0.3);
      border-radius: 20px;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease-in-out;
      position: relative;
      overflow: hidden;
    }

    /* Glow Hover Effect */
    .benefits .card-modern:hover {
      transform: translateY(-10px) scale(1.02);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    }

    /* Optional Shine Effect */
    .benefits .card-modern::before {
      content: "";
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
      transition: 0.6s;
    }

    .benefits .card-modern:hover::before {
      left: 100%;
    }

    /* Icon Styling */
    .benefits .icon-circle-primary {
      width: 70px;
      height: 70px;
      background: #fff;
      backdrop-filter: blur(10px);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .benefits .icon-circle-primary i {
      font-size: 26px;
      color: #000;
    }
  /*---------------------team css----------------------------*/
    .team-section {
            padding: 0px 0;
            position: relative;
            overflow: hidden;
        }

        .team-section::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background-size: cover;
            opacity: 0.3;
            bottom: 0;
            left: 0;
            pointer-events: none;
        }

        /* Team Card */
        .team-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            position: relative;
            height:100%;
        }

        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }

        .card-img-wrapper {
            position: relative;
            overflow: hidden;
            background: #000;
            height: 350px;
        }

        .team-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
            object-position:50% 20%;
        }

        .team-card:hover .team-img {
            transform: scale(1.1);
        }

        .card-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #7a0f1a45;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .team-card:hover .card-overlay {
            opacity: 1;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #667eea;
            text-decoration: none;
            transition: all 0.3s ease;
            transform: translateY(20px);
            opacity: 0;
        }

        .team-card:hover .social-link {
            transform: translateY(0);
            opacity: 1;
        }

        .social-link:hover {
            background: #764ba2;
            color: white;
            transform: rotate(360deg) scale(1.1);
        }

        .card-body {
            padding: 25px;
            text-align: center;
        }

        .member-name {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 5px;
            color: #000;
        }

        .member-designation {
           color: #7b0f1a;
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .member-info {
            display: flex;
            flex-direction: column;
            gap: 8px;
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px solid #e2e8f0;
        }

       .info-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 1rem;
    color: #000000;
}
       .info-item i {
    color: #7b0f1a;
    font-size: 16px;
       }
       
       

        /* ===== BLOG DETAILS BASE ===== */
        .blogdetails {
            background-color: #f9f9f9;
        }

        .blogdetails__article {
            background: #fff;
            padding: 25px;
            border-radius: 12px;
        }

        /* ===== IMAGE ===== */
        .blogdetails__image img,
        .blogdetails__content-img img {
            width: 100%;
            border-radius: 10px;
            object-fit: cover;
        }

        /* ===== META ===== */
        .blogdetails__meta span {
            font-size: 14px;
            color: #666;
        }

        .blogdetails__meta i {
            color: #7b0f1c;
            margin-right: 5px;
        }

        /* ===== TITLE ===== */
        .blogdetails__title {
            font-size: 32px;
            font-weight: 700;
            color: #7b0f1c;
            line-height: 1.3;
        }

        /* ===== CONTENT ===== */
        .blogdetails__content p {
            font-size: 16px;
            color: #444;
            line-height: 1.8;
            margin-bottom: 15px;
        }

        .blogdetails__content h4 {
            margin-top: 25px;
            font-weight: 600;
            color: #222;
        }

        /* ===== TABLE OF CONTENT ===== */
        .blogdetails__toc {
            background: #fff5f6;
            border-left: 4px solid #7b0f1c;
            padding: 15px 20px;
            border-radius: 8px;
        }

        .blogdetails__toc-title {
            font-weight: 600;
            color: #7b0f1c;
            margin-bottom: 10px;
        }

        .blogdetails__toc-list {
            list-style: none;
            padding-left: 0;
            margin: 0;
        }

        .blogdetails__toc-list li {
            margin-bottom: 6px;
        }

        .blogdetails__toc-list a {
            text-decoration: none;
            color: #444;
            font-size: 14px;
            transition: 0.3s;
        }

        .blogdetails__toc-list a:hover {
            color: #7b0f1c;
            padding-left: 5px;
        }

        /* ===== TAGS ===== */
        .blogdetails__tags-title {
            font-weight: 600;
            margin-bottom: 10px;
        }

        .blogdetails__tags-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .blogdetails__tags-list a {
            display: inline-block;
            padding: 6px 12px;
            background: #7b0f1c;
            color: #fff;
            font-size: 13px;
            border-radius: 20px;
            text-decoration: none;
            transition: 0.3s;
        }

        .blogdetails__tags-list a:hover {
            background: #5a0b14;
        }

        /* ===== SIDEBAR ===== */
        .blogdetails__sidebar {
            position: sticky;
            top: 20px;
        }

        /* ===== WIDGET ===== */
        .blogdetails__widget {
            background: #fff;
            padding: 20px;
            border-radius: 12px;
        }

        .blogdetails__widget-title {
            font-size: 18px;
            font-weight: 600;
            color: #7b0f1c;
            margin-bottom: 15px;
            border-bottom: 2px solid #eee;
            padding-bottom: 8px;
        }

        /* ===== SEARCH ===== */
        .blogdetails__search-form input {
            border-radius: 30px;
            padding: 10px 15px;
        }

        /* ===== RECENT POSTS ===== */
        .blogdetails__recent-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .blogdetails__recent-img {
            width: 70px;
            height: 70px;
            border-radius: 8px;
            object-fit: cover;
        }

        .blogdetails__recent-title {
            font-size: 14px;
            font-weight: 600;
            color: #222;
            text-decoration: none;
            display: block;
            transition: 0.3s;
        }

        .blogdetails__recent-title:hover {
            color: #7b0f1c;
        }

        .blogdetails__recent-date {
            font-size: 12px;
            color: #777;
        }

        /* ===== KEYWORDS ===== */
        .blogdetails__keywords a {
            padding: 6px 12px;
            border: 1px solid #ddd;
            font-size: 13px;
            border-radius: 20px;
            text-decoration: none;
            color: #555;
            transition: 0.3s;
        }

        .blogdetails__keywords a:hover {
            background: #7b0f1c;
            color: #fff;
            border-color: #7b0f1c;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 991px) {
            .blogdetails__sidebar {
                position: static;
                margin-top: 30px;
            }

            .blogdetails__title {
                font-size: 26px;
            }
        }

        /* ===== SHARE SECTION ===== */
        .blogdetails__share-title {
            font-weight: 600;
            color: #7b0f1c;
            margin-bottom: 10px;
        }

        .blogdetails__share-btn {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            color: #fff;
            font-size: 14px;
            text-decoration: none;
            transition: 0.3s;
        }

        /* Social Colors */
        .blogdetails__share-btn.facebook {
            background: #1877f2;
        }

        .blogdetails__share-btn.twitter {
            background: #1da1f2;
        }

        .blogdetails__share-btn.linkedin {
            background: #0a66c2;
        }

        .blogdetails__share-btn.whatsapp {
            background: #25d366;
        }

        .blogdetails__share-btn:hover {
            transform: translateY(-3px);
            opacity: 0.9;
        }

        /* ===== COMMENT FORM ===== */
        .blogdetails__comment {
            background: #fff;
            padding: 25px;
            border-radius: 12px;
        }

        .blogdetails__comment-title {
            color: #7b0f1c;
            font-weight: 600;
        }

        .blogdetails__label {
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 5px;
            display: block;
        }

        .blogdetails__textarea,
        .blogdetails__input {
            border-radius: 8px;
            padding: 10px;
            border: 1px solid #ddd;
            transition: 0.3s;
        }

        .blogdetails__textarea:focus,
        .blogdetails__input:focus {
            border-color: #7b0f1c;
            box-shadow: none;
        }

        /* Character Count */
        .blogdetails__char-count {
            font-size: 12px;
            color: #777;
        }

        /* Submit Button */
        .blogdetails__btn {
            background: #7b0f1c;
            color: #fff;
            border: none;
            padding: 10px 20px;
            border-radius: 30px;
            font-weight: 500;
            transition: 0.3s;
        }

        .blogdetails__btn:hover {
            background: #5a0b14;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 576px) {
            .blogdetails__share-icons {
                flex-wrap: wrap;
            }
        }

        /* ===== BLOCKQUOTE ===== */
        .blogdetails__blockquote {
            background: #fff5f6;
            border-left: 5px solid #7b0f1c;
            padding: 20px;
            border-radius: 10px;
            position: relative;
        }

        .blogdetails__blockquote-icon {
            font-size: 30px;
            color: #7b0f1c;
            margin-bottom: 10px;
        }

        .blogdetails__blockquote-text {
            font-size: 16px;
            font-style: italic;
            color: #444;
            margin-bottom: 10px;
            line-height: 1.7;
        }

        .blogdetails__blockquote-author {
            font-size: 14px;
            font-weight: 600;
            color: #7b0f1c;
        }

        /* ===== CTA SECTION ===== */
        .blogdetails__cta {
            background: linear-gradient(135deg, #7b0f1c, #a31625);
            padding: 40px 20px;
            border-radius: 15px;
            color: #fff;
        }

        .blogdetails__cta-title {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .blogdetails__cta-text {
            font-size: 15px;
            opacity: 0.9;
            margin-bottom: 20px;
        }

        /* Buttons */
        .blogdetails__cta-btn {
            padding: 10px 20px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 500;
            transition: 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        /* Primary */
        .blogdetails__cta-btn.primary {
            background: #fff;
            color: #7b0f1c;
        }

        .blogdetails__cta-btn.primary:hover {
            background: #f1f1f1;
        }

        /* Secondary */
        .blogdetails__cta-btn.secondary {
            border: 1px solid #fff;
            color: #fff;
        }

        .blogdetails__cta-btn.secondary:hover {
            background: #fff;
            color: #7b0f1c;
        }

        /* ICON INSIDE HEADINGS */
        .blogdetails__icon {
            color: #7b0f1c;
            margin-right: 8px;
        }

        /* LIST WITH ICON */
        .blogdetails__list {
            list-style: none;
            padding-left: 0;
        }

        .blogdetails__list li {
            margin-bottom: 10px;
            font-size: 15px;
            color: #444;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .blogdetails__list i {
            color: #7b0f1c;
        }

        /* CENTER IMAGE */
        .blogdetails__center-img {
            max-width: 75%;
        }
 

 /*---------------------responsive-----------------------------*/
 
 /* ================= RESPONSIVE ================= */

/* Tablet (768px and below) */
@media (max-width: 991px) {

    .gallery-main {
        grid-template-columns: 1fr;
        height: auto;
    }

    .gallery-bottom {
        grid-template-columns: 1fr 1fr;
        height: auto;
    }

    .main-large img {
        height: auto;
        width: 100%;
    }

    .gallery-img .img2 {
        width: 180px;
        height: 180px;
    }

    .gallery-img .img3 {
        height: auto;
        width: 100%;
    }

    .year-badge {
        bottom: 10%;
        left: 10%;
        padding: 0.8rem 1rem;
    }

    .content-section {
        padding: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}


/* Mobile (576px and below) */
@media (max-width: 576px) {

    .image-gallery {
        padding: 1rem;
        min-height: auto;
    }

    .gallery-main {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .gallery-bottom {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .gallery-img img {
        width: 100%;
        height: auto;
    }

    .gallery-img .img2 {
        width: 140px;
        height: 140px;
        margin: auto;
    }

    .year-badge {
        position: static;
        margin-top: 1rem;
        text-align: center;
    }

    .content-section {
        padding: 1.5rem 1rem;
    }

    .contact-counter {
        flex-direction: column;
        align-items: flex-start;
    }

    .feature-card {
        padding: 0.7rem;
    }
}


/* Large Desktop (1200px and above) */
@media (min-width: 1200px) {

    .image-gallery {
        max-width: 100%;
    }

    .content-section {
        padding: 3rem;
    }

    .gallery-img .img2 {
        width: 244px;
        height: 244px;
    }
}


