/* ========================================
   SMART COMPUTER TRAINING INSTITUTE
   Main Stylesheet - Upgraded UX/UI
   ======================================== */

:root {
    --primary: #0F172A;
    --primary-dark: #0B1325;
    --primary-blue: #1E40AF;
    --primary-light: #3B82F6;
    --secondary: #EA580C;
    --secondary-hover: #C2410C;
    --accent-gold: #F59E0B;
    --accent-green: #10B981;
    --bg-light: #F8FAFC;
    --text-dark: #0F172A;
    --text-muted: #64748B;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.05);
    --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 16px 40px rgba(15, 23, 42, 0.12);
    --shadow: var(--shadow-md);
    --shadow-hover: var(--shadow-lg);
    --radius: 14px;
    --radius-sm: 8px;
    --radius-full: 9999px;
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Reset & Typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.65;
    overflow-x: hidden;
}

a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.25;
}

/* ========================================
   Top Bar
   ======================================== */
.top-bar {
    background: #0B1528;
    color: #94A3B8;
    font-size: 13px;
    padding: 7px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 18px;
    white-space: nowrap;
}

.top-info-item {
    color: #CBD5E1;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-weight: 500;
    font-size: 13px;
}

.top-info-item:hover {
    color: var(--accent-gold);
}

.icon-accent {
    color: var(--secondary);
    font-size: 13px;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 16px;
    white-space: nowrap;
}

.top-udyam-badge {
    background: rgba(245, 158, 11, 0.12);
    color: #FCD34D;
    border: 1px solid rgba(245, 158, 11, 0.25);
    padding: 3px 12px;
    border-radius: var(--radius-full);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.3px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.social-links-wrapper {
    display: flex;
    align-items: center;
    gap: 6px;
}

.social-links-wrapper a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #CBD5E1;
    font-size: 12px;
    transition: var(--transition);
}

.social-links-wrapper a:hover {
    background: var(--secondary);
    color: #FFFFFF;
    transform: translateY(-2px);
}

/* ========================================
   Header & Navigation
   ======================================== */
.main-header {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    z-index: 1040;
    transition: var(--transition);
}

.navbar {
    padding: 10px 0;
}

/* Brand Logo */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    margin-right: 15px;
}

.brand-logo-container {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-blue), #1D4ED8);
}

.brand-img {
    max-height: 44px;
    width: auto;
    object-fit: contain;
}

.brand-fallback-icon {
    color: #FFFFFF;
    font-size: 20px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-text-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brand-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 20px;
    color: #0F172A;
    line-height: 1.1;
    display: flex;
    align-items: center;
    gap: 6px;
}

.brand-badge {
    background: linear-gradient(135deg, #F97316, #EA580C);
    color: #FFFFFF;
    font-size: 9.5px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.brand-subtitle {
    font-size: 11px;
    font-weight: 600;
    color: #64748B;
    letter-spacing: 0.2px;
    white-space: nowrap;
}

/* Nav links */
.navbar-nav {
    gap: 4px;
}

.navbar-nav .nav-link {
    font-size: 14.5px;
    font-weight: 600;
    color: #334155;
    padding: 7px 12px !important;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover {
    color: var(--secondary);
    background: rgba(234, 88, 12, 0.06);
}

.navbar-nav .nav-link.active {
    color: var(--secondary);
    background: rgba(234, 88, 12, 0.1);
    font-weight: 700;
}

/* Nav CTA */
.nav-cta-wrapper {
    flex-shrink: 0;
}

.btn-apply-nav {
    background: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
    color: #FFFFFF !important;
    font-weight: 700;
    font-size: 13.5px;
    padding: 8px 18px;
    border-radius: var(--radius-full);
    border: none;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(234, 88, 12, 0.3);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}

.btn-apply-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(234, 88, 12, 0.4);
    color: #FFFFFF !important;
}

/* Custom Mobile Toggler */
.custom-toggler {
    border: none;
    padding: 6px;
    background: #F1F5F9;
    display: flex;
    flex-direction: column;
    gap: 5px;

    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.custom-toggler:focus {
    box-shadow: none;
}

.custom-toggler .toggler-bar {
    display: block;
    width: 22px;
    height: 2.5px;
    background-color: #0F172A;
    border-radius: 2px;
    transition: var(--transition);
}

/* ========================================
   Hero Section V2
   ======================================== */
.hero-v2 {
    background: linear-gradient(135deg, #0B1528 0%, #112347 50%, #1E3A8A 100%);
    padding: 70px 0 80px;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.25;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: #F97316;
    top: -100px;
    right: -50px;
}

.shape-2 {
    width: 350px;
    height: 350px;
    background: #3B82F6;
    bottom: -100px;
    left: -50px;
}

.hero-pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    color: #FDBA74;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
}

.hero-title {
    font-size: 40px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 18px;
    line-height: 1.25;
}

.highlight-text {
    background: linear-gradient(135deg, #FDBA74, #F97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-lead {
    font-size: 17px;
    color: #CBD5E1;
    margin-bottom: 28px;
    line-height: 1.6;
    max-width: 600px;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
    color: #FFFFFF;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
    border: none;
    transition: var(--transition);
}

.btn-hero-primary:hover {
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.5);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.12);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(8px);
    font-weight: 600;
    padding: 12px 26px;
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.22);
    color: #FFFFFF;
    transform: translateY(-2px);
}

.hero-quick-contacts {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.hero-contact-pill {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #E2E8F0;
    padding: 7px 16px;
    border-radius: var(--radius-full);
    font-size: 13.5px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.hero-contact-pill:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
}

.hero-contact-pill.whatsapp-pill {
    background: rgba(34, 197, 94, 0.15);
    border-color: rgba(34, 197, 94, 0.3);
    color: #4ADE80;
}

.hero-contact-pill.whatsapp-pill:hover {
    background: rgba(34, 197, 94, 0.25);
    color: #FFFFFF;
}

.hero-trust-features {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    font-size: 13.5px;
    color: #94A3B8;
    font-weight: 600;
}

.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

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

.hero-image-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 3px solid rgba(255, 255, 255, 0.15);
    background: #0F172A;
}

.hero-main-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

.hero-glass-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.hero-glass-badge .badge-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, #F97316, #EA580C);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.hero-glass-badge .badge-text {
    display: flex;
    flex-direction: column;
}

.hero-glass-badge .badge-text strong {
    font-size: 15px;
    color: #FFFFFF;
}

.hero-glass-badge .badge-text span {
    font-size: 12.5px;
    color: #94A3B8;
}

/* ========================================
   Quick Info Cards
   ======================================== */
.quick-info {
    padding: 40px 0;
    background: var(--bg-light);
}

.info-card {
    background: var(--white);
    padding: 25px 20px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.info-card .icon {
    font-size: 36px;
    color: var(--secondary);
    margin-bottom: 12px;
}

.info-card h6 {
    font-weight: 700;
    margin-bottom: 4px;
}

.info-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* ========================================
   Section Titles
   ======================================== */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--secondary);
    margin: 10px auto 0;
    border-radius: 4px;
}

.section-title p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 15px auto 0;
}

/* ========================================
   About Section
   ======================================== */
.about-section {
    padding: 80px 0;
}

.about-section .about-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.about-section .about-image img {
    width: 100%;
    height: auto;
}

.about-features {
    list-style: none;
    padding: 0;
}

.about-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-features li i {
    color: var(--accent);
    font-size: 20px;
    width: 28px;
}

/* ========================================
   Courses Section
   ======================================== */
.courses-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.course-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.course-card .course-img {
    height: 200px;
    overflow: hidden;
    background: var(--primary-light);
    position: relative;
    flex-shrink: 0;
}

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

.course-card:hover .course-img img {
    transform: scale(1.05);
}

.course-card .course-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--secondary);
    color: #fff;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.course-card .course-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.course-card .course-body h5 {
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary);
}

.course-card .course-body p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.course-card .course-body .course-meta {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px dashed #e9ecef;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    align-items: center;
}

.course-card .course-body .course-meta i {
    margin-right: 4px;
    color: var(--primary-blue);
}

.course-card .course-body .course-meta span {
    display: inline-flex;
    align-items: center;
}

.course-card .course-body .course-meta .course-fee-tag {
    margin-left: auto;
    font-weight: 700;
    color: var(--primary-blue);
    background: rgba(30, 64, 175, 0.08);
    padding: 2px 10px;
    border-radius: 20px;
}

.course-card .course-footer {
    padding: 15px 20px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.course-card .course-footer .btn {
    border-radius: 50px;
    padding: 6px 20px;
    font-size: 14px;
}

/* ========================================
   Why Choose Us
   ======================================== */
.why-section {
    padding: 80px 0;
}

.why-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: var(--radius);
    transition: var(--transition);
    height: 100%;
}

.why-item:hover {
    background: var(--bg-light);
    transform: translateY(-5px);
}

.why-item .icon {
    font-size: 40px;
    color: var(--secondary);
    margin-bottom: 15px;
}

.why-item h6 {
    font-weight: 700;
}

/* ========================================
   Statistics / Counters
   ======================================== */
.stat-section {
    padding: 60px 0;
    background: var(--primary);
    color: #fff;
}

.stat-item {
    text-align: center;
}

.stat-item .counter {
    font-size: 48px;
    font-weight: 800;
    display: block;
}

.stat-item .counter-label {
    font-size: 16px;
    opacity: 0.8;
}

.stat-item i {
    font-size: 40px;
    margin-bottom: 10px;
    color: var(--secondary);
}

/* ========================================
   Testimonials
   ======================================== */
.testimonials-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    height: 100%;
}

.testimonial-card .stars {
    color: #FFB300;
    margin-bottom: 12px;
}

.testimonial-card .testimonial-text {
    font-style: italic;
    color: var(--text-muted);
}

.testimonial-card .testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 18px;
}

.testimonial-card .testimonial-author img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-card .testimonial-author h6 {
    margin-bottom: 0;
}

.testimonial-card .testimonial-author small {
    color: var(--text-muted);
}

/* ========================================
   Areas We Serve
   ======================================== */
.areas-section {
    padding: 80px 0;
}

.area-tag {
    display: inline-block;
    background: var(--bg-light);
    padding: 8px 20px;
    border-radius: 50px;
    margin: 4px 6px 4px 0;
    font-weight: 500;
    transition: var(--transition);
}

.area-tag:hover {
    background: var(--secondary);
    color: #fff;
}

/* ========================================
   FAQ Section
   ======================================== */
.faq-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.accordion-button:not(.collapsed) {
    background: var(--primary);
    color: #fff;
}

.accordion-button:focus {
    box-shadow: 0 0 0 2px var(--secondary);
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
    padding: 70px 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: #fff;
    text-align: center;
}

.cta-section h2 {
    color: #fff;
    font-size: 36px;
    font-weight: 800;
}

.cta-section .btn {
    border-radius: 50px;
    padding: 14px 36px;
    font-weight: 600;
    margin: 6px 8px;
}

.cta-section .btn-primary {
    background: var(--secondary);
    border-color: var(--secondary);
}

.cta-section .btn-primary:hover {
    background: var(--secondary-light);
}

.cta-section .btn-outline-light:hover {
    background: var(--secondary);
    border-color: var(--secondary);
}

/* ========================================
   Footer
   ======================================== */
.main-footer {
    background: #0B1325 !important;
    color: #94A3B8;
    padding: 65px 0 0;
    position: relative;
    border-top: 3px solid var(--secondary);
}

.main-footer h4,
.main-footer h5 {
    color: #FFFFFF;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    margin-bottom: 22px;
    position: relative;
}

.main-footer h5::after {
    content: '';
    display: block;
    width: 35px;
    height: 3px;
    background: linear-gradient(135deg, #F97316, #EA580C);
    margin-top: 8px;
    border-radius: 2px;
}

.footer-brand-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 20px;
    color: #FFFFFF;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #94A3B8;
    margin-bottom: 20px;
}

.main-footer a {
    color: #CBD5E1;
    transition: var(--transition);
}

.main-footer a:hover {
    color: var(--secondary);
}

.main-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-footer ul li {
    padding: 6px 0;
    font-size: 14.5px;
}

.main-footer .footer-contact li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 6px 0;
    color: #CBD5E1;
    font-size: 13.5px;
}

.main-footer .footer-contact li i {
    color: var(--secondary);
    margin-top: 4px;
    flex-shrink: 0;
}

.footer-social {
    display: flex;
    gap: 8px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #FFFFFF;
    font-size: 14px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: linear-gradient(135deg, #F97316, #EA580C);
    color: #FFFFFF;
    transform: translateY(-3px);
}

.footer-hours p {
    font-size: 13.5px;
    color: #94A3B8;
    margin-bottom: 8px;
}

.footer-hours strong {
    color: #FFFFFF;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 22px 0;
    margin-top: 45px;
    background: #070D1A;
    color: #64748B;
    font-size: 13.5px;
}

.footer-bottom p {
    margin-bottom: 0;
}

.footer-bottom ul {
    display: flex;
    gap: 18px;
}

.footer-bottom ul li a {
    color: #94A3B8;
    font-size: 13.5px;
}

.footer-bottom ul li a:hover {
    color: var(--secondary);
}

/* ========================================
   Floating Buttons
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 20px;
    z-index: 999;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    font-size: 32px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.40);
    transition: var(--transition);
}

.whatsapp-btn:hover {
    transform: scale(1.10);
    color: #fff;
}

.call-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--secondary);
    color: #fff;
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(245, 124, 0, 0.40);
    transition: var(--transition);
}

.call-btn:hover {
    transform: scale(1.10);
    color: #fff;
}

.back-to-top {
    position: fixed;
    bottom: 160px;
    right: 20px;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(26, 58, 107, 0.30);
    transition: var(--transition);
}

.back-to-top a:hover {
    background: var(--secondary);
    color: #fff;
}

/* ========================================
   Animations
   ======================================== */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.animate-fade-up {
    animation: fadeInUp 0.8s ease forwards;
}

/* ========================================
   Responsive (Additional)
   ======================================== */
@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 32px;
    }

    .section-title h2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .top-bar {
        font-size: 12px;
        padding: 4px 0;
    }

    .hero {
        padding: 50px 0 40px;
    }

    .hero-content h1 {
        font-size: 26px;
    }

    .stat-item .counter {
        font-size: 32px;
    }

    .navbar-brand .brand-text {
        font-size: 18px;
    }
}

/* ========================================
   Page Banner & Inner Headers
   ======================================== */
.page-banner {
    background: linear-gradient(135deg, #0B1528 0%, #112347 50%, #1E3A8A 100%);
    padding: 45px 0;
    color: #FFFFFF;
    position: relative;
    border-bottom: 3px solid var(--secondary);
}

.banner-pill {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #FDBA74;
    padding: 4px 14px;
    border-radius: var(--radius-full);
    font-size: 12.5px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
}

.banner-title {
    font-size: 32px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.banner-lead {
    font-size: 15px;
    color: #CBD5E1;
    margin-bottom: 0;
    max-width: 600px;
}

.banner-breadcrumb-holder .breadcrumb {
    margin-bottom: 0;
    background: rgba(255, 255, 255, 0.08);
    padding: 8px 18px;
    border-radius: 50px;
    display: inline-flex;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.banner-breadcrumb-holder .breadcrumb-item a {
    color: #FDBA74;
    font-weight: 600;
    font-size: 13.5px;
}

.banner-breadcrumb-holder .breadcrumb-item.active {
    color: #FFFFFF;
    font-size: 13.5px;
}

/* ========================================
   Contact Page Styles
   ======================================== */
.sub-heading {
    color: var(--secondary);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 4px;
}

.contact-cards-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-info-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: var(--radius);
    padding: 18px 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.04);
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
    border-color: #CBD5E1;
}

.card-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 18px;
    flex-shrink: 0;
}

.bg-gradient-orange {
    background: linear-gradient(135deg, #F97316, #EA580C);
}

.bg-gradient-blue {
    background: linear-gradient(135deg, #2563EB, #1D4ED8);
}

.bg-gradient-green {
    background: linear-gradient(135deg, #10B981, #059669);
}

.bg-gradient-gold {
    background: linear-gradient(135deg, #F59E0B, #D97706);
}

.card-details {
    display: flex;
    flex-direction: column;
}

.card-label {
    font-size: 12px;
    font-weight: 700;
    color: #64748B;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.card-details h6 {
    font-size: 15px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 2px;
    line-height: 1.4;
    word-break: break-word;
}

.card-details h6 a {
    color: #0F172A;
}

.card-details h6 a:hover {
    color: var(--secondary);
}

.whatsapp-link {
    color: #16A34A;
    font-weight: 700;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    margin-top: 4px;
}

.udyam-badge-sm {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #FEF3C7;
    color: #D97706;
    font-size: 11.5px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    margin-top: 4px;
    width: fit-content;
}

.btn-directions {
    background: #0F172A;
    color: #FFFFFF;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.btn-directions:hover {
    background: var(--secondary);
    color: #FFFFFF;
    transform: translateY(-2px);
}

/* Contact Form Card */
.contact-form-card {
    background: #FFFFFF;
    border-radius: 20px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.06);
    padding: 35px;
}

.form-label-custom {
    font-size: 13.5px;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 6px;
    display: block;
}

.input-icon-group {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon-group .input-icon {
    position: absolute;
    left: 16px;
    color: #94A3B8;
    font-size: 15px;
    pointer-events: none;
    transition: var(--transition);
}

.custom-input {
    padding: 11px 16px 11px 44px;
    border-radius: 10px;
    border: 1.5px solid #E2E8F0;
    font-size: 14.5px;
    color: #0F172A;
    background: #F8FAFC;
    transition: var(--transition);
}

.custom-input:focus {
    background: #FFFFFF;
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(234, 88, 12, 0.12);
    outline: none;
}

.custom-input:focus+.input-icon,
.input-icon-group:focus-within .input-icon {
    color: var(--secondary);
}

.textarea-input {
    padding-left: 44px;
    resize: vertical;
    min-height: 120px;
}

.btn-submit-message {
    background: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
    color: #FFFFFF;
    font-weight: 700;
    font-size: 16px;
    padding: 13px 30px;
    border-radius: var(--radius-full);
    border: none;
    box-shadow: 0 6px 20px rgba(234, 88, 12, 0.35);
    transition: var(--transition);
}

.btn-submit-message:hover {
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(234, 88, 12, 0.45);
}

/* Map Card */
.map-card-wrapper {
    background: #FFFFFF;
    border-radius: 20px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    padding: 25px;
}

.map-iframe-holder {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* ========================================
   Student Zone Card Styles
   ======================================== */
.student-service-card {
    background: #FFFFFF;
    border-radius: 20px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.student-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
    border-color: #CBD5E1;
}

.card-top-bar {
    height: 6px;
    width: 100%;
}

.service-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.bg-blue-subtle {
    background: rgba(37, 99, 235, 0.1);
}

.bg-orange-subtle {
    background: rgba(249, 115, 22, 0.1);
}

.bg-green-subtle {
    background: rgba(16, 185, 129, 0.1);
}

.service-tag {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
}

.btn-service-action {
    color: #FFFFFF !important;
    font-weight: 700;
    font-size: 15px;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    border: none;
    transition: var(--transition);
}

.btn-service-action.btn-blue {
    background: linear-gradient(135deg, #2563EB, #1D4ED8);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.35);
}

.btn-service-action.btn-blue:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(37, 99, 235, 0.45);
}

.btn-service-action.btn-orange {
    background: linear-gradient(135deg, #F97316, #EA580C);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.35);
}

.btn-service-action.btn-orange:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(249, 115, 22, 0.45);
}

.btn-service-action.btn-green {
    background: linear-gradient(135deg, #10B981, #059669);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.35);
}

.btn-service-action.btn-green:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(16, 185, 129, 0.45);
}

.student-help-banner {
    background: linear-gradient(135deg, #0B1528 0%, #112347 50%, #1E3A8A 100%);
    box-shadow: 0 15px 35px rgba(11, 21, 40, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

/* ========================================
   Custom Submenu & Dropdown Styles
   ======================================== */
@media (min-width: 992px) {
    .nav-item.dropdown:hover .custom-dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .custom-dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.25s ease;
        border-radius: 14px;
        border: 1px solid #E2E8F0;
        box-shadow: 0 15px 35px rgba(15, 23, 42, 0.12);
        padding: 8px;
        min-width: 270px;
        background: #FFFFFF;
    }
}

.custom-dropdown-menu .dropdown-item {
    font-size: 14px;
    font-weight: 600;
    color: #1E293B;
    padding: 10px 14px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.custom-dropdown-menu .dropdown-item:hover {
    background: #F8FAFC;
    color: var(--secondary);
    transform: translateX(4px);
}

.custom-dropdown-menu .dropdown-divider {
    margin: 6px 0;
    border-color: #F1F5F9;
}

/* ========================================
   Top Announcement Notice Bar
   ======================================== */
.site-notice-bar {
    position: relative;
    z-index: 1050;
    font-size: 13.5px;
    font-weight: 500;
    line-height: 1.4;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.site-notice-bar-primary {
    background: linear-gradient(90deg, #1E40AF 0%, #1E3A8A 100%);
    color: #FFFFFF;
}

.site-notice-bar-warning {
    background: linear-gradient(90deg, #F59E0B 0%, #D97706 100%);
    color: #1E293B;
}

.site-notice-bar-warning .notice-text {
    color: #1E293B;
    font-weight: 600;
}

.site-notice-bar-danger {
    background: linear-gradient(90deg, #EF4444 0%, #DC2626 100%);
    color: #FFFFFF;
}

.site-notice-bar-info {
    background: linear-gradient(90deg, #0284C7 0%, #0369A1 100%);
    color: #FFFFFF;
}

.site-notice-bar-success {
    background: linear-gradient(90deg, #10B981 0%, #059669 100%);
    color: #FFFFFF;
}

.site-notice-bar .notice-badge {
    background: rgba(255, 255, 255, 0.22);
    color: #FFFFFF;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.5px;
    padding: 4px 8px;
    border-radius: 6px;
    text-transform: uppercase;
}

.site-notice-bar-warning .notice-badge {
    background: #1E293B;
    color: #FCD34D;
}

.site-notice-bar .notice-text {
    color: rgba(255, 255, 255, 0.95);
}

.site-notice-bar .btn-notice-action {
    background: #FFFFFF;
    color: #0F172A;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 999px;
    transition: var(--transition);
    border: none;
    text-decoration: none;
    white-space: nowrap;
}

.site-notice-bar .btn-notice-action:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.site-notice-bar-warning .btn-notice-action {
    background: #1E293B;
    color: #FFFFFF;
}

.site-notice-bar-warning .btn-notice-action:hover {
    background: #0F172A;
    color: #FCD34D;
}

.site-notice-bar .notice-close {
    cursor: pointer;
    font-size: 14px;
    transition: var(--transition);
    background: transparent;
    border: none;
}

.site-notice-bar-warning .notice-close {
    color: #1E293B !important;
}

.site-notice-bar .notice-close:hover {
    opacity: 1 !important;
    transform: scale(1.15);
}