/* =================== GLOBAL STYLES & VARIABLES ========================*/
:root {
    --primary: #0d6efd;
    --primary-dark: #0b5ed7;
    --secondary: #198754;
    --secondary-dark: #157347;
    --accent: #ffc107;
    --dark: #212529;
    --light: #f8f9fa;
    --gray: #6c757d;
    --border: #dee2e6;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 20px 40px rgba(13, 110, 253, 0.2);
    --transition: all 0.3s ease;
    --whatsapp: #25d366;
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
    --footer-bg: #0B1D33;
    --footer-text: #94a3b8;
    --footer-heading: #ffffff;
    --footer-border: rgba(212, 175, 55, 0.15);
    --footer-hover: #D4AF37;
    --footer-green: #00C853;
}

body {
    font-family: var(--font-body);
    color: var(--dark);
    overflow-x: hidden;
}

/* =================== KEYFRAMES ========================*/
@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, 20px);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* =================== NAVBAR ========================*/
.navbar {
    transition: var(--transition);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(13, 110, 253, 0.1);
}

.navbar.sticky-scrolled {
    padding: 0.5rem 1rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.98) !important;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar-brand i {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2rem;
}

.navbar-nav {
    align-items: center;
    gap: 5px;
}

.nav-link {
    color: var(--dark) !important;
    font-weight: 600;
    padding: 0.6rem 1.2rem !important;
    transition: var(--transition);
    border-radius: 8px;
    font-size: 0.95rem;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: var(--transition);
    border-radius: 3px;
    opacity: 0;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 70%;
    opacity: 1;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary) !important;
    background: rgba(13, 110, 253, 0.05);
}

/* Dropdown */
.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-toggle i.fa-chevron-down,
.dropdown-toggle1 i.fa-chevron-down {
    font-size: 0.8rem;
    transition: transform 0.3s;
}

.dropdown-toggle[aria-expanded="true"] i.fa-chevron-down,
.dropdown-toggle1[aria-expanded="true"] i.fa-chevron-down {
    transform: rotate(180deg);
}

.dropdown-menu {
    border: none;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    animation: fadeInDown 0.3s ease;
    border-radius: 15px;
    padding: 0.8rem 0;
    min-width: 220px;
    border: 1px solid var(--border);
    margin-top: 10px;
}

.dropdown-item {
    padding: 0.7rem 1.8rem;
    font-weight: 500;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.dropdown-item i {
    width: 20px;
    color: var(--secondary);
    font-size: 0.9rem;
}

.dropdown-item:hover {
    background: rgba(13, 110, 253, 0.1);
    color: var(--primary);
    transform: translateX(5px);
}

.dropdown-item.active {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

.dropdown-item.active i {
    color: white;
}

.dropdown-divider {
    margin: 0.5rem 0;
    border-top: 1px solid var(--border);
}

/* Admission Button */
.btn-admission {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: white !important;
    padding: 0.7rem 2rem !important;
    border-radius: 50px;
    font-weight: 700;
    transition: var(--transition);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    box-shadow: 0 5px 15px rgba(25, 135, 84, 0.3);
    text-decoration: none;
}

.btn-admission:hover {
    background: linear-gradient(135deg, var(--secondary-dark), var(--secondary));
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(25, 135, 84, 0.4);
    color: white !important;
}

/* =================== HERO SECTIONS (ALL PAGES) ========================*/
.hero,
.team-hero,
.terms-hero,
.testimonials-hero,
.trades-hero,
.workspace-hero,
.careers-hero,
.contact-hero,
.disclaimer-hero,
.events-hero,
.faq-hero,
.placement-hero,
.privacy-hero,
.refund-hero,
.features-hero,
.about-hero,
.achievements-hero,
.admission-hero,
.blog-hero,
.campus-hero,
.sitemap-hero {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 100px 0 60px;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before,
.team-hero::before,
.terms-hero::before,
.testimonials-hero::before,
.trades-hero::before,
.workspace-hero::before,
.careers-hero::before,
.contact-hero::before,
.disclaimer-hero::before,
.events-hero::before,
.faq-hero::before,
.placement-hero::before,
.privacy-hero::before,
.refund-hero::before,
.features-hero::before,
.about-hero::before,
.achievements-hero::before,
.admission-hero::before,
.blog-hero::before,
.campus-hero::before,
.sitemap-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 20s infinite;
}

.hero::after,
.team-hero::after,
.terms-hero::after,
.testimonials-hero::after,
.trades-hero::after,
.workspace-hero::after,
.careers-hero::after,
.contact-hero::after,
.disclaimer-hero::after,
.events-hero::after,
.faq-hero::after,
.placement-hero::after,
.privacy-hero::after,
.refund-hero::after,
.features-hero::after,
.about-hero::after,
.achievements-hero::after,
.admission-hero::after,
.blog-hero::after,
.campus-hero::after,
.sitemap::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: float 25s infinite reverse;
}

.hero-content,
.team-hero .hero-content,
.terms-hero .hero-content,
.testimonials-hero .hero-content,
.trades-hero .hero-content,
.workspace-hero .hero-content,
.careers-hero .hero-content,
.contact-hero .hero-content,
.disclaimer-hero .hero-content,
.events-hero .hero-content,
.faq-hero .hero-content,
.placement-hero .hero-content,
.privacy-hero .hero-content,
.refund-hero .hero-content,
.features-hero .hero-content,
.about-hero .hero-content,
.achievements-hero .hero-content,
.admission-hero .hero-content,
.blog-hero .hero-content,
.campus-hero .hero-content,
.sitempa .hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-badge,
.team-hero .hero-badge,
.terms-hero .hero-badge,
.testimonials-hero .hero-badge,
.trades-hero .hero-badge,
.workspace-hero .hero-badge,
.careers-badge,
.sitemap-hero .hero-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    padding: 8px 25px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 30px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero h1,
.team-hero h1,
.terms-hero h1,
.testimonials-hero h1,
.trades-hero h1,
.workspace-hero h1,
.careers-hero h1,
.contact-hero h1,
.disclaimer-hero h1,
.events-hero h1,
.faq-hero h1,
.placement-hero h1,
.privacy-hero h1,
.refund-hero h1,
.features-hero h1,
.about-hero h1,
.achievements-hero h1,
.admission-hero h1,
.blog-hero h1,
.campus-hero h1,
.sitemap-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: var(--font-heading);
}

.hero h1 span,
.team-hero h1 span,
.terms-hero h1 span,
.testimonials-hero h1 span,
.trades-hero h1 span,
.workspace-hero h1 span,
.careers-hero h1 span,
.contact-hero h1 span,
.disclaimer-hero h1 span,
.events-hero h1 span,
.faq-hero h1 span,
.placement-hero h1 span,
.privacy-hero h1 span,
.refund-hero h1 span,
.features-hero h1 span,
.about-hero h1 span,
.achievements-hero h1 span,
.admission-hero h1 span,
.blog-hero h1 span,
.campus-hero h1 span,
.sitemap-hero h1 span {
    color: var(--accent);
}

.hero p,
.team-hero p,
.terms-hero p,
.testimonials-hero p,
.trades-hero p,
.workspace-hero p,
.careers-hero p,
.contact-hero p,
.disclaimer-hero p,
.events-hero p,
.faq-hero p,
.placement-hero p,
.privacy-hero p,
.refund-hero p,
.features-hero p,
.about-hero p,
.achievements-hero p,
.admission-hero p,
.blog-hero p,
.campus-hero p,
.sitemap-hero p {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

/* Hero specific additions (if any) */
.hero h1 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background: rgba(255, 255, 255, 0.2);
    z-index: -1;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: white;
    color: var(--primary);
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-hero-primary:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-5px);
}

.btn-hero-secondary {
    background: transparent;
    color: white;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid white;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-hero-secondary:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-5px);
}

.hero-stats {
    display: flex;
    gap: 50px;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-item .stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
    display: block;
}

.stat-item .stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* =================== GOVERNMENT BADGE ========================*/
.govt-badge-container {
    background: var(--light);
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.govt-badge {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    padding: 15px 30px;
    border-radius: 60px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
    color: var(--primary);
    border: 1px solid rgba(13, 110, 253, 0.3);
    backdrop-filter: blur(5px);
    margin: 0 auto;
    width: fit-content;
}

.govt-badge i {
    color: var(--secondary);
    font-size: 1.5rem;
}

/* =================== STATS CARDS (COMMON) ========================*/
.team-stats,
.testimonial-stats,
.trades-stats,
.admission-stats,
.campus-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 60px 0;
}

.team-stat-item,
.testimonial-stat-item,
.trades-stat-item,
.admission-stat-item,
.campus-stat-item {
    text-align: center;
    background: white;
    padding: 30px 20px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.team-stat-item:hover,
.testimonial-stat-item:hover,
.trades-stat-item:hover,
.admission-stat-item:hover,
.campus-stat-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.team-stat-item i,
.testimonial-stat-item i,
.trades-stat-item i,
.admission-stat-item i,
.campus-stat-item i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.team-stat-item h3,
.testimonial-stat-item h3,
.trades-stat-item h3,
.admission-stat-item h3,
.campus-stat-item h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.team-stat-item p,
.testimonial-stat-item p,
.trades-stat-item p,
.admission-stat-item p,
.campus-stat-item p {
    color: var(--gray);
    margin: 0;
}

/* Specific adjustment for trades-stats */
.trades-stats {
    margin: -50px 0 60px;
    position: relative;
    z-index: 10;
}

/* =================== SECTION TITLES ========================*/
.section {
    padding: 80px 0;
}

.section.bg-light {
    background: var(--light);
}

.section-title,
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.section-title h2,
.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--dark);
}

.section-title h2 span,
.section-header h2 span {
    color: var(--secondary);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title p,
.section-header p {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

/* =================== BUTTONS ========================*/
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: white;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--secondary-dark), var(--secondary));
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(25, 135, 84, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

/* =================== TEAM PAGE ========================*/
.team-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    height: 100%;
    border: 1px solid var(--border);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.team-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 40px auto 20px;
    border: 5px solid var(--primary);
    box-shadow: 0 10px 25px rgba(13, 110, 253, 0.3);
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-content {
    padding: 0 25px 40px;
}

.team-content h4 {
    font-weight: 800;
    margin-bottom: 5px;
    font-size: 1.3rem;
}

.team-content .trade {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 1rem;
}

.team-content .qualification {
    color: var(--secondary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.team-content p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.team-social {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.team-social a {
    width: 38px;
    height: 38px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition);
    text-decoration: none;
}

.team-social a:hover {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    transform: translateY(-3px);
}

/* =================== INSTRUCTOR CARDS (used in team and elsewhere) ========================*/
.instructor-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    height: 100%;
    border: 1px solid var(--border);
}

.instructor-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.instructor-img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    overflow: hidden;
    margin: 40px auto 20px;
    border: 5px solid var(--primary);
    box-shadow: 0 10px 25px rgba(13, 110, 253, 0.3);
}

.instructor-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.instructor-content {
    padding: 0 25px 40px;
}

.instructor-content h4 {
    font-weight: 800;
    margin-bottom: 5px;
    font-size: 1.3rem;
}

.instructor-content .trade {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 1rem;
}

.instructor-content .cert {
    color: var(--secondary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.instructor-content p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.instructor-social {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.instructor-social a {
    width: 38px;
    height: 38px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition);
    text-decoration: none;
}

.instructor-social a:hover {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    transform: translateY(-3px);
}

/* =================== TERMS / DISCLAIMER / PRIVACY / REFUND PAGES ========================*/
.terms-content,
.disclaimer-content,
.privacy-content,
.refund-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
}

.terms-card,
.disclaimer-card,
.privacy-card,
.refund-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.terms-section,
.disclaimer-section,
.privacy-section,
.refund-section {
    margin-bottom: 40px;
    scroll-margin-top: 100px;
}

.terms-section:last-child,
.disclaimer-section:last-child,
.privacy-section:last-child,
.refund-section:last-child {
    margin-bottom: 0;
}

.terms-section h2,
.disclaimer-section h2,
.privacy-section h2,
.refund-section h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(90deg, var(--primary), var(--secondary)) 1;
    border-image-slice: 1;
}

.terms-section h3,
.disclaimer-section h3,
.privacy-section h3,
.refund-section h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin: 25px 0 15px;
}

.terms-section p,
.disclaimer-section p,
.privacy-section p,
.refund-section p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1rem;
}

.terms-list,
.disclaimer-list,
.privacy-list,
.refund-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.terms-list li,
.disclaimer-list li,
.privacy-list li,
.refund-list li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    color: var(--gray);
    line-height: 1.6;
}

.terms-list li::before,
.disclaimer-list li::before,
.privacy-list li::before,
.refund-list li::before {
    content: "•";
    color: var(--secondary);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.terms-list.numbered,
.privacy-list.numbered,
.refund-list.numbered {
    list-style: decimal;
    padding-left: 20px;
}

.terms-list.numbered li,
.privacy-list.numbered li,
.refund-list.numbered li {
    padding-left: 5px;
}

.terms-list.numbered li::before,
.privacy-list.numbered li::before,
.refund-list.numbered li::before {
    display: none;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.05), rgba(25, 135, 84, 0.05));
    border-left: 4px solid var(--primary);
    padding: 25px;
    border-radius: 20px;
    margin: 30px 0;
}

.highlight-box h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.highlight-box i {
    color: var(--primary);
}

.table-responsive {
    overflow-x: auto;
    margin: 30px 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 20px;
    overflow: hidden;
}

th {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    font-weight: 600;
    padding: 15px;
    text-align: left;
}

td {
    padding: 12px 15px;
    border-bottom: 1px solid var(--border);
    color: var(--gray);
}

tr:last-child td {
    border-bottom: none;
}

tr:hover td {
    background: var(--light);
}

.last-updated {
    margin-top: 40px;
    padding: 20px;
    background: var(--light);
    border-radius: 20px;
    text-align: center;
    color: var(--gray);
    font-style: italic;
}

.toc {
    background: var(--light);
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 40px;
}

.toc h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.toc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.toc-item {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.toc-item:hover {
    color: var(--secondary);
    padding-left: 5px;
}

/* =================== TESTIMONIALS PAGE ========================*/
.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.testimonial-card .quote-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.1;
}

.testimonial-card .rating {
    color: var(--accent);
    margin-bottom: 15px;
}

.testimonial-card .rating i {
    margin-right: 3px;
}

.testimonial-card p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-card .author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-card .author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
}

.testimonial-card .author h5 {
    font-weight: 700;
    margin-bottom: 5px;
}

.testimonial-card .author p {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0;
    font-style: normal;
}

.video-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.video-thumbnail {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.1);
}

.video-thumbnail .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: var(--transition);
}

.video-thumbnail .play-btn:hover {
    background: var(--secondary);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-content {
    padding: 20px;
}

.video-content h5 {
    font-weight: 700;
    margin-bottom: 5px;
}

.video-content p {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0;
}

.industry-quote {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--secondary);
}

.industry-quote .company-logo {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 15px;
}

.industry-quote p {
    font-style: italic;
    margin-bottom: 15px;
}

.industry-quote .author {
    font-weight: 700;
}

.industry-quote .designation {
    color: var(--gray);
    font-size: 0.9rem;
}

/* =================== FILTER BUTTONS (common) ========================*/
.filter-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin: 40px 0;
}

.filter-btn {
    background: white;
    border: 2px solid var(--border);
    color: var(--dark);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-color: transparent;
}

/* =================== TRADES PAGE ========================*/
.trade-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.trade-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.trade-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.trade-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.trade-header h4 {
    margin: 0;
    font-weight: 800;
    font-size: 1.5rem;
    position: relative;
    z-index: 2;
}

.trade-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 25px;
}

.trade-detail {
    flex: 1;
    margin-bottom: 20px;
    padding: 15px;
    background: var(--light);
    border-radius: 15px;
    transition: var(--transition);
}

.trade-detail:hover {
    background: rgba(13, 110, 253, 0.05);
}

.trade-detail strong {
    display: block;
    margin-bottom: 8px;
    color: var(--dark);
    font-size: 1rem;
}

.trade-detail p {
    color: var(--gray);
    margin-bottom: 0;
}

.trade-detail ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.trade-detail li {
    padding: 4px 0;
    position: relative;
    padding-left: 20px;
    color: var(--gray);
}

.trade-detail li::before {
    content: '✓';
    color: var(--secondary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.eligibility-tag {
    background: var(--accent);
    color: var(--dark);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-block;
}

.btn-trade {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
    margin-top: 15px;
}

.btn-trade:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(13, 110, 253, 0.3);
}

/* =================== WORKSHOP / WORKSPACE PAGE ========================*/
.workshop-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border);
}

.workshop-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.workshop-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.workshop-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
}

.workshop-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.workshop-card:hover .workshop-img img {
    transform: scale(1.1);
}

.workshop-content {
    padding: 25px;
    position: relative;
}

.workshop-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.workshop-content p {
    color: var(--gray);
    margin-bottom: 15px;
    line-height: 1.6;
}

.workshop-badge {
    background: var(--primary);
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
}

.workshop-feature {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    margin-bottom: 40px;
}

.workshop-feature:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.workshop-feature-img {
    height: 100%;
    min-height: 400px;
    overflow: hidden;
}

.workshop-feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.workshop-feature:hover .workshop-feature-img img {
    transform: scale(1.05);
}

.workshop-feature-content {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.workshop-feature-content h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--dark);
}

.workshop-feature-content p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-list li i {
    width: 30px;
    height: 30px;
    background: rgba(13, 110, 253, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.equipment-item {
    background: white;
    border-radius: 20px;
    padding: 30px 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.equipment-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.equipment-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.equipment-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.equipment-item p {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0;
}

.workshop-stats {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 30px;
    padding: 60px;
    color: white;
    margin: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 1rem;
    opacity: 0.95;
    margin: 0;
}

.safety-section {
    background: var(--light);
    border-radius: 30px;
    padding: 60px;
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.safety-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.safety-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.safety-icon {
    width: 70px;
    height: 70px;
    background: rgba(25, 135, 84, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--secondary);
    font-size: 2rem;
}

.safety-card h4 {
    font-weight: 700;
    margin-bottom: 10px;
}

.safety-card p {
    color: var(--gray);
    margin: 0;
}

/* =================== PLACEMENT SECTION (common) ========================*/
.placement-stats {
    text-align: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 50px;
    border-radius: 30px;
    margin-bottom: 50px;
}

.placement-stats h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.placement-stats p {
    font-size: 1.1rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

.industry-card {
    background: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
    height: 100%;
}

.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.industry-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.industry-card h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}

.placement-record {
    background: white;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--secondary);
    transition: var(--transition);
}

.placement-record:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-hover);
}

.record-year {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.record-company {
    font-weight: 600;
    color: var(--dark);
}

.record-package {
    color: var(--secondary);
    font-weight: 700;
}

/* =================== GALLERY ========================*/
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 280px;
    cursor: pointer;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(13, 110, 253, 0.95), transparent);
    color: white;
    padding: 25px;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h5 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.gallery-overlay p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* =================== NEWS SECTION ========================*/
.section-bg {
    background: var(--light);
    padding: 80px 0;
}

.news-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.news-image-container {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.news-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.news-card:hover .news-image {
    transform: scale(1.1);
}

.news-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 110, 253, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.news-card:hover .news-overlay {
    opacity: 1;
}

.read-more-btn {
    width: 55px;
    height: 55px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.3rem;
    text-decoration: none;
    transition: var(--transition);
}

.read-more-btn:hover {
    transform: scale(1.1);
    background: var(--secondary);
    color: white;
}

.news-content {
    padding: 25px;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.news-meta i {
    color: var(--primary);
    margin-right: 5px;
}

.news-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-category {
    background: var(--primary);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
}

.view-all-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 14px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
}

.view-all-btn:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

/* =================== VIRTUAL TOUR CTA ========================*/
.virtual-tour {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    border-radius: 30px;
    padding: 60px;
    color: white;
    text-align: center;
    margin: 60px 0;
}

.virtual-tour h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.virtual-tour p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-tour {
    background: white;
    color: var(--secondary);
    padding: 15px 45px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-tour:hover {
    background: var(--accent);
    color: var(--dark);
    transform: translateY(-5px);
}

/* =================== CAREERS PAGE SPECIFIC ========================*/
.stats-section {
    padding: 60px 0;
    background: white;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.stat-card {
    background: white;
    border-radius: 30px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: 0.4s;
    border: 1px solid var(--border);
}

.stat-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
}

.stat-card h3 {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 5px;
}

.stat-card p {
    color: var(--gray);
    font-weight: 600;
    font-size: 1.1rem;
}

.job-card {
    background: white;
    border-radius: 30px;
    padding: 35px;
    box-shadow: var(--shadow);
    transition: 0.4s;
    border: 1px solid var(--border);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.job-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.job-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.job-tag {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 5px 15px;
    border-radius: 60px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.job-type {
    background: var(--light);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 60px;
    font-size: 0.8rem;
    font-weight: 700;
    border: 1px solid var(--border);
}

.job-card h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--dark);
}

.job-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.job-location i {
    color: var(--primary);
}

.job-desc {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 25px;
}

.job-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.job-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray);
    font-size: 0.9rem;
}

.job-meta-item i {
    color: var(--secondary);
}

.job-btn {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 12px 30px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.4s;
    border: none;
    width: 100%;
    justify-content: center;
}

.job-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.3);
    color: white;
}

.internship-card {
    background: white;
    border-radius: 25px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: 0.3s;
    border: 1px solid var(--border);
    height: 100%;
}

.internship-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary);
}

.internship-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 1.8rem;
}

.internship-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.internship-card p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.internship-stipend {
    display: inline-block;
    background: var(--light);
    padding: 5px 15px;
    border-radius: 60px;
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.9rem;
}

.faculty-section {
    background: linear-gradient(135deg, var(--light), white);
    padding: 80px 0;
}

.faculty-card {
    background: white;
    border-radius: 30px;
    padding: 40px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.faculty-positions {
    list-style: none;
    padding: 0;
}

.faculty-positions li {
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
}

.faculty-positions li i {
    color: var(--primary);
    font-size: 1.3rem;
}

.faculty-positions li:last-child {
    border-bottom: none;
}

.benefits-section {
    padding: 80px 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.benefit-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--light);
    border-radius: 30px;
    transition: 0.3s;
}

.benefit-item:hover {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    transform: translateY(-10px);
}

.benefit-item:hover h4,
.benefit-item:hover p {
    color: white;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary);
    font-size: 2rem;
    box-shadow: var(--shadow);
}

.benefit-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    transition: 0.3s;
}

.benefit-item p {
    color: var(--gray);
    font-size: 0.95rem;
    transition: 0.3s;
}

/* =================== CONTACT PAGE SPECIFIC ========================*/
.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: -50px 0 60px;
    position: relative;
    z-index: 10;
}

.quick-card {
    background: white;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-decoration: none;
    color: var(--dark);
    border: 1px solid var(--border);
}

.quick-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.quick-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.quick-card h4 {
    font-weight: 700;
    margin-bottom: 5px;
}

.quick-card p {
    color: var(--gray);
    margin: 0;
}

.contact-info-section {
    padding: 60px 0;
}

.contact-info-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    height: 100%;
}

.contact-info-card h3 {
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--dark);
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--light);
    border-radius: 15px;
    transition: var(--transition);
}

.contact-detail-item:hover {
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.05), rgba(25, 135, 84, 0.05));
    transform: translateX(5px);
}

.contact-detail-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-detail-text h5 {
    font-weight: 700;
    margin-bottom: 5px;
}

.contact-detail-text p,
.contact-detail-text a {
    color: var(--gray);
    text-decoration: none;
    line-height: 1.6;
}

.contact-detail-text a:hover {
    color: var(--primary);
}

.social-links-container {
    margin-top: 30px;
}

.social-links-container h5 {
    font-weight: 700;
    margin-bottom: 15px;
}

.social-links-grid {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link-item {
    width: 50px;
    height: 50px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
    transition: var(--transition);
    text-decoration: none;
}

.social-link-item:hover {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    transform: translateY(-5px);
}

.contact-form-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.contact-form-card h3 {
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--dark);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.form-group label i {
    color: var(--primary);
    margin-right: 5px;
}

.form-control {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid var(--border);
    border-radius: 15px;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.1);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.btn-submit {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 16px 30px;
    border: none;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1.1rem;
    width: 100%;
    transition: var(--transition);
    cursor: pointer;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(13, 110, 253, 0.3);
}

.map-section {
    padding: 60px 0;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* =================== EVENTS PAGE SPECIFIC ========================*/
.event-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.event-img {
    height: 200px;
    overflow: hidden;
}

.event-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.event-card:hover .event-img img {
    transform: scale(1.1);
}

.event-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.event-date {
    background: var(--primary);
    color: white;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    align-self: flex-start;
}

.event-title {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.4;
}

.event-desc {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.6;
    flex: 1;
}

.event-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.event-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--gray);
    font-size: 0.9rem;
}

.event-meta-item i {
    color: var(--secondary);
}

.event-btn {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
    border: none;
    margin-top: auto;
}

.event-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(13, 110, 253, 0.3);
}

.past-event-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.past-event-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.past-event-img {
    height: 180px;
    overflow: hidden;
}

.past-event-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.past-event-content {
    padding: 20px;
}

.past-event-content h5 {
    font-weight: 700;
    margin-bottom: 5px;
}

.past-event-content .past-event-date {
    color: var(--primary);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.past-event-content p {
    color: var(--gray);
    font-size: 0.95rem;
    margin: 0;
}

/* =================== FAQ PAGE SPECIFIC ========================*/
.faq-section {
    padding: 80px 0;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    border: none;
    margin-bottom: 20px;
    border-radius: 20px !important;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    background: white;
    border: 1px solid var(--border);
}

.accordion-item:hover {
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.accordion-header {
    background: white;
    border: none;
}

.accordion-button {
    padding: 25px 30px;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--dark);
    background: white;
    border: none;
    box-shadow: none;
    transition: var(--transition);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.05), rgba(25, 135, 84, 0.05));
    color: var(--primary);
}

.accordion-button::after {
    background-image: none;
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--primary);
    transform: rotate(0deg);
    transition: var(--transition);
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
    color: var(--secondary);
}

.accordion-body {
    padding: 0 30px 30px 30px;
    color: var(--gray);
    line-height: 1.8;
    font-size: 1rem;
}

.faq-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin: 40px 0 50px;
}

.category-btn {
    background: white;
    border: 2px solid var(--border);
    color: var(--dark);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}

.category-btn:hover,
.category-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-color: transparent;
}

.faq-search {
    max-width: 600px;
    margin: 0 auto 40px;
    position: relative;
}

.faq-search input {
    width: 100%;
    padding: 18px 25px 18px 60px;
    border: 2px solid var(--border);
    border-radius: 60px;
    font-size: 1rem;
    transition: var(--transition);
}

.faq-search input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.1);
}

.faq-search i {
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
    font-size: 1.2rem;
}

/* =================== PLACEMENT PAGE SPECIFIC (additional) ========================*/
.placement-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 60px 0;
}

.placement-stat-item {
    text-align: center;
    background: white;
    padding: 30px 20px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.placement-stat-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.placement-stat-item i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.placement-stat-item h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.placement-stat-item p {
    color: var(--gray);
    margin: 0;
}

.recruiter-card {
    background: white;
    border-radius: 20px;
    padding: 25px 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
    height: 100%;
}

.recruiter-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.recruiter-card img {
    max-width: 120px;
    max-height: 60px;
    margin-bottom: 15px;
    filter: grayscale(0.5);
    transition: var(--transition);
}

.recruiter-card:hover img {
    filter: grayscale(0);
}

.recruiter-card h5 {
    font-weight: 700;
    margin-bottom: 5px;
}

.recruiter-card p {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0;
}

.record-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 5px solid var(--secondary);
    margin-bottom: 20px;
}

.record-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-hover);
}

.record-card .year {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.record-card h4 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.record-card .details {
    display: flex;
    gap: 20px;
    color: var(--gray);
}

.record-card .details i {
    color: var(--secondary);
    margin-right: 5px;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow);
    height: 100%;
    position: relative;
}

.process-step .step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.5rem;
    margin: 0 auto 20px;
}

.process-step h4 {
    font-weight: 700;
    margin-bottom: 10px;
}

.process-step p {
    color: var(--gray);
    margin: 0;
}

.placement-cta {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    border-radius: 30px;
    padding: 60px;
    color: white;
    text-align: center;
}

.placement-cta h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.placement-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-placement {
    background: white;
    color: var(--secondary);
    padding: 15px 45px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-placement:hover {
    background: var(--accent);
    color: var(--dark);
    transform: translateY(-5px);
}

/* =================== FEATURES / ABOUT / ACHIEVEMENTS / ADMISSION / BLOG / CAMPUS PAGE SPECIFIC ========================*/
/* Stats cards */
.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: -50px 0 60px;
    position: relative;
    z-index: 10;
}

.about-stat-item {
    background: white;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.about-stat-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.about-stat-item i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.about-stat-item h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.about-stat-item p {
    color: var(--gray);
    margin: 0;
}

.feature-card,
.achievement-card {
    background: white;
    border-radius: 20px;
    padding: 30px 25px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border);
    text-align: center;
}

.feature-card:hover,
.achievement-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.feature-icon,
.achievement-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.achievement-icon {
    border-radius: 50%;
}

.feature-card h4,
.achievement-card h3 {
    font-weight: 700;
    margin-bottom: 15px;
}

.achievement-card h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.feature-card p,
.achievement-card p {
    color: var(--gray);
    margin: 0;
}

.skill-card {
    background: white;
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border);
}

/* ========== Timeline  ============ */
.timeline-item {
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
    position: relative;
    border-left: 5px solid var(--primary);
}

.timeline-item .year {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
}

.timeline-item h4 {
    font-weight: 700;
    margin-bottom: 10px;
}

.timeline-item p {
    color: var(--gray);
    margin: 0;
}

@media (max-width: 992px) {
    .achievements-hero h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 576px) {
    .achievements-hero h1 {
        font-size: 2.2rem;
    }

    .achievement-card h3 {
        font-size: 1.6rem;
    }
}


.skill-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.skill-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.skill-card h4 {
    font-weight: 700;
    margin-bottom: 10px;
}

.skill-card p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.skill-level {
    display: inline-block;
    background: var(--light);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.facility-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border);
}

.facility-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.facility-img {
    height: 200px;
    overflow: hidden;
}

.facility-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.facility-card:hover .facility-img img {
    transform: scale(1.1);
}

.facility-content {
    padding: 20px;
}

.facility-content h4 {
    font-weight: 700;
    margin-bottom: 10px;
}

.facility-content p {
    color: var(--gray);
    margin-bottom: 15px;
}

.facility-content .facility-tag {
    background: var(--primary);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
}

.story-section {
    padding: 60px 0;
}

.story-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 100%;
    min-height: 400px;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-content {
    padding: 0 20px;
}

.story-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.story-content h2 span {
    color: var(--primary);
}

.story-content p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.mission-vision-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.mission-vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.mission-vision-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.mission-vision-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: white;
    font-size: 2rem;
}

.mission-vision-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.mission-vision-list {
    list-style: none;
    padding: 0;
}

.mission-vision-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray);
}

.mission-vision-list li i {
    color: var(--secondary);
}

.timeline {
    position: relative;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    width: 100%;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
    width: 45%;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: auto;
    width: 45%;
}

.timeline-dot {
    position: absolute;
    top: 20px;
    left: 50%;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 0 5px rgba(13, 110, 253, 0.2);
}

.timeline-content {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
}

.timeline-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.timeline-text {
    color: var(--gray);
    margin: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 40px 0;
}

.feature-item {
    background: white;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.award-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border);
}

.award-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.award-img {
    height: 200px;
    overflow: hidden;
}

.award-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.award-card:hover .award-img img {
    transform: scale(1.1);
}

.award-content {
    padding: 20px;
    text-align: center;
}

.award-content h4 {
    font-weight: 700;
    margin-bottom: 5px;
}

.award-content p {
    color: var(--gray);
    margin: 0;
}

.student-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border-left: 5px solid var(--accent);
}

.student-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-hover);
}

.student-card .student-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.student-card .student-trade {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 10px;
}

.student-card .achievement-desc {
    color: var(--gray);
    margin-bottom: 15px;
}

.student-card .achievement-meta {
    display: flex;
    gap: 15px;
    color: var(--gray);
    font-size: 0.9rem;
}

.student-card .achievement-meta i {
    color: var(--secondary);
    margin-right: 5px;
}

/* =================== ADMISSION PAGE SPECIFIC ========================*/
.fee-table {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.fee-table table {
    width: 100%;
    border-collapse: collapse;
}

.fee-table th {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 15px;
    font-weight: 600;
}

.fee-table td {
    padding: 12px 15px;
    border-bottom: 1px solid var(--border);
    color: var(--gray);
}

.fee-table tr:last-child td {
    border-bottom: none;
}

.fee-table tr:hover td {
    background: var(--light);
}

.timeline-horizontal {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin: 40px 0;
}

.timeline-item-horizontal {
    flex: 1;
    min-width: 200px;
    background: white;
    border-radius: 20px;
    padding: 25px 20px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    text-align: center;
}

.timeline-item-horizontal .date {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
}

.timeline-item-horizontal .event {
    font-weight: 600;
    color: var(--dark);
}

.doc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.doc-item {
    background: white;
    border-radius: 15px;
    padding: 20px 15px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 15px;
}

.doc-item i {
    font-size: 2rem;
    color: var(--primary);
}

.doc-item span {
    font-weight: 500;
}

.admission-cta {
    background: linear-gradient(135deg, var(--secondary), var(--primary-dark));
    border-radius: 30px;
    padding: 60px;
    color: white;
    text-align: center;
}

.admission-cta h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.admission-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-admission-cta {
    background: white;
    color: var(--primary);
    padding: 16px 45px;
    border-radius: 60px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-admission-cta:hover {
    background: var(--accent);
    color: var(--dark);
    transform: translateY(-5px);
}

/* =================== ADMISSION FORM (from admission1.html) ========================*/
.admission-form-section {
    padding: 80px 0;
    background: var(--light);
}

.form-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    border: 1px solid var(--border);
}

.form-hero {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 50px 40px;
    color: white;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.form-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 40s linear infinite;
}

.form-hero::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    animation: rotate 50s linear infinite reverse;
}

.form-hero .hero-content {
    position: relative;
    z-index: 2;
}

.form-hero h1 {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
}

.form-hero h1 span {
    color: var(--accent);
    position: relative;
    display: inline-block;
}

.form-hero h1 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background: rgba(255, 255, 255, 0.2);
    z-index: -1;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.6;
}

.highlight-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 40px 0;
}

.highlight-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 20px 15px;
    text-align: center;
    transition: 0.3s;
}

.highlight-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: var(--accent);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    color: var(--dark);
}

.highlight-item h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: white;
}

.highlight-item p {
    font-size: 0.85rem;
    opacity: 0.9;
    margin: 0;
}

.trust-badges {
    margin-top: auto;
    position: relative;
    z-index: 2;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.trust-item i {
    color: var(--accent);
    font-size: 1.2rem;
}

.trust-item span {
    color: rgba(255, 255, 255, 0.95);
}

.form-section {
    padding: 50px;
    background: white;
}

.form-header {
    margin-bottom: 30px;
}

.form-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 8px 20px;
    border-radius: 60px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.form-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 5px;
}

.form-header p {
    color: var(--gray);
    font-size: 0.95rem;
}

.admission-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.input-wrapper {
    position: relative;
}

.input-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
    font-size: 1rem;
    transition: 0.3s;
    pointer-events: none;
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
    width: 100%;
    padding: 14px 15px 14px 45px;
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: 0.3s;
    background: white;
}

.input-wrapper textarea {
    padding: 14px 15px 14px 45px;
    resize: vertical;
    min-height: 100px;
}

.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.input-wrapper input:focus + i,
.input-wrapper select:focus + i,
.input-wrapper textarea:focus + i {
    color: var(--primary);
}

.trade-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 5px;
}

.trade-option {
    position: relative;
}

.trade-option input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.trade-option label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 10px;
    background: var(--light);
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s;
    margin: 0;
    font-weight: 500;
    font-size: 0.9rem;
}

.trade-option label i {
    color: var(--primary);
    font-size: 1rem;
}

.trade-option input[type="checkbox"]:checked + label {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-color: transparent;
    color: white;
}

.trade-option input[type="checkbox"]:checked + label i {
    color: white;
}

.upload-area {
    border: 2px dashed #e2e8f0;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
    background: var(--light);
}

.upload-area:hover {
    border-color: var(--primary);
    background: #dbeafe;
}

.upload-area i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.upload-area p {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 5px;
}

.upload-area small {
    color: var(--gray);
    font-size: 0.8rem;
}

.terms-group {
    background: var(--light);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
}

.checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-wrapper input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--primary);
}

.checkbox-wrapper label {
    font-size: 0.9rem;
    color: var(--gray);
    margin: 0;
    font-weight: 400;
}

.checkbox-wrapper a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.success-modal {
    background: white;
    border-radius: 30px;
    padding: 40px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    transform: scale(0.8);
    transition: 0.3s;
}

.modal-overlay.active .success-modal {
    transform: scale(1);
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2.5rem;
}

.success-modal h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.success-modal p {
    color: var(--gray);
    margin-bottom: 20px;
}

.modal-btn {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 60px;
    font-weight: 600;
    cursor: pointer;
}

/* =================== BLOG PAGE SPECIFIC ========================*/
.featured-post {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    margin: -50px 0 60px;
    position: relative;
    z-index: 10;
    border: 1px solid var(--border);
}

.featured-post:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.featured-image {
    height: 100%;
    min-height: 400px;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.featured-post:hover .featured-image img {
    transform: scale(1.05);
}

.featured-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-category {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 20px;
    align-self: flex-start;
}

.featured-content h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.featured-meta {
    display: flex;
    gap: 20px;
    color: var(--gray);
    margin-bottom: 15px;
}

.featured-meta i {
    color: var(--primary);
    margin-right: 5px;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.blog-img {
    height: 200px;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.blog-card:hover .blog-img img {
    transform: scale(1.1);
}

.blog-content {
    padding: 25px;
}

.blog-tag {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.blog-meta i {
    color: var(--primary);
}

.blog-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.blog-excerpt {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blog-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-link:hover {
    color: var(--secondary);
    gap: 8px;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 50px 0;
}

.page-item {
    width: 45px;
    height: 45px;
    background: white;
    border: 2px solid var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}

.page-item:hover,
.page-item.active {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-color: transparent;
}

.story-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    height: 100%;
    padding: 30px 20px;
    border: 1px solid var(--border);
}

.story-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.story-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.story-card h4 {
    font-weight: 700;
    margin-bottom: 5px;
}

.story-trade {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 15px;
}

.story-quote {
    color: var(--gray);
    font-style: italic;
    margin-bottom: 20px;
}

.story-salary {
    background: var(--secondary);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    display: inline-block;
    font-weight: 700;
}



/* =================== BLOG POST PAGE ========================*/


.breadcrumb-section {
    background: var(--light);
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
    margin-top: 90px;
}

.breadcrumb-nav ol {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.breadcrumb-nav li {
    display: flex;
    align-items: center;
}

.breadcrumb-nav a {
    color: var(--gray);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.breadcrumb-nav a:hover {
    color: var(--primary);
}

.breadcrumb-nav li.current {
    color: var(--dark);
    font-weight: 600;
}

.breadcrumb-nav li:not(:last-child)::after {
    content: '/';
    margin-left: 0.5rem;
    color: var(--gray);
}

.article-section {
    padding: 4rem 0;
    background: white;
}

.article-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.article-header {
    text-align: center;
    margin-bottom: 3rem;
}

.featured-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--dark);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.article-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray);
    font-size: 0.9rem;
}

.meta-item i {
    color: var(--primary);
}

.article-image {
    margin-bottom: 3rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.article-image img {
    width: 100%;
    height: auto;
    display: block;
}

.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
}

.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4,
.article-content h5,
.article-content h6 {
    color: var(--dark);
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.article-content h1 {
    font-size: 2rem;
}

.article-content h2 {
    font-size: 1.75rem;
}

.article-content h3 {
    font-size: 1.5rem;
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-content ul,
.article-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.article-content li {
    margin-bottom: 0.5rem;
}

.article-content blockquote {
    border-left: 4px solid var(--primary);
    padding-left: 1rem;
    font-style: italic;
    margin: 2rem 0;
    background: var(--light);
    padding: 1.5rem;
    border-radius: 10px;
}

.article-content hr {
    margin: 2rem 0;
    border-color: var(--border);
}

.social-sharing {
    border-top: 1px solid var(--border);
    padding-top: 2rem;
    margin: 3rem 0;
}

.social-sharing h3 {
    font-size: 1.25rem;
    color: var(--dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.social-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
}

.social-btn.facebook {
    background: #1877f2;
    color: white;
}

.social-btn.twitter {
    background: #1da1f2;
    color: white;
}

.social-btn.linkedin {
    background: #0077b5;
    color: white;
}

.social-btn.copy {
    background: var(--gray);
    color: white;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.related-section {
    background: var(--light);
    padding: 4rem 0;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.related-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border);
}

.related-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.related-card:hover .card-image img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 110, 253, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.related-card:hover .card-overlay {
    opacity: 1;
}

.read-btn {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    text-decoration: none;
    transition: var(--transition);
}

.read-btn:hover {
    background: var(--secondary);
    color: white;
    transform: scale(1.1);
}

.card-content {
    padding: 1.5rem;
}

.card-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.card-meta i {
    color: var(--primary);
}

.card-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.card-content p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.card-category {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.back-section {
    background: white;
    padding: 2rem 0;
    text-align: center;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
}

.back-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

/* ======================= site map ================== */
/* =================== SITEMAP PAGE SPECIFIC ========================*/
.sitemap-section {
    padding: 80px 0;
    background: white;
}

.sitemap-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border);
}

.sitemap-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.sitemap-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--dark);
    padding-bottom: 10px;
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(90deg, var(--primary), var(--secondary)) 1;
    border-image-slice: 1;
}

.sitemap-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sitemap-list li {
    margin-bottom: 12px;
}

.sitemap-list a {
    color: var(--gray);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.sitemap-list a i {
    color: var(--primary);
    font-size: 0.8rem;
}

.sitemap-list a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.sitemap-list .sub-links {
    margin-left: 25px;
    margin-top: 8px;
    list-style: none;
}

.sitemap-list .sub-links li {
    margin-bottom: 8px;
}

.sitemap-list .sub-links a {
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .sitemap-hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .sitemap-hero h1 {
        font-size: 2rem;
    }
}

/* =================== FOOTER ========================*/
.footer {
    background: var(--footer-bg);
    color: var(--footer-text);
    border-top: 1px solid var(--footer-border);
    padding: 60px 0 30px;
    font-family: 'Inter', sans-serif;
    position: relative;
    z-index: 10;
}

.footer .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-newsletter {
    background: rgba(0, 200, 83, 0.05);
    border: 1px solid rgba(0, 200, 83, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    margin-bottom: 50px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.newsletter-content h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.newsletter-content p {
    color: var(--footer-text);
    max-width: 500px;
}

.newsletter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    min-width: 300px;
}

.newsletter-form input {
    flex: 1 1 200px;
    padding: 12px 20px;
    border: 1px solid var(--footer-border);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 1rem;
}

.newsletter-form input::placeholder {
    color: #6c757d;
}

.newsletter-form button {
    padding: 12px 30px;
    background: var(--footer-green);
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: #009624;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--footer-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--footer-green);
    transition: width 0.3s;
}

.footer-col:hover h4::after {
    width: 60px;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
}

.footer-logo i {
    color: var(--footer-green);
    margin-right: 10px;
}

.footer-logo span span {
    color: var(--primary);
}

.footer-description {
    margin-bottom: 20px;
    line-height: 1.6;
}

.trust-indicators {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.trust-indicators div {
    font-size: 0.9rem;
}

.trust-indicators i {
    color: var(--footer-green);
    margin-right: 5px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--footer-text);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-links i {
    margin-right: 8px;
    font-size: 0.8rem;
    color: var(--footer-green);
}

.contact-info-list {
    list-style: none;
    padding: 0;
}

.contact-info-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-info-list i {
    font-size: 1.2rem;
    color: var(--footer-green);
    margin-top: 3px;
}

.contact-info-list a {
    color: var(--footer-text);
    text-decoration: none;
    transition: var(--transition);
}

.contact-info-list a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #2c3034;
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.copyright a {
    color: white;
    text-decoration: none;
}

.footer-bottom-links a {
    color: var(--footer-text);
    text-decoration: none;
    margin-left: 20px;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: white;
}

.payment-methods i {
    font-size: 1.5rem;
    margin-left: 10px;
    color: #6c757d;
    transition: var(--transition);
}

.payment-methods i:hover {
    color: white;
}

/* =================== BACK TO TOP & WHATSAPP FLOAT ========================*/
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 5px 20px rgba(13, 110, 253, 0.4);
    border: none;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    transform: translateY(-5px) scale(1.1);
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: var(--whatsapp);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    z-index: 999;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #20b859;
    color: white;
}

/* =================== UTILITY CLASSES ========================*/
.text-primary {
    color: var(--primary) !important;
}

.text-secondary {
    color: var(--secondary) !important;
}

.text-accent {
    color: var(--accent) !important;
}

.text-white {
    color: white !important;
}

.text-dark {
    color: var(--dark) !important;
}

.text-gray {
    color: var(--gray) !important;
}

.bg-primary {
    background: var(--primary) !important;
}

.bg-secondary {
    background: var(--secondary) !important;
}

.bg-light {
    background: var(--light) !important;
}

.bg-dark {
    background: var(--dark) !important;
}

.mt-1 {
    margin-top: 0.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mt-5 {
    margin-top: 3rem;
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.py-1 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.py-2 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-3 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.py-4 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.py-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.px-1 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.px-2 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.px-3 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.px-4 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.px-5 {
    padding-left: 3rem;
    padding-right: 3rem;
}

.d-flex {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

.align-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-1 {
    gap: 0.5rem;
}

.gap-2 {
    gap: 1rem;
}

.gap-3 {
    gap: 1.5rem;
}

.gap-4 {
    gap: 2rem;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.rounded {
    border-radius: 10px;
}

.rounded-lg {
    border-radius: 20px;
}

.rounded-xl {
    border-radius: 30px;
}

.shadow {
    box-shadow: var(--shadow);
}

.shadow-hover {
    box-shadow: var(--shadow-hover);
}

/* =================== RESPONSIVE MEDIA QUERIES ========================*/
@media (max-width: 1400px) {
    .container {
        max-width: 1140px;
    }
}

@media (max-width: 1200px) {

    .hero h1,
    .team-hero h1,
    .terms-hero h1,
    .testimonials-hero h1,
    .trades-hero h1,
    .workspace-hero h1,
    .careers-hero h1,
    .contact-hero h1,
    .disclaimer-hero h1,
    .events-hero h1,
    .faq-hero h1,
    .placement-hero h1,
    .privacy-hero h1,
    .refund-hero h1,
    .features-hero h1,
    .about-hero h1,
    .achievements-hero h1,
    .admission-hero h1,
    .blog-hero h1,
    .campus-hero h1 {
        font-size: 3.2rem;
    }

    .equipment-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

@media (max-width: 992px) {

    .hero h1,
    .team-hero h1,
    .terms-hero h1,
    .testimonials-hero h1,
    .trades-hero h1,
    .workspace-hero h1,
    .careers-hero h1,
    .contact-hero h1,
    .disclaimer-hero h1,
    .events-hero h1,
    .faq-hero h1,
    .placement-hero h1,
    .privacy-hero h1,
    .refund-hero h1,
    .features-hero h1,
    .about-hero h1,
    .achievements-hero h1,
    .admission-hero h1,
    .blog-hero h1,
    .campus-hero h1 {
        font-size: 2.8rem;
    }

    .section-title h2 {
        font-size: 2.2rem;
    }

    .navbar-collapse {
        background: white;
        border-radius: 20px;
        padding: 20px;
        margin-top: 15px;
        box-shadow: var(--shadow-hover);
        border: 1px solid var(--border);
    }

    .navbar-nav {
        align-items: stretch;
    }

    .nav-link {
        padding: 12px 20px !important;
        border-radius: 10px;
    }

    .nav-link::after {
        display: none;
    }

    .dropdown-menu {
        position: static !important;
        transform: none !important;
        box-shadow: none;
        border: 1px solid var(--border);
        margin: 10px 0 10px 20px;
        animation: none;
    }

    .btn-admission {
        width: 100%;
        justify-content: center;
        margin: 10px 0 5px !important;
    }

    .team-stats,
    .testimonial-stats,
    .trades-stats,
    .admission-stats,
    .campus-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .workshop-feature-img {
        min-height: 350px;
    }

    .workshop-feature-content {
        padding: 40px;
    }

    .equipment-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .safety-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .virtual-tour {
        padding: 50px 30px;
    }

    .virtual-tour h2 {
        font-size: 2.2rem;
    }

    .stats-grid,
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .quick-contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .placement-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
    }

    .timeline-dot {
        left: 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-newsletter {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        width: 100%;
        justify-content: center;
    }

    .form-card {
        grid-template-columns: 1fr;
    }

    .form-hero {
        padding: 40px;
    }

    .form-hero h1 {
        font-size: 2.8rem;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 768px) {

    .hero,
    .team-hero,
    .terms-hero,
    .testimonials-hero,
    .trades-hero,
    .workspace-hero,
    .careers-hero,
    .contact-hero,
    .disclaimer-hero,
    .events-hero,
    .faq-hero,
    .placement-hero,
    .privacy-hero,
    .refund-hero,
    .features-hero,
    .about-hero,
    .achievements-hero,
    .admission-hero,
    .blog-hero,
    .campus-hero {
        padding: 100px 0 60px;
    }

    .hero h1,
    .team-hero h1,
    .terms-hero h1,
    .testimonials-hero h1,
    .trades-hero h1,
    .workspace-hero h1,
    .careers-hero h1,
    .contact-hero h1,
    .disclaimer-hero h1,
    .events-hero h1,
    .faq-hero h1,
    .placement-hero h1,
    .privacy-hero h1,
    .refund-hero h1,
    .features-hero h1,
    .about-hero h1,
    .achievements-hero h1,
    .admission-hero h1,
    .blog-hero h1,
    .campus-hero h1 {
        font-size: 2.2rem;
    }

    .hero p,
    .team-hero p,
    .terms-hero p,
    .testimonials-hero p,
    .trades-hero p,
    .workspace-hero p,
    .careers-hero p,
    .contact-hero p,
    .disclaimer-hero p,
    .events-hero p,
    .faq-hero p,
    .placement-hero p,
    .privacy-hero p,
    .refund-hero p,
    .features-hero p,
    .about-hero p,
    .achievements-hero p,
    .admission-hero p,
    .blog-hero p,
    .campus-hero p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons a {
        width: 100%;
        max-width: 280px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .section {
        padding: 60px 0;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .toc-grid {
        grid-template-columns: 1fr;
    }

    .terms-hero h1,
    .trades-hero h1,
    .disclaimer-hero h1,
    .events-hero h1,
    .faq-hero h1,
    .privacy-hero h1,
    .refund-hero h1 {
        font-size: 2.5rem;
    }

    .terms-card,
    .disclaimer-card,
    .privacy-card,
    .refund-card {
        padding: 30px 20px;
    }

    .workshop-feature-content {
        padding: 30px;
    }

    .workshop-feature-content h3 {
        font-size: 1.6rem;
    }

    .equipment-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .safety-grid {
        grid-template-columns: 1fr;
    }

    .virtual-tour h2 {
        font-size: 1.8rem;
    }

    .virtual-tour p {
        font-size: 1rem;
    }

    .btn-tour {
        padding: 14px 35px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
        bottom: 20px;
        left: 20px;
    }

    .back-to-top {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        bottom: 20px;
        right: 20px;
    }

    .stats-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .job-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .whatsapp-float {
        bottom: 80px;
    }

    .story-content h2 {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-bottom-links a {
        margin: 0 10px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .trade-grid {
        grid-template-columns: 1fr;
    }

    .form-section {
        padding: 30px;
    }

    .highlight-cards {
        grid-template-columns: 1fr;
    }

    .article-header h1 {
        font-size: 2rem;
    }

    .social-buttons {
        justify-content: center;
    }

    .featured-post {
        margin-top: -30px;
    }
}

@media (max-width: 576px) {

    .hero h1,
    .team-hero h1,
    .terms-hero h1,
    .testimonials-hero h1,
    .trades-hero h1,
    .workspace-hero h1,
    .careers-hero h1,
    .contact-hero h1,
    .disclaimer-hero h1,
    .events-hero h1,
    .faq-hero h1,
    .placement-hero h1,
    .privacy-hero h1,
    .refund-hero h1,
    .features-hero h1,
    .about-hero h1,
    .achievements-hero h1,
    .admission-hero h1,
    .blog-hero h1,
    .campus-hero h1 {
        font-size: 1.8rem;
    }

    .hero-badge,
    .team-hero .hero-badge,
    .terms-hero .hero-badge,
    .testimonials-hero .hero-badge,
    .trades-hero .hero-badge,
    .workspace-hero .hero-badge,
    .careers-badge {
        padding: 6px 15px;
        font-size: 0.9rem;
    }

    .section-title h2 {
        font-size: 1.6rem;
    }

    .section-subtitle {
        font-size: 0.8rem;
    }

    .team-stats,
    .testimonial-stats,
    .trades-stats,
    .admission-stats,
    .campus-stats {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .equipment-grid {
        grid-template-columns: 1fr;
    }

    .workshop-stats {
        padding: 40px 20px;
    }

    .safety-section {
        padding: 40px 20px;
    }

    .virtual-tour {
        padding: 40px 20px;
    }

    .virtual-tour h2 {
        font-size: 1.6rem;
    }

    .quick-contact-grid {
        grid-template-columns: 1fr;
    }

    .job-meta {
        flex-direction: column;
        gap: 10px;
    }

    .placement-stats-grid {
        grid-template-columns: 1fr;
    }

    .placement-cta {
        padding: 40px 20px;
    }

    .placement-cta h2 {
        font-size: 1.8rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .about-hero h1,
    .achievements-hero h1,
    .admission-hero h1,
    .blog-hero h1,
    .campus-hero h1 {
        font-size: 2.2rem;
    }

    .story-content h2 {
        font-size: 1.8rem;
    }

    .achievement-card h3 {
        font-size: 1.6rem;
    }

    .timeline-item-horizontal {
        min-width: 100%;
    }

    .doc-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .trust-indicators {
        grid-template-columns: 1fr;
    }

    .payment-methods i {
        font-size: 1.2rem;
        margin: 0 5px;
    }

    .form-hero h1 {
        font-size: 2.2rem;
    }

    .form-section {
        padding: 20px;
    }

    .article-header h1 {
        font-size: 1.75rem;
    }

    .article-meta {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .filter-container {
        flex-direction: column;
    }

    .filter-btn {
        width: 100%;
    }

    .featured-content {
        padding: 25px;
    }

    .blog-hero h1,
    .campus-hero h1 {
        font-size: 1.8rem;
    }
}
