/* 
    Wisdomvalley - Main Stylesheet
    Author: Antigravity
    Colors: Primary #0A2540, Secondary #D4AF37
*/

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

:root {
    --primary-color: #4834D4;
    --secondary-color: #6C5CE7;
    --heading-color: #1e1b4b;
    --text-color: #4b5563;
    --light-text: #6b7280;
    --bg-white: #ffffff;
    --bg-light: #f9f9ff;
    --transition: all 0.3s ease;
    --container-width: 1200px;
    --header-height: 100px;
    --box-shadow: 0 10px 30px rgba(67, 56, 202, 0.1);
}

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

html {
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

body.sinhala-font {
    font-family: 'Noto Sans Sinhala', sans-serif;
}

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

ul {
    list-style: none;
}

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

h1, h2, h3, h4 {
    color: var(--heading-color);
    font-weight: 700;
}

section {
    padding: 100px 0;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px; /* More modern rounded pill */
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    border: 2px solid transparent; /* Align with outline buttons */
    font-size: 1rem;
    line-height: 1.2;
}

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

.btn-primary:hover {
    background-color: #372dbd;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(72, 52, 212, 0.3);
}

.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

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

.btn-secondary:hover {
    background-color: #5a4ccb;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.3);
}

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

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-outline-white {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline-white:hover {
    background-color: white;
    color: var(--primary-color);
}

/* Header & Navigation */
header {
    height: var(--header-height) !important;
    background-color: var(--bg-white);
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

header.scrolled {
    height: 80px;
    box-shadow: var(--box-shadow);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 40px; /* Added gap between logo and menu */
}

.logo img {
    height: 100px; /* Increased from 85px */
    width: auto;
    display: block;
    transition: var(--transition);
}

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

header.scrolled .logo img {
    height: 75px; /* Increased from 65px */
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    font-weight: 500;
    position: relative;
    font-size: 17px !important;
    white-space: nowrap;
    transition: var(--transition);
}

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

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

.nav-links a.active {
    color: var(--secondary-color);
}

@media (min-width: 1201px) and (max-width: 1380px) {
    .nav-links {
        gap: 12px;
    }
    .nav-links a {
        font-size: 15px !important;
    }
    nav {
        gap: 15px;
    }
}

/* Adjustments for Sinhala navigation links to prevent wrapping/overflow */
body.sinhala-font .nav-links {
    gap: 14px;
}
body.sinhala-font .nav-links a {
    font-size: 15px !important;
}
@media (min-width: 1201px) and (max-width: 1440px) {
    body.sinhala-font .nav-links {
        gap: 8px;
    }
    body.sinhala-font .nav-links a {
        font-size: 13px !important;
    }
    body.sinhala-font nav {
        gap: 10px;
    }
}
@media (max-width: 1200px) {
    body.sinhala-font .nav-links {
        gap: 20px;
    }
    body.sinhala-font .nav-links a {
        font-size: 18px !important;
    }
}


.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    background: #f1f5f9;
    padding: 4px;
    border-radius: 50px;
    gap: 0;
    align-items: center;
    margin-left: auto;
    margin-right: 20px;
    border: 1px solid #e2e8f0;
}

.lang-btn {
    background: transparent;
    border: none;
    color: var(--text-color);
    padding: 6px 14px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

#lang-si {
    font-family: 'Noto Sans Sinhala', sans-serif;
    font-size: 14px;
}

.lang-btn:hover {
    color: var(--secondary-color);
}

.lang-btn.active {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

@media (max-width: 1200px) {
    .lang-switcher {
        margin-right: 15px;
        order: 2;
    }
    
    .menu-toggle {
        order: 3;
        margin-left: 10px;
    }
}

/* Hero Section */
.hero {
    min-height: 50vh;
    height: auto;
    padding: 150px 0 100px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(30, 27, 75, 0.75), rgba(30, 27, 75, 0.75));
    z-index: 1;
}

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

/* Page Specific Hero Backgrounds */
.hero-home { background-image: url('assets/hero-bg.jpg'); }
.hero-about { background-image: url('assets/about.jpg'); }
.hero-jobbank { background-image: url('assets/job-bank.jpg'); }
.hero-career { background-image: url('assets/career-planning.jpg'); }
.hero-counselling { background-image: url('assets/hero-counselling.jpg'); }
.hero-services { background-image: url('assets/hero-bg.jpg'); }
.hero-courses { background-image: url('assets/hero-courses.jpg'); }
.hero-contact { background-image: url('assets/hero-contact.jpg'); }
.hero-enroll { background-image: url('assets/hero-bg.jpg'); }

.hero-content {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-logo {
    margin-bottom: 30px;
    animation: fadeInUp 1s ease;
}

.hero-logo img {
    height: 220px; /* Increased from 150px */
    width: auto;
    filter: brightness(0) invert(1);
}

.hero-content h1 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.hero-btns .btn {
    min-width: 220px; /* Ensure uniform size for hero buttons */
}

/* Stats Section */
.stats {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header .underline {
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    margin: 0 auto;
}

/* Services / Courses Cards */
.services-grid, .courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    width: 100%;
}

.card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 30px;
}

.card-buttons {
    margin-top: auto;
    display: flex;
    gap: 10px;
    width: 100%;
}

.card-buttons .btn {
    flex: 1;
    white-space: nowrap;
    padding: 12px 15px; /* Reduced side padding to prevent wrapping */
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color);
}

.card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.card h3 {
    margin-bottom: 15px;
}

.card-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px !important;
    text-align: left;
}

.card-content ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 1rem;
    line-height: 1.4;
    color: var(--text-color);
}

.card-content ul li i {
    color: var(--secondary-color);
    margin-top: 3px;
    font-size: 1.1rem;
    flex-shrink: 0;
}

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

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

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(108, 92, 231, 0.1);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-text h3 {
    margin-bottom: 10px;
}

/* Vision & Mission */
.vision-mission {
    background-color: var(--bg-light);
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.vm-item {
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    text-align: center; /* Center vision/mission text */
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Affiliated Courses Section */
.affiliated-courses {
    background-color: var(--bg-white);
    padding: 80px 0;
}

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

.sector-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 30px;
    transition: var(--transition);
    height: 100%;
}

.sector-card:hover {
    border-color: var(--secondary-color);
    box-shadow: var(--box-shadow);
    transform: translateY(-5px);
}

.sector-card h3 {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sector-card h3::before {
    content: '\f0a9';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--secondary-color);
    font-size: 1rem;
}

.sector-card ul {
    list-style: none;
    padding: 0;
}

.sector-card ul li {
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--text-color);
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    gap: 10px;
}

.sector-card ul li:last-child {
    border-bottom: none;
}

.sector-card ul li span {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.85rem;
    min-width: 25px;
}

@media (max-width: 768px) {
    .sectors-grid {
        grid-template-columns: 1fr;
    }
    .sector-card {
        padding: 20px;
    }
}

.vm-item h2 {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column; /* Icon above text */
    align-items: center;
    gap: 15px;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: white;
    padding: 50px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 20px; /* Further reduced gap */
    margin-bottom: 20px; /* Further reduced margin */
}

.footer-about h2 {
    color: white;
    margin-bottom: 20px;
}

.footer-about p {
    opacity: 0.8;
    margin-bottom: 20px;
}

.footer-links h3 {
    color: white;
    margin-bottom: 15px; /* Reduced from 25px */
    font-size: 1.1rem; /* Slightly smaller */
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    opacity: 0.8;
}

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

.footer-contact h3 {
    color: white;
    margin-bottom: 15px; /* Reduced from 25px */
    font-size: 1.1rem; /* Slightly smaller */
}

.footer-contact li {
    display: flex;
    gap: 10px; /* Reduced gap */
    margin-bottom: 8px; /* Reduced from 15px */
    opacity: 0.8;
}

.footer-contact i {
    color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px; /* Reduced */
    text-align: center;
    opacity: 0.6;
    font-size: 0.85rem; /* Slightly smaller */
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    font-size: 1.1rem;
    transition: var(--transition);
}

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

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 999;
    transition: var(--transition);
}

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

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

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}



/* Language Selection Page Styles */
.language-screen {
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(30, 27, 75, 0.8), rgba(30, 27, 75, 0.8)), url('assets/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.language-screen::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(108, 92, 231, 0.2);
    border-radius: 50%;
    top: -100px;
    left: -100px;
    filter: blur(50px);
}

.language-screen::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(162, 155, 254, 0.1);
    border-radius: 50%;
    bottom: -150px;
    right: -100px;
    filter: blur(80px);
}

.lang-logo {
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.lang-logo img {
    height: 350px;
    filter: brightness(0) invert(1);
}

.lang-title {
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.lang-title h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.lang-title p {
    font-family: 'Noto Sans Sinhala', sans-serif;
    font-size: 1.5rem;
    opacity: 0.9;
}

.lang-options {
    display: flex;
    gap: 30px;
    animation: fadeInUp 1s ease 0.4s backwards;
    z-index: 10;
}

.lang-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 40px 60px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 250px;
}

.lang-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-10px);
    border-color: white;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.lang-card i {
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
}

.lang-card h2 {
    font-size: 1.8rem;
    margin-bottom: 5px;
    color: white;
}

.lang-card span {
    font-family: 'Noto Sans Sinhala', sans-serif;
    font-size: 1.2rem;
    opacity: 0.8;
}

/* Mobile Optimization for Entry Page */
@media (max-width: 768px) {
    .lang-logo img {
        height: 120px;
    }
    .lang-title h1 {
        font-size: 1.8rem;
    }
    .lang-title p {
        font-size: 1.2rem;
    }
    .lang-options {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        align-items: center;
        padding: 0 10px;
    }
    .lang-card {
        width: 100%;
        max-width: 320px;
        padding: 25px 30px;
    }
    .lang-card i {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .lang-logo img {
        height: 100px;
    }
    .lang-title h1 {
        font-size: 1.5rem;
    }
    .lang-title p {
        font-size: 1.1rem;
    }
    .lang-card {
        padding: 20px;
    }
}

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

.contact-info-card {
    background: var(--primary-color);
    color: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
}

.contact-info-card h2 { color: white; margin-bottom: 30px; }
.contact-info-item { display: flex; gap: 20px; margin-bottom: 25px; align-items: flex-start; }
.contact-info-item i { font-size: 1.2rem; color: var(--secondary-color); margin-top: 5px; flex-shrink: 0; }
.contact-info-item div { overflow: hidden; width: 100%; }
.contact-info-item p { overflow-wrap: break-word; word-break: break-word; }
.contact-form-container { background: white; padding: 50px; border-radius: 15px; box-shadow: var(--box-shadow); }

.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 500; }
.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 5px rgba(212, 175, 55, 0.2);
}

@media (max-width: 992px) {
    .contact-wrapper { grid-template-columns: 1fr; }
}

/* About Us Page (Team) Styles */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.team-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    text-align: center;
}

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

.team-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 25px;
    border: 5px solid var(--bg-light);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.team-info h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.team-role {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.qualifications {
    list-style: none;
    padding: 0;
    text-align: left;
    font-size: 1rem;
    color: var(--text-color);
}

.qualifications li {
    margin-bottom: 10px;
    display: flex;
    gap: 10px;
    line-height: 1.4;
}

.qualifications li i {
    color: var(--secondary-color);
    margin-top: 3px;
}

/* Modern Pill Language Switcher */
.logo {
    flex-shrink: 0;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 2px; /* Small gap between buttons */
    margin-left: 15px;
    background: rgba(0, 0, 0, 0.05); /* Subtle track */
    padding: 3px;
    border-radius: 50px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
    min-width: 100px; /* Ensure enough space for both */
    z-index: 10;
}

.lang-btn {
    background: transparent;
    border: none;
    color: var(--text-color);
    cursor: pointer;
    font-weight: 700;
    font-size: 0.7rem; /* Slightly smaller for better fit */
    padding: 5px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1; /* Both buttons take equal space */
    min-width: 45px;
}

.lang-btn:hover {
    color: var(--primary-color);
}

.lang-btn.active {
    background-color: white;
    color: var(--primary-color) !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.lang-switcher .divider {
    display: none;
}

/* Hero/Transparent Header State - Only if header is actually transparent */
header.transparent:not(.scrolled) .lang-switcher {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

header.transparent:not(.scrolled) .lang-btn {
    color: white;
}

header.transparent:not(.scrolled) .lang-btn.active {
    background-color: white;
    color: var(--primary-color) !important;
}

/* Our header is actually white by default or primary? Let's check. */

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 50px auto;
    padding: 40px;
    border-radius: 20px;
    width: 90%;
    max-width: 800px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.close-modal {
    position: absolute;
    right: 25px;
    top: 20px;
    font-size: 30px;
    font-weight: bold;
    color: #999;
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--primary-color);
}

/* Course Detail Specific Styles */
.course-details { text-align: left; }
.course-details h2 { color: var(--primary-color); margin-bottom: 20px; border-bottom: 3px solid var(--secondary-color); padding-bottom: 10px; font-size: 1.8rem; }
.course-intro { font-size: 1.1rem; font-weight: 500; margin-bottom: 20px; color: #444; line-height: 1.6; }
.details-section { margin-bottom: 25px; }
.details-section h3 { font-size: 1.2rem; color: var(--secondary-color); margin-bottom: 15px; border-left: 4px solid var(--secondary-color); padding-left: 10px; }
.details-section ul { list-style: none; padding: 0; }
.details-section li { margin-bottom: 10px; font-size: 0.95rem; display: flex; align-items: baseline; }
.details-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.course-footer { background: #f9f9f9; padding: 30px; border-radius: 15px; text-align: center; margin-top: 30px; border: 1px dashed #ddd; }
.fee { font-size: 1.6rem; color: var(--primary-color); margin-bottom: 10px; }
.limited { color: #e74c3c; margin: 15px 0; font-weight: 600; text-transform: uppercase; font-size: 0.9rem; }

@media (max-width: 600px) {
    .details-grid { grid-template-columns: 1fr; }
    .modal-content { padding: 40px 20px; margin: 20px auto; width: 95%; }
    .course-details h2 { font-size: 1.4rem; }
}

/* Founder Section Styles */
.founder-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.founder-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

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

.founder-image-box img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.founder-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    background: linear-gradient(transparent, rgba(30, 27, 75, 0.9));
    color: white;
}

.founder-badge h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.founder-badge p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.founder-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.founder-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
}

.founder-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.8;
    text-align: justify;
}

.founder-signature {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}
/* Enrollment & Registration Forms */
.enroll-section {
    padding: 150px 0 100px;
    background: var(--bg-light);
    min-height: 80vh;
}

.enroll-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--box-shadow);
}

.enroll-header {
    text-align: center;
    margin-bottom: 40px;
}

.enroll-header h1 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

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

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

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

.enroll-form input,
.enroll-form select,
.enroll-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.enroll-form input:focus,
.enroll-form select:focus,
.enroll-form textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.1);
}

.submit-btn {
    width: 100%;
    margin-top: 20px;
    padding: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.status-msg {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    display: none;
}

.status-success {
    background-color: #d1fae5;
    color: #065f46;
    display: block;
}

.status-error {
    background-color: #fee2e2;
    color: #991b1b;
    display: block;
}


.founder-signature p {
    margin-bottom: 10px;
    font-style: italic;
}

.founder-signature h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
}

.founder-signature span {
    color: var(--secondary-color);
    font-weight: 500;
}

/* --- Global Mobile Responsive Styles --- */
@media (max-width: 1100px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 992px) {
    .vm-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .hero-content h1 {
        font-size: 3rem;
    }
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    .founder-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .founder-image-box {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 1200px) {
    header {
        height: 70px;
    }
    .container {
        width: 100%;
    }
    nav {
        gap: 0;
        display: flex !important;
        justify-content: space-between !important;
        width: 100%;
        align-items: center;
    }
    .logo {
        order: 1;
    }
    .logo img {
        height: 50px;
    }
    .lang-switcher {
        order: 2;
        margin-left: auto;
        margin-right: 10px;
    }
    .menu-toggle {
        order: 3;
        margin-left: 0;
    }
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: 0.5s;
        z-index: 999;
    }
    .nav-links.active {
        left: 0;
    }
    .menu-toggle {
        display: block;
        z-index: 1001;
        margin-left: auto;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .team-grid {
        grid-template-columns: 1fr !important;
    }
    .contact-info-card, .contact-form-container {
        padding: 30px 20px;
    }
    .contact-wrapper {
        gap: 30px;
    }
    .card-buttons {
        flex-direction: column;
    }
    .card-buttons .btn {
        width: 100%;
        white-space: normal;
    }
}

@media (max-width: 600px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    .enroll-container {
        padding: 30px 20px;
    }
}

/* Chatbot Styles */
.chatbot-toggle {
    position: fixed;
    bottom: 90px;
    right: 20px;
    background-color: var(--primary-color, #2563eb);
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-toggle:hover {
    transform: scale(1.1);
}

.chatbot-container {
    position: fixed;
    bottom: 160px;
    right: 20px;
    width: 350px;
    max-height: 500px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
    display: none;
    flex-direction: column;
    z-index: 1000;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

.chatbot-header {
    background-color: var(--primary-color, #2563eb);
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-header h4 {
    margin: 0;
    font-size: 16px;
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
}

.chatbot-messages {
    flex-grow: 1;
    padding: 15px;
    overflow-y: auto;
    height: 300px;
    background-color: #f9f9f9;
    display: flex;
    flex-direction: column;
}

.message {
    margin-bottom: 10px;
    padding: 10px 15px;
    border-radius: 20px;
    max-width: 80%;
    word-wrap: break-word;
    font-size: 14px;
}

.bot-message {
    background-color: #e0e0e0;
    color: #333;
    align-self: flex-start;
    border-bottom-left-radius: 5px;
}

.user-message {
    background-color: var(--primary-color, #2563eb);
    color: white;
    align-self: flex-end;
    margin-left: auto;
    border-bottom-right-radius: 5px;
}

.chatbot-input {
    display: flex;
    padding: 10px;
    border-top: 1px solid #ddd;
    background: white;
    align-items: center;
}

.chatbot-input input {
    flex-grow: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 20px;
    outline: none;
    font-family: 'Poppins', sans-serif;
}

.chatbot-input button {
    background-color: var(--primary-color, #2563eb);
}

/* Chatbot Styles */
.chatbot-toggle {
    position: fixed;
    bottom: 90px;
    right: 20px;
    background-color: var(--primary-color, #2563eb);
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-toggle:hover {
    transform: scale(1.1);
}

.chatbot-container {
    position: fixed;
    bottom: 160px;
    right: 20px;
    width: 350px;
    max-height: 500px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
    display: none;
    flex-direction: column;
    z-index: 1000;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

.chatbot-header {
    background-color: var(--primary-color, #2563eb);
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-header h4 {
    margin: 0;
    font-size: 16px;
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
}

.chatbot-messages {
    flex-grow: 1;
    padding: 15px;
    overflow-y: auto;
    height: 300px;
    background-color: #f9f9f9;
    display: flex;
    flex-direction: column;
}

.message {
    margin-bottom: 10px;
    padding: 10px 15px;
    border-radius: 20px;
    max-width: 80%;
    word-wrap: break-word;
    font-size: 14px;
}

.bot-message {
    background-color: #e0e0e0;
    color: #333;
    align-self: flex-start;
    border-bottom-left-radius: 5px;
}

.user-message {
    background-color: var(--primary-color, #2563eb);
    color: white;
    align-self: flex-end;
    margin-left: auto;
    border-bottom-right-radius: 5px;
}

.chatbot-input {
    display: flex;
    padding: 10px;
    border-top: 1px solid #ddd;
    background: white;
    align-items: center;
}

.chatbot-input input {
    flex-grow: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 20px;
    outline: none;
    font-family: 'Poppins', sans-serif;
}

.chatbot-input button {
    background-color: var(--primary-color, #2563eb);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin-left: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ==========================================================================
   Wisdomvalley - Premium Services Page Upgrades
   ========================================================================== */

/* 1. Page Hero Revamp */
.hero.hero-services {
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.95) 0%, rgba(72, 52, 212, 0.95) 60%, rgba(108, 92, 231, 0.9) 100%), url('assets/hero-bg.jpg') center/cover no-repeat;
    position: relative;
    padding: 140px 0 100px 0;
    text-align: center;
    color: white;
}
.hero.hero-services h1 {
    color: white !important;
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -1px;
}
.hero.hero-services p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
    font-weight: 300;
    line-height: 1.6;
}

/* 2. Intro Section Glassmorphic Box */
.services-intro-section {
    padding: 80px 0 60px 0;
}
.intro-container-box {
    max-width: 950px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(72, 52, 212, 0.08);
    border: 1px solid rgba(108, 92, 231, 0.1);
    position: relative;
    overflow: hidden;
}
.intro-container-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
}
.intro-lead-p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--heading-color);
    margin-bottom: 25px;
    font-weight: 500;
    text-align: justify;
}
.intro-sub-p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-color);
    text-align: justify;
}

/* 3. Card Elements & Icon Styles */
.services-offerings-section {
    padding: 100px 0;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 40px;
    margin-top: 50px;
}
.services-grid .card {
    background: white;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 10px 35px rgba(72, 52, 212, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    padding: 40px;
    text-align: left;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.services-grid .card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(72, 52, 212, 0.12);
    border-color: rgba(108, 92, 231, 0.3);
}
.card-icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(108, 92, 231, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: var(--transition);
}
.services-grid .card:hover .card-icon-wrapper {
    background: var(--secondary-color);
}
.card-icon-wrapper i {
    font-size: 2.2rem !important;
    color: var(--secondary-color);
    margin: 0 !important;
    transition: var(--transition);
}
.services-grid .card:hover .card-icon-wrapper i {
    color: white;
    transform: rotateY(180deg);
}
.services-grid .card h3 {
    font-size: 1.45rem;
    color: var(--heading-color);
    margin-bottom: 15px;
    font-weight: 700;
}
.services-grid .card p {
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 25px;
}
.services-bullet-list {
    margin-top: auto;
    padding: 0;
    list-style: none;
}
.services-bullet-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--heading-color);
    transition: var(--transition);
}
.services-bullet-list li i {
    color: var(--secondary-color);
    font-size: 1.05rem !important;
    margin: 0 !important;
    flex-shrink: 0;
}
.services-grid .card:hover .services-bullet-list li i {
    transform: scale(1.1);
    color: var(--primary-color);
}

/* 4. Tech Stack Showcase */
.tech-stack-section {
    padding: 100px 0;
    background: white;
}
.tech-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 15px auto 0 auto !important;
    color: var(--light-text);
    font-size: 1.1rem;
}
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 60px;
}
.tech-badge {
    background: var(--bg-light);
    border: 1px solid rgba(108, 92, 231, 0.08);
    padding: 25px 20px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}
.tech-badge:hover {
    background: white;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(72, 52, 212, 0.08);
    border-color: rgba(108, 92, 231, 0.3);
}
.tech-badge i {
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: var(--transition);
}
.tech-badge:hover i {
    color: var(--secondary-color);
    transform: scale(1.15);
}
.tech-badge span {
    font-weight: 600;
    color: var(--heading-color);
    font-size: 0.95rem;
}

/* 5. Development Process Timeline */
.process-section {
    padding: 100px 0;
}
.process-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 15px auto 0 auto !important;
    color: var(--light-text);
    font-size: 1.1rem;
}
.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 60px;
    position: relative;
}
.timeline-step {
    background: white;
    padding: 35px 25px;
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.03);
    box-shadow: 0 10px 30px rgba(72, 52, 212, 0.03);
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
}
.timeline-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(72, 52, 212, 0.08);
    border-color: rgba(108, 92, 231, 0.2);
}
.step-num {
    position: absolute;
    top: -20px;
    right: 25px;
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, rgba(72, 52, 212, 0.1) 0%, rgba(108, 92, 231, 0.15) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    pointer-events: none;
    line-height: 1;
}
.timeline-step h3 {
    font-size: 1.15rem;
    color: var(--heading-color);
    margin-bottom: 12px;
    margin-top: 10px;
    font-weight: 700;
    line-height: 1.4;
}
.timeline-step p {
    font-size: 0.9rem;
    color: var(--text-color);
    line-height: 1.6;
}

/* 6. Glowing Form Transitions */
.enroll-container {
    background: white;
    border-radius: 25px;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(72, 52, 212, 0.08);
    border: 1px solid rgba(108, 92, 231, 0.08);
}
.enroll-form input,
.enroll-form select,
.enroll-form textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid rgba(108, 92, 231, 0.15);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: var(--bg-light);
    color: var(--heading-color);
    font-family: inherit;
}
.enroll-form input:focus,
.enroll-form select:focus,
.enroll-form textarea:focus {
    border-color: var(--primary-color);
    background-color: white;
    box-shadow: 0 0 0 4px rgba(72, 52, 212, 0.15);
    outline: none;
}
.submit-btn {
    width: 100%;
    padding: 18px 30px !important;
    font-size: 1.1rem !important;
    border-radius: 12px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(72, 52, 212, 0.25);
    transition: all 0.3s ease;
}
.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(72, 52, 212, 0.35);
}

/* 7. Responsive Styling */
@media (max-width: 768px) {
    .hero.hero-services h1 {
        font-size: 2.6rem;
    }
    .hero.hero-services p {
        font-size: 1.1rem;
    }
    .intro-container-box {
        padding: 30px;
    }
    .services-grid {
        gap: 30px;
    }
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .enroll-container {
        padding: 35px 25px;
    }
}

/* ==========================================================================
   8. Tutor Website Proposal Styles
   ========================================================================== */

/* Benefits Cards */
.tutor-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.tutor-benefit-card {
    background: white;
    padding: 35px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.tutor-benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--secondary-color);
    transform: scaleY(0);
    transition: transform 0.3s ease;
    transform-origin: bottom;
}

.tutor-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(72, 52, 212, 0.1);
    border-color: rgba(72, 52, 212, 0.1);
}

.tutor-benefit-card:hover::before {
    transform: scaleY(1);
}

.tutor-benefit-card i {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    background: linear-gradient(135deg, rgba(72, 52, 212, 0.08) 0%, rgba(108, 92, 231, 0.15) 100%);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.tutor-benefit-card h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 700;
}

.tutor-benefit-card p {
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.6;
}

/* Comparison Grid (Custom vs WordPress) */
.comparison-container {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.04);
    margin-top: 40px;
    border: 1px solid rgba(0,0,0,0.03);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.comparison-column {
    padding: 30px;
    border-radius: 15px;
    position: relative;
}

.comparison-column.custom-code {
    background: linear-gradient(135deg, rgba(72, 52, 212, 0.02) 0%, rgba(108, 92, 231, 0.05) 100%);
    border: 2px solid rgba(72, 52, 212, 0.15);
}

.comparison-column.wordpress {
    background: #fafafa;
    border: 2px dashed #e2e8f0;
}

.comparison-column h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.comparison-column.custom-code h3 {
    color: var(--primary-color);
}

.comparison-column.wordpress h3 {
    color: #4a5568;
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    line-height: 1.5;
}

.comparison-column.custom-code .comparison-list li i {
    color: #2ed573;
}

.comparison-column.wordpress .comparison-list li i {
    color: #ff4757;
}

/* What's Included Grid */
.included-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.included-category {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.02);
}

.included-category h3 {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.included-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.included-category ul li {
    padding: 10px 0;
    font-size: 0.95rem;
    color: var(--text-color);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.4;
}

.included-category ul li i {
    color: var(--secondary-color);
    margin-top: 4px;
    font-size: 0.9rem;
}

/* Pricing Section */
.pricing-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 50px 40px;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
    border: 2px solid rgba(0, 0, 0, 0.03);
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(72, 52, 212, 0.12);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(to bottom, #ffffff, #fcfcff);
}

.pricing-card.featured::after {
    content: 'RECOMMENDED';
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary-color);
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 50px;
    letter-spacing: 1px;
}

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

.pricing-card .price-tag {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 15px 0;
    display: flex;
    align-items: baseline;
}

.pricing-card .price-tag span {
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 500;
    margin-left: 8px;
}

.pricing-card .pkg-desc {
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.5;
    margin-bottom: 30px;
    min-height: 45px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
    flex-grow: 1;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-size: 1rem;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-features li i {
    color: #2ed573;
    font-size: 1.1rem;
}

.pricing-btn {
    width: 100%;
    text-align: center;
    padding: 15px 25px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
}

/* Process Steps Customization */
.tutor-process-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

/* Responsive Customization for Tutors */
@media (max-width: 992px) {
    .tutor-benefits-grid,
    .included-grid,
    .tutor-process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .tutor-benefits-grid,
    .included-grid,
    .tutor-process-timeline,
    .pricing-container {
        grid-template-columns: 1fr;
    }
    .pricing-card {
        padding: 35px 25px;
    }
}

/* ==========================================================================
   9. Premium Services Page Visual Overhaul
   ========================================================================== */

/* 1. Page Hero Mesh Background & Particles */
.hero.hero-services {
    position: relative;
    overflow: hidden;
    background: #0a1128 !important; /* Deepest tech space background */
    padding: 180px 0 140px 0;
}

.hero-mesh-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(72, 52, 212, 0.45) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(108, 92, 231, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 50% 10%, rgba(0, 210, 255, 0.25) 0%, transparent 40%);
    background-size: 200% 200%;
    animation: meshShift 20s ease infinite;
    z-index: 1;
    pointer-events: none;
}

.hero-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: center center;
    z-index: 2;
    pointer-events: none;
    opacity: 0.8;
    mask-image: radial-gradient(circle, black 40%, transparent 90%);
    -webkit-mask-image: radial-gradient(circle, black 40%, transparent 90%);
}

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

.hero-services h1 {
    text-shadow: 0 4px 20px rgba(108, 92, 231, 0.4);
}

@keyframes meshShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* 2. Glassmorphism Service Cards & Glowing Halos */
.services-grid .card {
    position: relative;
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(108, 92, 231, 0.12) !important;
    border-radius: 24px !important;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    z-index: 2;
}

/* Soft ambient halo light behind card on hover */
.services-grid .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    background: transparent;
    z-index: -1;
    transition: opacity 0.5s ease, transform 0.5s ease;
    opacity: 0;
    pointer-events: none;
}

/* Custom Neon glows for cards */
.card-web:hover {
    border-color: rgba(0, 210, 255, 0.6) !important;
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 210, 255, 0.12), 0 0 80px rgba(0, 210, 255, 0.08) !important;
}
.card-web::before {
    background: radial-gradient(circle at top right, rgba(0, 210, 255, 0.15) 0%, transparent 60%);
}

.card-app:hover {
    border-color: rgba(108, 92, 231, 0.6) !important;
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(108, 92, 231, 0.15), 0 0 80px rgba(108, 92, 231, 0.08) !important;
}
.card-app::before {
    background: radial-gradient(circle at top right, rgba(108, 92, 231, 0.15) 0%, transparent 60%);
}

.card-ai:hover {
    border-color: rgba(253, 121, 168, 0.6) !important;
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(253, 121, 168, 0.15), 0 0 80px rgba(253, 121, 168, 0.08) !important;
}
.card-ai::before {
    background: radial-gradient(circle at top right, rgba(253, 121, 168, 0.15) 0%, transparent 60%);
}

.card-it:hover {
    border-color: rgba(253, 203, 110, 0.6) !important;
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(253, 203, 110, 0.15), 0 0 80px rgba(253, 203, 110, 0.08) !important;
}
.card-it::before {
    background: radial-gradient(circle at top right, rgba(253, 203, 110, 0.15) 0%, transparent 60%);
}

.services-grid .card:hover::before {
    opacity: 1;
}

/* Floating and glowing icon wrappers */
.card-icon-wrapper {
    position: relative;
    z-index: 2;
    width: 80px !important;
    height: 80px !important;
    border-radius: 20px !important;
    background: var(--bg-light) !important;
    border: 1px solid rgba(108, 92, 231, 0.1);
    transition: all 0.4s ease !important;
}

.card-web:hover .card-icon-wrapper {
    background: linear-gradient(135deg, #00d2ff 0%, #0066ff 100%) !important;
    box-shadow: 0 8px 20px rgba(0, 210, 255, 0.4);
}
.card-app:hover .card-icon-wrapper {
    background: linear-gradient(135deg, #a29bfe 0%, #6c5ce7 100%) !important;
    box-shadow: 0 8px 20px rgba(108, 92, 231, 0.4);
}
.card-ai:hover .card-icon-wrapper {
    background: linear-gradient(135deg, #fd79a8 0%, #e84393 100%) !important;
    box-shadow: 0 8px 20px rgba(253, 121, 168, 0.4);
}
.card-it:hover .card-icon-wrapper {
    background: linear-gradient(135deg, #ffeaa7 0%, #e17055 100%) !important;
    box-shadow: 0 8px 20px rgba(253, 203, 110, 0.4);
}

.services-grid .card:hover .card-icon-wrapper i {
    color: white !important;
    animation: floatIcon 3s ease-in-out infinite alternate;
}

@keyframes floatIcon {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-6px);
    }
}

/* 3. Tech Stack Dashboard Glows */
.tech-badge {
    position: relative;
    background: rgba(255, 255, 255, 0.6) !important;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(108, 92, 231, 0.08) !important;
    border-radius: 18px !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    overflow: hidden;
    z-index: 1;
}

.tech-badge::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: transparent;
    transition: all 0.3s ease;
}

.tech-badge:hover {
    background: white !important;
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 12px 30px rgba(72, 52, 212, 0.08) !important;
}

/* Technology specific branding and glows */
.tech-html:hover { border-color: rgba(227, 79, 38, 0.4) !important; }
.tech-html:hover i { color: #e34f26 !important; }
.tech-html::after { background: #e34f26; }

.tech-js:hover { border-color: rgba(247, 223, 30, 0.4) !important; }
.tech-js:hover i { color: #f7df1e !important; }
.tech-js::after { background: #f7df1e; }

.tech-react:hover { border-color: rgba(97, 218, 251, 0.4) !important; }
.tech-react:hover i { color: #61dafb !important; }
.tech-react::after { background: #61dafb; }

.tech-node:hover { border-color: rgba(60, 135, 58, 0.4) !important; }
.tech-node:hover i { color: #3c873a !important; }
.tech-node::after { background: #3c873a; }

.tech-python:hover { border-color: rgba(55, 115, 166, 0.4) !important; }
.tech-python:hover i { color: #3773a6 !important; }
.tech-python::after { background: #3773a6; }

.tech-db:hover { border-color: rgba(77, 180, 76, 0.4) !important; }
.tech-db:hover i { color: #4db34c !important; }
.tech-db::after { background: #4db34c; }

.tech-ai:hover { border-color: rgba(108, 92, 231, 0.4) !important; }
.tech-ai:hover i { color: #6c5ce7 !important; }
.tech-ai::after { background: #6c5ce7; }

.tech-cloud:hover { border-color: rgba(0, 210, 255, 0.4) !important; }
.tech-cloud:hover i { color: #00d2ff !important; }
.tech-cloud::after { background: #00d2ff; }

/* 4. Connected Sonar Pulsing Timeline */
.process-timeline {
    position: relative;
    z-index: 1;
}

/* Connecting line behind timeline steps */
.process-timeline::before {
    content: '';
    position: absolute;
    top: 45px;
    left: 50px;
    right: 50px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 50%, #00d2ff 100%);
    z-index: -1;
    border-radius: 2px;
    opacity: 0.15;
}

.timeline-step {
    border-radius: 24px !important;
    background: white !important;
    border: 1px solid rgba(108, 92, 231, 0.05) !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.timeline-step:hover {
    transform: translateY(-8px) !important;
    border-color: rgba(108, 92, 231, 0.25) !important;
    box-shadow: 0 15px 35px rgba(72, 52, 212, 0.08) !important;
}

.timeline-step .step-num {
    transition: all 0.4s ease;
}

.timeline-step:hover .step-num {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 8px rgba(108, 92, 231, 0.25));
}

/* Sonar pulsing effect on steps */
.timeline-step::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 25px;
    width: 12px;
    height: 12px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.timeline-step:hover::after {
    opacity: 1;
    animation: sonarPulse 1.5s infinite;
}

@keyframes sonarPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(108, 92, 231, 0.7);
    }
    70% {
        transform: scale(1.8);
        box-shadow: 0 0 0 10px rgba(108, 92, 231, 0);
    }
    100% {
        transform: scale(1.8);
        box-shadow: 0 0 0 0 rgba(108, 92, 231, 0);
    }
}

@media (max-width: 768px) {
    .process-timeline::before {
        display: none; /* Hide horizontal connector on mobile */
    }
}

/* 5. Glowing Quote Request Form & Buttons */
.enroll-container {
    border-radius: 30px !important;
    background: white !important;
    border: 1px solid rgba(108, 92, 231, 0.08) !important;
    box-shadow: 0 25px 60px rgba(72, 52, 212, 0.06) !important;
}

.enroll-form input:focus,
.enroll-form select:focus,
.enroll-form textarea:focus {
    border-color: var(--secondary-color) !important;
    box-shadow: 0 0 0 4px rgba(108, 92, 231, 0.15) !important;
    background-color: white !important;
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%) !important;
    border: none !important;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.submit-btn:hover::before {
    opacity: 1;
}

.submit-btn:hover i {
    transform: translate(4px, -4px) scale(1.1);
}

.submit-btn i {
    transition: transform 0.3s ease;
}

/* Introduction container fine glassmorphism shadow */
.intro-container-box {
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(108, 92, 231, 0.08) !important;
    box-shadow: 0 20px 50px rgba(72, 52, 212, 0.06) !important;
    border-radius: 24px !important;
}

