@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #1a5276;
    --primary-light: #2980b9;
    --primary-dark: #0e3a53;
    --secondary: #f39c12;
    --secondary-light: #f1c40f;
    --accent: #27ae60;
    --text: #2c3e50;
    --text-light: #7f8c8d;
    --bg: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #ecf0f1;
    --shadow: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.15);
    --radius: 12px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100vw;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

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

/* Header */
.header {
    background: var(--bg);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

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

.nav-logo img {
    height: 50px;
    width: auto;
}

.nav-logo-text h2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

.nav-logo-text p {
    font-size: 0.7rem;
    color: var(--text-light);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text);
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

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

.nav-enroll {
    background: var(--secondary);
    color: var(--bg) !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.nav-enroll:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.nav-enroll::after {
    display: none !important;
}

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

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

/* Hero Section */
.hero-full {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(10,40,60,0.85) 0%, rgba(20,60,90,0.7) 50%, rgba(30,90,130,0.4) 100%);
    z-index: 1;
}

.hero-content-left {
    display: flex;
    align-items: center;
    min-height: 85vh;
    padding: 100px 0 60px;
}

.hero-text-left {
    max-width: 700px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--bg);
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.hero-title span {
    color: var(--secondary);
}

.hero-desc {
    font-size: 1.15rem;
    opacity: 0.95;
    margin-bottom: 35px;
    max-width: 600px;
    color: rgba(255,255,255,0.95);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
    line-height: 1.8;
}

.hero-text-left .hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-text-left .btn {
    padding: 16px 40px;
    font-size: 1.05rem;
}

.hero-text-left .btn-primary {
    background: var(--secondary);
    box-shadow: 0 4px 20px rgba(243,156,18,0.5);
}

.hero-text-left .btn-primary:hover {
    background: var(--secondary-light);
    box-shadow: 0 6px 30px rgba(243,156,18,0.6);
    transform: translateY(-3px);
}

.hero-text-left .btn-secondary {
    border: 2px solid var(--bg);
    color: var(--bg);
    background: transparent;
}

.hero-text-left .btn-secondary:hover {
    background: var(--bg);
    color: var(--primary);
}

.hero-text {
    color: var(--bg);
}

.hero-badge {
    display: inline-block;
    background: var(--secondary);
    color: var(--bg);
    padding: 10px 28px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 25px;
    animation: pulse 2s infinite;
    box-shadow: 0 4px 15px rgba(243,156,18,0.4);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-text h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text h1 span {
    color: var(--secondary);
}

.hero-text p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--secondary);
    color: var(--bg);
}

.btn-primary:hover {
    background: var(--secondary-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--bg);
    border: 2px solid var(--bg);
}

.btn-secondary:hover {
    background: var(--bg);
    color: var(--primary);
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    animation: float 3s ease-in-out infinite;
}

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

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
    color: var(--bg);
    padding: 20px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius);
    backdrop-filter: blur(5px);
}

.stat-item .icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.stat-item h3 {
    font-size: 1.8rem;
    font-weight: 700;
}

.stat-item p {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* Section Styles */
.section {
    padding: 100px 0;
}

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

.section-header .badge {
    display: inline-block;
    background: rgba(26,82,118,0.1);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.15));
}

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

/* Welcome Section */
.welcome {
    background: var(--bg-light);
}

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

.welcome-image {
    position: relative;
}

.welcome-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.welcome-image .experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--secondary);
    color: var(--bg);
    padding: 20px 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.welcome-image .experience-badge h3 {
    font-size: 2rem;
    font-weight: 700;
}

.welcome-image .experience-badge p {
    font-size: 0.85rem;
}

.welcome-text h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    white-space: nowrap;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.15));
}

.welcome-text h2 span {
    color: var(--primary);
}

.welcome-title {
    white-space: nowrap;
    font-size: 2.2rem;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.15));
}

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

.motto-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--bg);
    padding: 25px 30px;
    border-radius: var(--radius);
    margin-top: 25px;
    border-left: 4px solid var(--secondary);
}

.motto-box h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    opacity: 0.9;
}

.motto-box p {
    font-size: 1.2rem;
    font-weight: 600;
    font-style: italic;
    margin: 0;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg);
    padding: 40px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

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

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

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(1px 1px 2px rgba(0,0,0,0.1));
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Coaching Section */
.coaching {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--bg);
}

.coaching .section-header h2 {
    color: #f39c12 !important;
    font-size: 2.5rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.coaching .section-header p {
    color: rgba(255,255,255,0.8);
}

.coaching .section-header .badge {
    background: rgba(255,255,255,0.2);
    color: var(--bg);
}

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

.coaching-card {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
    backdrop-filter: blur(5px);
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.1);
}

.coaching-card:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-5px);
}

.coaching-card .icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.coaching-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
}

.coaching-card p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Why Start Section */
.why-start {
    background: var(--bg-light);
}

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

.why-start-list {
    display: grid;
    gap: 15px;
}

.why-start-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: var(--bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.why-start-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.why-start-item .check {
    width: 40px;
    height: 40px;
    background: var(--accent);
    color: var(--bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.why-start-item h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.why-start-item p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Teaching Methodology */
.methodology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.method-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: var(--bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.method-card .icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.method-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.method-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Success Section */
.success {
    background: linear-gradient(135deg, var(--accent) 0%, #2ecc71 100%);
    color: var(--bg);
}

.success .section-header h2 {
    color: var(--bg);
}

.success .section-header p {
    color: rgba(255,255,255,0.8);
}

.success .section-header .badge {
    background: rgba(255,255,255,0.2);
    color: var(--bg);
}

.success-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.success-content h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: 600;
}

.success-list {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.success-item {
    background: rgba(255,255,255,0.15);
    padding: 20px 40px;
    border-radius: var(--radius);
    backdrop-filter: blur(5px);
}

.success-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    text-align: center;
    padding: 80px 0;
    color: var(--bg);
}

.cta h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f1c40f 50%, #f39c12 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.2));
}

.cta p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* About Page */
.page-hero {
    min-height: 40vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding-top: 100px;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--bg);
}

.page-hero p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    margin-top: 10px;
}

/* Numbers Section */
.numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.number-card {
    text-align: center;
    padding: 40px 20px;
    background: var(--bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.number-card .icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.number-card h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.number-card p {
    color: var(--text-light);
    font-weight: 500;
}

/* Leaders Section */
.leaders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.leader-card {
    background: var(--bg);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.leader-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.leader-info {
    padding: 25px;
    text-align: center;
}

.leader-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.leader-info p {
    color: var(--primary);
    font-weight: 500;
}

.leader-info span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Mission Vision */
.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mv-card {
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.mv-card.mission {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--bg);
}

.mv-card.vision {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    color: var(--bg);
}

.mv-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.mv-card p {
    line-height: 1.8;
    opacity: 0.95;
}

/* Academics Page */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.program-card {
    background: var(--bg);
    padding: 40px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

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

.program-card .icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.program-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary);
}

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

/* Why Choose */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: var(--bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.why-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.why-item .icon {
    width: 50px;
    height: 50px;
    background: rgba(26,82,118,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.why-item h4 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.why-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Activities */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
}

.activity-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background: var(--primary);
    color: var(--bg);
}

.activity-card .icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.activity-card h4 {
    font-weight: 600;
}

/* Faculty Page */
.faculty-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.faculty-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    background: var(--bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.faculty-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.faculty-number-badge {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
}

.faculty-details h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text);
}

.faculty-details p {
    color: var(--primary);
    font-weight: 500;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.faculty-details span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Faculty Strength */
.strength-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.strength-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 25px;
    background: var(--bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.strength-item .icon {
    font-size: 1.5rem;
    color: var(--primary);
}

.strength-item h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.strength-item p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Faculty Numbers */
.faculty-numbers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.faculty-number {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--bg);
    border-radius: var(--radius);
}

.faculty-number .icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.faculty-number h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.faculty-number p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Fee Structure */
.fee-table-container {
    overflow-x: auto;
    margin-bottom: 40px;
}

.fee-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.fee-table thead {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--bg);
}

.fee-table th {
    padding: 18px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
}

.fee-table td {
    padding: 15px 20px;
    border-bottom: 1px solid var(--bg-dark);
    font-size: 0.95rem;
}

.fee-table tbody tr:hover {
    background: var(--bg-light);
}

.fee-table tbody tr:last-child td {
    border-bottom: none;
}

.fee-table .total {
    font-weight: 600;
    color: var(--primary);
}

/* Additional Fees */
.additional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.additional-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: var(--bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.additional-card .icon {
    font-size: 2rem;
    color: var(--secondary);
}

.additional-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.additional-card p {
    color: var(--text-light);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.additional-card .price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
}

/* Gallery Page */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: var(--transition);
}

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

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--bg);
    padding: 20px;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 1rem;
    font-weight: 600;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form {
    background: var(--bg);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.contact-form h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--text);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--bg-dark);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

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

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: var(--bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

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

.info-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.info-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.info-card a {
    color: var(--primary);
    font-weight: 500;
    transition: var(--transition);
}

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

/* Map */
.map-container {
    margin-top: 40px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-container iframe {
    width: 100%;
    height: 350px;
    border: none;
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: var(--bg);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-about img {
    height: 60px;
    margin-bottom: 20px;
}

.footer-about p {
    opacity: 0.8;
    line-height: 1.7;
    margin-top: 15px;
    font-size: 0.95rem;
}

.footer-links h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    opacity: 0.8;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--secondary);
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.8;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    opacity: 0.7;
    font-size: 0.9rem;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg);
    font-size: 2rem;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37,211,102,0.4);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

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

.back-to-top:hover {
    background: var(--secondary);
    transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .welcome-content,
    .why-start-content,
    .contact-grid,
    .mv-grid {
        grid-template-columns: 1fr;
    }

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

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

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

    .welcome-image .experience-badge {
        position: relative;
        bottom: auto;
        right: auto;
        display: inline-block;
        margin-top: 15px;
    }

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

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

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

@media (max-width: 768px) {
    html {
        overflow-x: hidden;
    }

    body {
        overflow-x: hidden;
        max-width: 100vw;
    }

    .container {
        padding: 0 15px;
        overflow: hidden;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--bg);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-150%);
        transition: var(--transition);
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .hamburger {
        display: flex;
    }

    .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);
    }

    .hero-title {
        font-size: 1.6rem;
    }

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

    .section-header h2 {
        font-size: 1.5rem;
    }

    .section-header p {
        font-size: 0.9rem;
    }

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

    .stat-item h3 {
        font-size: 1.4rem;
    }

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

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

    .welcome-title,
    .welcome-text h2 {
        white-space: normal;
        font-size: 1.5rem;
    }

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

    .welcome-image .experience-badge {
        position: relative;
        bottom: auto;
        right: auto;
        display: inline-block;
        margin-top: 15px;
    }

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

    .page-hero p {
        font-size: 0.95rem;
    }

    .why-grid,
    .methodology-grid,
    .additional-grid,
    .features-grid,
    .strength-grid,
    .program-grid,
    .coaching-grid,
    .leaders-grid,
    .programs-grid,
    .gallery-grid {
        grid-template-columns: 1fr !important;
    }

    .why-item,
    .method-card,
    .additional-item,
    .feature-card,
    .strength-item,
    .program-card,
    .coaching-card,
    .leader-card,
    .gallery-item {
        min-width: 0;
        max-width: 100%;
        overflow: hidden;
    }

    .hero-badge {
        padding: 8px 18px;
        font-size: 0.85rem;
    }

    .cta {
        padding: 40px 15px;
    }

    .cta h2 {
        font-size: 1.5rem;
    }

    .btn {
        padding: 10px 24px;
        font-size: 0.9rem;
    }

    .fee-table {
        font-size: 0.8rem;
    }

    .fee-table th,
    .fee-table td {
        padding: 8px 6px;
    }

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

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

    .section {
        padding: 40px 0;
    }

    .footer-contact p,
    .footer-about p {
        font-size: 0.85rem;
        word-wrap: break-word;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 20px;
        left: 20px;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    z-index: 10001;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: #ddd;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    padding: 15px 20px;
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 4px;
    transition: var(--transition);
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.4);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}
