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

:root {
    --primary: #1e3a8a;
    --primary-light: #2563eb;
    --secondary: #10b981;
    --text-dark: #111827;
    --text-muted: #4b5563;
    --bg-light: #f9fafb;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --glass: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.glass {
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
}

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

html, body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Zapf Humanist 601', 'Outfit', sans-serif;
}

.main-title {
    width: 100%;
    height: auto;
    text-align: left;
    font-size: 1.875em;
    text-transform: uppercase;
    font-family: 'Zapf Humanist 601', 'Outfit', sans-serif;
    font-weight: normal;
    font-style: normal;
    font-display: swap;
    color: #000;
}

p, li {
    width: 100%;
    height: auto;
    font-size: 1em;
    line-height: 1.7;
    color: #333;
    font-family: 'Montserrat', sans-serif;
    font-weight: normal;
    font-style: normal;
    font-display: swap;
    text-align: justify;
    text-justify: inter-word;
}

.hero-content p, 
.about-content p, 
.benefit-bullets li, 
.director-text p, 
.testimonial-card p {
    text-align: justify;
    text-justify: inter-word;
}

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

ul {
    list-style: none;
}

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

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

/* Top Bar */
.top-bar {
    background-color: var(--primary);
    color: var(--white);
    padding: 8px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left span {
    margin-right: 20px;
}

.top-bar-left i {
    margin-right: 8px;
}

.top-bar-right a {
    margin-left: 15px;
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.03);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-menu-btn, .sidebar-overlay {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 30px;
}

.logo img {
    height: 55px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

nav ul {
    display: flex;
    gap: 40px;
    align-items: center;
}

nav ul li {
    position: relative;
}

nav ul li a {
    font-weight: 600;
    color: var(--text-dark);
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    position: relative;
    transition: color 0.3s ease;
    white-space: nowrap;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-light);
    transition: width 0.3s ease;
}

nav ul li a:hover::after, nav ul li a.active::after {
    width: 100%;
}

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

/* Mega Menu */
.has-dropdown {
    padding-bottom: 10px;
}

.has-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: -150px;
    transform: translateY(15px);
    width: 900px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    padding: 35px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 100;
    border: 1px solid rgba(0,0,0,0.05);
}

.mega-menu-header {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.mega-menu-header span {
    color: var(--primary);
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    position: relative;
}

.mega-menu-grid ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mega-menu-grid ul li a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    border: none;
}

.mega-menu-grid ul li a i {
    color: var(--primary);
    font-size: 12px;
}

.mega-menu-grid ul li a:hover {
    color: var(--primary-light);
}

.mega-menu::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
    height: 150px;
    background: url('assets/hero_students.png') no-repeat bottom right;
    background-size: cover;
    opacity: 0.1;
    border-radius: 0 0 12px 0;
    pointer-events: none;
}

.btn-apply {
    background: var(--primary);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-apply:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background-color: #f0f7ff;
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-image-version {
    background: transparent;
    padding: 30px 0;
    position: relative;
    overflow: hidden;
    min-height: auto;
}

.hero-image-version .container {
    display: flex;
    align-items: center;
    gap: 30px;
}

.hero-text-side {
    flex: 1;
    max-width: 680px;
    position: relative;
    z-index: 2;
}

.badge-v3 {
    display: inline-block;
    background: #ffffff;
    color: #10b981;
    padding: 5px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
    border: 1.5px solid #10b981;
}

.title-v3 {
    font-size: 46px;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.1;
    margin-bottom: 10px;
    letter-spacing: -1px;
    white-space: nowrap;
}

.title-v3 .accent-v3 {
    color: #2563eb;
}

.subtitle-v3 {
    color: #64748b;
    font-size: 17px;
    margin-bottom: 20px;
}

.courses-box-v3 {
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    padding: 15px 20px;
    border-radius: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.course-v3 {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 800;
    color: #1e3a8a;
    text-transform: uppercase;
}

.course-v3 i {
    color: #2563eb;
}

.form-card-v3 {
    background: #ffffff;
    padding: 20px 30px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    border: 1px solid #f1f5f9;
}

.form-card-v3 h3 {
    font-size: 19px;
    color: #1e3a8a;
    margin-bottom: 15px;
    font-weight: 700;
}

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

.form-grid-v3 input, .form-card-v3 select {
    width: 100%;
    padding: 12px 18px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 14px;
    background: #ffffff;
    outline: none;
}

.form-card-v3 select {
    margin-bottom: 15px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%231e3a8a'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7' /%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

.btn-v3 {
    display: inline-block;
    width: 50%;
    background: #0066ff;
    color: #ffffff;
    padding: 12px 20px;
    border: none;
    border-radius: 50px;
    font-weight: 800;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-v3:hover {
    background: #1e3a8a;
    transform: translateY(-2px);
}

.google-bar-v3 {
    margin-top: 15px;
    border: 1.5px solid #6366f1;
    padding: 10px 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
}

.google-bar-v3 img {
    height: 22px;
}

.stars-v3 {
    color: #f59e0b;
    display: flex;
    gap: 4px;
    font-size: 15px;
}

.count-v3 {
    font-weight: 800;
    color: #2563eb;
    font-size: 15px;
}

.hero-image-side {
    flex: 1.2;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.img-wrapper-v3 {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.img-wrapper-v3 img {
    width: 100%;
    height: auto;
    display: block;
}

.float-badge-v3 {
    position: absolute;
    top: -20px;
    right: 50px;
    background: #ffffff;
    padding: 12px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: #2563eb;
    font-size: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 10;
}

.float-badge-v3 i {
    color: #3b82f6;
    font-size: 18px;
}

/* Floating Contact Buttons */
.float-phone {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: #10b981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
    z-index: 999;
    transition: transform 0.3s ease;
}

.float-phone:hover {
    transform: scale(1.1);
}

.float-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #25D366;
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: transform 0.3s ease;
}

.float-whatsapp:hover {
    transform: scale(1.1);
}

.float-whatsapp .badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ef4444;
    color: white;
    font-size: 12px;
    font-weight: bold;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

@media (max-width: 1024px) {
    .hero-image-version .container { flex-direction: column; text-align: center; }
    .hero-text-side { max-width: 100%; margin-right: 0; }
    .courses-box-v3 { justify-content: center; }
    .form-grid-v3 { grid-template-columns: 1fr; }
    .btn-v3 { max-width: 100%; }
    .google-bar-v3 { flex-direction: column; gap: 10px; }
    .hero-image-side { min-height: 500px; width: 100%; }
}

.btn-callback:hover {
    background: var(--primary);
}

.google-reviews {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
}

.google-reviews .stars {
    color: #fbbf24;
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image img {
    border-radius: 30px;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.1);
}

.floating-badge {
    position: absolute;
    top: 20px;
    left: -20px;
    background: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
}

.floating-badge i {
    color: var(--primary-light);
}

/* Sections General */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-badge {
    background: var(--white);
    color: #10b981;
    border: 1px solid #10b981;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
    display: inline-block;
}

.section-header h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-header p {
    color: var(--text-muted);
}

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

.course-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #f3f4f6;
}

.course-card:hover {
    transform: translateY(-10px);
}

.course-img {
    height: 220px;
    overflow: hidden;
}

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

.course-body {
    padding: 30px;
}

.course-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    font-size: 14px;
}

.course-rating .stars {
    color: #fbbf24;
}

.course-body h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.course-body p {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 25px;
}

.course-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    font-size: 14px;
    font-weight: 500;
}

.course-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.course-meta i {
    color: #f97316;
}

.course-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.btn-enroll {
    background: var(--primary-light);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    text-align: center;
    font-weight: 600;
    display: inline-block;
}

.btn-read {
    border: 1px solid #e5e7eb;
    color: var(--text-dark);
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
}

/* Why Choose Section */
.why-choose {
    background: var(--white);
}

.why-choose-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.why-left {
    flex: 1;
}

.why-left h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.features-list {
    margin-top: 40px;
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: #eff6ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary-light);
    font-size: 20px;
}

.feature-text h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.feature-text p {
    color: var(--text-muted);
    font-size: 14px;
}

.why-right {
    flex: 1;
    position: relative;
}

.video-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.video-thumbnail {
    width: 100%;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

.why-right::after {
    content: 'Delta Academy Kaloor';
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary);
    color: var(--white);
    padding: 10px 15px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 12px;
}

/* Comparison Section */
.comparison {
    background: #00127a;
    background-image: radial-gradient(circle at 15% 50%, rgba(255,255,255,0.05) 0%, transparent 50%), radial-gradient(circle at 85% 30%, rgba(255,255,255,0.05) 0%, transparent 50%);
    color: var(--white);
    overflow: hidden;
}

.comparison .comp-header-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

.comp-title h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
}

.comp-desc p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.6;
    text-align: justify;
    text-justify: inter-word;
}

.table-wrapper {
    background: transparent;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.comp-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    color: var(--text-dark);
}

.comp-table th {
    padding: 25px 20px;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
}

.comp-table th:nth-child(1) {
    background: #f8fafc;
    color: var(--text-dark);
    border-top-left-radius: 16px;
}

.comp-table th:nth-child(2) {
    background: var(--primary-light);
    color: white;
}

.comp-table th:nth-child(3) {
    background: #ef4444;
    color: white;
    border-top-right-radius: 16px;
}

.comp-table td {
    padding: 20px;
    border-bottom: 1px solid #e2e8f0;
    font-size: 15px;
    background: var(--white);
}

.comp-table td:nth-child(1) {
    font-weight: 600;
    background: #f8fafc;
    text-align: justify;
    text-justify: inter-word;
}

.comp-table td:nth-child(2), .comp-table td:nth-child(3) {
    text-align: justify;
    text-justify: inter-word;
}

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

.comp-table tr:last-child td:first-child {
    border-bottom-left-radius: 16px;
}

.comp-table tr:last-child td:last-child {
    border-bottom-right-radius: 16px;
}

.comp-table td i {
    font-size: 18px;
}

.fa-check-circle { color: #10b981; }
.fa-times-circle { color: #ef4444; }

.comp-footer {
    padding: 20px;
    display: flex;
    justify-content: space-around;
    background: #f8fafc;
}

.comp-btn {
    background: var(--primary-light);
    color: var(--white);
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 600;
}

/* Testimonials */
.testimonials {
    background: var(--white);
}

.testimonial-slider {
    display: flex;
    gap: 30px;
    overflow-x: hidden;
    padding: 20px 0;
}

.testimonial-card {
    background: #e0e7ff;
    padding: 40px;
    border-radius: 16px;
    min-width: 400px;
    box-shadow: none;
}

.testimonial-card .stars {
    color: #fbbf24;
    margin-bottom: 20px;
}

.testimonial-card p {
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.8;
}

.student-info h5 {
    font-size: 16px;
    margin-bottom: 4px;
    color: var(--primary-light);
}

.student-info span {
    font-size: 12px;
    color: var(--text-muted);
}

.slider-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.nav-btn:hover {
    background: var(--primary);
}

/* Footer */
footer {
    background: #0f172a;
    color: var(--white);
    padding: 80px 0 20px;
}

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

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 30px;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: #94a3b8;
}

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

.contact-info li {
    display: flex;
    gap: 15px;
    color: #94a3b8;
    margin-bottom: 20px !important;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 14px;
    color: #64748b;
}

/* Sticky Buttons */
.sticky-buttons {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sticky-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: var(--transition);
}

.whatsapp { background: #25d366; }
.phone { background: #10b981; }

.sticky-btn:hover {
    transform: scale(1.1);
}

/* Internal Page Banner */
.internal-banner {
    height: 300px;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.6)), url('assets/banner_why_us.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: var(--white);
}

.banner-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.breadcrumbs {
    font-size: 14px;
    opacity: 0.8;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

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

.about-grid {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-subtitle {
    color: var(--primary-light);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    display: inline-block;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #111827;
    line-height: 1.2;
    text-transform: none;
    font-family: 'Outfit', sans-serif;
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    background: #0066ff;
    color: var(--white);
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 25px;
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.2);
    transition: var(--transition);
}

.btn-contact:hover {
    background: #0052cc;
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(0, 102, 255, 0.3);
}

.about-img {
    flex: 1;
    position: relative;
}

.about-image-wrapper {
    position: relative;
    padding-bottom: 40px;
    padding-left: 40px;
}

.img-main {
    width: 100%;
    border-radius: 24px;
    display: block;
}

.img-sub {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 55%;
    border-radius: 20px;
    border: 12px solid var(--white);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Achievements */
.achievements {
    padding: 80px 0;
    background: var(--white);
}

.achieve-header {
    margin-bottom: 50px;
}

.achieve-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: #111827;
    margin-top: 10px;
    font-family: 'Outfit', sans-serif;
    text-transform: none;
}

.achieve-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    background: var(--white);
    padding: 40px 20px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
}

.stat-card.orange-border {
    border-bottom: 4px solid #f97316;
}

.stat-card h3 {
    font-size: 36px;
    color: #1e3a8a;
    margin-bottom: 10px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.stat-card p {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

/* Benefits */
.benefits {
    padding: 80px 0;
}

.benefit-grid-new {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.benefit-img-new img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.benefit-content-new h2 {
    font-size: 42px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: 'Outfit', sans-serif;
    text-transform: none;
}

.benefit-desc {
    margin-bottom: 25px;
    color: #333;
    font-size: 15px;
    text-align: justify;
    text-justify: inter-word;
}

.benefit-bullets {
    list-style: none;
    padding: 0;
}

.benefit-bullets li {
    margin-bottom: 15px;
    font-weight: 500;
    font-size: 15px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: flex-start;
    color: #111827;
    text-align: justify;
    text-justify: inter-word;
}

.benefit-bullets li i {
    color: #0066ff;
    font-size: 18px;
}

.benefit-actions {
    margin-top: 35px;
    display: flex;
    gap: 15px;
}

.btn-enroll-solid {
    background: #0066ff;
    color: white;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 20px rgba(0,102,255,0.2);
    transition: var(--transition);
}

.btn-enroll-solid:hover {
    background: #0052cc;
    color: white;
    transform: translateY(-2px);
}

.btn-whatsapp-outline {
    background: transparent;
    color: #10b981;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #10b981;
    transition: var(--transition);
}

.btn-whatsapp-outline:hover {
    background: #10b981;
    color: white;
}

/* Director Message */
.director-message {
    padding: 80px 0;
    background: var(--white);
}

.director-box-new {
    background: #edf2fc;
    border-radius: 30px;
    padding: 60px 80px;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    overflow: hidden;
}



/* Futuristic Mesh Gradients */
.hero, .why-choose, .achievements, .benefits {
    background: var(--white);
}

.achievements {
    background: var(--bg-light);
}

section {
    position: relative;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
    z-index: -1;
}

/* Button Refinements */
.btn-apply, .btn-enroll, .btn-callback, .btn-contact {
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-apply:hover, .btn-enroll:hover, .btn-callback:hover, .btn-contact:hover {
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.3);
}

/* Scroll Bar Refinement */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: 10px;
}

/* Responsive fixes & Sidebar Navigation */
@media (max-width: 1024px) {
    .top-bar { display: none; }
    header .container { position: relative; }
    .mobile-menu-btn { display: block; }
    .btn-apply { display: none; }

    .hero .container, .why-choose-content, .about-grid, .achieve-grid, .benefit-grid, .director-box-new, .about-grid-new {
        flex-direction: column !important;
        text-align: center !important;
    }

    .hero, section, footer {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
    }
    
    .container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 15px !important;
    }

    .hero-content h1 { font-size: 32px; }
    .hero-form { margin: 0 auto; width: 100%; max-width: 100%; }
    .course-tags { justify-content: center; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .director-box-new { padding: 40px 20px; grid-template-columns: 1fr; }
    .comparison .comp-header-grid { grid-template-columns: 1fr; text-align: center; gap: 20px; }
    .achieve-stats-row { grid-template-columns: 1fr 1fr; }
    .benefit-grid-new { grid-template-columns: 1fr; text-align: center; }
    .benefit-bullets li { 
        text-align: justify; 
        text-justify: inter-word;
    }
    .benefit-actions { justify-content: center; }

    #main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--white);
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        z-index: 1100;
        flex-direction: column;
        padding: 80px 20px 30px;
        transition: right 0.4s ease-in-out, visibility 0.4s;
        overflow-y: auto;
        display: flex;
        visibility: hidden;
    }
    
    #main-nav.active { 
        right: 0; 
        visibility: visible;
    }
    
    .sidebar-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.6);
        z-index: 1090;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
    }

    .sidebar-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    #main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        width: 100%;
    }
    
    #main-nav ul li { width: 100%; }
    
    #main-nav ul li a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 15px;
        border-radius: 8px;
        background: var(--bg-light);
        width: 100%;
        color: var(--text-dark);
        font-weight: 600;
    }
    
    #main-nav ul li a.active {
        background: var(--primary-light);
        color: var(--white) !important;
        border: none;
    }

    .has-dropdown:hover .mega-menu {
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
    }
    
    .mega-menu {
        position: static;
        width: 100%;
        transform: none;
        box-shadow: none;
        border: none;
        background: transparent;
        padding: 10px 0 0 15px;
        opacity: 1;
        visibility: visible;
        display: none; 
    }
    
    .has-dropdown.mobile-open .mega-menu {
        display: block;
    }
    
    .mega-menu-grid { grid-template-columns: 1fr; gap: 10px; }
    .mega-menu::after { display: none; }
}

@media (max-width: 768px) {
    header { 
        padding: 10px 0 !important; 
    }
    .logo img { 
        height: 35px !important; 
    }
    .mobile-menu-btn { 
        font-size: 22px !important; 
    }
    section { padding: 60px 0; }
    .section-header h2, .comp-title h2 { font-size: 26px !important; }
    .footer-grid { 
        grid-template-columns: repeat(3, 1fr); 
        text-align: center;
        gap: 20px;
    }
    .footer-col:nth-child(1) {
        grid-column: 1 / -1;
        margin-bottom: 10px;
    }
    .footer-col h4 {
        font-size: 16px;
        margin-bottom: 15px;
    }
    .footer-col ul li {
        font-size: 13px;
        margin-bottom: 10px;
    }
    .contact-info li { 
        justify-content: center;
        flex-direction: column;
        gap: 5px;
        font-size: 12px;
    }
    .table-wrapper { overflow-x: auto; }
    .comp-table { min-width: 700px; }
    /* Testimonials Mobile Optimization */
    .testimonial-slider { 
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        padding: 10px 0;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 15px;
    }
    .testimonial-card { 
        width: 85vw !important; 
        min-width: 0 !important;
        max-width: 320px !important;
        flex: 0 0 auto !important;
        scroll-snap-align: center;
        padding: 20px !important;
        box-sizing: border-box;
        white-space: normal !important;
        word-wrap: break-word;
    }
    .testimonial-card p {
        font-size: 13px !important;
        line-height: 1.5 !important;
        margin-bottom: 15px !important;
    }
    .slider-nav { display: flex !important; justify-content: center; margin-top: 20px; }
    .achieve-stats-row { grid-template-columns: 1fr; }
    
    /* Hero Mobile Optimization */
    .hero { 
        padding: 40px 0 !important; 
    }
    .hero .container {
        gap: 30px !important;
    }
    .hero-content {
        padding: 20px !important;
        margin-right: 0 !important;
        margin-bottom: 30px !important;
        width: 100% !important;
        border-radius: 16px !important;
    }

    /* v3 Hero Mobile Fixes */
    .hero-image-version {
        padding: 20px 0;
    }
    .hero-image-version .container {
        flex-direction: column;
        gap: 20px;
    }
    .hero-text-side {
        max-width: 100%;
        text-align: center;
    }
    .title-v3 {
        font-size: 32px;
        white-space: normal;
        line-height: 1.2;
    }
    .courses-box-v3 {
        justify-content: center;
    }
    .form-card-v3 {
        padding: 20px;
    }
    .form-grid-v3 {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .btn-v3 {
        width: 100%;
    }
    .google-bar-v3 {
        flex-direction: column;
        gap: 10px;
    }
    .hero-image-side {
        min-height: 300px;
        width: 100%;
        margin-top: 20px;
    }

    .hero-content h1 { 
        font-size: 28px !important; 
        line-height: 1.3 !important;
    }
    .hero-content p {
        font-size: 15px !important;
        margin-bottom: 20px !important;
    }
    .course-tags {
        padding: 10px !important;
        margin-bottom: 25px !important;
    }
    .hero-form {
        padding: 20px !important;
    }

    /* Globe Visibility on Mobile */
    .hero-image {
        display: flex !important;
        min-height: 300px !important;
        width: 100% !important;
        margin-top: 20px !important;
        margin-bottom: 10px !important;
    }
    #hero-canvas {
        display: block !important;
        height: 100% !important;
    }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 28px; }
    .internal-banner h1 { font-size: 32px; }
    .comp-table { min-width: 600px; }
}
