/* ========================================
   CSS Variables & Reset
======================================== */
:root {
    --primary-color: #1e40af;
    --secondary-color: #f59e0b;
    --accent-color: #10b981;
    --dark-color: #1f2937;
    --light-color: #f3f4f6;
    --white-color: #ffffff;
    --text-dark: #374151;
    --text-light: #6b7280;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

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

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

html {
    overflow-x: hidden;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul {
    list-style: none;
}

/* ========================================
   Header & Navigation
======================================== */
.header {
    background: var(--white-color);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 80px;
}

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

.logo-image {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.footer-logo-image {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 24px;
}

.logo-text h1 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 2px;
}

.logo-text p {
    font-size: 11px;
    color: var(--text-light);
    font-weight: 600;
    letter-spacing: 2px;
}

.logo-tagline {
    display: block;
    font-size: 9px;
    letter-spacing: 0.5px;
    color: var(--accent-color);
    font-weight: 700;
    margin-top: 3px;
    text-transform: uppercase;
    line-height: 1.2;
}

.nav {
    display: flex;
    align-items: center;
    position: relative;
    height: 100%;
}

.nav-menu {
    display: flex;
    gap: 1rem;
    align-items: center;
    height: 100%;
}

.nav-menu li {
    display: flex;
    align-items: center;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 8px 10px;
    border-radius: 6px;
    transition: var(--transition);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

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

.payment-btn {
    background: linear-gradient(135deg, var(--secondary-color), #f97316) !important;
    color: var(--white-color) !important;
    padding: 10px 24px !important;
    border-radius: 8px;
    font-weight: 600;
}

.payment-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
    padding: 10px;
    background: transparent;
    border: none;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
    display: block;
    pointer-events: none;
}

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

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

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

/* ========================================
   Slider Section
======================================== */
.slider-section {
    position: relative;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
}

.slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
}

.slide-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

/* Dark overlay for text readability - only on slides with text content (slides 3, 4, 5) */
.slide:nth-child(3)::before,
.slide:nth-child(4)::before,
.slide:nth-child(5)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.slide:nth-child(2) {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.slide:nth-child(3) {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.slide:nth-child(4) {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.slide:nth-child(5) {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.slide.active {
    opacity: 1;
}

.slide-content {
    display: flex;
    align-items: center;
    height: 100%;
    color: var(--white-color);
    position: relative;
    z-index: 2;
}

.slide-content h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: slideInDown 0.8s ease-out;
}

.slide-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    animation: slideInUp 0.8s ease-out;
}

.btn-primary {
    display: inline-block;
    background: var(--white-color);
    color: var(--primary-color);
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    animation: fadeIn 1s ease-out;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--white-color);
    padding: 14px 32px;
    border: 2px solid var(--white-color);
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
}

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

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    color: var(--white-color);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
    backdrop-filter: blur(5px);
    z-index: 10;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.5);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    gap: 10px;
    z-index: 10;
}

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

.dot.active {
    background: var(--white-color);
    width: 30px;
    border-radius: 6px;
}

/* ========================================
   Features Section
======================================== */
.features-section {
    padding: 80px 0;
    background: var(--white-color);
}

/* ========================================
   Why Choose Us Section
   ======================================== */
.why-choose-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 50px 0 60px;
}

.stat-card {
    background: white;
    padding: 40px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
}

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

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 15px 0 10px;
    line-height: 1;
}

.stat-card p {
    color: #6b7280;
    font-size: 1rem;
    font-weight: 500;
}

.benefits-section {
    margin-top: 60px;
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.benefits-title {
    text-align: center;
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.benefits-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

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

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: #f9fafb;
    border-radius: 10px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.benefit-item:hover {
    background: #f0f9ff;
    border-left-color: var(--primary-color);
    transform: translateX(5px);
}

.benefit-item i {
    color: var(--accent-color);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.benefit-item span {
    color: #374151;
    font-size: 0.95rem;
    font-weight: 500;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: #6b7280;
    font-size: 1.1rem;
    margin-top: -20px;
    margin-bottom: 10px;
}

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

.feature-card {
    background: var(--white-color);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 2rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ========================================
   Events & Cultural Festival Section
======================================== */
.events-section {
    padding: 80px 0;
    background: #f9fafb;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.event-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.event-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.event-card:hover .event-image img {
    transform: scale(1.1);
}

.event-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.event-card:hover .event-overlay {
    background: linear-gradient(to bottom, rgba(30,64,175,0.5), rgba(30,64,175,0.8));
}

.event-overlay i {
    font-size: 3.5rem;
    color: white;
    opacity: 0.9;
}

.event-content {
    padding: 30px;
}

.event-content h3 {
    font-size: 1.5rem;
    color: #1f2937;
    margin-bottom: 12px;
    font-weight: 700;
}

.event-date {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.event-date i {
    font-size: 1rem;
}

.event-content p:last-child {
    color: #6b7280;
    line-height: 1.8;
    font-size: 0.95rem;
}

.events-cta {
    text-align: center;
    margin-top: 50px;
}

.events-cta .btn-secondary {
    display: inline-block;
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    background: var(--primary-color);
    color: var(--white-color);
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
}

.events-cta .btn-secondary:hover {
    background: transparent;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(30, 64, 175, 0.4);
}

/* ========================================
   Student Reviews Section
   ======================================== */
.reviews-section {
    padding: 80px 0;
    background: white;
}

.reviews-slider-wrapper {
    position: relative;
    margin-top: 50px;
    overflow: hidden;
    padding: 0 70px;
}

.reviews-slider {
    display: flex;
    gap: 35px;
    transition: transform 0.5s ease;
}

.review-card {
    min-width: calc((100% - 70px) / 3);
    max-width: calc((100% - 70px) / 3);
    flex-shrink: 0;
    box-sizing: border-box;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.review-card {
    background: #f9fafb;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e5e7eb;
}

.student-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid var(--primary-color);
}

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

.student-info {
    flex: 1;
}

.student-info h4 {
    font-size: 1.2rem;
    color: #1f2937;
    margin-bottom: 5px;
    font-weight: 700;
}

.student-course {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.rating {
    display: flex;
    gap: 4px;
}

.rating i {
    color: #f59e0b;
    font-size: 0.95rem;
}

.review-content {
    position: relative;
}

.review-content::before {
    content: '"';
    position: absolute;
    top: -15px;
    left: -10px;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.review-content p {
    color: #4b5563;
    line-height: 1.8;
    font-size: 0.95rem;
    font-style: italic;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.slider-nav:hover {
    background: var(--accent-color);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.slider-nav.prev {
    left: 10px;
}

.slider-nav.next {
    right: 10px;
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 6px;
}

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

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   Page Header
======================================== */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white-color);
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.9;
}

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

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.about-img-placeholder {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 12px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 5rem;
}

/* ========================================
   Mission Vision
======================================== */
.mission-vision {
    padding: 80px 0;
    background: var(--light-color);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mv-card {
    background: var(--white-color);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.mv-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 2rem;
}

.mv-card h3 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.mv-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ========================================
   Statistics Section
======================================== */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.2rem;
    opacity: 0.9;
}

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

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.course-card {
    background: var(--white-color);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

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

.course-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.course-card h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.course-card > p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.course-features {
    margin-bottom: 1.5rem;
}

.course-features li {
    color: var(--text-light);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.course-features i {
    color: var(--accent-color);
}

.btn-course {
    display: block;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white-color);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-course:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ========================================
   Contact Section
======================================== */
.contact-section {
    padding: 80px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info-section h2,
.contact-form-section h2 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.contact-info-section p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-info-cards {
    display: grid;
    gap: 1.5rem;
}

.info-card {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-card-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.info-card h3 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.info-card p {
    color: var(--text-light);
    margin: 0.3rem 0;
    word-break: break-word;
}

.info-card p a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.info-card p a:hover {
    color: var(--accent-color);
    text-decoration: underline;
    transform: translateX(3px);
}

/* Contact Form */
.contact-form {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 12px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.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: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.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(30, 64, 175, 0.1);
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white-color);
    padding: 14px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ========================================
   Map Section
======================================== */
.map-section {
    padding: 80px 0;
    background: #f9fafb;
}

.map-container {
    margin-top: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.map-container iframe {
    display: block;
    width: 100%;
}

/* ========================================
   Payment Section
======================================== */
.payment-section {
    padding: 80px 0;
}

.payment-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.payment-intro h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.payment-intro p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.payment-card {
    background: var(--white-color);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.payment-card.full-width {
    grid-column: 1 / -1;
}

.payment-card-header {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white-color);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.payment-card-header i {
    font-size: 2rem;
}

.payment-card-header h3 {
    font-size: 1.5rem;
}

.payment-card-body {
    padding: 2rem;
}

.qr-code-container {
    margin-bottom: 1.5rem;
}

.qr-placeholder {
    width: 250px;
    height: 250px;
    margin: 0 auto;
    background: var(--light-color);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.qr-placeholder i {
    font-size: 5rem;
    margin-bottom: 1rem;
}

.payment-note {
    color: var(--text-light);
    text-align: center;
    font-size: 0.95rem;
}

.payment-details,
.bank-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.detail-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: var(--light-color);
    border-radius: 8px;
}

.detail-label {
    font-weight: 600;
    color: var(--dark-color);
}

.detail-value {
    color: var(--text-dark);
    font-family: monospace;
    font-size: 1.05rem;
}

.copy-btn {
    background: var(--primary-color);
    color: var(--white-color);
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
}

.copy-btn:hover {
    background: var(--accent-color);
}

.upi-apps {
    margin-top: 1.5rem;
}

.app-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

.app-icon {
    text-align: center;
    color: var(--text-light);
}

.app-icon i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.app-icon span {
    display: block;
    font-size: 0.9rem;
}

.payment-instructions {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.payment-instructions h3 {
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-instructions h3 i {
    color: var(--primary-color);
}

.payment-instructions ul {
    list-style: none;
}

.payment-instructions li {
    color: var(--text-dark);
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.payment-instructions li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

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

.support-box {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white-color);
    padding: 2.5rem;
    border-radius: 12px;
    max-width: 500px;
    margin: 0 auto;
}

.support-box i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.support-box h4 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.support-box p {
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

/* ========================================
   Footer
======================================== */
.footer {
    background: var(--dark-color);
    color: var(--white-color);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.footer-logo-image {
    width: 60px;
    height: 60px;
    object-fit: contain;
    flex-shrink: 0;
}

.footer-logo-text h3 {
    margin-bottom: 0.3rem;
}

.footer-tagline {
    font-size: 0.85rem;
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
    margin-top: 0.3rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: block;
    line-height: 1.3;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-top: 1rem;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--white-color);
    padding-left: 5px;
}

.contact-info li {
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 1rem;
    line-height: 1.6;
}

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

.contact-info li strong {
    color: var(--white-color);
    font-weight: 600;
}

.contact-info li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.contact-info li a:hover {
    color: var(--white-color);
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    transition: var(--transition);
}

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

.social-links .whatsapp-social:hover {
    background: #25D366;
}

.whatsapp-link {
    color: var(--white-color);
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.whatsapp-link:hover {
    color: #25D366;
}

.whatsapp-link i {
    font-size: 1.2rem;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
}

/* Footer Responsive Styles */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: left;
    }

    .footer-logo {
        justify-content: flex-start;
    }

    .footer-logo-image {
        width: 50px;
        height: 50px;
    }

    .footer-col h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .footer-tagline {
        font-size: 0.75rem;
    }

    .footer-desc {
        font-size: 0.95rem;
    }

    .social-links {
        justify-content: flex-start;
    }

    .contact-info li {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .footer-logo {
        flex-direction: row;
        align-items: center;
        gap: 12px;
    }

    .footer-logo-text h3 {
        font-size: 1.1rem;
    }

    .footer-tagline {
        font-size: 0.7rem;
        line-height: 1.2;
    }

    .footer-col h3 {
        font-size: 1.1rem;
    }

    .footer-col ul li a,
    .contact-info li {
        font-size: 0.85rem;
    }

    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

/* ========================================
   Animations
======================================== */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

/* ========================================
   Team/Faculty Section
======================================== */
.team-section {
    padding: 80px 0;
}

.leadership-section {
    background: var(--white-color);
}

.faculty-section {
    background: var(--light-color);
}

/* CEO Message Section */
.ceo-message-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: visible;
}

.ceo-message-card {
    background: var(--white-color);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 0 auto;
    margin-top: 40px;
    position: relative;
    border-left: 5px solid var(--primary-color);
}

.quote-icon {
    position: absolute;
    top: -20px;
    left: 40px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(30, 64, 175, 0.3);
}

.message-title {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    text-align: center;
    margin-top: 1rem;
}

.message-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-dark);
    text-align: justify;
    margin-bottom: 2rem;
    font-style: italic;
}

.message-author {
    text-align: right;
    border-top: 2px solid var(--border-color);
    padding-top: 1.5rem;
}

.author-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.author-title {
    font-size: 0.95rem;
    color: var(--text-light);
}

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

    .ceo-message-card {
        padding: 3rem 1.5rem 2rem;
        margin: 40px 1rem 0;
    }

    .quote-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        left: 15px;
        top: -25px;
    }

    .message-title {
        font-size: 1.5rem;
        margin-top: 0.5rem;
    }

    .message-text {
        font-size: 1rem;
        text-align: left;
        line-height: 1.8;
    }

    .author-name {
        font-size: 1.1rem;
    }

    .message-author {
        padding-top: 1rem;
    }
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.leadership-grid.single-leader {
    grid-template-columns: 1fr;
    max-width: 600px;
}

.faculty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.team-member {
    background: var(--white-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.member-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 0;
    padding-bottom: 125%;
    background: #f3f4f6;
}

.faculty-card .member-image-wrapper {
    padding-bottom: 125%;
    height: 0;
}

.member-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: var(--transition);
    display: block;
}

.team-member:hover .member-image {
    transform: scale(1.1);
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 64, 175, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.team-member:hover .member-overlay {
    opacity: 1;
}

.social-links-member {
    display: flex;
    gap: 1rem;
}

.social-links-member a {
    width: 50px;
    height: 50px;
    background: var(--white-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: var(--transition);
    transform: translateY(20px);
}

.team-member:hover .social-links-member a {
    transform: translateY(0);
}

.social-links-member a:hover {
    background: var(--secondary-color);
    color: var(--white-color);
    transform: scale(1.1);
}

.member-info {
    padding: 2rem;
}

.member-info h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.member-position {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.member-qualifications {
    background: var(--light-color);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.member-qualifications p {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.member-qualifications p:last-child {
    margin-bottom: 0;
}

.member-qualifications i {
    color: var(--primary-color);
    margin-top: 3px;
    flex-shrink: 0;
}

.member-qualifications a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
    word-break: break-all;
    overflow-wrap: break-word;
}

.member-qualifications a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.member-description {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.95rem;
}

.member-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.tag {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* ========================================
   Certifications Section
======================================== */
.certifications-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.cert-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.cert-content {
    display: flex;
    flex-direction: column;
}

.cert-logo-section {
    padding: 30px;
    text-align: center;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    border-bottom: 2px solid #f3f4f6;
    min-height: 280px;
}

.cert-logo-container {
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.cert-logo {
    max-width: 140px;
    max-height: 140px;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.cert-card:hover .cert-logo {
    transform: scale(1.1);
}

.cert-logo-section h3 {
    font-size: 1.5rem;
    color: #1f2937;
    margin-bottom: 10px;
    font-weight: 700;
    min-height: 40px;
    display: flex;
    align-items: center;
}

.cert-logo-section p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 0.9rem;
    max-width: 400px;
    min-height: 48px;
    display: flex;
    align-items: center;
    text-align: center;
}

.cert-document {
    padding: 20px;
    background: #f9fafb;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.cert-document img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease;
    cursor: pointer;
}

.cert-card:hover .cert-document img {
    transform: scale(1.02);
}

/* ========================================
   Team Preview Section (Homepage)
======================================== */
.team-preview-section {
    padding: 80px 0;
    background: var(--light-color);
}

.team-preview-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 3rem;
}

.leadership-preview {
    position: sticky;
    top: 100px;
}

.leader-card {
    background: var(--white-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.leader-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 0;
    padding-bottom: 125%;
    background: #f3f4f6;
}

.leader-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.leader-info {
    padding: 2rem;
}

.leader-info h3 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.leader-position {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.leader-desc {
    color: var(--text-light);
    line-height: 1.8;
}

.faculty-preview-grid {
    display: grid;
    gap: 1.5rem;
}

.faculty-preview-card {
    background: var(--white-color);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.faculty-preview-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
    border-left-color: var(--accent-color);
}

.faculty-preview-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.faculty-preview-card h4 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.faculty-preview-card p {
    color: var(--text-light);
    line-height: 1.6;
}

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

/* ========================================
   Authentication Pages (Login/Signup)
======================================== */
.auth-section {
    padding: 80px 0;
    background: var(--light-color);
    min-height: calc(100vh - 400px);
}

.auth-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    align-items: start;
}

.auth-card {
    background: var(--white-color);
    border-radius: 12px;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-header h2 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.auth-header p {
    color: var(--text-light);
}

.auth-form .form-group {
    margin-bottom: 1.5rem;
}

.auth-form label {
    display: block;
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.input-with-icon {
    position: relative;
}

.input-with-icon i:first-child {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
}

.input-with-icon input,
.input-with-icon select {
    width: 100%;
    padding: 12px 45px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
}

.input-with-icon input:focus,
.input-with-icon select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: var(--text-light);
    left: auto !important;
}

.toggle-password:hover {
    color: var(--primary-color);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.checkbox-label input {
    margin-right: 8px;
}

.forgot-password {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
}

.forgot-password:hover {
    text-decoration: underline;
}

.btn-auth {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white-color);
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 1rem;
}

.btn-auth:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.auth-divider {
    text-align: center;
    margin: 1.5rem 0;
    position: relative;
}

.auth-divider::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background: var(--border-color);
}

.auth-divider span {
    position: relative;
    background: var(--white-color);
    padding: 0 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.btn-google {
    width: 100%;
    background: var(--white-color);
    color: var(--dark-color);
    padding: 14px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-google:hover {
    border-color: var(--primary-color);
    background: var(--light-color);
}

.btn-google i {
    font-size: 1.2rem;
}

.auth-footer {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.auth-footer p {
    color: var(--text-dark);
}

.auth-footer a {
    color: var(--primary-color);
    font-weight: 600;
}

.auth-footer a:hover {
    text-decoration: underline;
}

.auth-message {
    margin-top: 1rem;
    padding: 12px;
    border-radius: 8px;
    display: none;
    text-align: center;
    font-weight: 500;
}

.auth-message.success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.auth-message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.auth-message.info {
    background: #dbeafe;
    color: #1e40af;
    border: 1px solid #93c5fd;
}

.auth-info {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 12px;
    padding: 3rem;
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.info-content i {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.info-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.info-content ul {
    text-align: left;
    max-width: 300px;
    margin: 0 auto;
}

.info-content li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
}

.info-content li i {
    font-size: 1rem;
    margin: 0;
}

/* ========================================
   Dashboard Page
======================================== */
.dashboard-section {
    padding: 80px 0;
    background: var(--light-color);
    min-height: calc(100vh - 400px);
}

.dashboard-header {
    text-align: center;
    margin-bottom: 3rem;
}

.dashboard-header h1 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.dashboard-header h1 span {
    color: var(--primary-color);
}

.dashboard-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.dashboard-card {
    background: var(--white-color);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.card-header {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white-color);
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-header h3 {
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-edit {
    background: var(--white-color);
    color: var(--primary-color);
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.btn-edit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.card-body {
    padding: 2rem;
}

.profile-avatar {
    text-align: center;
    margin-bottom: 2rem;
}

.profile-avatar i {
    font-size: 6rem;
    color: var(--primary-color);
}

.profile-info {
    margin-bottom: 1.5rem;
}

.info-row {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    gap: 1rem;
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 600;
    color: var(--dark-color);
    min-width: 120px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-label i {
    color: var(--primary-color);
}

.info-value {
    color: var(--text-dark);
    flex: 1;
}

.edit-input {
    flex: 1;
    padding: 8px 12px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
}

.edit-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.edit-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.btn-save,
.btn-cancel {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-save {
    background: var(--accent-color);
    color: var(--white-color);
}

.btn-save:hover {
    background: #059669;
}

.btn-cancel {
    background: var(--light-color);
    color: var(--dark-color);
}

.btn-cancel:hover {
    background: var(--border-color);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 1.5rem;
}

.stat-info {
    flex: 1;
}

.stat-label {
    display: block;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.stat-value {
    display: block;
    color: var(--dark-color);
    font-size: 1.2rem;
    font-weight: 600;
}

.action-btn {
    width: 100%;
    padding: 1rem;
    background: var(--light-color);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    color: var(--dark-color);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.action-btn:hover {
    background: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.action-btn.danger {
    color: #dc2626;
    border-color: #fecaca;
}

.action-btn.danger:hover {
    background: #dc2626;
    color: var(--white-color);
    border-color: #dc2626;
}

.dashboard-message {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 2rem;
    font-weight: 500;
    text-align: center;
}

.dashboard-message.success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.dashboard-message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

/* ============================
   Careers CTA Section
   ============================ */

.careers-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    position: relative;
    overflow: hidden;
}

.careers-cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><rect width="60" height="60" fill="none"/><circle cx="30" cy="30" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.4;
}

.careers-cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.careers-cta-text {
    color: white;
}

.careers-cta-text .section-title {
    color: white;
    margin-bottom: 15px;
}

.careers-cta-text .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.careers-highlights {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.careers-highlights li {
    color: white;
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
}

.careers-highlights i {
    color: #10b981;
    font-size: 1.2rem;
}

.careers-cta-text .btn-primary {
    background: white;
    color: #1e40af;
    margin-top: 20px;
}

.careers-cta-text .btn-primary:hover {
    background: #f0f9ff;
    transform: translateY(-3px);
}

.careers-icon-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.career-icon-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

.career-icon-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
}

.career-icon-item i {
    font-size: 3rem;
    color: #10b981;
    margin-bottom: 15px;
    display: block;
}

.career-icon-item span {
    color: white;
    font-weight: 600;
    font-size: 1.05rem;
    display: block;
}

/* ============================
   Faculty Training Program Section
   ============================ */

.faculty-training-section {
    padding: 100px 0;
    background: #f9fafb;
}

.training-overview {
    margin-top: 50px;
}

.training-hero {
    text-align: center;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 60px 40px;
    border-radius: 20px;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}

.training-hero::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.training-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 25px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.training-badge i {
    font-size: 1.3rem;
}

.training-hero h3 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.training-hero p {
    font-size: 1.2rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

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

.training-feature {
    display: flex;
    gap: 20px;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.training-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.15);
}

.feature-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #10b981;
    opacity: 0.3;
    line-height: 1;
}

.feature-content h4 {
    font-size: 1.2rem;
    color: #1e293b;
    margin-bottom: 10px;
}

.feature-content p {
    color: #64748b;
    line-height: 1.6;
}

.training-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.training-info-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    border-top: 4px solid #10b981;
}

.training-info-card h3 {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.training-info-card h3 i {
    color: #10b981;
    font-size: 1.3rem;
}

.program-highlights,
.eligibility-list {
    list-style: none;
    padding: 0;
}

.program-highlights li,
.eligibility-list li {
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
    color: #475569;
    line-height: 1.6;
    border-bottom: 1px solid #e2e8f0;
}

.program-highlights li:last-child,
.eligibility-list li:last-child {
    border-bottom: none;
}

.program-highlights li i,
.eligibility-list li i {
    position: absolute;
    left: 0;
    top: 14px;
    color: #10b981;
    font-size: 1.1rem;
}

.training-cta {
    margin-top: 30px;
    text-align: center;
}

.training-cta .btn-secondary {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 14px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.training-cta .btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.training-process {
    margin-top: 80px;
}

.process-title {
    text-align: center;
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 50px;
}

.training-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.training-timeline::before {
    content: "";
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #10b981 0%, #059669 100%);
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-marker {
    width: 60px;
    height: 60px;
    background: white;
    border: 4px solid #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.timeline-marker i {
    font-size: 1.5rem;
    color: #10b981;
}

.timeline-content {
    background: white;
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    flex: 1;
}

.timeline-content h4 {
    font-size: 1.3rem;
    color: #1e293b;
    margin-bottom: 10px;
}

.timeline-content p {
    color: #64748b;
    line-height: 1.6;
}

/* Faculty Programme Message */
.faculty-programme-message {
    margin-top: 60px;
    padding: 0 20px;
}

.programme-card {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #0ea5e9;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.programme-card::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.programme-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.3);
}

.programme-icon i {
    font-size: 2rem;
    color: white;
}

.programme-title {
    font-size: 1.8rem;
    color: #0c4a6e;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.programme-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #334155;
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.programme-cta {
    margin-top: 2rem;
}

.btn-programme {
    display: inline-block;
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.4);
}

.btn-programme:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(14, 165, 233, 0.5);
    background: linear-gradient(135deg, #0284c7, #0369a1);
}

@media (max-width: 768px) {
    .programme-card {
        padding: 2rem 1.5rem;
    }

    .programme-icon {
        width: 60px;
        height: 60px;
    }

    .programme-icon i {
        font-size: 1.5rem;
    }

    .programme-title {
        font-size: 1.4rem;
    }

    .programme-text {
        font-size: 1rem;
    }

    .btn-programme {
        padding: 12px 24px;
        font-size: 1rem;
    }
}

/* ========================================
   Responsive Design
======================================== */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
        width: 100%;
        overflow-x: hidden;
    }
    
    .nav {
        position: static;
    }
    
    .hamburger {
        display: flex;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: var(--white-color);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease-in-out;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        z-index: 999;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }

    .nav-menu li {
        width: 100%;
        margin: 0;
    }

    .nav-menu a {
        display: block;
        padding: 1rem;
        width: 100%;
    }

    .nav-menu.active {
        left: 0;
    }
    
    .header-content {
        position: relative;
    }

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

    .event-image {
        height: 200px;
    }

    .reviews-slider {
        gap: 20px;
    }

    .review-card {
        min-width: calc(100% - 20px);
        max-width: calc(100% - 20px);
    }

    .reviews-slider-wrapper {
        padding: 0 20px;
    }

    .slider-nav {
        display: none;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .review-header {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .benefits-section {
        padding: 30px 20px;
    }

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

    .slider-container {
        aspect-ratio: 16 / 9;
    }

    .slide-content h2 {
        font-size: 2rem;
    }

    .slide-content p {
        font-size: 1.1rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .info-card {
        padding: 1rem;
    }

    .info-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .info-card h3 {
        font-size: 1.1rem;
    }

    .info-card p {
        font-size: 0.9rem;
    }

    .payment-methods {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .careers-cta-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .careers-icon-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .career-icon-item {
        padding: 25px 15px;
    }

    .faculty-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .member-image-wrapper {
        padding-bottom: 125%;
        height: 0;
    }

    .faculty-card .member-image-wrapper {
        padding-bottom: 125%;
        height: 0;
    }

    .career-icon-item i {
        font-size: 2.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .training-details {
        grid-template-columns: 1fr;
    }

    .training-features-grid {
        grid-template-columns: 1fr;
    }

    .training-hero h3 {
        font-size: 2rem;
    }

    .training-timeline::before {
        left: 20px;
    }

    .timeline-marker {
        width: 40px;
        height: 40px;
    }

    .timeline-marker i {
        font-size: 1.2rem;
    }

    .leadership-grid {
        grid-template-columns: 1fr;
    }

    .leadership-grid.single-leader {
        grid-template-columns: 1fr;
    }

    .faculty-grid {
        grid-template-columns: 1fr;
    }

    .member-image-wrapper {
        padding-bottom: 120%;
        height: 0;
    }

    .faculty-card .member-image-wrapper {
        padding-bottom: 125%;
        height: 0;
    }

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

    .cert-logo-section {
        padding: 25px;
    }

    .cert-logo {
        max-width: 100px;
        max-height: 80px;
    }

    .cert-logo-section h3 {
        font-size: 1.3rem;
    }

    .cert-document {
        padding: 15px;
    }

    .cert-document img {
        max-width: 100%;
    }

    .team-preview-wrapper {
        grid-template-columns: 1fr;
    }

    .leadership-preview {
        position: static;
    }

    .auth-wrapper {
        grid-template-columns: 1fr;
    }

    .auth-info {
        display: none;
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .slider-container {
        aspect-ratio: 16 / 9;
    }

    .slide-content h2 {
        font-size: 1.5rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 10px 20px;
        font-size: 1rem;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .benefits-title {
        font-size: 1.5rem;
    }

    .careers-cta-section {
        padding: 60px 0;
    }

    .careers-icon-grid {
        grid-template-columns: 1fr;
    }

    .careers-highlights li {
        font-size: 0.95rem;
    }

    .faculty-training-section {
        padding: 60px 0;
    }

    .training-hero {
        padding: 40px 25px;
    }

    .training-hero h3 {
        font-size: 1.6rem;
    }

    .training-hero p {
        font-size: 1rem;
    }

    .training-badge {
        font-size: 0.95rem;
        padding: 10px 20px;
    }

    .training-feature {
        flex-direction: column;
        text-align: center;
    }

    .feature-number {
        font-size: 2rem;
    }

    .training-info-card {
        padding: 25px;
    }

    .process-title {
        font-size: 1.5rem;
    }

    .timeline-item {
        gap: 15px;
    }

    .timeline-content {
        padding: 20px;
    }

    .timeline-content h4 {
        font-size: 1.1rem;
    }

    .member-image-wrapper {
        padding-bottom: 125%;
        height: 0;
    }

    .faculty-card .member-image-wrapper {
        padding-bottom: 125%;
        height: 0;
    }

    .member-info {
        padding: 1.5rem;
    }

    .member-info h3 {
        font-size: 1.3rem;
    }
}

/* ============================
   Careers Page Styles
   ============================ */

.careers-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e8f1f8 100%);
}

.careers-intro {
    text-align: center;
    margin-bottom: 60px;
}

.careers-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.15);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon i {
    font-size: 2rem;
    color: white;
}

.benefit-card h3 {
    font-size: 1.3rem;
    color: #1e293b;
    margin-bottom: 12px;
}

.benefit-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Job Openings */
.job-openings {
    margin-top: 80px;
    text-align: center;
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    margin-top: 50px;
    text-align: left;
}

.job-card {
    background: white;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 5px solid #1e40af;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(30, 64, 175, 0.2);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e2e8f0;
}

.job-title-section h3 {
    font-size: 1.8rem;
    color: #1e40af;
    margin-bottom: 8px;
}

.job-department {
    color: #64748b;
    font-size: 0.95rem;
}

.job-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.job-details {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
}

.job-detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #475569;
    font-size: 0.95rem;
}

.job-detail-item i {
    color: #1e40af;
    font-size: 1rem;
}

.job-description {
    margin-bottom: 30px;
}

.job-description h4 {
    font-size: 1.1rem;
    color: #1e293b;
    margin-top: 20px;
    margin-bottom: 12px;
}

.job-description p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 15px;
}

.job-description ul {
    list-style: none;
    padding-left: 0;
}

.job-description ul li {
    color: #475569;
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.job-description ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 1.1rem;
}

.job-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 2px solid #e2e8f0;
}

.job-posted {
    color: #64748b;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.job-posted i {
    color: #94a3b8;
}

.btn-apply {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
}

.btn-apply:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 64, 175, 0.3);
}

/* Application Process */
.application-process {
    margin-top: 80px;
    text-align: center;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.process-step {
    background: white;
    padding: 35px 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 1.2rem;
    color: #1e293b;
    margin-bottom: 12px;
}

.process-step p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .careers-benefits {
        grid-template-columns: 1fr;
    }

    .jobs-grid {
        grid-template-columns: 1fr;
    }

    .job-header {
        flex-direction: column;
        gap: 15px;
    }

    .job-badge {
        align-self: flex-start;
    }

    .job-details {
        flex-direction: column;
        gap: 12px;
    }

    .job-footer {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .btn-apply {
        width: 100%;
        text-align: center;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .careers-section {
        padding: 50px 0;
    }

    .job-card {
        padding: 25px;
    }

    .job-title-section h3 {
        font-size: 1.5rem;
    }

    .job-description h4 {
        font-size: 1rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

/* ============================
   Floating WhatsApp Button
   ============================ */

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 100px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    color: #fff;
    line-height: 60px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* Application Modal Styles */
.application-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
}

.modal-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
    position: relative;
}

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

.modal-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 25px 30px;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 10;
}

.modal-header h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
}

.modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
    padding: 0;
}

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

.application-form {
    padding: 30px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group label .required {
    color: #e74c3c;
    margin-left: 3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    background-color: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

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

.form-group input[type="file"] {
    padding: 10px;
    cursor: pointer;
}

.form-group input[type="file"]::file-selector-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.form-group input[type="file"]::file-selector-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.form-help {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
    font-style: italic;
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #e0e0e0;
}

.btn-submit-application,
.btn-cancel {
    padding: 14px 35px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 180px;
    flex: 1;
}

.btn-submit-application {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-submit-application::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;
}

.btn-submit-application:hover::before {
    left: 100%;
}

.btn-submit-application:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
}

.btn-submit-application:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-submit-application i {
    font-size: 14px;
}

.btn-cancel {
    background: white;
    color: #666;
    border: 2px solid #e0e0e0;
}


.btn-cancel:hover {
    background: #f8f9fa;
    border-color: #ccc;
}

/* Responsive Modal Styles */
@media (max-width: 768px) {
    .modal-content {
        max-width: 100%;
        border-radius: 15px;
        max-height: 95vh;
    }

    .modal-header {
        padding: 20px;
        border-radius: 15px 15px 0 0;
    }

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

    .application-form {
        padding: 20px;
    }

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

    .form-actions {
        flex-direction: column;
        gap: 10px;
    }

    .btn-submit-application,
    .btn-cancel {
        width: 100%;
        padding: 14px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .application-modal {
        padding: 10px;
    }

    .modal-header {
        padding: 15px;
    }

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

    .application-form {
        padding: 15px;
    }

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

/* Success/Error Notification Modal Styles */
.notification-modal {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease-in;
    overflow-y: auto;
}

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

.notification-content {
    background: white;
    border-radius: 24px;
    max-width: 550px;
    width: 100%;
    padding: 0;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    animation: slideUp 0.4s ease-out;
    text-align: center;
    overflow: hidden;
    margin: auto;
    max-height: 90vh;
    overflow-y: auto;
}

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

.notification-icon {
    padding: 40px 0 20px;
    font-size: 80px;
    animation: iconBounce 0.6s ease-out 0.2s;
    position: sticky;
    top: 0;
    z-index: 1;
}

@keyframes iconBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

.success-notification .notification-icon {
    color: #10b981;
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
}

.error-notification .notification-icon {
    color: #ef4444;
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
}

.notification-content h2 {
    font-size: 28px;
    margin: 0 30px 15px;
    color: #1f2937;
    font-weight: 700;
}

.notification-message {
    font-size: 16px;
    color: #6b7280;
    margin: 0 30px 25px;
    line-height: 1.6;
}

.notification-details {
    background: #f9fafb;
    padding: 20px 30px;
    margin: 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.notification-details p {
    margin: 12px 0;
    color: #4b5563;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.notification-details i {
    color: #667eea;
    font-size: 18px;
    flex-shrink: 0;
}

.notification-contact {
    padding: 25px 30px 30px;
}

.notification-contact p {
    margin: 8px 0;
    color: #6b7280;
    font-size: 15px;
}

.notification-contact a {
    color: #667eea;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    word-break: break-word;
}

.notification-contact a:hover {
    color: #764ba2;
    transform: scale(1.05);
}

.btn-notification-close {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 16px 50px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin: 20px 0 35px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-notification-close:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
}

.btn-notification-close:active {
    transform: translateY(-1px);
}

/* Responsive Notification Styles */
@media (max-width: 768px) {
    .notification-modal {
        padding: 10px;
        align-items: flex-start;
        padding-top: 20px;
    }

    .notification-content {
        max-width: 100%;
        border-radius: 20px;
        max-height: 95vh;
        margin: 0 auto;
    }

    .notification-icon {
        padding: 25px 0 12px;
        font-size: 56px;
    }

    .notification-content h2 {
        font-size: 22px;
        margin: 0 15px 10px;
    }

    .notification-message {
        font-size: 14px;
        margin: 0 15px 15px;
        line-height: 1.5;
    }

    .notification-details {
        padding: 12px 15px;
    }

    .notification-details p {
        font-size: 13px;
        flex-direction: row;
        gap: 8px;
        margin: 10px 0;
        text-align: left;
    }

    .notification-details i {
        font-size: 16px;
    }

    .notification-contact {
        padding: 15px;
    }

    .notification-contact p {
        font-size: 13px;
    }

    .notification-contact a {
        font-size: 14px;
    }

    .btn-notification-close {
        padding: 12px 35px;
        font-size: 14px;
        margin: 15px 0 20px;
        width: calc(100% - 30px);
    }
}

@media (max-width: 480px) {
    .notification-icon {
        padding: 20px 0 10px;
        font-size: 50px;
    }

    .notification-content h2 {
        font-size: 20px;
    }

    .notification-message {
        font-size: 13px;
    }

    .notification-details p {
        font-size: 12px;
    }

    .notification-contact p {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 90px;
        right: 20px;
        font-size: 26px;
    }
}

