/* CSS Custom Properties (Variables) for easy theming */
:root {
    /* Colors */
    --primary-color: #1a3828;
    --secondary-color: #2d5a3f;
    --accent-color: #ffd700;
    --accent-light: #ffed4e;
    --text-light: whitesmoke;
    --text-dark: #2c3e50;
    --text-muted: #6c757d;
    --bg-light: #f8f9fa;
    --bg-gradient-start: #f8f9fa;
    --bg-gradient-end: #e9ecef;
    --card-gradient-start: #7480ab;
    --card-gradient-end: #5a6b8f;
    
    /* Navbar Custom Properties */
    --navbar-bg: rgba(26, 56, 40, 0.95);
    --navbar-scrolled-bg: rgba(26, 56, 40, 0.98);
    --navbar-text: #ffffff;
    --navbar-hover: #ffd700;
    --navbar-height: 80px;
    --navbar-scrolled-height: 65px;
    --navbar-transition: all 0.3s ease;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
    
    /* Typography */
    --font-size-xs: 0.9rem;
    --font-size-sm: 1rem;
    --font-size-md: 1.1rem;
    --font-size-lg: 1.2rem;
    --font-size-xl: 1.5rem;
    --font-size-xxl: 2rem;
    --font-size-xxxl: 2.5rem;
    --font-size-display: 3.5rem;
    
    /* Border Radius */
    --radius-sm: 10px;
    --radius-md: 20px;
    --radius-lg: 50px;
    
    /* Shadows */
    --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 40px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.4);
    --shadow-accent: 0 8px 25px rgba(255, 215, 0, 0.4);
    --shadow-accent-hover: 0 15px 40px rgba(255, 215, 0, 0.6);
    --shadow-navbar: 0 4px 20px rgba(0, 0, 0, 0.15);
    
    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-normal: 0.4s ease;
    
    /* Heights */
    --hero-height: 86vh;
    --widget-height: 70vh;
    --card-min-height: 250px;
    --image-height: 450px;
    --image-height-mobile: 200px;
}

body {
    margin: 0;
    padding: 0;
}

/* Hero Section */
.hero-row {
    min-height: auto;
    height: var(--hero-height);
}

.banner-col {
    height: var(--hero-height);
    overflow: hidden;
    margin-bottom: 0;
}

.banner-img {
    width: 100%;
    height: 100%;
    object-fit: inherit;
    display: block;
}

.widget-col {
    height: var(--widget-height);
}

.widget-box {
    background: #f4f4f4;
    height: 100%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Programme Section */
.programme-section {
    padding: var(--spacing-xl) 0;
    margin-top: 0;
    background: linear-gradient(135deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
}

.programme-title {
    font-size: var(--font-size-xxxl);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
    line-height: 1.2;
}

.programme-subtitle {
    font-size: var(--font-size-lg);
    color: var(--text-muted);
    margin-bottom: var(--spacing-md);
    font-weight: 500;
}

.programme-description {
    font-size: var(--font-size-md);
    color: #495057;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto var(--spacing-xl);
}

.programme-card {
    background-color: var(--primary-color) !important;
}

/* Why Choose Section */
.why-choose-section {
    padding: var(--spacing-xl) 0;
    margin-top: 0;
    background-color: var(--primary-color);
}

.why-choose-title {
    color: var(--text-light);
    font-size: var(--font-size-display);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

.why-choose-subtitle {
    font-size: var(--font-size-xl);
    color: #e0e0e0;
    margin-bottom: var(--spacing-xl);
}

.why-choose-card {
    background: linear-gradient(135deg, var(--card-gradient-start) 0%, var(--card-gradient-end) 100%);
    border: 3px solid var(--accent-color);
    min-height: var(--card-min-height);
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
    cursor: pointer;
    overflow: hidden;
}

.why-choose-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: var(--shadow-lg);
}

.why-choose-card .card-body {
    padding: var(--spacing-lg);
}

.why-choose-card .card-title {
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--text-light);
}

.why-choose-card .card-text {
    font-size: var(--font-size-lg);
    color: var(--text-light);
}

.why-choose-card-icon {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-sm);
}

.why-choose-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.why-choose-list li {
    font-size: var(--font-size-md);
    color: var(--text-light);
    margin-bottom: var(--spacing-xs);
    padding-left: var(--spacing-md);
    position: relative;
}

.why-choose-list li:before {
    content: "•";
    color: #ffc107;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Banners Section */
.banners-section {
    padding: var(--spacing-xl) 0;
}

.banners-title {
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    font-size: var(--font-size-xxl);
    color: var(--text-dark);
}

.banners-section img {
    width: 100%;
}

/* CTA Button */
.cta-button {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
    border: none;
    padding: 16px 40px;
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--primary-color);
    border-radius: var(--radius-lg);
    cursor: pointer;
    box-shadow: var(--shadow-accent);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all var(--transition-fast);
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.08);
    box-shadow: var(--shadow-accent-hover);
}

.cta-button:active {
    transform: translateY(-2px) scale(1.05);
}

.cta-arrow {
    display: inline-block;
    transition: transform var(--transition-fast);
}

.cta-button:hover .cta-arrow {
    transform: translateX(8px);
}

/* New Section */
.new-section {
    background-color: var(--bg-light);
    padding: var(--spacing-xl) 0;
}

.learning-environment {
    color: var(--text-dark);
    font-size: var(--font-size-display);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.facility-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border: none;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.facility-card .card-body {
    padding: var(--spacing-xl);
}

.facility-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--spacing-lg);
}

.facility-item:last-child {
    margin-bottom: 0;
}

.facility-icon {
    font-size: 2.5rem;
    margin-right: var(--spacing-md);
    flex-shrink: 0;
}

.facility-text {
    color: var(--text-light);
    font-size: var(--font-size-md);
    margin: 0;
    line-height: 1.6;
}

.facility-text b {
    font-weight: 600;
}

.new-section img {
    width: 100%;
    height: var(--image-height);
    object-fit: cover;
    border-radius: var(--radius-sm);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.new-section img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 992px) {
    .banner-col,
    .widget-col {
        height: auto;
    }

    .banner-img {
        height: auto;
        object-fit: contain;
    }

    .widget-box {
        padding: var(--spacing-md);
        text-align: center;
    }
    
    .why-choose-title {
        font-size: var(--font-size-xxxl);
    }
    
    .learning-environment {
        font-size: var(--font-size-xxxl);
    }
}

@media (max-width: 768px) {
    .programme-section {
        padding: var(--spacing-xl) 0;
    }

    .programme-title {
        font-size: var(--font-size-xxl);
    }

    .programme-subtitle {
        font-size: var(--font-size-md);
    }

    .programme-description {
        font-size: var(--font-size-sm);
        padding: 0 var(--spacing-sm);
    }

    .why-choose-section {
        padding: var(--spacing-xl) 0;
    }

    .why-choose-title {
        font-size: var(--font-size-xxl);
    }

    .why-choose-subtitle {
        font-size: var(--font-size-md);
    }

    .why-choose-card .card-body {
        padding: var(--spacing-md);
    }

    .why-choose-card .card-title {
        font-size: var(--font-size-sm);
    }

    .why-choose-card .card-text {
        font-size: var(--font-size-xs);
    }

    .hero-row {
        height: auto;
    }

    .banner-col,
    .widget-col {
        height: auto;
    }

    .banner-img {
        height: auto;
        object-fit: contain;
    }

    .widget-box {
        padding: var(--spacing-sm);
        text-align: center;
    }
    
    .new-section {
        padding: var(--spacing-xl) 0;
    }
    
    .new-section img {
        height: var(--image-height-mobile);
    }
    
    .banners-title {
        font-size: var(--font-size-lg);
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: var(--font-size-md);
    }
}

@media (max-width: 576px) {
    .programme-section {
        padding: var(--spacing-lg) 0;
    }

    .programme-title {
        font-size: var(--font-size-xl);
    }
}
.stat-box {
    background: #1f5331;
    color: white;
    padding: 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 50px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-6px);
}

.stat-box .stat-icon {
    font-size: 3rem;
}

.stat-box .stat-text {
    font-size: 1.2rem;
}

.stat-box .stat-text strong {
    font-size: 1.3rem;
}
.admission-process-section {
    background: linear-gradient(135deg, #1a3828, #244c37);
    padding: 80px 0;
    color: #ffffff;
}

.section-title {
    font-weight: 700;
    font-size: 2.8rem;
    color: #ffffff;
}

.title-line {
    width: 100px;
    height: 4px;
    background: #ffc107;
    margin: 15px auto 0;
}

.sub-heading {
    font-weight: 600;
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #ffc107;
}

/* Process Steps */
.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.process-step p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin: 0;
}

.step-number {
    font-size: 2rem;
    font-weight: bold;
    color: #ffc107;
    margin-right: 20px;
    min-width: 50px;
}

/* Right Side Blocks */
.info-block {
    padding-left: 25px;
    border-left: 4px solid #ffc107;
}

.info-block p {
    font-size: 1.2rem;
    line-height: 1.7;
}

.highlight-text {
    font-weight: 700;
    font-size: 1.25rem;
    color: #ffdd57;
}
/* CTA Box */
.cta-box {
    margin-top: 40px;
    padding: 40px 30px;
    background: linear-gradient(135deg, #ffc107, #ffdd57);
    border-radius: 15px;
    color: #1a3828;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-text {
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0;
}
.programme-structure-section {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

.programme-title {
    font-size: 2.5rem;
    font-weight: 700;
}

.title-line {
    width: 90px;
    height: 4px;
    background: #ffc107;
    margin: 15px auto 0;
}

.programme-intro {
    font-size: 1.2rem;
    line-height: 1.7;
}

.programme-details p {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.programme-details ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.programme-details li {
    font-size: 1.05rem;
    margin-bottom: 6px;
}

/* Highlight Box */
.programme-highlight-box {
    background: linear-gradient(135deg, #1a3828, #244c37);
    color: #ffffff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.highlight-heading {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.highlight-text {
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.enquire-btn {
    display: inline-block;
    background: #ffc107;
    color: #1a3828;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.enquire-btn:hover {
    background: #ffdd57;
}
.why-abms-section {
    background: linear-gradient(135deg, #1a3828, #244c37);
    color: #ffffff;
}

.why-title {
    font-size: 2.6rem;
    font-weight: 700;
}

.title-line {
    width: 100px;
    height: 4px;
    background: #ffc107;
    margin: 15px auto 0;
}

.why-item {
    margin-bottom: 35px;
    padding-left: 20px;
    border-left: 4px solid #ffc107;
}

.why-item h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffc107;
    margin-bottom: 10px;
}

.why-item p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.prospectus-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: #ffdd57;
}
.faq-section {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 700;
}

.title-line {
    width: 90px;
    height: 4px;
    background: #ffc107;
    margin: 15px auto 0;
}

/* Accordion Custom Styling */
.accordion-button {
    font-weight: 600;
    font-size: 1.1rem;
}

.accordion-button:not(.collapsed) {
    background-color: #1a3828;
    color: #ffffff;
}

.accordion-body {
    font-size: 1.05rem;
    line-height: 1.6;
}
.main-footer {
    background: #1a3828;
    color: #ffffff;
   
}

.footer-logo img {
    width: 160px;
    margin-bottom: 15px;
}

.footer-about {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.85;
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.85;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #ffc107;
    opacity: 1;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #ffffff;
    color: #1a3828;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #ffc107;
    color: #000;
}

.footer-divider {
    border-color: rgba(255,255,255,0.2);
    margin: 30px 0 20px;
}
.social-links a {
    font-size: 18px;
    transition: 0.3s;
}

    .social-links a:hover {
        color: #ffc107;
    }
.social-links a {
    width: 45px;
    height: 45px;
    background: #ffffff;
    color: #0b5e36;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    transition: 0.3s ease;
}

    .social-links a:hover {
        background: #ffc107;
        color: #fff;
    }

/* HERO SECTION */
.hero {
    position: relative;
    
   
}

/* Banner Image */
.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Form Overlay */
.form-overlay {
    position: absolute;
    top: 50%;
    right: 3%;
    transform: translateY(-50%);
    width: 380px;
 
    padding: 25px;
    border-radius: 12px;
 
    z-index: 1000;
}

/* Mobile View */
@media (max-width: 991px) {

    .hero {
        height: auto;
    }

    .banner-img {
        height: auto;
    }

    .form-overlay {
        position: static;
        transform: none;
        width: 92%;
        margin: 20px auto;
    }
}
.inline-cta {
    margin-left: 12px;
   

    padding: 8px 16px;
    border-radius: 4px;
   
    cursor: pointer;
    transition: 0.3s ease;
}

    .inline-cta:hover {
        background: #007a4a;
    }

