/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0 0 0 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    padding-top: 110px; /* Height of the fixed header */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== COLOR SCHEME ===== */
:root {
    --primary-color: #00897b;
    --secondary-color: #ff6f00;
    --accent-color: #26a69a;
    --dark-color: #2c3e50;
    --light-color: #ecf0f1;
    --text-color: #34495e;
    --white-color: #ffffff;
    --gradient-primary: linear-gradient(135deg, #00897b 0%, #26a69a 100%);
    --gradient-secondary: linear-gradient(135deg, #ff6f00 0%, #ffa726 100%);
}

/* ===== HEADER STYLES ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Header Top Bar */
.header-top {
    background: var(--gradient-primary);
    color: var(--white-color);
    padding: 10px 0;
}

.container-full {
    width: 100%;
    padding: 0 15px;
    margin: 0 auto;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Social Media Links */
.header-social-links {
    display: flex;
    gap: 15px;
}

.header-social-link {
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.header-social-link:hover {
    color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Contact Details */
.contact-details {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-icon {
    color: var(--secondary-color);
    font-size: 16px;
}

.contact-text {
    color: #fff;
    font-weight: 500;
}

.contact-link,
.contact-item a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover,
.contact-item a:hover {
    color: var(--secondary-color);
}

/* Button Styles */
.btn {
    padding: 8px 20px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--white-color);
}

.btn-primary:hover {
    background: #ff8f00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 111, 0, 0.3);
}

.btn-secondary {
    background: var(--primary-color);
    color: var(--white-color);
}

.btn-secondary:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(38, 166, 154, 0.3);
}

.btn-large {
    padding: 12px 30px;
    font-size: 16px;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-quote {
    padding: 10px 25px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-quote:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 111, 0, 0.3);
}

.btn-download {
    background: #28a745;
    color: #fff;
}

.btn-download:hover {
    background: #218838;
    transform: translateY(-2px);
}

.btn-icon {
    font-size: 14px;
}

/* ===== NAVIGATION STYLES ===== */
.main-navigation {
    background: #fff;
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
}

.mobile-only-nav-item {
    display: none;
    width: 100%;
    margin-top: 10px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 1024px) {
    .mobile-only-nav-item {
        display: block;
    }
}

.mobile-social-follow {
    margin-top: 30px;
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
}

.mobile-social-follow p {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.mobile-social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.mobile-social-icons a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-social-icons a:hover {
    background: #fff;
    color: var(--primary-color);
    transform: translateY(-3px);
}

.mobile-menu-address {
    margin-top: 25px;
    padding: 15px;
    text-align: center;
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-address i {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.mobile-menu-address p {
    font-size: 13px;
    line-height: 1.5;
    opacity: 0.9;
    margin: 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


/* Logo */
.brand-logo {
    flex-shrink: 0;
}

.logo-link {
    text-decoration: none;
}

.logo-image {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

/* Primary Navigation */
.primary-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-toggle::after {
    content: ' \25bc';
    font-size: 10px;
    margin-left: 5px;
    vertical-align: middle;
}

/* Mega Menu */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 600px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 10px;
}

.nav-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-column {
    padding: 20px;
    flex: 1;
}

.mega-menu-title {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.mega-menu-link {
    display: block;
    color: #666;
    text-decoration: none;
    padding: 8px 0;
    font-size: 14px;
    transition: all 0.3s ease;
}

.mega-menu-link:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

/* Mega Menu Promo */
.mega-menu-promo {
    background: var(--gradient-primary);
    color: var(--white-color);
    padding: 30px;
    border-radius: 0 8px 8px 0;
    text-align: center;
}

.promo-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.4;
}

.promo-stats {
    font-size: 14px;
    margin-top: 15px;
    opacity: 0.9;
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
}

/* Slider Styles */
.slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    z-index: 10;
}

/* Slider Navigation */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 24px;
    padding: 15px 20px;
    cursor: pointer;
    transition: background 0.3s ease;
    text-decoration: none;
    z-index: 100;
}

.prev:hover, .next:hover {
    background: rgba(0, 0, 0, 0.8);
}

.prev {
    left: 20px;
    border-radius: 0 5px 5px 0;
}

.next {
    right: 20px;
    border-radius: 5px 0 0 5px;
}

/* Dots Navigation */

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover, .dot.active {
    background: #fff;
    transform: scale(1.2);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    
    .contact-details {
        justify-content: center;
    }
    
    .mega-menu {
        min-width: 500px;
    }
}

@media (max-width: 1024px) {
    .cta-header {
        padding: 0 15px 30px 15px;
    }
    
    .cta-form-container {
        padding: 0 15px;
    }
    
    .cta-horizontal-form {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .cta-horizontal-form .form-group {
        min-width: auto;
    }
    
    .cta-horizontal-form .btn {
        flex: none;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 1024px) {
    .header-top {
        padding: 8px 0;
    }
    
    
    .contact-details {
        gap: 15px;
        font-size: 13px;
    }
    
    .btn {
        padding: 6px 15px;
        font-size: 13px;
    }
    
    
    .primary-nav {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .mega-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        transform: none;
        box-shadow: none;
        margin-top: 0;
        min-width: 100%;
        background: var(--light-color);
        display: none; /* Collapsed by default on mobile */
        transition: none;
    }

    .nav-dropdown.dropdown-active .mega-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        padding: 10px;
        border-radius: 8px;
        margin-top: 10px;
    }

    .nav-dropdown.dropdown-active .dropdown-toggle::after {
        content: ' \25b2';
    }

    .mega-menu-column {
        padding: 10px;
    }

    .mega-menu-promo {
        border-radius: 8px;
        padding: 20px;
        margin-top: 15px;
    }

    .nav-actions {
        display: none;
    }

    .mobile-only-nav-item {
        display: block;
    }

    
    /* Notification responsive */
    .notification {
        right: -100%;
        left: 20px;
        max-width: none;
    }
    
    .notification.show {
        right: auto;
        left: 20px;
    }
}

@media (max-width: 480px) {
    .header-social-links {
        display: none; /* Hide social links on very small screens to save space */
    }

    .contact-details {
        gap: 10px;
        font-size: 12px;
        width: 100%;
        justify-content: center;
    }

    
    .logo-image {
        height: 40px;
    }
    
    .hero-section {
        height: 300px;
    }
    
    .slide-text {
        font-size: 24px;
        padding: 0 20px;
    }
    
    .prev {
        left: 10px;
    }
    
    .next {
        right: 10px;
    }
}

/* ===== SECTION STYLES ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-secondary);
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-color);
    margin-top: 20px;
}

/* ===== WHY CHOOSE US SECTION ===== */
.why-choose-us {
    padding: 80px 0;
    background: var(--light-color);
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-choose-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.why-choose-text {
    text-align: center;
}

.why-choose-list {
    list-style: none;
    margin-bottom: 30px;
}

.why-choose-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 16px;
    color: var(--text-color);
}

.why-choose-item i {
    color: var(--secondary-color);
    margin-right: 15px;
    font-size: 18px;
}

/* ===== CLIENT LOGOS SECTION ===== */
.client-logos {
    padding: 60px 0;
    background: var(--white-color);
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 40px;
    align-items: center;
}

.logo-item {
    text-align: center;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.logo-item:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

.logo-item img {
    max-width: 100%;
    height: auto;
    max-height: 60px;
}

/* ===== OUR SERVICES SECTION ===== */
.our-services {
    padding: 80px 0;
    background: var(--light-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white-color);
    padding: 25px 20px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 24px;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.service-description {
    color: var(--text-color);
    line-height: 1.5;
    font-size: 13px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0;
    transition: all 0.3s ease;
}

.service-card:hover .service-description {
    -webkit-line-clamp: 4; /* Expands slightly on hover */
}

/* ===== OUR PORTFOLIO SECTION ===== */
.our-portfolio {
    padding: 80px 0;
    background: var(--white-color);
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 25px;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.portfolio-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h4 {
    color: var(--white-color);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.portfolio-overlay p {
    color: var(--secondary-color);
    font-size: 14px;
}

/* ===== CLIENT TESTIMONIALS SECTION ===== */
.client-testimonials {
    padding: 80px 0;
    background: var(--light-color);
    overflow: hidden; /* Hide overflow from the track */
}

.testimonials-scroller {
    margin-top: 40px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.testimonials-track {
    display: flex;
    width: max-content; /* Ensure track is as wide as its children */
    gap: 30px;
    animation: scroll 40s linear infinite;
}

.testimonials-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Scroll through half the duplicated content */
}

.testimonial-card-scroller {
    background: var(--white-color);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    width: 400px; /* Fixed width for consistent scrolling */
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card-scroller:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.testimonial-content .stars {
    color: #f1c40f;
    margin-bottom: 15px;
}

.testimonial-text {
    color: var(--text-color);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.client-name {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.client-company {
    color: var(--text-color);
    font-size: 14px;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 80px 0;
    background: var(--white-color);
}


.faq-item {
    background: var(--light-color);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #e8f5f3;
}

.faq-question h3 {
    color: var(--dark-color);
    font-size: 18px;
    font-weight: 600;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px 30px;
    max-height: 200px;
}

.faq-answer p {
    color: var(--text-color);
    line-height: 1.6;
}

/* ===== MAP AND CONTACT SECTION ===== */
.map-contact-section {
    position: relative;
    padding: 0; /* Remove padding for full-width map */
    background: #fff;
    overflow: hidden;
}

.map-full-width {
    position: relative;
    width: 100%;
    height: 600px;
}

.map-full-width iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(20%) contrast(1.1); /* Subtle premium effect */
}

.contact-overlay-box {
    position: absolute;
    top: 50px;
    right: 80px;
    width: 400px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    padding: 40px;
    z-index: 100;
    max-height: calc(100% - 100px);
    overflow-y: auto;
}

/* Header within box */
.contact-overlay-header {
    text-align: center;
    margin-bottom: 35px;
}

.contact-overlay-header h3 {
    color: var(--dark-color);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-overlay-header p {
    color: #777;
    font-size: 14px;
}

/* Content items */
.contact-overlay-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 35px;
}

.contact-overlay-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-overlay-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Specific icon colors */
.location-icon { background: #5c6bc0; } /* Indigo */
.call-icon { background: #66bb6a; }     /* Green */
.email-icon { background: #ec407a; }    /* Pink/Red */
.hours-icon { background: #ffa726; }    /* Orange */

.contact-overlay-details h4 {
    color: var(--dark-color);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-overlay-details p {
    color: var(--text-color);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.contact-overlay-footer {
    padding-top: 10px;
}

/* Scrollbar for the box */
.contact-overlay-box::-webkit-scrollbar {
    width: 6px;
}

.contact-overlay-box::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.contact-overlay-box::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

.contact-overlay-box::-webkit-scrollbar-thumb:hover {
    background: #999;
}

/* Responsive Map Section */
@media (max-width: 1024px) {
    .contact-overlay-box {
        right: 40px;
        width: 350px;
    }
}

@media (max-width: 1024px) {
    .map-full-width {
        height: auto;
        display: flex;
        flex-direction: column;
    }
    
    .map-full-width iframe {
        height: 400px;
    }
    
    .contact-overlay-box {
        position: relative;
        top: 0;
        right: 0;
        width: 100%;
        max-height: none;
        border-radius: 0;
        box-shadow: none;
        background: #fff;
    }
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 80px 0;
    background: var(--gradient-primary);
    color: var(--white-color);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white-color);
}

.cta-text p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 40px;
    color: var(--white-color);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta-full-width {
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

.cta-header {
    text-align: center;
    padding: 0 20px 40px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.cta-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white-color);
}

.cta-header p {
    font-size: 18px;
    opacity: 0.9;
    margin: 0;
    color: var(--white-color);
}

.cta-form-container {
    width: 100%;
    padding: 0 20px;
}

.cta-horizontal-form {
    max-width: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.cta-horizontal-form .form-group {
    flex: 1;
    min-width: 180px;
    margin: 0;
}

.cta-horizontal-form .form-group input,
.cta-horizontal-form .form-group textarea,
.cta-horizontal-form .form-select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    color: var(--text-color);
    background: rgba(255, 255, 255, 0.95);
}

.cta-horizontal-form .form-group input:focus,
.cta-horizontal-form .form-group textarea:focus,
.cta-horizontal-form .form-select:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: var(--white-color);
    box-shadow: 0 0 0 3px rgba(255, 111, 0, 0.1);
}

.cta-horizontal-form .form-group input::placeholder,
.cta-horizontal-form .form-group textarea::placeholder {
    color: #999;
}

.cta-horizontal-form .btn {
    flex: 0 0 180px;
    white-space: nowrap;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 600;
}

/* Form select styling */
.form-select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    color: var(--text-color);
    background: rgba(255, 255, 255, 0.95);
    cursor: pointer;
}

.form-select:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: var(--white-color);
    box-shadow: 0 0 0 3px rgba(255, 111, 0, 0.1);
}

.form-select option {
    color: var(--text-color);
    background: var(--white-color);
    padding: 10px;
}

/* ===== GET A QUOTE SECTION ===== */
.quote-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: var(--white-color);
}

.quote-full-width {
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

.quote-header {
    text-align: center;
    padding: 0 20px 40px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.quote-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white-color);
}

.quote-header p {
    font-size: 18px;
    opacity: 0.9;
    margin: 0;
    color: var(--white-color);
}

.quote-form-container {
    width: 100%;
    padding: 0 20px;
}

.quote-horizontal-form {
    max-width: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.quote-horizontal-form .form-group {
    flex: 1;
    min-width: 160px;
    margin: 0;
}

.quote-horizontal-form .form-group input,
.quote-horizontal-form .form-group textarea,
.quote-horizontal-form .form-select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    color: var(--text-color);
    background: rgba(255, 255, 255, 0.95);
}

.quote-horizontal-form .form-group input:focus,
.quote-horizontal-form .form-group textarea:focus,
.quote-horizontal-form .form-select:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white-color);
    box-shadow: 0 0 0 3px rgba(0, 137, 123, 0.1);
}

.quote-horizontal-form .form-group input::placeholder,
.quote-horizontal-form .form-group textarea::placeholder {
    color: #999;
}

.quote-horizontal-form .btn {
    flex: 0 0 180px;
    white-space: nowrap;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 600;
}

/* Quote Section Responsive */
@media (max-width: 1024px) {
    .quote-header {
        padding: 0 15px 30px 15px;
    }
    
    .quote-form-container {
        padding: 0 15px;
    }
    
    .quote-horizontal-form {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .quote-horizontal-form .form-group {
        min-width: auto;
    }
    
    .quote-horizontal-form .btn {
        flex: none;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 1024px) {
    .quote-section {
        padding: 40px 0;
    }
    
    .quote-header {
        padding: 0 10px 25px 10px;
    }
    
    .quote-header h2 {
        font-size: 28px;
    }
    
    .quote-header p {
        font-size: 16px;
    }
    
    .quote-form-container {
        padding: 0 10px;
    }
    
    .quote-horizontal-form {
        gap: 12px;
    }
    
    .quote-horizontal-form .form-group input,
    .quote-horizontal-form .form-group textarea,
    .quote-horizontal-form .form-select {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    .quote-horizontal-form .btn {
        padding: 10px 25px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .quote-header {
        padding: 0 10px 20px 10px;
    }
    
    .quote-header h2 {
        font-size: 24px;
    }
    
    .quote-form-container {
        padding: 0 10px;
    }
    
    .quote-horizontal-form {
        gap: 10px;
    }
    
    .quote-horizontal-form .form-group input,
    .quote-horizontal-form .form-group textarea,
    .quote-horizontal-form .form-select {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .quote-horizontal-form .btn {
        padding: 8px 20px;
        font-size: 13px;
    }
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--dark-color);
    color: var(--white-color);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 20px;
}

.footer-logo p {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-section h4 {
    color: var(--white-color);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #bdc3c7;
}

.footer-contact li i {
    color: var(--primary-color);
    margin-right: 10px;
}

.footer-contact li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact li a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

/* ===== NOTIFICATION SYSTEM ===== */
.notification {
    position: fixed;
    top: 20px;
    right: -400px;
    background: var(--white-color);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    transition: right 0.3s ease;
    max-width: 350px;
}

.notification.show {
    right: 20px;
}

.notification-content {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    gap: 15px;
}

.notification-success {
    border-left: 4px solid #28a745;
}

.notification-error {
    border-left: 4px solid #dc3545;
}

.notification-warning {
    border-left: 4px solid #ffc107;
}

.notification-info {
    border-left: 4px solid var(--primary-color);
}

.notification-content i {
    font-size: 20px;
}

.notification-success i {
    color: #28a745;
}

.notification-error i {
    color: #dc3545;
}

.notification-warning i {
    color: #ffc107;
}

.notification-info i {
    color: var(--primary-color);
}

.notification-content span {
    flex: 1;
    color: var(--text-color);
    font-weight: 500;
}

.notification-close {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 0 0 0 0;
    font-size: 16px;
    transition: color 0.3s ease;
}

.notification-close:hover {
    color: var(--text-color);
}

/* ===== MOBILE MENU ===== */
.mobile-menu-toggle {
    display: none;
    background: var(--primary-color);
    color: var(--white-color);
    border: none;
    border-radius: 5px;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 18px;
    transition: background 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: var(--accent-color);
}

/* ===== LAZY LOADING ===== */
.lazy {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lazy.loaded {
    opacity: 1;
}

/* ===== SCROLL ANIMATIONS ===== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ===== LOADING STATES ===== */
.loaded {
    overflow-x: hidden;
}

body:not(.loaded) {
    overflow: hidden;
}

body:not(.loaded) * {
    animation: none !important;
    transition: none !important;
}

/* ===== ERROR HANDLING ===== */
.img-fallback {
    background: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-weight: bold;
    text-align: center;
    min-height: 50px;
}

.js-error {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    color: #856404;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    text-align: center;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-slider {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .map-contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    
    .contact-details {
        justify-content: center;
    }
    
    .mega-menu {
        min-width: 500px;
    }
    
    .logos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    .portfolio-filters {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-contact li {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }
    
    /* Mobile Menu Styles */
    .mobile-menu-toggle {
        display: block;
    }

    .mobile-menu-toggle.active {
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 10001;
        background: transparent;
        color: #fff;
        font-size: 24px;
        box-shadow: none;
    }
    
    .primary-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: linear-gradient(to bottom, #ff4500, #00897b);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
        transition: right 0.3s ease;
        z-index: 9999;
        padding: 80px 20px 20px;
        overflow-y: auto;
        flex-direction: column;
        gap: 20px;
    }
    
    .primary-nav.mobile-active {
        right: 0;
    }
    
    .nav-dropdown {
        width: 100%;
        text-align: center;
    }

    .primary-nav .nav-link {
        color: #fff;
    }

    .primary-nav .nav-link::after {
        background: var(--secondary-color);
    }
    
    .mega-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        transform: none;
        box-shadow: none;
        margin-top: 0;
        min-width: 100%;
        background: rgba(0, 0, 0, 0.15);
        border-radius: 12px;
        display: none; /* Collapsed by default on mobile */
        transition: none;
    }

    .nav-dropdown.dropdown-active .mega-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        padding: 15px;
        margin-top: 10px;
    }

    .nav-dropdown.dropdown-active .dropdown-toggle::after {
        content: ' \25b2';
    }

    .mega-menu-column {
        padding: 10px;
        text-align: center;
    }

    .mega-menu-title {
        color: var(--secondary-color) !important;
        border-bottom-color: rgba(255, 255, 255, 0.2) !important;
    }

    .mega-menu-link {
        color: rgba(255, 255, 255, 0.9) !important;
    }

    .mega-menu-link:hover {
        color: #fff !important;
        padding-left: 0;
    }

    .mega-menu-promo {
        border-radius: 8px;
        padding: 20px;
        margin-top: 15px;
    }

    .nav-actions {
        display: none;
    }

    .mobile-only-nav-item {
        display: block;
    }

    
    /* Notification responsive */
    .notification {
        right: -100%;
        left: 20px;
        max-width: none;
    }
    
    .notification.show {
        right: auto;
        left: 20px;
    }
}

@media (max-width: 480px) {
    .header-social-links {
        display: none; /* Hide social links on very small screens to save space */
    }
    
    .contact-details {
        gap: 10px;
        font-size: 12px;
        width: 100%;
        justify-content: center;
    }
    
    .btn {
        padding: 6px 15px;
        font-size: 13px;
    }
    
    
    .primary-nav {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .mega-menu-column {
        padding: 15px;
    }
    
    .mega-menu-promo {
        border-radius: 0 0 8px 8px;
    }
    
    .hero-section {
        height: 300px;
    }
    
    .slide-text {
        font-size: 24px;
        padding: 0 20px;
    }
    
    .prev {
        left: 10px;
    }
    
    .next {
        right: 10px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .logos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .notification {
        left: 10px;
        right: 10px;
        max-width: none;
    }
    
    .notification.show {
        left: 10px;
        right: 10px;
    }
    
    .primary-nav {
        width: 90%;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade {
    animation: fadeIn 1s ease-in-out;
}

/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center;
}

.text-uppercase {
    text-transform: uppercase;
}

.font-weight-bold {
    font-weight: 700;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mt-3 {
    margin-top: 1rem;
}

/* ===== PAGE HERO STYLES ===== */
.page-hero {
    background: var(--gradient-primary);
    padding: 80px 0 60px;
    color: var(--white-color);
    text-align: center;
}

.page-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.page-subtitle {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.6;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
}

.breadcrumb a {
    color: var(--white-color);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 1;
}

.breadcrumb-separator {
    opacity: 0.6;
}

.breadcrumb-current {
    opacity: 1;
    font-weight: 500;
}

/* ===== ABOUT ACADEMY SECTION ===== */
.about-academy {
    padding: 80px 0;
    background: var(--white-color);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-description {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 16px;
}

.academy-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.highlight-item i {
    color: var(--primary-color);
    font-size: 24px;
    margin-top: 5px;
}

.highlight-content h4 {
    color: var(--dark-color);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.highlight-content p {
    color: var(--text-color);
    font-size: 14px;
    line-height: 1.5;
}

.academy-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* ===== COURSES SECTION ===== */
.our-courses {
    padding: 80px 0;
    background: var(--light-color);
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.course-card {
    background: var(--white-color);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.course-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 30px;
    flex-shrink: 0;
}

.course-content {
    flex: 1;
}

.course-title {
    color: var(--dark-color);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
}

.course-description {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 14px;
}

.course-features {
    list-style: none;
    margin-bottom: 20px;
}

.course-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-color);
    font-size: 14px;
    margin-bottom: 8px;
}

.course-features i {
    color: var(--secondary-color);
    font-size: 12px;
}

.course-duration {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 14px;
}

/* ===== WHY CHOOSE SECTION ===== */
.why-choose-section {
    padding: 80px 0;
    background: var(--white-color);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.why-choose-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
    background: #fff;
}

.why-choose-item:hover {
    background: var(--light-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

@media (max-width: 992px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
}

.why-choose-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 28px;
    margin: 0 auto 20px;
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(0, 137, 123, 0.2);
    line-height: 1;
}

.why-choose-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-choose-item h4 {
    color: var(--dark-color);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.why-choose-item p {
    color: var(--text-color);
    line-height: 1.6;
    font-size: 14px;
}

/* ===== LEARNING STEPS ===== */
.steps-section {
    padding: 80px 0;
    background: var(--light-color);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.step-item {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--white-color);
    border: 3px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.step-item:hover .step-number {
    background: var(--primary-color);
    color: var(--white-color);
    transform: scale(1.1);
}

.step-item h4 {
    color: var(--dark-color);
    font-size: 18px;
    margin-bottom: 10px;
}

.step-item p {
    color: var(--text-color);
    font-size: 14px;
}

@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== STATISTICS SECTION ===== */
.stats-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a2a3a 0%, #2c3e50 100%);
    color: var(--white-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: 80px 0;
    background: var(--light-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--white-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.stars {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.testimonial-text {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.student-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.student-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.student-name {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.student-course {
    color: var(--primary-color);
    font-size: 14px;
}

/* ===== ABOUT PAGE RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
    }
    
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .academy-highlights {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 1024px) {
    .page-title {
        font-size: 32px;
    }
    
    .page-hero {
        padding: 60px 0 40px;
    }
    
    .course-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .course-icon {
        margin: 0 auto;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .course-card {
        padding: 20px;
    }
    
    .why-choose-item {
        padding: 20px 15px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
}


/* --- UTILITY CLASSES --- */
.section-padding {
    padding: 80px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--accent-color);
    color: #fff;
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* --- PREMIUM CONTACT PAGE REDESIGN --- */
.contact-section {
    background: #fdfdfd;
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.contact-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: var(--primary-color);
    opacity: 0.02;
    border-radius: 50%;
}

.contact-box-container {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    background: #fff;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 30px 100px rgba(0,0,0,0.08);
    position: relative;
    z-index: 5;
    margin-top: 20px;
}

.contact-form-area {
    padding: 80px;
}

.contact-form-area h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.contact-form-area p {
    color: #888;
    margin-bottom: 50px;
}

.input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.floating-input-group {
    position: relative;
    margin-bottom: 30px;
}

.floating-input-group input,
.floating-input-group textarea {
    width: 100%;
    padding: 15px 0;
    border: none;
    border-bottom: 2px solid #f0f0f0;
    background: transparent;
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.floating-input-group label {
    position: absolute;
    top: 15px;
    left: 0;
    color: #999;
    pointer-events: none;
    transition: all 0.3s ease;
}

.floating-input-group input:focus ~ label,
.floating-input-group input:valid ~ label,
.floating-input-group textarea:focus ~ label,
.floating-input-group textarea:valid ~ label {
    top: -10px;
    font-size: 12px;
    color: var(--accent-color);
    font-weight: 700;
}

.floating-input-group input:focus,
.floating-input-group textarea:focus {
    outline: none;
    border-bottom-color: var(--accent-color);
}

.btn-premium-send {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    color: #fff;
    padding: 20px 50px;
    border: none;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 25px rgba(0, 137, 123, 0.25);
}

.btn-premium-send:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 137, 123, 0.35);
}

.contact-info-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 80px 60px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.contact-info-gradient::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.info-box {
    position: relative;
    z-index: 2;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 40px;
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    font-size: 24px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.info-content h4 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.7;
    margin-bottom: 5px;
}

.info-content p {
    font-size: 18px;
    font-weight: 600;
}

.social-strip {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.social-strip h4 {
    margin-bottom: 20px;
    font-size: 14px;
    opacity: 0.8;
}

.social-icons-row {
    display: flex;
    gap: 12px;
}

.social-btn {
    display: inline-flex;
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #fff;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-btn:hover {
    background: #fff;
    color: var(--primary-color);
    transform: translateY(-5px);
}

@media (max-width: 1024px) {
    .contact-box-container {
        grid-template-columns: 1fr;
    }
    .contact-form-area, .contact-info-gradient {
        padding: 60px 40px;
    }
}

/* ===== FOUNDER SECTION ===== */
.founder-section {
    background-color: #fdfdfd;
    padding: 100px 0;
}

.founder-card-premium {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 60px;
    align-items: center;
    background: #fff;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
}

.founder-visual {
    position: relative;
}

.founder-img-main {
    width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
    object-position: top !important;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.founder-badge-title {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gradient-primary);
    color: #fff;
    padding: 25px 35px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 137, 123, 0.3);
}

.founder-badge-title h3 {
    font-size: 20px;
    margin-bottom: 5px;
    font-weight: 700;
}

.founder-badge-title p {
    font-size: 14px;
    opacity: 0.9;
}

.founder-content-premium {
    position: relative;
    padding-left: 20px;
}

.founder-quote-mark {
    font-size: 60px;
    color: rgba(0, 137, 123, 0.1);
    margin-bottom: -20px;
}

.founder-title {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 30px;
    position: relative;
}

.founder-message p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.founder-footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.founder-sig-name {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 5px;
}

.founder-sig-role {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 992px) {
    .founder-card-premium {
        grid-template-columns: 1fr;
        gap: 80px;
        padding: 30px;
    }
    .founder-visual {
        max-width: 450px;
        margin: 0 auto;
    }
    .founder-badge-title {
        right: 0;
        bottom: -30px;
    }
}

@media (max-width: 1024px) {
    .input-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* ===== MOBILE BOTTOM BAR STYLES ===== */
.mobile-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.08);
    z-index: 9999;
    padding: 12px 0;
    display: none; /* Hidden on desktop */
    border-top: 1px solid rgba(0, 137, 123, 0.1);
}

.bottom-bar-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 500px;
    margin: 0 auto;
    padding: 0 15px;
}

.bottom-bar-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.bottom-bar-label {
    font-size: 9px;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: 0.8px;
    opacity: 0.9;
}

.bottom-bar-icons {
    display: flex;
    gap: 12px;
}

.bottom-bar-link {
    width: 38px;
    height: 38px;
    background: var(--gradient-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 10px rgba(0, 137, 123, 0.2);
}

.bottom-bar-link:active {
    transform: scale(0.9);
}

.bottom-bar-divider {
    width: 1px;
    height: 35px;
    background: rgba(0, 137, 123, 0.1);
}

@media (max-width: 768px) {
    .mobile-bottom-bar {
        display: block;
    }
    
    /* Add padding to body to prevent content from being hidden behind the bar */
    body {
        padding-bottom: 80px !important;
    }
}

/* ===== CHATBOT MODAL STYLES ===== */
.chatbot-modal {
    position: fixed;
    bottom: -100%; /* Hidden below */
    left: 15px;
    right: 15px;
    background: #fff;
    border-radius: 25px 25px 0 0;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.15);
    z-index: 10001;
    display: flex;
    flex-direction: column;
    max-height: 80vh;
    transition: bottom 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.chatbot-modal.active {
    bottom: 0;
}

.chatbot-header {
    background: var(--gradient-primary);
    padding: 20px;
    border-radius: 25px 25px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}

.chatbot-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bot-avatar-circle {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.bot-status h4 {
    font-size: 16px;
    margin: 0;
    font-weight: 700;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    opacity: 0.9;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #4caf50;
    border-radius: 50%;
    box-shadow: 0 0 5px #4caf50;
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(76, 175, 80, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(76, 175, 80, 0); }
}

.close-chatbot-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    line-height: 1;
}

.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: #f9f9f9;
}

.bot-msg-wrapper, .user-msg-wrapper {
    display: flex;
    width: 100%;
}

.user-msg-wrapper {
    justify-content: flex-end;
}

.bot-msg, .user-msg {
    max-width: 80%;
    padding: 12px 18px;
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.5;
}

.bot-msg {
    background: #fff;
    color: #333;
    border-bottom-left-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.user-msg {
    background: var(--accent-color);
    color: #fff;
    border-bottom-right-radius: 4px;
}

.chatbot-input-container {
    padding: 15px 20px 30px; /* Extra bottom padding for mobile safety */
    background: #fff;
}

.chatbot-form {
    display: flex;
    background: #f0f2f5;
    padding: 8px 15px;
    border-radius: 30px;
    gap: 10px;
}

.chatbot-form input {
    flex: 1;
    border: none;
    background: none;
    padding: 10px 5px;
    font-size: 15px;
    color: #333;
}

.chatbot-form input:focus {
    outline: none;
}

.chatbot-send-btn {
    background: var(--gradient-primary);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(0, 137, 123, 0.3);
}

/* Quick Reply Buttons */
.quick-btns-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 5px;
}

.quick-btn {
    background: #fff;
    border: 1.5px solid var(--primary-color);
    color: var(--primary-color);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quick-btn:hover {
    background: var(--primary-color);
    color: #fff;
}

/* Desktop Floating Chat Button */
.desktop-chat-wrapper {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 10000;
    display: block;
}

.desktop-chat-button {
    background: var(--gradient-primary);
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 137, 123, 0.3);
    transition: all 0.3s ease;
    font-weight: 600;
}

.desktop-chat-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 137, 123, 0.4);
}

.desktop-chat-button i {
    font-size: 20px;
}

@media (max-width: 768px) {
    .desktop-chat-wrapper {
        display: none; /* Hidden on mobile in favor of bottom bar */
    }
}

/* Modal Adjustments for Desktop */
@media (min-width: 769px) {
    .chatbot-modal {
        width: 380px;
        right: 30px;
        left: auto;
        bottom: -100%;
        border-radius: 20px;
        max-height: 600px;
    }
    
    .chatbot-modal.active {
        bottom: 100px; /* Sits above the floating button */
    }
    
    .chatbot-header {
        border-radius: 20px 20px 0 0;
    }
}




