/* =============================================
   ARYA PG COLLEGE, PANIPAT - Custom Stylesheet
   ============================================= */

:root {
    --primary: #b71c1c;
    --primary-dark: #7f0000;
    --primary-light: #f05545;
    --secondary: #ffc107;
    --secondary-dark: #c79100;
    --dark: #1a1a2e;
    --light: #f8f9fa;
    --text: #333;
    --muted: #6c757d;
    --transition: all 0.35s ease;
}

* { box-sizing: border-box; }

body {
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Merriweather', 'Georgia', serif;
    font-weight: 700;
    color: var(--dark);
}

a { text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; }

.set img{
    height: 60px;
}

/* ---------- Top Bar ---------- */
.top-bar {
    background: var(--dark);
    color: #fff;
    font-size: 0.85rem;
    padding: 8px 0;
}
.top-bar a { color: #fff; margin-left: 12px; }
.top-bar a:hover { color: var(--secondary); }
.top-bar i { color: var(--secondary); margin-right: 6px; }

/* ---------- Navbar ---------- */
.navbar {
    background: #fff !important;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    padding: 12px 0;
}
.navbar-brand {
    font-family: 'Merriweather', serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--primary) !important;
    display: flex;
    align-items: center;
}
.navbar-brand .logo-circle {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 10px;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(183, 28, 28, 0.3);
}
.navbar-brand .brand-text { line-height: 1.1; }
.navbar-brand .brand-text small {
    display: block;
    font-size: 0.7rem;
    color: var(--muted);
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}
.navbar-nav .nav-link {
    color: var(--dark) !important;
    font-weight: 500;
    padding: 10px 16px !important;
    position: relative;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary) !important;
}
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 16px;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { width: calc(100% - 32px); }

.dropdown-menu {
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-radius: 0 0 8px 8px;
    border-top: 3px solid var(--primary);
    padding: 10px 0;
    min-width: 220px;
}
.dropdown-item {
    padding: 10px 22px;
    font-size: 0.9rem;
    color: var(--dark);
}
.dropdown-item:hover {
    background: var(--primary);
    color: #fff;
    padding-left: 28px;
}

.btn-apply {
    background: var(--primary);
    color: #fff !important;
    padding: 10px 24px !important;
    border-radius: 30px;
    margin-left: 10px;
}
.btn-apply:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(183, 28, 28, 0.4);
}

/* ---------- Hero / Page Banner ---------- */
.hero {
    position: relative;
    min-height: 90vh;
    background:
        linear-gradient(135deg, rgba(26, 26, 46, 0.85), rgba(183, 28, 28, 0.75)),
        url('https://images.unsplash.com/photo-1562774053-701939374585?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    color: #fff;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero h1 {
    color: #fff;
    font-size: 3.4rem;
    line-height: 1.2;
    margin-bottom: 20px;
    animation: fadeUp 1s ease;
}
.hero h1 span { color: var(--secondary); }
.hero p {
    font-size: 1.15rem;
    max-width: 600px;
    margin-bottom: 30px;
    animation: fadeUp 1.2s ease;
}
.hero .btn { animation: fadeUp 1.4s ease; }
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.page-banner {
    background:
        linear-gradient(135deg, rgba(26, 26, 46, 0.9), rgba(183, 28, 28, 0.8)),
        url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    color: #fff;
    padding: 100px 0 80px;
    text-align: center;
}
.page-banner h1 { color: #fff; font-size: 3rem; margin-bottom: 10px; }
.page-banner .breadcrumb {
    justify-content: center;
    background: transparent;
    margin-bottom: 0;
}
.page-banner .breadcrumb-item, .page-banner .breadcrumb-item a { color: #fff; }
.page-banner .breadcrumb-item.active { color: var(--secondary); }
.page-banner .breadcrumb-item + .breadcrumb-item::before { color: #fff; }

/* ---------- Buttons ---------- */
.btn-primary-custom {
    background: var(--primary);
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    border: 2px solid var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    display: inline-block;
}
.btn-primary-custom:hover {
    background: transparent;
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(183, 28, 28, 0.3);
}
.btn-outline-custom {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    display: inline-block;
    margin-left: 10px;
}
.btn-outline-custom:hover {
    background: var(--secondary);
    color: var(--dark);
    border-color: var(--secondary);
}

/* ---------- Section Common ---------- */
section { padding: 80px 0; }
.section-title {
    text-align: center;
    margin-bottom: 50px;
}
.section-title small {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
}
.section-title h2 {
    font-size: 2.4rem;
    margin: 10px 0 15px;
    position: relative;
    display: inline-block;
}
.section-title h2::after {
    content: '';
    display: block;
    width: 70px;
    height: 3px;
    background: var(--primary);
    margin: 15px auto 0;
}
.section-title p { color: var(--muted); max-width: 700px; margin: 0 auto; }

/* ---------- Info Strip ---------- */
.info-strip {
    background: var(--primary);
    color: #fff;
    padding: 30px 0;
}
.info-strip .info-item { display: flex; align-items: center; gap: 15px; }
.info-strip i { font-size: 2.4rem; color: var(--secondary); }
.info-strip h5 { color: #fff; margin: 0; font-size: 1rem; }
.info-strip p { margin: 0; opacity: 0.9; font-size: 0.9rem; }

/* ---------- About ---------- */
.about-img {
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    position: relative;
}
.about-img-stack { position: relative; padding: 0 0 50px 50px; }
.about-img-stack .img-main { border-radius: 12px; }
.about-img-stack .img-overlay {
    position: absolute;
    bottom: 0; left: 0;
    width: 60%;
    border-radius: 12px;
    border: 6px solid #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.about-content h2 { font-size: 2.2rem; margin-bottom: 20px; }
.about-content small {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.about-content ul { list-style: none; padding: 0; }
.about-content ul li {
    padding: 8px 0 8px 30px;
    position: relative;
}
.about-content ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary);
    position: absolute;
    left: 0;
}

.stats-box {
    background: var(--dark);
    color: #fff;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    margin-top: 25px;
}
.stats-box h3 { color: var(--secondary); font-size: 2.5rem; margin: 0; }
.stats-box p { margin: 0; opacity: 0.85; }

/* ---------- Why Choose Us ---------- */
.why-section {
    background: var(--light);
}
.why-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    height: 100%;
    transition: var(--transition);
    border-bottom: 4px solid transparent;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}
.why-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--primary);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}
.why-card .icon-wrap {
    width: 80px;
    height: 80px;
    line-height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    color: #fff;
    font-size: 2rem;
    margin: 0 auto 20px;
    transition: var(--transition);
}
.why-card:hover .icon-wrap {
    transform: rotateY(360deg);
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
}
.why-card h4 { font-size: 1.2rem; margin-bottom: 12px; }
.why-card p { color: var(--muted); font-size: 0.93rem; margin: 0; }

/* ---------- Mission Vision ---------- */
.mv-card {
    padding: 40px 30px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-left: 5px solid var(--primary);
    height: 100%;
}
.mv-card .mv-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}
.mv-card h3 { font-size: 1.5rem; margin-bottom: 15px; }

/* ---------- Courses / Services ---------- */
.course-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    height: 100%;
}
.course-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12); }
.course-card .course-img {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.course-card .course-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: #fff;
    padding: 5px 14px;
    font-size: 0.75rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.course-card .course-body { padding: 25px; }
.course-card h4 { font-size: 1.25rem; margin-bottom: 12px; }
.course-card .course-meta {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-top: 1px solid #eee;
    margin-top: 15px;
    color: var(--muted);
    font-size: 0.85rem;
}
.course-card .course-meta i { color: var(--primary); margin-right: 5px; }

.service-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    transition: var(--transition);
    z-index: 0;
}
.service-card:hover::before { left: 0; }
.service-card:hover, .service-card:hover h4, .service-card:hover p { color: #fff; }
.service-card > * { position: relative; z-index: 1; }
.service-card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
    transition: var(--transition);
}
.service-card:hover i { color: var(--secondary); }
.service-card h4 { font-size: 1.2rem; }

/* ---------- Staff ---------- */
.staff-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.07);
    text-align: center;
    transition: var(--transition);
}
.staff-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.13); }
.staff-card .staff-img {
    height: 280px;
    background-size: cover;
    background-position: center top;
    position: relative;
}
.staff-card .staff-social {
    position: absolute;
    bottom: -50px;
    left: 0; right: 0;
    text-align: center;
    transition: var(--transition);
}
.staff-card:hover .staff-social { bottom: 15px; }
.staff-card .staff-social a {
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    background: #fff;
    color: var(--primary);
    border-radius: 50%;
    margin: 0 3px;
}
.staff-card .staff-social a:hover { background: var(--primary); color: #fff; }
.staff-card .staff-body { padding: 22px; }
.staff-card h5 { margin-bottom: 5px; font-size: 1.15rem; }
.staff-card small { color: var(--primary); font-weight: 600; }

/* ---------- Testimonials ---------- */
.testimonials-section {
    background:
        linear-gradient(135deg, rgba(26, 26, 46, 0.92), rgba(183, 28, 28, 0.85)),
        url('https://images.unsplash.com/photo-1481627834876-b7833e8f5570?auto=format&fit=crop&w=1600&q=80') center/cover fixed no-repeat;
    color: #fff;
}
.testimonials-section .section-title h2, .testimonials-section .section-title small { color: #fff; }
.testimonials-section .section-title small { color: var(--secondary); }
.testimonial-card {
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 35px 30px;
    border-radius: 12px;
    color: #fff;
    margin: 15px 5px;
    position: relative;
}
.testimonial-card .quote-icon {
    font-size: 3rem;
    color: var(--secondary);
    opacity: 0.4;
    position: absolute;
    top: 20px;
    right: 25px;
}
.testimonial-card .stars { color: var(--secondary); margin-bottom: 15px; }
.testimonial-card p {
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.8;
}
.testimonial-card .author {
    display: flex;
    align-items: center;
    margin-top: 20px;
}
.testimonial-card .author img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 3px solid var(--secondary);
    margin-right: 15px;
    object-fit: cover;
}
.testimonial-card .author h6 { color: #fff; margin: 0; }
.testimonial-card .author small { color: var(--secondary); }

/* ---------- Events / Blog ---------- */
.event-card, .blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    height: 100%;
    transition: var(--transition);
}
.event-card:hover, .blog-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.12); }
.event-card .event-img, .blog-card .blog-img {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.event-card .event-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: #fff;
    text-align: center;
    padding: 10px 14px;
    border-radius: 8px;
    line-height: 1.1;
}
.event-card .event-date strong { font-size: 1.4rem; display: block; }
.event-card .event-date small { font-size: 0.7rem; text-transform: uppercase; }
.event-card .event-body, .blog-card .blog-body { padding: 25px; }
.blog-card .blog-meta {
    color: var(--muted);
    font-size: 0.83rem;
    margin-bottom: 10px;
}
.blog-card .blog-meta i { color: var(--primary); margin-right: 5px; }
.blog-card .blog-meta span { margin-right: 15px; }
.blog-card h4 { font-size: 1.2rem; line-height: 1.4; margin-bottom: 12px; }
.blog-card a.read-more {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}
.blog-card a.read-more:hover { color: var(--primary-dark); }
.blog-card a.read-more i { transition: var(--transition); }
.blog-card a.read-more:hover i { margin-left: 8px; }

/* ---------- Counter / Stats ---------- */
.counter-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
}
.counter-box { text-align: center; padding: 20px; }
.counter-box i { font-size: 2.8rem; color: var(--secondary); margin-bottom: 15px; }
.counter-box h2 { color: #fff; font-size: 2.8rem; margin: 0; }
.counter-box p { margin: 0; text-transform: uppercase; letter-spacing: 1.5px; opacity: 0.9; font-size: 0.85rem; }

/* ---------- History Timeline ---------- */
.timeline {
    position: relative;
    padding: 30px 0;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: var(--primary);
}
.timeline-item {
    width: 50%;
    padding: 20px 40px;
    position: relative;
}
.timeline-item:nth-child(odd) { left: 0; text-align: right; }
.timeline-item:nth-child(even) { left: 50%; }
.timeline-item::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    background: var(--secondary);
    border: 4px solid var(--primary);
    border-radius: 50%;
    top: 30px;
}
.timeline-item:nth-child(odd)::after { right: -11px; }
.timeline-item:nth-child(even)::after { left: -11px; }
.timeline-content {
    background: #fff;
    padding: 22px;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.07);
}
.timeline-content h4 { color: var(--primary); margin-bottom: 8px; }
.timeline-content span {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 10px;
}
@media (max-width: 768px) {
    .timeline::before { left: 18px; }
    .timeline-item { width: 100%; padding-left: 60px; padding-right: 10px; text-align: left !important; left: 0 !important; }
    .timeline-item::after { left: 8px !important; right: auto !important; }
}

/* ---------- Contact ---------- */
.contact-info-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    text-align: center;
    height: 100%;
}
.contact-info-card i {
    font-size: 2.3rem;
    color: var(--primary);
    margin-bottom: 15px;
    width: 70px;
    height: 70px;
    line-height: 70px;
    background: rgba(183, 28, 28, 0.08);
    border-radius: 50%;
    display: inline-block;
}
.contact-info-card h5 { margin-bottom: 10px; }
.contact-info-card p, .contact-info-card a { color: var(--muted); margin: 4px 0; display: block; }
.contact-info-card a:hover { color: var(--primary); }

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
}
.contact-form .form-control, .contact-form .form-select {
    padding: 12px 18px;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    margin-bottom: 18px;
    transition: var(--transition);
}
.contact-form .form-control:focus, .contact-form .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(183, 28, 28, 0.12);
}
.map-wrap iframe {
    width: 100%;
    height: 420px;
    border: 0;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* ---------- CTA Strip ---------- */
.cta-strip {
    background:
        linear-gradient(135deg, rgba(26,26,46,0.9), rgba(183,28,28,0.85)),
        url('https://images.unsplash.com/photo-1571260899304-425eee4c7efc?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    color: #fff;
    text-align: center;
    padding: 70px 0;
}
.cta-strip h2 { color: #fff; font-size: 2.4rem; margin-bottom: 15px; }
.cta-strip p { max-width: 650px; margin: 0 auto 25px; opacity: 0.95; }

/* ---------- Footer ---------- */
.footer {
    background: var(--dark);
    color: #d6d6e0;
    padding: 70px 0 0;
}
.footer h5 {
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}
.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
}
.footer p { font-size: 0.92rem; line-height: 1.8; opacity: 0.85; }
.footer ul { list-style: none; padding: 0; }
.footer ul li { padding: 6px 0; }
.footer ul li a {
    color: #d6d6e0;
    font-size: 0.92rem;
    transition: var(--transition);
}
.footer ul li a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 8px;
    color: var(--primary);
}
.footer ul li a:hover { color: var(--secondary); padding-left: 6px; }

.footer .social-icons a {
    display: inline-block;
    width: 38px;
    height: 38px;
    line-height: 38px;
    text-align: center;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    color: #fff;
    margin-right: 6px;
}
.footer .social-icons a:hover { background: var(--primary); transform: translateY(-3px); }

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0 !important;
}
.footer-contact li i { color: var(--primary); margin-top: 5px; }
.footer-contact li a::before { content: none !important; margin: 0 !important; }
.footer-contact li a { padding: 0 !important; }

.newsletter input {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    padding: 10px 14px;
    border-radius: 6px;
    width: 100%;
    margin-bottom: 10px;
}
.newsletter input::placeholder { color: #aaa; }
.newsletter button {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    width: 100%;
}
.newsletter button:hover { background: var(--primary-dark); }

.footer-bottom {
    margin-top: 50px;
    padding: 22px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 0.88rem;
    opacity: 0.85;
}
.footer-bottom a { color: var(--secondary); }

/* ---------- Scroll to top ---------- */
#toTop {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 45px;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    border: none;
}
#toTop.show { opacity: 1; visibility: visible; }
#toTop:hover { background: var(--primary-dark); transform: translateY(-3px); }

/* ---------- Misc ---------- */
.bg-light-gray { background: var(--light); }
.text-primary-custom { color: var(--primary) !important; }
.bg-primary-custom { background: var(--primary) !important; }

@media (max-width: 991px) {
    .hero { min-height: 70vh; text-align: center; padding: 80px 0; }
    .hero h1 { font-size: 2.4rem; }
    .navbar-collapse { padding: 15px 0; }
    .btn-apply { margin: 10px 0 0 0; display: inline-block; }
    .about-img-stack { padding: 0; }
    .about-img-stack .img-overlay { display: none; }
}
@media (max-width: 575px) {
    .hero h1 { font-size: 2rem; }
    .section-title h2 { font-size: 1.8rem; }
    .page-banner h1 { font-size: 2.2rem; }
    .btn-outline-custom { margin-left: 0; margin-top: 10px; }
}
