@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Quicksand:wght@300..700&family=Roboto:wght@300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+Warang+Citi&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Teko:wght@300..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");

/* ============================================
   CSS VARIABLES & GLOBAL STYLES
   ============================================ */
:root {
    --primary: #448c4ce4;
    --primary-off: #5c67a2;
    --primary-off-off: #f8f8ff;
    --secondary: #f9f9ff;
    --white-off: #f5f5ff;
    --third: #06afda;
    --white: rgba(255, 255, 255, 1);
    --bs-yellow: rgb(21 178 79);
    --font-family: "inter";
    --font-family-inter: "inter";
    --border-radius: 4px;
    --icon-size: 24px;
    --off-black: rgba(0, 0, 0, 0.6);
    --black-off: rgb(75 85 99);
    --weight400: 400;
    --weight500: 500;
    --weight600: 600;
    --weight700: 700;
    --radius4: 4px;
    --radius8: 8px;
    --radius20: 20px;
    --radius100: 100px;
    --extra-grey: rgba(149, 164, 183, 0.11);
    
    /* Gradient Variables */
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --success-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --warning-gradient: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

*[lang="en"] body {
    font-family: "Roboto", sans-serif;
}

*[lang="ne"] body {
    font-family: "Mukta", sans-serif;
}

a {
    text-decoration: none;
    color: #333;
}

li {
    list-style: none;
}

html {
    scroll-behavior: smooth;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    background-color: var(--bs-yellow);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-transform: capitalize;
    border: none;
    transition: all 0.3s ease;
}

.btn-second {
    background-color: var(--bs-yellow);
}

.btn:hover {
    background: var(--third);
    color: #fff !important;
}

.btn-nonebg {
    background: none;
    border: 1px solid var(--primary);
    color: var(--primary);
}

.btn-yellow {
    background-color: rgb(255, 243, 224);
    color: #f9a002 !important;
}

.btn-blue {
    background-color: #c5c9de;
    color: var(--primary) !important;
}

.apply-btn {
    text-transform: capitalize;
    outline: none !important;
    border: none;
    background-color: var(--white);
    padding: 8px 20px;
    letter-spacing: 0.8px;
    font-size: 18px;
    color: var(--off-black);
    border-bottom: 4px solid var(--bs-yellow);
    border-radius: var(--border-radius);
}

.apply-btn:hover {
    background: var(--primary);
    border-bottom-color: transparent !important;
    color: var(--white);
}

@media (max-width: 600px) {
    .btn {
        padding: 4px 20px;
        font-size: 12px;
    }
}

/* ============================================
   CARDS
   ============================================ */
.card {
    background: var(--white);
    border: 1px solid var(--extra-grey);
    border-radius: var(--radius8);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

.card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--primary);
}

.card-text {
    color: var(--off-black);
    margin-bottom: 1.5rem;
    flex: 1;
}

.card-img-top {
    width: 100%;
    height: 20vh;
    object-fit: cover;
    border-radius: 0 0 1px 2px;
    transition: transform 0.5s ease;
}

.card-footer {
    padding: 1rem 1.5rem;
    background: var(--secondary);
    border-top: 1px solid var(--extra-grey);
}

@media (max-width: 768px) {
    .card-img-top {
        height: 200px;
    }
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
.herosectiontitle {
    font-size: 50px;
    font-weight: bolder;
    text-transform: uppercase;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    font-family: var(--font-family);
}

.extralarger {
    font-family: var(--font-family);
    letter-spacing: 0.8px;
    font-size: 32px;
    font-weight: var(--weight600);
    text-transform: capitalize;
}

.lg-texts {
    font-size: 32px;
    font-weight: var(--weight600);
    color: var(--off-black);
    text-transform: capitalize;
}

.lg-text-md {
    font-size: 28px;
    font-weight: var(--weight600);
    color: var(--off-black);
    text-transform: capitalize;
    font-family: var(--font-family);
}

.md-text {
    font-size: 20px;
    font-weight: var(--weight600);
    color: var(--off-black);
    text-transform: capitalize;
    font-family: var(--font-family);
}

.sm-text {
    font-size: 18px;
    color: var(--off-black);
    font-weight: var(--weight500);
    font-family: var(--font-family);
}

.xs-text {
    font-size: 16px;
    color: rgb(156 163 175);
    font-weight: var(--weight400);
    letter-spacing: 0.4px;
}

.xs-text-des {
    font-size: 1.15rem;
    color: #444;
    line-height: 1.6;
    font-weight: 400;
    font-family: var(--font-family-inter);
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

.xs-text-md {
    font-size: 16px;
    color: var(--off-black);
    font-weight: var(--weight600);
}

.hero-description {
    font-weight: 500;
    color: rgb(156 163 175);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
}

.highlighted {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    position: relative;
}

.text-green {
    color: #28a745;
}

.whitehighlight {
    color: var(--white);
}

.blackhighlight {
    color: var(--black-off);
}

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

.yellowhighlight {
    color: var(--bs-yellow);
}

@media (max-width: 500px) {
    .herosectiontitle {
        font-size: 32px;
    }
    .extralarger {
        font-size: 32px;
    }
    .lg-text-md {
        font-size: 18px;
    }
    .md-text {
        font-size: 18px;
    }
    .xs-text {
        font-size: 14px;
    }
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    background: var(--white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.75rem 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--bs-yellow);
    transition: all 0.3s ease;
}

.nav-link:hover:after {
    width: 100%;
    left: 0;
}

/* ============================================
   TOP HEADER
   ============================================ */
.topheader {
    background: var(--primary);
    color: white;
}

.topheader .fab {
    color: var(--primary);
}

.top_right {
    display: flex;
    padding: 10px 0px;
    align-items: center;
    gap: 1.5rem;
}

.search-form {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 10px;
}

.search-form input {
    border: 1px solid var(--extra-grey);
    border-radius: var(--radius4);
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.search-form input:focus {
    outline: none;
    border-color: var(--bs-yellow);
    box-shadow: 0 0 0 2px rgba(21, 178, 79, 0.1);
}

.search-form button {
    background-color: var(--bs-yellow);
    color: white;
    border: none;
    border-radius: var(--radius4);
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.search-form button:hover {
    background-color: var(--third);
}

/* ============================================
   ABOUT US PAGE STYLES
   ============================================ */
.hero-about {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.hero-about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    line-height: 1.2;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.2);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.95);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.hero-image-wrapper {
    position: relative;
    z-index: 2;
}

.hero-image-frame {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
}

.hero-image-frame:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.mission-vision-section {
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
}

.mv-card {
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-top: 5px solid;
    position: relative;
    overflow: hidden;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.mv-card.mission {
    border-top-color: #667eea;
}

.mv-card.vision {
    border-top-color: #f093fb;
}

.mv-card.values {
    border-top-color: #4facfe;
}

.mv-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.mv-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.mv-icon.mission-icon {
    background: var(--primary-gradient);
}

.mv-icon.vision-icon {
    background: var(--secondary-gradient);
}

.mv-icon.values-icon {
    background: var(--success-gradient);
}

.mv-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 1rem;
}

.mv-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #6c757d;
}

.principle-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 80px 0;
    position: relative;
}

.principle-card {
    background: white;
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.principle-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102,126,234,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.principle-title {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.principle-image-wrapper {
    position: relative;
}

.principle-image {
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.principle-image:hover {
    transform: scale(1.05);
}

.typing-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #495057;
    position: relative;
    z-index: 1;
    min-height: 200px;
}

.activities-section {
    background: #ffffff;
    padding: 80px 0;
}

.activity-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    border: 1px solid #f0f0f0;
}

.activity-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(102,126,234,0.2);
    border-color: #667eea;
}

.activity-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 280px;
}

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

.activity-card:hover .activity-image {
    transform: scale(1.15) rotate(2deg);
}

.activity-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.activity-card:hover .activity-overlay {
    opacity: 1;
}

.activity-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-gradient);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(102,126,234,0.4);
}

.activity-body {
    padding: 2rem;
}

.activity-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.activity-description {
    color: #6c757d;
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

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

@media (max-width: 992px) {
    .about-title {
        font-size: 2.5rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .mv-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-about {
        padding: 60px 0;
    }
    .about-title {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
    .principle-title {
        font-size: 2rem;
    }
    .activity-image-wrapper {
        height: 220px;
    }
}

/* ============================================
   COURSES SECTION
   ============================================ */
.courses-section {
    padding: 80px 0;
}

.courses-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a2332;
    text-align: center;
    transition: opacity 0.4s ease;
}

.academic-programs-container {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    min-height: 120px;
}

.academic-program-card {
    flex: 0 0 auto;
    min-width: 200px;
    background: white;
    border-radius: 12px;
    padding: 25px 35px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.academic-program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.academic-program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #1a2332;
}

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

.academic-program-card.active {
    border-color: #1a2332;
    background: linear-gradient(135deg, #1a2332 0%, #2c3e50 100%);
    color: white;
}

.academic-program-card.active::before {
    transform: scaleX(1);
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
}

.academic-program-card.active .academic-program-name {
    color: white;
}

.academic-program-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a2332;
    margin: 0;
    transition: color 0.3s ease;
}

.course-items-container {
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.course-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #1a2332;
    background: white;
    color: #1a2332;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.course-nav-btn:hover {
    background: #1a2332;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.course-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.course-items-wrapper-container {
    flex: 1;
    position: relative;
    overflow: hidden;
    min-height: 450px;
}

.course-items-wrapper {
    display: flex;
    gap: 2rem;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transform: translateX(100px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.course-items-wrapper.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
}

.course-item {
    flex: 0 0 calc(33.333% - 1.5rem);
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 450px;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.6s ease forwards;
}

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

.course-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.course-item-header {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.course-item-header.gradient-1 {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
}

.course-item-header.gradient-2 {
    background: linear-gradient(135deg, #a29bfe 0%, #6c5ce7 100%);
}

.course-item-header.gradient-3 {
    background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
}

.course-item-header.gradient-4 {
    background: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
}

.course-item-icon {
    font-size: 4rem;
    color: white;
    z-index: 2;
}

.course-item-body {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.course-item-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 20px;
    text-transform: uppercase;
    line-height: 1.3;
}

.course-item-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    flex-grow: 1;
}

.course-item-btn {
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    margin-top: auto;
    width: 100%;
}

.course-item-btn.gradient-1 {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
}

.course-item-btn.gradient-2 {
    background: linear-gradient(135deg, #a29bfe 0%, #6c5ce7 100%);
}

.course-item-btn.gradient-3 {
    background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
}

.course-item-btn.gradient-4 {
    background: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
}

.course-item-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    color: white;
}

@media (max-width: 1200px) {
    .course-item {
        flex: 0 0 calc(50% - 1rem);
        min-height: 400px;
    }
}

@media (max-width: 992px) {
    .course-item {
        flex: 0 0 calc(50% - 1rem);
        min-height: 380px;
    }
    .courses-section {
        padding: 60px 0;
    }
    .course-nav-btn {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    .academic-program-card {
        min-width: 150px;
        padding: 20px 25px;
    }
}

@media (max-width: 768px) {
    .course-item {
        flex: 0 0 100%;
    }
    .courses-section-title {
        font-size: 2rem;
    }
    .course-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    .academic-program-card {
        min-width: 120px;
        padding: 15px 20px;
    }
    .academic-program-name {
        font-size: 1.1rem;
    }
}

/* ============================================
   STATISTICS BANNER
   ============================================ */
.statistics-banner {
    position: relative;
    background-image: url('../image/bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
}

.statistics-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.statistics-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.statistics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 3rem 2rem;
    border-radius: 12px;
}

.statistic-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.statistic-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 107, 107, 0.5);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.statistic-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ff6b6b;
    margin-bottom: 0.5rem;
    line-height: 1;
    display: block;
}

.statistic-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 992px) {
    .statistics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        padding: 2.5rem 1.5rem;
    }
    .statistic-number {
        font-size: 3rem;
    }
    .statistic-label {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .statistics-banner {
        min-height: 350px;
        padding: 60px 0;
    }
    .statistics-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem 1rem;
    }
    .statistic-number {
        font-size: 2.5rem;
    }
    .statistic-label {
        font-size: 1rem;
    }
}

/* ============================================
   BALLOON ANIMATIONS (About Include)
   ============================================ */
@keyframes balloonGlow {
    0%, 100% {
        filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.4)) drop-shadow(0 0 6px var(--glow-color, #fff7));
    }
    50% {
        filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.8)) drop-shadow(0 0 18px var(--glow-color, #fff9));
    }
}

@keyframes floatUpDown {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-8px) scale(1.05);
    }
}

@keyframes highlightShimmer {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 0.9;
    }
}

.balloon {
    cursor: default;
    animation: balloonGlow 3s ease-in-out infinite, floatUpDown 6s ease-in-out infinite;
    transition: transform 0.3s ease, filter 0.3s ease;
    display: block;
    margin: 0 auto;
}

.balloon.orange {
    --glow-color: #f26522aa;
}

.balloon.yellow {
    --glow-color: #ffd166aa;
}

.balloon.gray {
    --glow-color: #6c6c6caa;
}

.balloon:hover {
    animation-duration: 1.5s;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 1)) drop-shadow(0 0 30px var(--glow-color));
    transform: translateY(-10px) scale(1.15);
    z-index: 10;
}

.balloon ellipse:nth-child(3) {
    animation: highlightShimmer 3s ease-in-out infinite;
}

/* ============================================
   HERO SECTIONS
   ============================================ */
.hero {
    position: relative;
    overflow: hidden;
    border-radius: 40px;
    margin: 40px auto;
    max-width: 1200px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.hero img {
    width: 100%;
    height: 80vh;
    object-fit: cover;
}

.hero-title {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #fff;
    color: #b40000;
    font-weight: 800;
    font-size: 48px;
    padding: 16px 40px;
    border-radius: 0 0 0 50px;
    font-family: "Segoe UI", sans-serif;
    box-shadow: -5px 5px 10px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
}

.herosectionforallpage {
    position: relative;
}

.herosectionforallpage img {
    filter: brightness(80%);
    height: 40vh;
    width: 100%;
    object-fit: cover;
    object-position: top;
}

.maintitle {
    font-size: 36px;
    font-weight: 600;
    text-transform: capitalize;
    font-family: var(--font-family);
    color: var(--white);
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
        padding: 10px 20px;
    }
}

/* ============================================
   BLOG CARDS
   ============================================ */
.blog-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
}

.blog-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.blog-info {
    position: absolute;
    bottom: 0px;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    color: white;
    padding: 20px;
    transition: all 0.3s ease;
    transform: translateY(50%);
}

.blog-card:hover .blog-info {
    transform: translateY(0%);
}

.blog-info .badge {
    background-color: #fff;
    color: #b40000;
    font-weight: 600;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 12px;
    margin-bottom: 10px;
}

.blog-info h5 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.blog-info p {
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-card:hover .blog-info p {
    opacity: 1;
}

.read-more-btn {
    border: 2px solid #fff;
    color: white;
}

.read-more-btn:hover {
    color: black !important;
    background: white;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.bg-soft-blue {
    background-color: #eaf6ff;
}

.bg-green {
    background: var(--primary) !important;
    color: white !important;
}

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

.hovergreen:hover {
    background: #448c4c !important;
}

.fcc {
    display: flex;
    justify-content: center;
    align-items: center;
}

.fbc {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sectiongap {
    margin: 3rem 0;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        transform: translateX(-20px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.hover-grow {
    transition: transform 0.3s ease;
}

.hover-grow:hover {
    transform: scale(1.02);
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* ============================================
   FOOTER
   ============================================ */
.footer-content {
    position: relative;
    z-index: 2;
    padding: 10px 0;
}

.footer-logo {
    margin-bottom: 5px;
}

.footer-logo img {
    max-width: 130px;
}

.footer-text p {
    margin-bottom: 5px;
    font-size: 14px;
    color: var(--primary);
    line-height: 28px;
}

.footer-widget-heading h3 {
    color: var(--black-off);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 6px;
    position: relative;
    font-family: "Mukta", sans-serif;
}

.footer-widget ul li {
    display: inline-block;
    width: 50%;
    margin-bottom: 12px;
}

.footer-widget ul li a {
    color: var(--primary);
    text-transform: capitalize;
    text-decoration: none;
}

.copyright-area {
    background: var(--primary);
    margin: 0;
}

/* ============================================
   RESPONSIVE UTILITIES
   ============================================ */
@media (max-width: 991px) {
    .navbar-collapse {
        background: var(--white);
        padding: 1rem;
        border-radius: var(--radius8);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
        position: absolute;
        top: 100%;
        left: 1rem;
        right: 1rem;
    }
    .nav-link:after {
        left: 0;
        right: 0;
    }
}

@media (max-width: 600px) {
    .en_ne {
        height: 80px;
        width: 15px;
        margin-top: 0;
        transition: 0.1s all;
        display: inline-block;
    }
    .card-img-top {
        width: 30%;
        height: 10vh;
    }
}
