/* Computer Age - Main Stylesheet */

:root {
    --primary-color: #3f6de4;
    --secondary-color: #2d5aa4;
    --accent-color: #ff6b35;
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --border-color: #e0e0e0;
    --text-dark: #333333;
    --text-light: #666666;
    --success-color: #27ae60;
    --warning-color: #f39c12;
    --danger-color: #e74c3c;
    --transition: all 0.3s ease;
}

/* ============ KEYFRAME ANIMATIONS ============ */

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

@keyframes glow {
    0% { box-shadow: 0 0 5px rgba(63, 109, 228, 0.3); }
    50% { box-shadow: 0 0 20px rgba(63, 109, 228, 0.6); }
    100% { box-shadow: 0 0 5px rgba(63, 109, 228, 0.3); }
}

@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

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

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-10deg);
    }
    to {
        opacity: 1;
        transform: rotate(0);
    }
}

@keyframes flipIn {
    0% {
        opacity: 0;
        transform: perspective(400px) rotateY(90deg);
    }
    100% {
        opacity: 1;
        transform: perspective(400px) rotateY(0deg);
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    overflow: visible;
}

/* ============ HEADER & NAVIGATION ============ */

.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    overflow: visible;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    overflow: visible;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.5px;
    animation: fadeInDown 0.6s ease;
}

.navigation {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex: 1;
    margin-left: 3rem;
    overflow: visible;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    width: 100%;
    overflow: visible;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 100;
    animation: fadeInDown 0.6s ease forwards;
}

.nav-menu li:nth-child(1) a { animation-delay: 0.1s; }
.nav-menu li:nth-child(2) a { animation-delay: 0.2s; }
.nav-menu li:nth-child(3) a { animation-delay: 0.3s; }
.nav-menu li:nth-child(4) a { animation-delay: 0.4s; }
.nav-menu li:nth-child(5) a { animation-delay: 0.5s; }
.nav-menu li:nth-child(6) a { animation-delay: 0.6s; }
.nav-menu li:nth-child(7) a { animation-delay: 0.7s; }
.nav-menu li:nth-child(8) a { animation-delay: 0.8s; }

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-menu a:hover::before {
    width: 100%;
}

.dropdown>a {
    z-index: 101;
}

.nav-menu li {
    position: relative;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown>a::after {
    content: '';
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    flex-direction: column;
    min-width: 220px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    margin-top: 0;
    padding: 0.5rem 0;
    z-index: 1001;
    list-style: none;
}

.dropdown:hover>.dropdown-menu {
    display: flex;
}

.dropdown:focus-within>.dropdown-menu {
    display: flex;
}

.dropdown>a {
    padding-bottom: 1rem;
    margin-bottom: -1rem;
}

.dropdown-menu li {
    width: 100%;
    list-style: none;
}

.dropdown-menu a {
    padding: 0.75rem 1.5rem;
    display: block;
    color: var(--text-dark);
}

.dropdown-menu a:hover {
    background: var(--light-color);
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.header-contact {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-left: auto;
    flex-shrink: 0;
}

.phone-btn {
    background: var(--primary-color);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    white-space: nowrap;
    margin-left: 10px;
}

.phone-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 5px 15px rgba(63, 109, 228, 0.3);
    animation: pulse 0.6s ease;
}

/* ============ HERO SECTION ============ */

.hero {
    background: linear-gradient(135deg, #3f6de4 0%, #2563eb 100%);
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.carousel {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    border-radius: 10px;
}

.carousel-item {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
    background-size: cover;
    background-position: center;
}

.carousel-item.active {
    display: flex;
    opacity: 1;
}

.carousel-content {
    flex: 1;
    padding: 60px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
    position: relative;
}

.carousel-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: slideUp 0.8s ease;
}

.carousel-content p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
    animation: slideUp 0.8s ease 0.2s both;
}

.carousel-image {
    flex: 1;
    height: 100%;
    overflow: hidden;
}

.carousel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    color: var(--primary-color);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    transition: var(--transition);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.1);
    animation: pulse 0.6s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.carousel-btn.prev {
    left: 20px;
}

.carousel-btn.next {
    right: 20px;
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.carousel-indicators button.active {
    background: #fff;
    width: 30px;
    border-radius: 6px;
}

/* ============ CTA CARDS SECTION ============ */

.cta-cards-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8eef5 100%);
    padding: 60px 0;
}

.cta-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.cta-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.cta-card:hover::before {
    left: 100%;
}

.cta-cards-grid > :nth-child(1) { animation-delay: 0.1s; }
.cta-cards-grid > :nth-child(2) { animation-delay: 0.2s; }
.cta-cards-grid > :nth-child(3) { animation-delay: 0.3s; }
.cta-cards-grid > :nth-child(4) { animation-delay: 0.4s; }
.cta-cards-grid > :nth-child(5) { animation-delay: 0.5s; }

.cta-card-icon-job {
    background: linear-gradient(135deg, #0f1f5c, #1e3a8a) !important;
}

.cta-card-job:hover {
    box-shadow: 0 15px 40px rgba(15, 31, 92, 0.25) !important;
}

.cta-card-job:hover .cta-card-icon-job {
    box-shadow: 0 8px 20px rgba(15, 31, 92, 0.45) !important;
}

.cta-card-btn-job {
    background: linear-gradient(135deg, #F8F812 0%, #FFD700 100%) !important;
    color: #1a1a1a !important;
    font-weight: 800 !important;
}

.cta-card-btn-job:hover {
    box-shadow: 0 8px 20px rgba(248, 248, 18, 0.5) !important;
}

.cta-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(63, 109, 228, 0.2);
}

.cta-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: #fff;
    animation: scaleIn 0.6s ease;
    transition: all 0.3s ease;
}

.cta-card:hover .cta-card-icon {
    animation: bounce 0.6s ease;
    box-shadow: 0 8px 20px rgba(63, 109, 228, 0.4);
}

.cta-card h3 {
    color: var(--text-dark);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.cta-card p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 25px;
    line-height: 1.6;
}

.cta-card-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-card-btn:hover {
    transform: scale(1.08) translateY(-3px);
    box-shadow: 0 8px 20px rgba(63, 109, 228, 0.4);
    animation: pulse 0.4s ease;
}

/* ============ CTA MODALS ============ */

.cta-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    animation: fadeIn 0.3s ease;
    overflow-y: auto;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.cta-modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 40px;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cta-modal-close {
    color: #aaa;
    float: right;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.cta-modal-close:hover,
.cta-modal-close:focus {
    color: #000;
}

.cta-modal-content h2 {
    color: var(--text-dark);
    font-size: 28px;
    margin-bottom: 25px;
    font-weight: 700;
}

.form-group {
    margin-bottom: 18px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
    box-sizing: border-box;
    position: relative;
    animation: slideInUp 0.6s ease;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(63, 109, 228, 0.15);
    transform: translateY(-2px);
    animation: glow 0.6s ease;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.modal-submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(63, 109, 228, 0.4);
}

/* ============ STAFF MODAL EXTENDED ============ */

.staff-modal-large .cta-modal-content {
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto !important;
    padding: 40px;
}

.staff-form {
    display: grid;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.form-section-title {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 15px;
    padding-top: 15px;
    border-top: 2px solid var(--border-color);
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
    font-size: 14px;
}

.form-group small {
    display: block;
    color: var(--text-light);
    font-size: 12px;
    margin-top: 4px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group input[type="number"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(63, 109, 228, 0.1);
}

.membership-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.membership-option {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.membership-option:hover {
    background: rgba(63, 109, 228, 0.05);
    border-color: var(--primary-color);
}

.membership-option input[type="radio"] {
    cursor: pointer;
}

.membership-option span {
    color: var(--text-dark);
    font-weight: 500;
    flex: 1;
}

.payment-info {
    background: #e3f2fd;
    border: 1px solid #90caf9;
    border-radius: 8px;
    padding: 15px;
    margin-top: 15px;
}

.payment-info p {
    color: var(--primary-color);
    font-weight: 700;
    margin: 0 0 5px 0;
}

.payment-info small {
    color: var(--text-light);
}

/* ============ SECTIONS ============ */

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 42px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
    animation: slideUp 0.8s ease;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
    animation: slideRight 0.8s ease 0.3s forwards;
}

@keyframes slideRight {
    from { width: 0; }
    to { width: 100%; }
}

.section-title p {
    font-size: 18px;
    color: var(--text-light);
    animation: slideUp 0.8s ease 0.2s both;
}

/* Career Section */
.career-section {
    background: var(--light-color);
}

.career-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.career-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.career-text p {
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.8;
}

.benefits-list {
    list-style: none;
    margin-top: 30px;
}

.benefits-list li {
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
    color: var(--text-dark);
}

.benefits-list li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 15px;
    width: 18px;
    height: 18px;
    background: var(--success-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
}

.benefits-list i {
    position: absolute;
    left: 3px;
    top: 17px;
    color: #fff;
    font-size: 10px;
}

.career-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Courses Section */
.courses-section {
    background: #fff;
}

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

.course-card {
    background: var(--light-color);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    z-index: 1;
    overflow: hidden;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.courses-grid > :nth-child(1) { animation-delay: 0.05s; }
.courses-grid > :nth-child(2) { animation-delay: 0.1s; }
.courses-grid > :nth-child(3) { animation-delay: 0.15s; }
.courses-grid > :nth-child(4) { animation-delay: 0.2s; }
.courses-grid > :nth-child(5) { animation-delay: 0.25s; }
.courses-grid > :nth-child(6) { animation-delay: 0.3s; }

.course-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s ease;
}

.course-card:hover::after {
    left: 100%;
}

.course-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(63, 109, 228, 0.2);
    border-color: var(--primary-color);
    z-index: 10;
}

.course-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    color: #fff;
    margin: 0 auto 20px;
    animation: scaleIn 0.6s ease 0.1s both;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(63, 109, 228, 0.2);
}

.course-card:hover .course-icon {
    animation: bounce 0.6s ease;
    box-shadow: 0 10px 25px rgba(63, 109, 228, 0.4);
    transform: scale(1.15);
}

.course-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.course-card p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Why Us Section */
.why-us-section {
    background: linear-gradient(135deg, #3f6de4 0%, #2563eb 100%);
    color: #fff;
}

.why-us-section .section-title h2,
.why-us-section .section-title p {
    color: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature-item {
    text-align: center;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.features-grid > :nth-child(1) { animation-delay: 0.1s; }
.features-grid > :nth-child(2) { animation-delay: 0.2s; }
.features-grid > :nth-child(3) { animation-delay: 0.3s; }
.features-grid > :nth-child(4) { animation-delay: 0.4s; }
.features-grid > :nth-child(5) { animation-delay: 0.5s; }
.features-grid > :nth-child(6) { animation-delay: 0.6s; }

.feature-number {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    animation: scaleIn 0.6s ease;
    display: inline-block;
}

.feature-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.feature-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Centers Section */
.centers-section {
    background: var(--light-color);
}

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

.center-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    text-align: center;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    position: relative;
    overflow: hidden;
}

.centers-grid > :nth-child(1) { animation-delay: 0.1s; }
.centers-grid > :nth-child(2) { animation-delay: 0.2s; }
.centers-grid > :nth-child(3) { animation-delay: 0.3s; }
.centers-grid > :nth-child(4) { animation-delay: 0.4s; }

.center-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(63, 109, 228, 0.1), transparent);
    transition: left 0.5s ease;
}

.center-card:hover::before {
    left: 100%;
}

.center-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(63, 109, 228, 0.2);
}

.center-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 20px;
}

.center-card p {
    color: var(--text-light);
    margin-bottom: 10px;
}

/* Director Section */
.director-section {
    background: #fff;
}

.director-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.director-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.director-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.director-quote {
    font-size: 24px;
    font-style: italic;
    color: var(--secondary-color);
    margin-bottom: 30px;
    padding: 20px 0;
    border-left: 4px solid var(--primary-color);
    padding-left: 20px;
}

.director-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.signature {
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 30px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #3f6de4 0%, #2563eb 100%);
    padding: 100px 0;
    text-align: center;
    color: #fff;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============ BUTTONS ============ */

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 16px;
    box-shadow: 0 2px 8px rgba(63, 109, 228, 0.25);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, #3f6de4 0%, #2563eb 100%);
    color: #fff;
    box-shadow: 0 4px 12px rgba(63, 109, 228, 0.35);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2d5aa4 0%, #1e47a0 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 25px rgba(63, 109, 228, 0.5);
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: none;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(63, 109, 228, 0.4);
    transform: scale(1.02);
}

.btn-outline:active {
    transform: scale(0.98);
}

/* ============ FOOTER ============ */

.footer {
    background: var(--dark-color);
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    margin-bottom: 20px;
    font-size: 20px;
    color: var(--primary-color);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* ============ UTILITY CLASSES ============ */

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

.mt-5 {
    margin-top: 50px;
}

.mb-5 {
    margin-bottom: 50px;
}

.mt-3 {
    margin-top: 30px;
}

.mb-3 {
    margin-bottom: 30px;
}

/* ============ CAREER SEMINAR SECTION ============ */

.career-seminar-section {
    background: linear-gradient(135deg, #c0cdda 0%, #f0f4ff 100%);
    padding: 80px 0;
}

.career-seminar-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.seminar-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.seminar-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.seminar-image img:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.seminar-text {
    padding: 20px;
}

.seminar-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
    text-align: justify;
}

.seminar-text strong {
    color: var(--primary-color);
    font-weight: 600;
}

.seminar-text p:first-child {
    font-size: 17px;
    color: var(--text-dark);
}

/* ============ RESPONSIVE CAREER SEMINAR ============ */

@media (max-width: 768px) {
    .career-seminar-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .seminar-text {
        padding: 15px;
    }

    .seminar-text p {
        font-size: 15px;
        text-align: left;
    }

    .career-seminar-section {
        padding: 60px 0;
    }
}

/* ============ PLACEMENT COMPANY SECTION ============ */

.placement-company-section {
    background: linear-gradient(135deg, #fffadf 0%, #f1e9cd 100%);
    padding: 80px 0;
}

.placement-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.placement-content-reverse {
    grid-template-columns: 1fr 1fr;
}

.placement-text {
    padding: 20px;
    order: 1;
}

.placement-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
    text-align: justify;
}

.placement-text strong {
    color: #d97706;
    font-weight: 600;
}

.placement-image {
    display: flex;
    justify-content: center;
    align-items: center;
    order: 2;
}

.placement-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.placement-image img:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

/* ============ GOVERNMENT JOB ALTERNATIVE SECTION ============ */

.govt-job-section {
    background: linear-gradient(135deg, #c9d2dd 0%, #8f9baa 100%);
    padding: 80px 0;
}

.govt-job-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.govt-job-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.govt-job-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.govt-job-image img:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.govt-job-text {
    padding: 20px;
}

.govt-job-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
    text-align: justify;
}

.govt-job-text strong {
    color: #0369a1;
    font-weight: 600;
}

/* ============ RESPONSIVE PLACEMENT & GOVT JOB ============ */

@media (max-width: 768px) {

    .placement-content,
    .govt-job-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .placement-text,
    .govt-job-text {
        padding: 15px;
    }

    .placement-text p,
    .govt-job-text p {
        font-size: 15px;
        text-align: left;
    }

    .placement-company-section,
    .govt-job-section {
        padding: 60px 0;
    }

    .placement-content-reverse {
        grid-template-columns: 1fr;
    }

    .placement-text,
    .placement-image {
        order: auto;
    }
}

/* ============ SUCCESS STORIES CAROUSEL SECTION ============ */

.success-stories-scroll-section {
    background: linear-gradient(135deg, #e9f5ff 0%, #f0f9ff 100%);
    padding: 60px 0;
    width: 100%;
    overflow: hidden;
}

.success-stories-scroll-section .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.container-full-width {
    max-width: 100%;
    padding: 0 20px;
}

.carousel-scroll-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    width: 100%;
}

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: var(--primary-color);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.scroll-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.scroll-btn-left {
    left: 0;
}

.scroll-btn-right {
    right: 0;
}

.scroll-container {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 20px;
    flex: 1;
    margin: 0;
}

.scroll-container::-webkit-scrollbar {
    height: 8px;
}

.scroll-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.scroll-container::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.scroll-container::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

.scroll-item {
    min-width: 280px;
    background: var(--light-color);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    cursor: pointer;
}

.scroll-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.scroll-item-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #e0e0e0;
}

.scroll-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.scroll-item:hover .scroll-item-image img {
    transform: scale(1.05);
}

.scroll-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.scroll-item:hover .scroll-item-overlay {
    opacity: 1;
}

.category-badge {
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.scroll-item-info {
    padding: 20px;
    background: white;
}

.scroll-item-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.4;
}

.scroll-item-info p {
    font-size: 13px;
    color: var(--text-light);
    margin: 6px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.scroll-item-info i {
    color: var(--primary-color);
    width: 16px;
    text-align: center;
}

.student-name {
    color: #7c3aed !important;
    font-weight: 500;
}

.company-name {
    color: #0891b2 !important;
    font-weight: 500;
}

.course-name {
    color: #059669 !important;
    font-weight: 500;
}

/* ============ SUCCESS STORIES SCROLL STYLES ============ */

.success-stories-scroll-container {
    padding: 20px 20px;
}

.success-story-item {
    min-width: 280px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.success-story-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.success-story-item .scroll-item-image {
    height: 250px;
    border-bottom: 3px solid var(--primary-color);
}

.success-story-person-name {
    padding: 14px 16px;
    text-align: center;
    background: #2c3e50;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.person-name {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.person-title {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

/* ============ RESPONSIVE SUCCESS STORIES ============ */

@media (max-width: 768px) {
    .carousel-scroll-wrapper {
        gap: 10px;
    }

    .scroll-container {
        margin: 0;
        padding: 20px 15px;
    }

    .scroll-btn {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    .scroll-item {
        min-width: 240px;
    }

    .scroll-item-image {
        height: 180px;
    }

    .scroll-item-info {
        padding: 15px;
    }

    .scroll-item-info h4 {
        font-size: 14px;
    }

    .scroll-item-info p {
        font-size: 12px;
    }

    .success-story-item .scroll-item-image {
        height: 200px;
    }

    .success-story-person-name {
        padding: 14px;
    }

    .person-name {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .carousel-scroll-wrapper {
        gap: 5px;
    }

    .scroll-container {
        margin: 0;
        padding: 20px 10px;
    }

    .scroll-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .scroll-item {
        min-width: 200px;
    }

    .scroll-item-image {
        height: 150px;
    }

    .scroll-item-info {
        padding: 12px;
    }

    .scroll-item-info h4 {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .scroll-item-info p {
        font-size: 11px;
        margin: 4px 0;
    }

    .success-story-item .scroll-item-image {
        height: 160px;
    }

    .success-story-person-name {
        padding: 12px;
    }

    .person-name {
        font-size: 13px;
    }
}

/* ============ QUICK ACTIONS SECTION ============ */

.quick-actions-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 80px 0;
}

.quick-actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.action-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border-top: 5px solid transparent;
    position: relative;
    overflow: hidden;
}

.action-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.action-card-primary {
    border-top-color: var(--primary-color);
}

.action-card-primary .action-icon {
    background: rgba(63, 109, 228, 0.1);
    color: var(--primary-color);
}

.action-card-success {
    border-top-color: var(--success-color);
}

.action-card-success .action-icon {
    background: rgba(39, 174, 96, 0.1);
    color: var(--success-color);
}

.action-card-accent {
    border-top-color: var(--accent-color);
}

.action-card-accent .action-icon {
    background: rgba(255, 107, 53, 0.1);
    color: var(--accent-color);
}

.action-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.action-card:hover .action-icon {
    transform: scale(1.1) rotateY(10deg);
}

.action-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 700;
}

.action-card p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.6;
    font-size: 15px;
}

.btn-white {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
}

.action-card-success .btn-white {
    color: var(--success-color);
    border-color: var(--success-color);
}

.action-card-accent .btn-white {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

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

.action-card-success .btn-white:hover {
    background: var(--success-color);
    color: white;
}

.action-card-accent .btn-white:hover {
    background: var(--accent-color);
    color: white;
}

/* ============ MODAL STYLES ============ */

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    animation: fadeIn 0.3s ease;
    overflow-y: auto;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-content {
    background: white;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.3s ease;
}

.modal-header {
    padding: 30px;
    background: linear-gradient(135deg, #3f6de4 0%, #2563eb 100%);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 15px 15px 0 0;
}

.modal-header h2 {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
}

.modal-close {
    background: none;
    border: none;
    font-size: 32px;
    color: white;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

/* ============ FORM STYLES ============ */

.enquiry-form {
    padding: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: var(--transition);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(63, 109, 228, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-block {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

.btn-primary {
    background: linear-gradient(135deg, #3f6de4 0%, #2563eb 100%);
    color: white;
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(63, 109, 228, 0.4);
}

/* ============ RESPONSIVE QUICK ACTIONS ============ */

@media (max-width: 768px) {
    .quick-actions-section {
        padding: 60px 0;
    }

    .quick-actions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .action-card {
        padding: 30px 20px;
    }

    .action-icon {
        width: 70px;
        height: 70px;
        font-size: 35px;
    }

    .action-card h3 {
        font-size: 20px;
    }

    .modal-content {
        width: 95%;
        max-height: 95vh;
    }

    .modal-header {
        padding: 20px;
    }

    .modal-header h2 {
        font-size: 24px;
    }

    .enquiry-form {
        padding: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .quick-actions-section {
        padding: 40px 0;
    }

    .action-card {
        padding: 20px;
    }

    .action-icon {
        width: 60px;
        height: 60px;
        font-size: 30px;
    }

    .action-card h3 {
        font-size: 18px;
    }

    .action-card p {
        font-size: 14px;
    }

    .modal-header h2 {
        font-size: 20px;
    }

    .form-group label {
        font-size: 13px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 13px;
        padding: 10px 12px;
    }
}

/* ============ APPLY FOR JOB SECTION ============ */

.apply-job-section {
    background: linear-gradient(135deg, #0f1f5c 0%, #1e3a8a 60%, #1d4ed8 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.apply-job-section::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
}

.apply-job-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -40px;
    width: 220px;
    height: 220px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
}

.apply-job-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.apply-job-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    color: #93c5fd;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
    border: 1px solid rgba(147,197,253,0.3);
}

.apply-job-text h2 {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.2;
}

.apply-job-text > p {
    font-size: 17px;
    color: #bfdbfe;
    line-height: 1.7;
    margin-bottom: 28px;
}

.apply-job-benefits {
    list-style: none;
    margin-bottom: 36px;
}

.apply-job-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 9px 0;
    font-size: 15px;
    color: #dbeafe;
}

.apply-job-benefits li i {
    color: #34d399;
    font-size: 18px;
    flex-shrink: 0;
}

.btn-apply-job {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #F8F812 0%, #FFD700 100%);
    color: #1a1a1a;
    font-weight: 800;
    font-size: 16px;
    padding: 16px 38px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 6px 22px rgba(248,248,18,0.35);
    text-decoration: none;
}

.btn-apply-job:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(248,248,18,0.5);
}

/* Apply for Job Card */
.apply-job-card-wrap {
    display: flex;
    justify-content: center;
}

.apply-job-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 36px;
    width: 100%;
    max-width: 360px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    text-align: center;
}

.apply-job-card-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
    margin: 0 auto 18px;
}

.apply-job-card h3 {
    font-size: 24px;
    font-weight: 800;
    color: #1e3a8a;
    margin-bottom: 4px;
}

.apply-job-card-sub {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 20px;
}

.apply-job-divider {
    border: none;
    border-top: 1px solid #e2e8f0;
    margin: 0 0 24px;
}

.apply-job-card-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 28px;
}

.apply-job-card-stats div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-size: 28px;
    font-weight: 800;
    color: #1e3a8a;
}

.stat-label {
    font-size: 12px;
    color: #64748b;
}

.btn-apply-job-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 2px solid #1e40af;
    color: #1e40af;
    font-weight: 700;
    font-size: 15px;
    padding: 12px 28px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    justify-content: center;
}

.btn-apply-job-outline:hover {
    background: #1e40af;
    color: #fff;
}

/* ============ TALLY DATA BANK MODAL ============ */

.tdb-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(4px);
    overflow-y: auto;
}

.tdb-modal-content {
    background: #fff;
    border-radius: 18px;
    width: 100%;
    max-width: 560px;
    max-height: 92vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
    animation: slideDown 0.3s ease;
}

.tdb-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 28px 30px 20px;
    background: linear-gradient(135deg, #0f1f5c 0%, #1e3a8a 100%);
    border-radius: 18px 18px 0 0;
    color: #fff;
}

.tdb-modal-header h2 {
    font-size: 26px;
    font-weight: 800;
    margin: 0 0 4px;
}

.tdb-modal-header p {
    font-size: 14px;
    color: #93c5fd;
    margin: 0;
}

.tdb-close {
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    font-size: 26px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
    margin-top: 2px;
}

.tdb-close:hover {
    background: rgba(255,255,255,0.3);
    transform: rotate(90deg);
}

.tdb-form {
    padding: 28px 30px 30px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.tdb-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.tdb-form-group label {
    font-size: 13px;
    font-weight: 700;
    color: #374151;
    letter-spacing: 0.3px;
}

.tdb-req {
    color: #ef4444;
}

.tdb-form-group input[type="text"],
.tdb-form-group input[type="tel"],
.tdb-form-group input[type="email"] {
    width: 100%;
    padding: 11px 14px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    color: #1e293b;
    transition: var(--transition);
    box-sizing: border-box;
}

.tdb-form-group input[type="text"]:focus,
.tdb-form-group input[type="tel"]:focus,
.tdb-form-group input[type="email"]:focus {
    outline: none;
    border-color: #1e40af;
    box-shadow: 0 0 0 3px rgba(30,64,175,0.1);
}

.tdb-form-group input::placeholder {
    color: #9ca3af;
}

/* File Upload Styling */
.tdb-file-upload {
    position: relative;
}

.tdb-file-upload input[type="file"] {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    overflow: hidden;
    z-index: -1;
}

.tdb-file-label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    border: 2px dashed #cbd5e1;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    color: #64748b;
    background: #f8fafc;
    transition: var(--transition);
}

.tdb-file-label:hover {
    border-color: #1e40af;
    background: #eff6ff;
    color: #1e40af;
}

.tdb-file-label i {
    font-size: 16px;
    flex-shrink: 0;
}

.tdb-file-hint {
    font-size: 12px;
    color: #94a3b8;
    margin-top: 2px;
}

.tdb-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 6px;
}

.tdb-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30,64,175,0.4);
}

.tdb-alert {
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 16px 30px 0;
}

.tdb-alert i {
    margin-right: 6px;
}

.tdb-alert-success {
    background: #d1fae5;
    color: #065f46;
    border-left: 4px solid #10b981;
}

.tdb-alert-error {
    background: #fee2e2;
    color: #991b1b;
    border-left: 4px solid #ef4444;
}

/* Responsive - Apply for Job */
@media (max-width: 900px) {
    .apply-job-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .apply-job-text h2 {
        font-size: 32px;
    }

    .apply-job-card-wrap {
        justify-content: center;
    }

    .apply-job-card {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .apply-job-text h2 {
        font-size: 26px;
    }

    .tdb-modal-header {
        padding: 20px;
    }

    .tdb-form {
        padding: 20px;
    }
}

/* ============ ENROLLMENT CTA SECTION ============ */

.enrollment-cta-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #eef2f8 100%);
    padding: 60px 0;
    margin: 40px 0;
}

.enrollment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.enrollment-left h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.enrollment-left > p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.6;
}

.enrollment-benefits {
    list-style: none;
    margin-bottom: 30px;
}

.enrollment-benefits li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    font-size: 16px;
    color: var(--text-dark);
}

.enrollment-benefits i {
    color: var(--success-color);
    font-size: 20px;
    flex-shrink: 0;
}

/* ENROLL NOW Button - Prominent Yellow Style */
.btn-enroll-primary {
    background: linear-gradient(135deg, #F8F812 0%, #FFD700 100%);
    color: #1a1a1a !important;
    padding: 20px 55px;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 40px;
    box-shadow: 0 8px 25px rgba(248, 248, 18, 0.35);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-enroll-primary:hover {
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
    color: #FFD700 !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(248, 248, 18, 0.45);
}

/* Quick Registration Form Box */
.enrollment-form-box {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(63, 109, 228, 0.15);
    border-left: 5px solid var(--primary-color);
}

.enrollment-form-box h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.enrollment-form-box > p {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 15px;
}

.quick-enrollment-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.quick-enrollment-form .form-group {
    margin: 0;
}

.quick-enrollment-form input,
.quick-enrollment-form select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #f9f9f9;
}

.quick-enrollment-form input:focus,
.quick-enrollment-form select:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(63, 109, 228, 0.1);
}

/* Registration Submit Button */
.btn-enroll-submit {
    background: var(--primary-color);
    color: white;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-enroll-submit:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(63, 109, 228, 0.35);
}

/* Responsive Enrollment Section */
@media (max-width: 768px) {
    .enrollment-cta-section {
        padding: 40px 0;
    }

    .enrollment-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .enrollment-left h2 {
        font-size: 32px;
    }

    .enrollment-form-box {
        padding: 30px 20px;
    }

    .btn-enroll-primary {
        padding: 16px 40px;
        font-size: 16px;
    }
}