﻿/* Wrapping element */
/* Set some basic padding to keep content from hitting the edges */
/*.body-content {
    margin-top: 15px;
    padding-left: 15px;
    padding-right: 15px;
}*/

/* Set widths on the form inputs since otherwise they're 100% wide */
/*input,
select,
textarea {
    max-width: 280px;
}*/

/* Responsive: Portrait tablets and up */
/*@media screen and (min-width: 768px) {
    .body-content {
        padding: 0;
    }
}*/
/* ==========================================================================
   VEDAM INTERNATIONAL SCHOOL - CUSTOM PREMIUM DESIGN SYSTEM
   ========================================================================== */
/* --- CSS VARIABLES & TOKENS --- */
:root {
    --primary-color: #1A1E68; /* Royal Navy Blue from Logo */
    --secondary-color: #5A2C16; /* Warm Chocolate Brown from Logo */
    --accent-color: #E67E22; /* Vibrant Orange/Gold from Logo leaf */
    --accent-green: #27AE60; /* Green from Logo leaf */
    --text-primary: #2C3E50;
    --text-muted: #7F8C8D;
    --bg-light: #F8F9FD;
    --bg-white: #FFFFFF;
    --bg-dark: #0A0D26; /* Ultra-dark Navy for Footer */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Work Sans', sans-serif;
    --transition-smooth: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 24px rgba(26, 30, 104, 0.08);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.12);
    --navbar-height: 80px;
    --top-bar-height: 40px;
}
/* --- GLOBAL RESETS & BASE TYPOGRAPHY --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background-color: #FAFAFC;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}
/* --- TOP HEADER BAR --- */
.top-bar {
    height: var(--top-bar-height);
    background-color: var(--primary-color);
    color: var(--bg-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    font-size: 13.5px;
    font-weight: 400;
    letter-spacing: 0.3px;
    border-bottom: 2px solid var(--secondary-color);
    position: relative;
    z-index: 1001;
}

.top-bar-info {
    display: flex;
    gap: 24px;
    align-items: center;
}

    .top-bar-info span {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .top-bar-info i {
        color: var(--accent-color);
    }

.top-bar-social {
    display: flex;
    gap: 16px;
    align-items: center;
}

    .top-bar-social a {
        color: var(--bg-light);
        font-size: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 24px;
        height: 24px;
        border-radius: 50%;
        transition: var(--transition-smooth);
    }

        .top-bar-social a:hover {
            color: var(--accent-color);
            transform: translateY(-2px);
        }
/* --- MAIN NAVBAR --- */
.header-wrapper {
    position: relative;
    width: 100%;
}

.main-nav {
    height: var(--navbar-height);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    position: relative;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}
    /* Sticky Navbar state */
    .main-nav.sticky {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 70px;
        box-shadow: var(--shadow-md);
        background-color: rgba(255, 255, 255, 0.98);
        animation: slideDown 0.4s ease-out;
    }

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}
/* Logo Styling */
.nav-logo {
    display: flex;
    align-items: center;
    height: 100%;
}

    .nav-logo img {
        /*height: 60px;*/
        height: 100px;
        width: auto;
        object-fit: contain;
        transition: var(--transition-smooth);
    }

.main-nav.sticky .nav-logo img {
    height: 80px;
}
/* Navigation Links (Desktop) */
.nav-menu {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-item {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    color: var(--primary-color);
    padding: 0 18px;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    letter-spacing: 0.2px;
    transition: var(--transition-smooth);
}

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 18px;
        right: 18px;
        height: 3px;
        background-color: var(--secondary-color);
        transform: scaleX(0);
        transition: var(--transition-smooth);
        transform-origin: center;
    }

.nav-item:hover > .nav-link {
    color: var(--secondary-color);
}

    .nav-item:hover > .nav-link::after {
        transform: scaleX(1);
    }

.nav-link i {
    font-size: 11px;
    margin-left: 6px;
    transition: var(--transition-smooth);
}

.nav-item:hover > .nav-link i {
    transform: rotate(180deg);
}

/* --- DESKTOP HOVER DROPDOWN MENU --- */
.nav-dropdown {
    position: absolute;
    top: var(--navbar-height);
    left: 0;
    background-color: var(--bg-white);
    min-width: 220px;
    box-shadow: var(--shadow-lg);
    border-radius: 0 0 8px 8px;
    border-top: 3px solid var(--secondary-color);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition-smooth);
    padding: 8px 0;
    pointer-events: none;
    display: block;
}

.main-nav.sticky .nav-dropdown {
    top: 70px;
}

.nav-item:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.nav-dropdown-item {
    display: block;
    padding: 10px 24px;
    font-size: 14.5px;
    font-weight: 500;
    color: var(--text-primary);
    transition: var(--transition-smooth);
    border-left: 0 solid var(--secondary-color);
}

    .nav-dropdown-item:hover {
        background-color: var(--bg-light);
        color: var(--secondary-color);
        padding-left: 30px;
        border-left: 4px solid var(--secondary-color);
    }

/* CTA Header Button */
.header-cta {
    display: flex;
    align-items: center;
    margin-left: 10px;
}

.cta-btn {
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 10px 22px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(90, 44, 22, 0.2);
    border: 2px solid transparent;
}

    .cta-btn:hover {
        background-color: var(--primary-color);
        color: var(--bg-white);
        box-shadow: 0 4px 12px rgba(26, 30, 104, 0.25);
        transform: translateY(-2px);
    }
/* --- MOBILE HAMBURGER BUTTON --- */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 18px;
    cursor: pointer;
    background: transparent;
    border: none;
    outline: none;
    z-index: 1010;
}

.burger-line {
    width: 100%;
    height: 2.5px;
    background-color: var(--primary-color);
    border-radius: 5px;
    transition: var(--transition-smooth);
}
/* --- MOBILE SIDE DRAWER --- */
.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(10, 13, 38, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1005;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

    .drawer-overlay.active {
        opacity: 1;
        visibility: visible;
    }

.mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    height: 100vh;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-lg);
    z-index: 1006;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    padding: 24px;
    overflow-y: auto;
}

    .mobile-drawer.open {
        transform: translateX(0);
    }

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.drawer-logo img {
    height: 50px;
    width: auto;
}

.drawer-close {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-color);
    cursor: pointer;
}

.drawer-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.drawer-item {
    width: 100%;
    border-bottom: 1px solid #ECEFF4;
}

.drawer-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    color: var(--primary-color);
}

    .drawer-link i {
        font-size: 12px;
        transition: var(--transition-smooth);
    }

.drawer-item.active .drawer-link i {
    transform: rotate(180deg);
}
/* Drawer Dropdown submenus */
.drawer-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-out;
    background-color: var(--bg-light);
    border-radius: 6px;
    padding: 0 16px;
}

.drawer-item.active .drawer-submenu {
    max-height: 300px; /* Large enough to fit content */
    padding: 8px 16px 12px;
    margin-bottom: 12px;
}

.drawer-sublink {
    display: block;
    padding: 8px 0;
    font-size: 14.5px;
    font-weight: 500;
    color: var(--text-primary);
}

    .drawer-sublink:hover {
        color: var(--secondary-color);
    }

.drawer-cta {
    margin-top: 30px;
}

    .drawer-cta .cta-btn {
        display: block;
        text-align: center;
        width: 100%;
    }
/* --- PREMIUM SITE FOOTER --- */
.site-footer {
    background-color: var(--bg-dark);
    color: #CED6E2;
    font-size: 14.5px;
    position: relative;
    border-top: 5px solid var(--secondary-color);
    margin-top: 20px;
    padding-top: 70px;
}
    /* Custom background pattern */
    .site-footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 0);
        background-size: 24px 24px;
        pointer-events: none;
    }

.footer-top {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 50px;
    display: grid;
    grid-template-columns: 2.2fr 1.5fr 2fr 2.3fr;
    gap: 48px;
}

.footer-col {
    position: relative;
    z-index: 2;
}

.footer-logo-container {
    background-color: var(--bg-white);
    padding: 10px;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.footer-logo {
    height: 65px;
    width: auto;
    object-fit: contain;
}

.footer-about-text {
    line-height: 1.7;
    margin-bottom: 24px;
    color: #A0B2C6;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

    .footer-socials a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        background-color: rgba(255, 255, 255, 0.06);
        color: var(--bg-white);
        border-radius: 50%;
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: var(--transition-smooth);
    }

        .footer-socials a:hover {
            background-color: var(--secondary-color);
            color: var(--bg-white);
            border-color: var(--secondary-color);
            transform: translateY(-4px);
        }

.footer-title {
    color: var(--bg-white);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
    padding-bottom: 10px;
    position: relative;
    letter-spacing: 0.5px;
}

    .footer-title::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 40px;
        height: 3px;
        background-color: var(--secondary-color);
        border-radius: 2px;
    }

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #A0B2C6;
    transition: var(--transition-smooth);
}

    .footer-links a:hover {
        color: var(--secondary-color);
        transform: translateX(5px);
    }

.footer-links i {
    font-size: 11px;
    color: var(--secondary-color);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

    .footer-contact-item i {
        font-size: 16px;
        color: var(--secondary-color);
        margin-top: 4px;
        width: 20px;
        text-align: center;
    }

.footer-contact-text {
    line-height: 1.5;
    color: #A0B2C6;
}

    .footer-contact-text strong {
        display: block;
        color: var(--bg-white);
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 3px;
    }

    .footer-contact-text a:hover {
        color: var(--secondary-color);
    }

.footer-newsletter-text {
    margin-bottom: 20px;
    color: #A0B2C6;
    line-height: 1.6;
}
/* Newsletter Input Form */
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-input-group {
    display: flex;
    position: relative;
    border-radius: 50px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background-color: rgba(255, 255, 255, 0.05);
}

    .newsletter-input-group input {
        background: transparent;
        border: none;
        outline: none;
        color: var(--bg-white);
        padding: 12px 20px;
        font-size: 14px;
        width: 100%;
        max-width: 100% !important; /* Overwrite input reset */
    }

        .newsletter-input-group input::placeholder {
            color: #6C7A92;
        }

.newsletter-btn {
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border: none;
    padding: 0 22px;
    cursor: pointer;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

    .newsletter-btn:hover {
        background-color: var(--primary-color);
    }
/* Copyright Bottom Bar */
.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px 24px;
    text-align: center;
    font-size: 13.5px;
    color: #7C8FAD;
    position: relative;
    z-index: 2;
}

.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

    .footer-bottom-links a:hover {
        color: var(--secondary-color);
    }
/* --- RESPONSIVE MEDIA QUERIES --- */
/* Small desktop and tablets */
@media screen and (max-width: 991.98px) {
    .top-bar {
        display: none; /* Hide top header bar on mobile */
    }

    .main-nav {
        height: 70px;
        padding: 0 24px;
    }

        .main-nav.sticky {
            height: 70px;
        }

    .nav-logo img {
        height: 48px;
    }

    .nav-menu {
        display: none; /* Hide desktop menu */
    }

    .header-cta {
        display: none; /* Hide CTA button in header */
    }

    .burger-menu {
        display: flex; /* Show mobile burger */
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}
/* Mobile Portrait */
@media screen and (max-width: 575.98px) {
    .mobile-drawer {
        width: 100%; /* Full screen drawer on very small mobile */
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
        width: 100%;
    }
}
/* Adjustments for ASP.NET body margin */
.body-content {
    /*margin-top: 30px;
    margin-bottom: 60px;
    min-height: 50vh;*/
}

/* --- FEATURES SECTION --- */
.features-section {
    padding: 60px 0;
    background-color: #FAFAFC;
    position: relative;
}

.features-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    font-family: var(--font-heading);
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.3;
}

.section-divider {
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Feature Card */
.feature-card {
    background-color: var(--bg-white);
    padding: 40px 30px;
    border-radius: 60px 15px 60px 15px; /* Asymmetric corners match reference image */
    box-shadow: 0 15px 35px rgba(26, 30, 104, 0.05);
    transition: var(--transition-smooth);
    border: 1px solid rgba(26, 30, 104, 0.02);
    position: relative;
    overflow: hidden;
}

    .feature-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 45px rgba(26, 30, 104, 0.1);
        border-color: rgba(90, 44, 22, 0.1);
    }

/* Card Header */
.feature-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

/* Icon Box */
.feature-icon-box {
    width: 65px;
    height: 65px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 8px 20px rgba(26, 30, 104, 0.15);
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon-box {
    background-color: var(--secondary-color);
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(90, 44, 22, 0.2);
}

/* Stylized Numbers */
.feature-number {
    font-family: var(--font-heading);
    font-size: 46px;
    font-weight: 800;
    /* Outline text effect */
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(26, 30, 104, 0.3);
    line-height: 1;
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-number {
    -webkit-text-stroke: 1.5px var(--secondary-color);
    opacity: 0.8;
}

/* Title & Description */
.feature-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-title {
    color: var(--secondary-color);
}

.feature-text {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Responsive Grid */
@media screen and (max-width: 1199.98px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media screen and (max-width: 767.98px) {
    .features-section {
        padding: 60px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-title {
        font-size: 26px;
    }
}
/* Default page about section*/
.how-apply{
  position: relative;
}

.how-apply .content-img{
  margin-left: 30px;
  position: relative;
  z-index: 1;
}

.how-apply .content-img::before{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: var(--theme-color);
  border-radius: 100px 100px 100px 0;
  transform: rotate(-8deg);
  z-index: -1;
}

.how-apply .content-img img{
  border-radius: 100px 100px 100px 0;
  width: 100%;
}

.how-apply .content-list li{
  margin-top: 8px;
}

.how-apply .content-list i{
  color: var(--theme-color);
  margin-right: 8px;
}

.how-apply .content-btn{
  margin-top: 40px;
}

.apply-details .details-wrapper{
  border-top: 1px solid var(--border-info-color);
  padding-top: 60px;
}

.apply-details .content-list li{
  margin-top: 8px;
}

.apply-details .content-list i{
  color: var(--theme-color);
  margin-right: 8px;
}

@media all and (max-width: 991px) {
  .how-apply .content-img{
    margin-left: 0px;
  }

  .how-apply .content-info{
    margin-bottom: 70px;
  }

  .apply-details .details-left{
    margin-bottom: 40px;
  }
}

/* Counter Section */

.counter-area {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 90px 40px;
    background: #7a3816;
    margin-top:60px;
    margin-bottom:60px;
}

    .counter-area .container-fluid {
        max-width: 100%;
        padding: 0;
    }

.counter-box {
    text-align: center;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(5px);
    border-radius: 20px;
    padding: 40px 20px;
    height: 100%;
    transition: .3s ease;
}

    .counter-box:hover {
        transform: translateY(-8px);
        background: rgba(255,255,255,0.12);
    }

    .counter-box .icon {
        width: 100px;
        height: 100px;
        margin: 0 auto 25px;
        background: #f59e0b;
        border-radius: 25px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .counter-box .icon img {
            width: 50px;
            height: 50px;
            filter: brightness(0) invert(1);
        }

    .counter-box .counter {
        display: block;
        font-size: 55px;
        font-weight: 700;
        color: #fff;
        line-height: 1;
        margin-bottom: 12px;
    }

        .counter-box .counter::after {
            content: "+";
        }

    .counter-box .title {
        color: #fff;
        font-size: 20px;
        font-weight: 600;
        margin: 0;
    }

/* Tablet */

@media(max-width:991px) {

    .counter-area {
        padding: 70px 25px;
    }

    .counter-box {
        padding: 30px 15px;
    }

        .counter-box .counter {
            font-size: 45px;
        }
}

/* Mobile */

@media(max-width:576px) {

    .counter-area {
        padding: 60px 15px;
    }

    .counter-box .icon {
        width: 80px;
        height: 80px;
    }

        .counter-box .icon img {
            width: 40px;
            height: 40px;
        }

    .counter-box .counter {
        font-size: 38px;
    }

    .counter-box .title {
        font-size: 16px;
    }
}


/*==========   ABOUT US SECTION PAGE   ==============*/

.campus-tour {
    padding: 80px 0;
    background: #f8fafc;
}

    .campus-tour .row {
        align-items: center;
    }

    .campus-tour .content-info {
        padding-right: 40px;
    }

    .campus-tour .site-title-tagline {
        display: inline-block;
        color: #f59e0b;
        font-size: 15px;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-bottom: 15px;
        position: relative;
    }

        .campus-tour .site-title-tagline::after {
            content: "";
            width: 60px;
            height: 2px;
            background: #f59e0b;
            display: inline-block;
            margin-left: 10px;
            vertical-align: middle;
        }

    .campus-tour .site-title {
        font-size: 42px;
        font-weight: 800;
        color: #0f172a;
        line-height: 1.3;
        margin-bottom: 25px;
    }

    .campus-tour .content-text {
        font-size: 17px;
        line-height: 1.9;
        color: #475569;
        text-align: justify;
    }

    /* Image Section */

    .campus-tour .content-img {
        position: relative;
        padding: 15px;
    }

        .campus-tour .content-img::before {
            content: "";
            position: absolute;
            top: -15px;
            right: -15px;
            width: 150px;
            height: 150px;
            background: rgba(245, 158, 11, 0.15);
            border-radius: 30px;
            z-index: 0;
        }

        .campus-tour .content-img img {
            width: 100%;
            border-radius: 25px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.12);
            position: relative;
            z-index: 1;
            transition: all .4s ease;
        }

            .campus-tour .content-img img:hover {
                transform: translateY(-8px);
            }

/* Mobile */

@media(max-width:991px) {

    .campus-tour .content-info {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .campus-tour .site-title {
        font-size: 32px;
    }
}

@media(max-width:576px) {

    .campus-tour {
        padding: 60px 0;
    }

        .campus-tour .site-title {
            font-size: 26px;
        }

        .campus-tour .content-text {
            font-size: 15px;
        }
}


/*===  vision mission Section Page  ===*/

.vision-mission-section {
    padding: 60px 0;
    background: #f8fafc;
}

.section-title span {
    color: #f59e0b;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-title h2 {
    font-size: 42px;
    font-weight: 800;
    color: #0f172a;
    margin: 10px 0 15px;
}

.section-title p {
    max-width: 700px;
    margin: auto;
    color: #64748b;
}

.vm-card {
    background: #fff;
    border-radius: 25px;
    padding: 45px 35px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all .35s ease;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
}

    .vm-card:hover {
        transform: translateY(-8px);
    }

    .vm-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
    }

.vision-card::before {
    background: #f59e0b;
}

.mission-card::before {
    background: #0f766e;
}

.vm-icon {
    width: 85px;
    height: 85px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #fff;
    margin-bottom: 25px;
}

.vision-card .vm-icon {
    background: linear-gradient(135deg,#f59e0b,#fbbf24);
}

.mission-card .vm-icon {
    background: linear-gradient(135deg,#0f766e,#14b8a6);
}

.vm-card h3 {
    font-size: 30px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 20px;
}

.vm-card p {
    font-size: 16px;
    line-height: 1.9;
    color: #475569;
    margin: 0;
}

/* Responsive */

@media(max-width:991px) {

    .vision-mission-section {
        padding: 70px 0;
    }

    .vm-card {
        margin-bottom: 20px;
    }

    .section-title h2 {
        font-size: 34px;
    }
}

@media(max-width:576px) {

    .section-title h2 {
        font-size: 28px;
    }

    .vm-card {
        padding: 30px 25px;
    }

        .vm-card h3 {
            font-size: 24px;
        }

    .vm-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
}

/* ===  Founder message Section Page  === */
/* Activity Section */

.how-apply {
    padding: 60px 0;
    background: #f8fafc;
}

    .how-apply .row {
        align-items: center;
        margin-bottom: 80px;
    }

        /* Alternate Layout */

        .how-apply .row:nth-child(even) {
            flex-direction: row-reverse;
        }

    /* Content Area */

    .how-apply .content-info {
        padding: 20px 40px;
    }

    .how-apply .site-title {
        font-size: 38px;
        font-weight: 800;
        color: #0f172a;
        margin-bottom: 20px;
        position: relative;
        display: inline-block;
    }

        .how-apply .site-title::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -10px;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg,#f59e0b,#fbbf24);
            border-radius: 20px;
        }

    .how-apply .content-text {
        margin-top: 25px;
        font-size: 17px;
        line-height: 1.9;
        color: #475569;
        text-align: justify;
    }

    /* Image Section */

    .how-apply .content-img {
        position: relative;
        padding: 15px;
    }

        .how-apply .content-img::before {
            content: "";
            position: absolute;
            top: -15px;
            right: -15px;
            width: 180px;
            height: 180px;
            background: rgba(245, 158, 11, 0.12);
            border-radius: 30px;
            z-index: 0;
        }

        .how-apply .content-img::after {
            content: "";
            position: absolute;
            bottom: -15px;
            left: -15px;
            width: 120px;
            height: 120px;
            background: rgba(15, 118, 110, 0.12);
            border-radius: 25px;
            z-index: 0;
        }

        .how-apply .content-img img {
            width: 100%;
            border-radius: 25px;
            position: relative;
            z-index: 1;
            box-shadow: 0 20px 50px rgba(0,0,0,0.12);
            transition: all .4s ease;
        }

            .how-apply .content-img img:hover {
                transform: translateY(-8px);
            }

    /* Optional Card Look */

    .how-apply .row {
        background: #fff;
        border-radius: 30px;
        padding: 35px;
        box-shadow: 0 10px 35px rgba(0,0,0,.06);
    }

/* Responsive */

@media (max-width: 991px) {

    .how-apply .row,
    .how-apply .row:nth-child(even) {
        flex-direction: column;
    }

    .how-apply .content-info {
        padding: 0;
        margin-bottom: 30px;
    }

    .how-apply .site-title {
        font-size: 30px;
    }

    .how-apply .row {
        padding: 25px;
    }
}

@media (max-width: 576px) {

    .how-apply {
        padding: 60px 0;
    }

        .how-apply .site-title {
            font-size: 24px;
        }

        .how-apply .content-text {
            font-size: 15px;
        }
}

/*  Principal Section page  */
.how-apply {
    padding: 80px 0;
    background: #f8fafc;
}

    .how-apply .row {
        align-items: center;
        background: #fff;
        border-radius: 25px;
        padding: 40px;
        margin-bottom: 50px;
        box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
        overflow: hidden;
        position: relative;
    }

        .how-apply .row::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 6px;
            height: 100%;
            background: linear-gradient( to bottom, #f59e0b, #f97316 );
        }

    /* Title */

    .how-apply .site-title {
        font-size: 38px;
        font-weight: 800;
        color: #0f172a;
        margin-bottom: 20px;
        position: relative;
        display: inline-block;
    }

        .how-apply .site-title::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -8px;
            width: 70px;
            height: 4px;
            background: #f59e0b;
            border-radius: 10px;
        }

    /* Content */

    .how-apply .content-text {
        font-size: 17px;
        line-height: 1.9;
        color: #475569;
        text-align: justify;
    }

    /* Image */

    .how-apply .content-img {
        position: relative;
        text-align: center;
    }

        .how-apply .content-img::before {
            content: "";
            position: absolute;
            top: -15px;
            right: -15px;
            width: 120px;
            height: 120px;
            background: rgba(245, 158, 11, 0.15);
            border-radius: 25px;
            z-index: 0;
        }

        .how-apply .content-img img {
            width: 100%;
            max-width: 500px;
            border-radius: 25px;
            position: relative;
            z-index: 1;
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
            transition: all .4s ease;
        }

            .how-apply .content-img img:hover {
                transform: translateY(-8px);
            }

    /* Alternate Layout for Multiple Records */

    .how-apply .row:nth-child(even) {
        flex-direction: row-reverse;
    }

        .how-apply .row:nth-child(even)::before {
            left: auto;
            right: 0;
        }

/* Responsive */

@media (max-width: 991px) {

    .how-apply .row,
    .how-apply .row:nth-child(even) {
        flex-direction: column;
        padding: 25px;
    }

    .how-apply .content-info {
        margin-bottom: 30px;
    }

    .how-apply .site-title {
        font-size: 30px;
    }

    .how-apply .content-text {
        font-size: 16px;
    }
}

@media (max-width: 576px) {

    .how-apply {
        padding: 60px 0;
    }

        .how-apply .site-title {
            font-size: 24px;
        }

        .how-apply .row {
            padding: 20px;
            border-radius: 18px;
        }

        .how-apply .content-img img {
            border-radius: 18px;
        }
}


/* Facility Section Page */

.facility-area {
    padding: 60px 0;
    background: #f8fafc;
}

    /* Heading */

    .facility-area .site-title-tagline {
        display: inline-block;
        color: #f59e0b;
        font-size: 15px;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-bottom: 10px;
    }

    .facility-area .site-title {
        font-size: 42px;
        font-weight: 800;
        color: #0f172a;
        margin-bottom: 15px;
    }

        .facility-area .site-title span {
            color: #7a3816;
        }

/* Card */

.facility-item {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: all .35s ease;
}

    .facility-item:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 45px rgba(0,0,0,.15);
    }

/* Image */

.facility-img {
    overflow: hidden;
    position: relative;
}

    .facility-img img {
        width: 100% !important;
        height: 250px !important;
        object-fit: cover;
        transition: all .5s ease;
    }

.facility-item:hover .facility-img img {
    transform: scale(1.08);
}

/* Content */

.facility-content {
    padding: 25px;
}

.facility-title {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
    line-height: 1.3;
}

.facility-text {
    color: #64748b;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 0;
}

/* Optional Orange Line */

.facility-content::before {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: #7a3816;
    border-radius: 20px;
    margin-bottom: 15px;
}

.facility-area .col-md-6,
.facility-area .col-lg-4 {
    margin-bottom: 30px;
}

/* Responsive */

@media (max-width: 991px) {

    .facility-area .site-title {
        font-size: 34px;
    }

    .facility-img img {
        height: 220px !important;
    }
}

@media (max-width: 576px) {

    .facility-area {
        padding: 60px 0;
    }

        .facility-area .site-title {
            font-size: 28px;
        }

    .facility-content {
        padding: 20px;
    }

    .facility-title {
        font-size: 20px;
    }

    .facility-img img {
        height: 200px !important;
    }
}


/*  Admission Criteria Section page  */

.portfolio-single-area {
    background: #f8fafc;
}

.portfolio-details p {
    font-size: 17px;
    line-height: 1.9;
    color: #475569;
    max-width: 1000px;
    margin: 0 auto 30px;
    background: #fff;
    padding: 25px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.portfolio-sidebar-content {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.portfolio-sidebar-title {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 35px;
    position: relative;
}

    .portfolio-sidebar-title::after {
        content: "";
        width: 80px;
        height: 4px;
        background: #7a3816;
        position: absolute;
        left: 50%;
        bottom: -10px;
        transform: translateX(-50%);
        border-radius: 10px;
    }

.portfolio-sidebar-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .portfolio-sidebar-content ul li {
        display: flex;
        align-items: flex-start;
        gap: 18px;
        background: #f8fafc;
        padding: 20px;
        margin-bottom: 15px;
        border-radius: 14px;
        border-left: 5px solid #7a3816;
        transition: all 0.3s ease;
    }

        .portfolio-sidebar-content ul li:hover {
            transform: translateY(-3px);
            background: #fff;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
        }

        .portfolio-sidebar-content ul li strong {
            min-width: 55px;
            height: 55px;
            background: #7a3816;
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 14px;
        }

        .portfolio-sidebar-content ul li span {
            color: #475569;
            line-height: 1.7;
            font-size: 16px;
        }

@media (max-width: 768px) {
    .portfolio-sidebar-content {
        padding: 20px;
    }

    .portfolio-sidebar-title {
        font-size: 24px;
    }

    .portfolio-sidebar-content ul li {
        flex-direction: column;
        gap: 12px;
    }

        .portfolio-sidebar-content ul li strong {
            width: 50px;
            height: 50px;
        }
}


/* Admission Enquiry Section Page */
.admission-enquiry-section {
    padding: 60px 0;
}

.admission-enquiry-form {
    background: #fff;
    padding: 45px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
}

    .admission-enquiry-form::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 6px;
        background: linear-gradient(90deg, #7a3816, #7a3816);
    }

    .admission-enquiry-form .admission-enquiry-group {
        margin-bottom: 25px;
    }

    .admission-enquiry-form label {
        display: block;
        font-size: 15px;
        font-weight: 700;
        color: #1e293b;
        margin-bottom: 8px;
    }

    .admission-enquiry-form .admission-enquiry-control {
        height: 55px;
        width: 100%;
        border: 2px solid #e2e8f0;
        border-radius: 12px;
        padding: 12px 18px;
        font-size: 15px;
        color: #334155;
        background: #fff;
        transition: all .3s ease;
        box-shadow: none;
    }

    .admission-enquiry-form textarea.admission-enquiry-control {
        height: auto;
        min-height: 140px;
        resize: vertical;
    }

    .admission-enquiry-form .admission-enquiry-control:focus {
        border-color: #7a3816;
        box-shadow: 0 10px 25px rgb(164 118 95);
        outline: none;
    }

    .admission-enquiry-form .admission-enquiry-control::placeholder {
        color: #94a3b8;
    }

    .admission-enquiry-form .admission-enquiry-radio {
        display: flex;
        gap: 30px;
        margin-top: 15px;
    }

        .admission-enquiry-form .admission-enquiry-radio input[type="radio"] {
            margin-right: 8px;
            transform: scale(1.2);
            accent-color: #7a3816;
        }

        .admission-enquiry-form .admission-enquiry-radio label {
            display: inline-flex;
            align-items: center;
            font-weight: 600;
            color: #475569;
            margin-bottom: 0;
        }

    .admission-enquiry-form .admission-enquiry-btn,
    .admission-enquiry-form input[type="submit"] {
        background: linear-gradient(135deg, #7a3816, #7a3816);
        color: #fff;
        border: none;
        border-radius: 12px;
        padding: 15px 45px;
        font-size: 16px;
        font-weight: 700;
        cursor: pointer;
        transition: all .3s ease;
        box-shadow: 0 10px 25px rgb(164 118 95);
    }

        .admission-enquiry-form .admission-enquiry-btn:hover,
        .admission-enquiry-form input[type="submit"]:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(245, 158, 11, 0.45);
        }

.admission-enquiry-submit {
    text-align: center;
    margin-top: 15px;
}

/* Heading */
.admission-enquiry-heading {
    text-align: center;
    margin-bottom: 40px;
}

    .admission-enquiry-heading h2 {
        font-size: 38px;
        font-weight: 800;
        color: #0f172a;
        margin-bottom: 12px;
    }

    .admission-enquiry-heading p {
        color: #64748b;
        font-size: 16px;
    }

@media (max-width: 768px) {

    .admission-enquiry-section {
        padding: 50px 0;
    }

    .admission-enquiry-form {
        padding: 25px;
    }

    .admission-enquiry-heading h2 {
        font-size: 28px;
    }

    .admission-enquiry-form .admission-enquiry-radio {
        flex-direction: column;
        gap: 10px;
    }
}


/* Contact section page */
.contactus-section {
    padding: 60px 0;
}

.contactus-wrapper {
    background: #ffffff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

/* LEFT SIDE */

.contactus-details {
    background: linear-gradient(135deg, #7a3816, #a0522d);
    color: #fff;
    padding: 50px 40px;
    height: 100%;
}

    .contactus-details h2 {
        font-size: 38px;
        font-weight: 800;
        margin-bottom: 20px;
    }

    .contactus-details p {
        font-size: 16px;
        line-height: 28px;
        margin-bottom: 35px;
        opacity: .95;
    }

.contactus-info-box {
    margin-bottom: 30px;
}

    .contactus-info-box h4 {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .contactus-info-box span {
        display: block;
        font-size: 15px;
        line-height: 26px;
    }

/* RIGHT SIDE */

.contactus-form-area {
    padding: 50px 40px;
}

.contactus-heading {
    margin-bottom: 35px;
}

    .contactus-heading h3 {
        font-size: 34px;
        font-weight: 800;
        color: #0f172a;
        margin-bottom: 10px;
    }

    .contactus-heading p {
        color: #64748b;
        font-size: 15px;
    }

.contactus-group {
    margin-bottom: 22px;
}

.contactus-label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
}

.contactus-control {
    width: 100%;
    height: 55px;
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    padding: 12px 18px;
    font-size: 15px;
    color: #334155;
    transition: .3s ease;
    background: #fff;
}

    .contactus-control:focus {
        outline: none;
        border-color: #7a3816;
        box-shadow: 0 10px 25px rgba(122,56,22,0.20);
    }

textarea.contactus-control {
    height: auto;
    min-height: 140px;
    resize: vertical;
    padding-top: 15px;
}

.contactus-btn {
    background: linear-gradient(135deg, #7a3816, #a0522d);
    color: #fff;
    border: none;
    border-radius: 14px;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 700;
    transition: .3s ease;
    box-shadow: 0 10px 25px rgba(122,56,22,0.25);
}

    .contactus-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(122,56,22,0.35);
    }

/* MAP */

.contactus-map {
    margin-top: 35px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

    .contactus-map iframe {
        width: 100%;
        height: 450px;
        border: 0;
    }

/* MOBILE */

@media(max-width:768px) {

    .contactus-details,
    .contactus-form-area {
        padding: 35px 25px;
    }

        .contactus-details h2,
        .contactus-heading h3 {
            font-size: 28px;
        }

    .contactus-map iframe {
        height: 300px;
    }
}
