div.welcome-copy{
    margin-left:10px;
}

div.modern-course-card.border-top-accent{
    margin-left: 10px;
    margin-right: 10px;
}

div.modern-course-card.border-top-secondary{
    margin-left:10px;
    margin-right:10px;
}

div.modern-course-card.border-top-primary{
    margin-left:10px;
    margin-right:10px;
}

/* Premium Homepage UI Stylesheet */

/* Common Layout Utilities */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Accent Glow Blob backgrounds for modern premium look */
.hero-bg-accent {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, rgba(37, 99, 235, 0) 70%);
    z-index: 1;
    pointer-events: none;
    filter: blur(80px);
}

/* Pulsing dot for live tag */
.pulse-dot {
    width: 8px;
    height: 8px;
    background: #4CAF50;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
    animation: pulse 1.6s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(76, 175, 80, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
    }
}

/* Gradient text for key words */
.gradient-text {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    /* Standard property for compatibility */
    background-clip: text;
    /* WebKit-prefixed properties for broader browser support */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* 1. Modern Split Hero Section */
.modern-hero {
    position: relative;
    padding: 80px 0 120px;
    background: #FAF8F6; /* Warm rich off-white background */
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content-col {
    display: flex;
    flex-direction: column;
}



.nielit-glow-tag {
    background: var(--white);
    border: 1px solid var(--border-color);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-light);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: max-content;
    margin-bottom: 25px;
    box-shadow: var(--shadow-sm);
}

.nielit-glow-tag i {
    color: var(--secondary);
}

.hero-content-col h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(34px, 4.5vw, 54px);
    font-weight: 900;
    color: var(--primary);
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-desc {
    font-size: clamp(15px, 2vw, 17px);
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-bullets {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 35px;
}

.bullet-item {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.bullet-item i {
    color: #4CAF50;
    font-size: 18px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary-glow {
    background: var(--secondary);
    color: var(--white);
    padding: 15px 35px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 30px;
    box-shadow: 0 8px 25px rgba(21, 101, 192, 0.25);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary-glow:hover {
    background: var(--secondary-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(21, 101, 192, 0.35);
}

.btn-secondary-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 14px 30px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

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

/* Hero Visuals */
.hero-visual-col {
    display: flex;
    justify-content: center;
}

.visual-wrapper {
    position: relative;
    padding: 30px;
}


 .image-frame-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 8px solid var(--white);
    background: var(--white);
    max-width: 480px;
}

.image-frame-main img {
    display: block;
    object-fit: contain;
    border-radius: var(--radius-md);
    height: 380px;
    width: 100%;
} 

/* Floating Badges */
.floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 15px 20px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
}

.floating-badge .icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.floating-badge .icon-wrap.gold {
    background: #FFF8E1;
    color: var(--accent);
}

.floating-badge .icon-wrap.blue {
    background: #E3F2FD;
    color: var(--secondary);
}

.floating-badge h4 {
    font-size: 15px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
}

.floating-badge p {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 0;
}

.badge-top-left {
    top: -20px;
    left: -20px;
}

.badge-bottom-right {
    bottom: -20px;
    right: -20px;
}

/* Animations */
.animate-float {
    animation: float 4s ease-in-out infinite;
}

.animate-float-delay {
    animation: float-delay 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes float-delay {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(12px); }
}

/* 2. Floating Statistics Glass Bar */
.floating-stats-section {
    position: relative;
    z-index: 10;
    height: 0;
}

.stats-glass-container {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-md);
    box-shadow: 0 15px 45px rgba(10, 25, 49, 0.08);
    padding: 30px 40px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    transform: translateY(-50px);
}

.stat-box {
    text-align: center;
    flex-grow: 1;
}

.stat-box h3 {
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.1;
    margin-bottom: 4px;
}

.stat-box p {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-color);
}

/* 3. Modern Welcome Collage Section */
.welcome-modern-section {
    padding: 120px 0 80px;
}

.welcome-modern-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.collage-visual {
    display: flex;
    justify-content: center;
}

.collage-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 400px;
}

.collage-img {
    position: absolute;
    border-radius: var(--radius-md);
    border: 5px solid var(--white);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition);
}

.collage-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.collage-img:hover {
    z-index: 10 !important;
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}

.img-main {
    width: 68%;
    height: 250px;
    top: 0;
    left: 0;
    z-index: 3;
}

.img-secondary {
    width: 58%;
    height: 180px;
    bottom: 30px;
    right: 0;
    z-index: 4;
}

.img-tertiary {
    width: 48%;
    height: 130px;
    bottom: -15px;
    left: 30px;
    z-index: 5;
}

.collage-accent-box {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 120px;
    height: 120px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    opacity: 0.15;
    z-index: 1;
}

/* Welcome Copy */
.welcome-tag {
    color: var(--secondary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 8px;
}

.welcome-copy h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(26px, 3.5vw, 36px);
    font-weight: 900;
    color: var(--primary);
    line-height: 1.25;
    margin-bottom: 20px;
}

.summary-text {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.feature-bullets-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 35px;
}

.f-bullet {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.f-bullet-icon {
    width: 44px;
    height: 44px;
    background: rgba(21, 101, 192, 0.05);
    color: var(--secondary);
    border: 1px solid rgba(21, 101, 192, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.f-bullet h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 3px;
}

.f-bullet p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.5;
}

.btn-primary-dark {
    background: var(--primary);
    color: var(--white);
    padding: 12px 28px;
    font-weight: 600;
    font-size: 14px;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 10px rgba(10, 25, 49, 0.15);
}

.btn-primary-dark:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

/* 4. Premium Courses Section */
.premium-courses-section {
    padding: 80px 0;
}

.section-title-centered {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 60px;
}

.course-tag-title {
    color: var(--secondary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 8px;
}

.section-title-centered h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(26px, 3.5vw, 36px);
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 15px;
}

.heading-line {
    width: 60px;
    height: 4px;
    background: var(--accent);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-title-centered p {
    font-size: 15px;
    color: var(--text-muted);
}

.courses-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.modern-course-card {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition);
}

.modern-course-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.modern-course-card.border-top-secondary {
    border-top: 5px solid var(--secondary);
}

.modern-course-card.border-top-accent {
    border-top: 5px solid var(--accent);
}

.modern-course-card.border-top-primary {
    border-top: 5px solid var(--primary);
}

.card-media {
    height: 170px;
    position: relative;
    overflow: hidden;
    background: var(--light);
}

.card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.modern-course-card:hover .card-media img {
    transform: scale(1.08);
}

.media-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.card-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-category {
    font-size: 11px;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: 1px;
    display: block;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.card-info h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
}

.card-info p {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.card-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.card-features span {
    font-size: 12px;
    font-weight: 600;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-features span i {
    color: #4CAF50;
}

.card-action-bar {
    margin-top: auto;
}

.btn-card-learn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--secondary);
    transition: var(--transition);
}

.btn-card-learn:hover {
    color: var(--secondary-hover);
    transform: translateX(4px);
}

/* 5. Special Concessions Banner Section */
.special-banner-section {
    padding: 60px 0;
}

.special-gradient-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 50px;
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

/* Decorative background shapes inside banner */
.special-gradient-banner::before {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 179, 0, 0.1) 0%, rgba(255, 179, 0, 0) 70%);
    pointer-events: none;
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
}

.promo-tag {
    background: var(--accent);
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 4px;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 15px;
}

.special-gradient-banner h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.2;
}

.special-gradient-banner p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
}

.banner-features-row {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.bf-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
}

.bf-item i {
    color: var(--accent);
    font-size: 16px;
}

.banner-action {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.btn-banner-cta {
    background: var(--accent);
    color: var(--primary);
    padding: 15px 30px;
    font-weight: 800;
    font-size: 14px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(255, 179, 0, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-banner-cta:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 179, 0, 0.4);
}

/* 6. High-End Info Grid (Booking, Address, Document info) */
.modern-info-section {
    padding: 60px 0 120px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.info-card-modern {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    padding: 40px 30px;
    position: relative;
    transition: var(--transition);
}

.info-card-modern:hover {
    transform: translateY(-5px);
}

/* Modern box-shadow glows on card hovers */
.info-card-modern.shadow-blue:hover {
    box-shadow: 0 15px 35px rgba(21, 101, 192, 0.1);
    border-color: rgba(21, 101, 192, 0.2);
}

.info-card-modern.shadow-gold:hover {
    box-shadow: 0 15px 35px rgba(255, 179, 0, 0.15);
    border-color: rgba(255, 179, 0, 0.2);
}

.info-card-modern.shadow-navy:hover {
    box-shadow: 0 15px 35px rgba(10, 25, 49, 0.1);
    border-color: rgba(10, 25, 49, 0.2);
}

.card-top-icon {
    font-size: 28px;
    color: var(--secondary);
    margin-bottom: 20px;
}

.shadow-gold .card-top-icon {
    color: var(--accent);
}

.shadow-navy .card-top-icon {
    color: var(--primary);
}

.info-card-modern h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.info-card-modern p {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.info-list li {
    font-size: 13px;
    color: var(--dark);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-list li i {
    color: #4CAF50;
    font-size: 14px;
}

.btn-info-card-cta {
    background: var(--light);
    color: var(--secondary);
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-info-card-cta:hover {
    background: var(--secondary);
    color: var(--white);
}

.location-details p {
    font-size: 13px;
    margin-bottom: 8px;
}

.location-details p i {
    color: var(--secondary);
    margin-right: 6px;
}

.document-list li i {
    color: var(--secondary);
}

/* Responsive adjustments */
@media(max-width: 1200px) {
    .special-gradient-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 30px;
    }
    
    .banner-action {
        width: 100%;
    }
    
    .btn-banner-cta {
        width: 100%;
        justify-content: center;
    }
}

@media(max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .nielit-badge{
        display: block;
    }

    .nielit-glow-tag {
        margin: 0 auto 20px;
    }
    
    .hero-desc {
        margin: 0 auto 25px;
    }
    
    .hero-bullets {
        align-items: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .visual-wrapper {
        max-width: 400px;
    }
    
    .image-frame-main img {
        height: 300px;
    }
    
    .floating-stats-section {
        height: auto;
    }
    
    .stats-glass-container {
        transform: none;
        margin-top: 40px;
        flex-direction: column;
        gap: 20px;
        padding: 25px;
    }
    
    .stat-divider {
        width: 80%;
        height: 1px;
    }
    
    .welcome-modern-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .collage-visual {
        order: -1;
    }
}



@media(max-width: 768px) {
    .modern-hero {
        padding: 50px 0 60px;
    }
    
    .welcome-modern-section {
        padding: 60px 0 40px;
    }
    
    .collage-wrapper {
        height: 320px;
        max-width: 400px;
    }

    .img-main {
        height: 200px;
    }
    
    .img-secondary {
        height: 140px;
        bottom: 20px;
    }
    
    .img-tertiary {
        height: 100px;
        bottom: -10px;
    }
    
    .premium-courses-section {
        padding: 50px 0;
    }
    
    .modern-info-section {
        padding: 40px 0 60px;
    }
    
    .info-card-modern {
        padding: 30px 20px;
    }
}





