/* ==================== SERVICE PAGES - SHARED STYLES ==================== */

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: #1e293b;
    background: #ffffff;
}

/* ==================== HEADER ==================== */
header {
    background: #1e293b;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
}

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

.logo img {
    height: 55px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    padding: 8px 0;
    position: relative;
}

.nav-menu a:hover {
    color: #0ea5e9;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #0ea5e9;
    transition: width 0.3s ease;
}

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

/* ==================== DROPDOWN MENU ==================== */
.dropdown {
    position: relative;
}

.dropdown > a {
    cursor: pointer;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    min-width: 550px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
    border-radius: 16px;
    padding: 25px 50px 15px 50px;
    z-index: 1000;
    margin-top: 0;
    border: 1px solid rgba(14, 165, 233, 0.1);
    animation: dropdownFade 0.3s ease;
}

/* Beautiful Custom Scrollbar */
.dropdown-content::-webkit-scrollbar {
    width: 8px;
}

.dropdown-content::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 10px;
}

.dropdown-content::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #0ea5e9, #06b6d4);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.dropdown-content::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #0284c7, #0891b2);
}

.dropdown::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 20px;
}

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.dropdown-4col {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
}
/* Reduce gap for 4-column dropdown */

.dropdown-wider,
.dropdown-content.dropdown-wider {
    min-width: 1400px !important;
    left: 50% !important;
    transform: translateX(-72%) !important;
}


.dropdown-4col .dropdown-column a {
    font-size: 13px !important;
    padding: 10px 15px !important;
    line-height: 1.3;
    white-space: nowrap !important;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropdown-visa-extra {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 25px;
    padding-top: 25px;
    border-top: 2px solid rgba(14, 165, 233, 0.1);
}

.dropdown-column {
    position: relative;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.dropdown-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.15);
}

.dropdown-column h4 {
    color: #1e293b;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 3px solid #0ea5e9;
    background: linear-gradient(90deg, #0ea5e9, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dropdown-column a {
    display: flex;
    align-items: center;
    color: #475569 !important;
    padding: 12px 15px !important;
    font-size: 14px !important;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin-bottom: 5px;
    position: relative;
    white-space: nowrap !important;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropdown-column a::before {
    content: '→';
    margin-right: 10px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: #0ea5e9;
    font-weight: bold;
}

.dropdown-column a::after {
    display: none !important;
}

.dropdown-column a:hover {
    color: #0ea5e9 !important;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(6, 182, 212, 0.05));
    padding-left: 15px !important;
}

.dropdown-column a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
}

/* ==================== BREADCRUMBS ==================== */
.breadcrumbs {
    background: #f8fafc;
    padding: 20px 0;
    border-bottom: 1px solid #e2e8f0;
}

.breadcrumbs-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.breadcrumbs a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: #0ea5e9;
}

.breadcrumbs span {
    color: #cbd5e1;
}

.breadcrumbs .current {
    color: #0ea5e9;
    font-weight: 600;
}

/* ==================== HERO SECTION ==================== */
.hero-section {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.85) 0%, rgba(6, 182, 212, 0.85) 100%),
                url('education-hero-bg.jpg') center/cover no-repeat;
    padding: 100px 40px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    backdrop-filter: blur(40px);
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    backdrop-filter: blur(40px);
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 4rem;
    color: white;
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.hero-section p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* ==================== MAIN CONTAINER ==================== */
.page-container {
    max-width: 1400px;
    margin: -60px auto 0;
    padding: 0 40px 100px;
    position: relative;
    z-index: 10;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 50px;
}

/* ==================== MAIN CONTENT CARD ==================== */
.content-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.content-header {
    padding: 50px 60px 40px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-bottom: 3px solid #0ea5e9;
}

.content-header h2 {
    font-size: 2.5rem;
    color: #0f172a;
    margin-bottom: 20px;
    font-weight: 800;
}

.content-header p {
    font-size: 1.15rem;
    color: #475569;
    line-height: 1.8;
}

.content-body {
    padding: 50px 60px;
}

.content-section {
    margin-bottom: 50px;
}

.content-section:last-child {
    margin-bottom: 0;
}

.content-section h3 {
    font-size: 1.9rem;
    color: #0f172a;
    margin-bottom: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 15px;
}

.section-number {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #0ea5e9, #06b6d4);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
    flex-shrink: 0;
}

.content-section p {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.9;
    margin-bottom: 20px;
}

.content-section ul {
    list-style: none;
    margin: 25px 0;
}

.content-section ul li {
    padding: 15px 0 15px 45px;
    position: relative;
    color: #475569;
    font-size: 1.05rem;
    line-height: 1.8;
    border-bottom: 1px solid #f1f5f9;
}

.content-section ul li:last-child {
    border-bottom: none;
}

.content-section ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 15px;
    width: 30px;
    height: 30px;
    background: #e0f2fe;
    color: #0ea5e9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
}

.highlight-box {
    background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%);
    border-left: 5px solid #0ea5e9;
    padding: 30px 35px;
    margin: 35px 0;
    border-radius: 12px;
    font-size: 1.15rem;
    color: #0f172a;
    line-height: 1.8;
}

.content-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    margin: 35px 0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* ==================== CTA BANNER ==================== */
.cta-banner {
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    padding: 50px;
    border-radius: 16px;
    text-align: center;
    margin: 50px 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
}

.cta-banner h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.btn-cta {
    padding: 16px 40px;
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary-cta {
    background: white;
    color: #0ea5e9;
}

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

.btn-secondary-cta {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
}

.btn-secondary-cta:hover {
    background: white;
    color: #0ea5e9;
}

/* ==================== SIDEBAR ==================== */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-card {
    background: white;
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.sidebar-card h3 {
    font-size: 1.4rem;
    color: #0f172a;
    margin-bottom: 25px;
    font-weight: 700;
}

/* Quick Contact */
.quick-contact {
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    color: white;
}

.quick-contact h3 {
    color: white;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

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

.contact-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.contact-text {
    flex: 1;
}

.contact-text p {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.contact-text strong {
    display: block;
    font-size: 1.05rem;
    margin-top: 3px;
}

/* Other Services Scrollable */
.other-services-scroll {
    max-height: 600px;
}

.services-list-scroll {
    max-height: 500px;
    overflow-y: auto;
    padding-right: 10px;
}

/* Beautiful Scrollbar for Services List */
.services-list-scroll::-webkit-scrollbar {
    width: 6px;
}

.services-list-scroll::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 10px;
}

.services-list-scroll::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #0ea5e9, #06b6d4);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.services-list-scroll::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #0284c7, #0891b2);
    box-shadow: 0 0 10px rgba(14, 165, 233, 0.5);
}

.service-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px;
    margin-bottom: 12px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    background: #f8fafc;
    border: 2px solid transparent;
}

.service-link:hover {
    background: linear-gradient(135deg, #e0f2fe, #dbeafe);
    border-color: #0ea5e9;
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.2);
}

.service-link img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    object-fit: cover;
}

.service-link-text h4 {
    color: #1e293b;
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

.service-link.active {
    background: linear-gradient(135deg, #0ea5e9, #06b6d4);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.service-link.active .service-link-text h4 {
    color: white;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Sticky Quick Enquiry Form */
.sidebar-card:has(.contact-form) {
    position: sticky;
    top: 100px;
    align-self: flex-start;
    z-index: 10;
    width: 100%;
}



.form-group label {
    display: block;
    color: #334155;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #0ea5e9;
    background: white;
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
}

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

.btn-submit {
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    color: white;
    padding: 16px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(14, 165, 233, 0.3);
}

/* ==================== FOOTER ==================== */
footer {
    background: #0f172a;
    color: white;
    padding: 60px 40px 30px;
    margin-top: 100px;
}

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

.footer-section h3 {
    color: #0ea5e9;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-section p {
    color: #94a3b8;
    line-height: 1.8;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(14, 165, 233, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0ea5e9;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: #0ea5e9;
    color: white;
    transform: translateY(-3px);
}

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

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

.footer-section .contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-section .contact-info li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0;
    color: #94a3b8;
}

.footer-section .contact-info li i {
    color: #0ea5e9;
    font-size: 1rem;
}

.footer-section ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #0ea5e9;
}

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

.footer-section ul li i {
    color: #0ea5e9;
    margin-right: 8px;
    width: 20px;
    text-align: center;
}

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

.social-links a {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #334155;
    color: #64748b;
}

/* ==================== FLOATING CHAT ==================== */
.floating-chat {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.chat-toggle-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #0ea5e9;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-toggle-btn:hover {
    background: #0284c7;
    transform: scale(1.05);
}

/* Chat Options - Slide from Right */
.chat-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

/* Show options on hover */
.floating-chat:hover .chat-options {
    opacity: 1;
    visibility: visible;
}

.floating-chat:hover .chat-icon-btn {
    opacity: 1;
    transform: translateY(0);
}

.chat-icon-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    text-decoration: none;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(80px);
    text-align: center;
    line-height: 1;
    padding: 0;
}

.chat-toggle-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #0ea5e9;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1;
    padding: 0;
    position: relative;
}

.chat-toggle-btn::before {
    content: 'Let\'s Chat! 💬';
    position: absolute;
    right: 70px;
    background: white;
    color: #1e293b;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

.chat-toggle-btn::after {
    content: '';
    position: absolute;
    right: 55px;
    width: 0;
    height: 0;
    border-left: 10px solid white;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.chat-toggle-btn:hover::before,
.chat-toggle-btn:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}
    transform: translateX(10px);
    transition: all 0.3s ease;
}

.chat-toggle-btn:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.chat-toggle-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(14, 165, 233, 0.5);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
    }

    .hero-section h1 {
        font-size: 3rem;
    }

    .sidebar {
        order: 2;
    }

    /* Disable sticky form on mobile */
    .sidebar-card:has(.contact-form) {
        position: relative;
        top: auto;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 15px 20px;
    }

    .mobile-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1e293b;
        flex-direction: column;
        padding: 20px;
        gap: 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        padding: 15px 0;
        border-bottom: 1px solid #334155;
    }

    .hero-section {
        padding: 60px 20px 50px;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section p {
        font-size: 1.1rem;
    }

    .content-header,
    .content-body {
        padding: 30px 25px;
    }

    .page-container {
        padding: 0 20px 60px;
        margin-top: -40px;
    }

    .breadcrumbs-container {
        padding: 0 20px;
    }

    .cta-banner {
        padding: 35px 25px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-cta {
        width: 100%;
    }

    .content-section h3 {
        font-size: 1.5rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .floating-chat {
        bottom: 20px;
        right: 20px;
    }

    .chat-toggle-btn {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }

    .chat-toggle-btn::before {
        display: none;
    }
}
/* Reduce bottom padding for 4-column dropdown columns */
.dropdown-4col .dropdown-column {
    padding-bottom: 5px !important;
}

.whatsapp-btn {
    background: #25D366;
    color: white;
}

.email-btn {
    background: #EA4335;
    color: white;
}

.chatbot-btn {
    background: #0ea5e9;
    color: white;
}
/* ===== SERVICES LISTING PAGE ===== */
.services-listing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.service-listing-card {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 40px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    text-decoration: none;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.service-listing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(14, 165, 233, 0.2);
    border-color: #0ea5e9;
}

.service-listing-image {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 280px;
}

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

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

.service-listing-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.9) 0%, rgba(6, 182, 212, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-listing-card:hover .service-listing-overlay {
    opacity: 1;
}

.service-listing-overlay i {
    font-size: 3rem;
    color: white;
    transform: translateX(-20px);
    transition: transform 0.4s ease;
}

.service-listing-card:hover .service-listing-overlay i {
    transform: translateX(0);
}

.service-listing-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-listing-content h3 {
    font-size: 1.8rem;
    color: #0f172a;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-listing-content p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1rem;
}

.learn-more {
    color: #0ea5e9;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.service-listing-card:hover .learn-more {
    gap: 15px;
}

.learn-more i {
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .service-listing-card {
        grid-template-columns: 1fr;
    }
    
    .service-listing-image {
        min-height: 250px;
    }
    
    .service-listing-content {
        padding: 30px;
    }
}

@media (max-width: 640px) {
    .services-listing-container {
        padding: 40px 15px;
    }
    
    .service-listing-card {
        margin-bottom: 30px;
    }
    
    .service-listing-content h3 {
        font-size: 1.5rem;
    }
    
    .service-listing-content {
        padding: 25px;
    }
}

/* ===== SERVICES GRID SECTION ===== */
.services-grid-section {
    padding: 80px 20px;
    background: #f8fafc;
}

.services-grid-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.services-grid-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.services-grid-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(14, 165, 233, 0.25);
}

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

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

.services-grid-card:hover .services-grid-image img {
    transform: scale(1.15);
}

.services-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.95) 0%, rgba(6, 182, 212, 0.95) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.services-grid-overlay i {
    font-size: 3rem;
    color: white;
    transform: scale(0.5);
    transition: transform 0.4s ease;
}

.services-grid-card:hover .services-grid-overlay i {
    transform: scale(1);
}

.services-grid-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.services-grid-content h3 {
    font-size: 1.35rem;
    color: #0f172a;
    margin-bottom: 12px;
    font-weight: 700;
    line-height: 1.3;
}

.services-grid-content p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
    flex: 1;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .services-grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .services-grid-section {
        padding: 50px 15px;
    }
    
    .services-grid-image {
        height: 220px;
    }
}

/* ===== COURSES LISTING PAGE ===== */
.courses-listing-section {
    padding: 60px 20px 80px;
    background: #f8fafc;
}

.courses-listing-container {
    max-width: 1400px;
    margin: 0 auto;
}

.course-category {
    margin-bottom: 80px;
}

.category-title {
    font-size: 2.2rem;
    color: #0f172a;
    margin-bottom: 40px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 15px;
}

.category-icon {
    font-size: 2.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .category-title {
        font-size: 1.8rem;
    }
    
    .category-icon {
        font-size: 2rem;
    }
    
    .course-category {
        margin-bottom: 60px;
    }
}

/* ===== COURSES TABS SECTION ===== */
.courses-tabs-section {
    padding: 80px 20px;
    background: white;
}

.courses-tabs-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* TABS */
.course-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 30px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    border-color: #0ea5e9;
    color: #0ea5e9;
}

.tab-btn.active {
    background: #0ea5e9;
    border-color: #0ea5e9;
    color: white;
}

/* COURSES GRID */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.course-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(14, 165, 233, 0.2);
}

.course-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

/* Hover Overlay with Arrow */
.course-image::after {
    content: '→';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.9) 0%, rgba(6, 182, 212, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.course-card:hover .course-image::after {
    opacity: 1;
}

.course-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
}

.course-info {
    padding: 20px;
}

.course-info h3 {
    font-size: 1.1rem;
    color: #0f172a;
    margin-bottom: 10px;
    font-weight: 700;
    line-height: 1.4;
    min-height: 50px;
}

.course-info p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Responsive */
@media (max-width: 1200px) {
    .courses-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .courses-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .course-tabs {
        gap: 8px;
    }
    
    .tab-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .course-info h3 {
        min-height: auto;
    }
}

/* ===== PAGE-SPECIFIC COLORS ===== */

/* Services Page - Brick Red */
body[data-page="services"] .services-grid-overlay,
body[data-page="services"] .course-image::after {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.9) 0%, rgba(185, 28, 28, 0.9) 100%);
}

body[data-page="services"] .tab-btn.active {
    background: #dc2626;
    border-color: #dc2626;
}

body[data-page="services"] .tab-btn:hover {
    border-color: #dc2626;
    color: #dc2626;
}

body[data-page="services"] .services-grid-card:hover {
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.25);
}

/* Courses Page - Orange */
body[data-page="courses"] .services-grid-overlay,
body[data-page="courses"] .course-image::after {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.9) 0%, rgba(234, 88, 12, 0.9) 100%);
}

body[data-page="courses"] .tab-btn.active {
    background: #f97316;
    border-color: #f97316;
}

body[data-page="courses"] .tab-btn:hover {
    border-color: #f97316;
    color: #f97316;
}

body[data-page="courses"] .course-card:hover {
    box-shadow: 0 12px 30px rgba(249, 115, 22, 0.2);
}

/* Visas Page - Green */
body[data-page="visas"] .services-grid-overlay,
body[data-page="visas"] .course-image::after {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.9) 0%, rgba(5, 150, 105, 0.9) 100%);
}

body[data-page="visas"] .tab-btn.active {
    background: #10b981;
    border-color: #10b981;
}

body[data-page="visas"] .tab-btn:hover {
    border-color: #10b981;
    color: #10b981;
}

body[data-page="visas"] .course-card:hover {
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.2);
}
/* ==================== APPOINTMENT BOOKING MODAL ==================== */
.appointment-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    backdrop-filter: blur(5px);
}

.appointment-modal.active {
    display: flex;
}

.appointment-form-container {
    background: white;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideInModal 0.3s ease;
}

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

.appointment-header {
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    color: white;
    padding: 25px 30px;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.appointment-header h2 {
    margin: 0;
    font-size: 1.5rem;
}

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

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

#appointmentBookingForm {
    padding: 30px;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.form-group-half {
    flex: 1;
}

.form-group label,
.form-group-half label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #0f172a;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea,
.form-group-half input,
.form-group-half select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.form-group-half input:focus,
.form-group-half select:focus {
    outline: none;
    border-color: #0ea5e9;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.appointment-submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.appointment-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(14, 165, 233, 0.3);
}

.appointment-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.appointment-success {
    padding: 50px 30px;
    text-align: center;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.appointment-success h3 {
    color: #0ea5e9;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.appointment-success p {
    color: #64748b;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.btn-close-success {
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-close-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(14, 165, 233, 0.3);
}

/* Mobile responsive for appointment modal */
@media (max-width: 768px) {
    .appointment-form-container {
        width: 95%;
        max-height: 85vh;
    }
    
    .appointment-header h2 {
        font-size: 1.2rem;
    }
    
    .form-row {
        flex-direction: column;
    }
}

/* Contact email link styling - make it white like the rest */
.contact-text a {
    color: white !important;
    text-decoration: none;
}

.contact-text a:hover {
    text-decoration: underline;
    opacity: 0.9;
}