/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body, html {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: white !important;
    cursor: default;
}

.btn, button, a, [role='button'], .clickable {
    cursor: pointer;
}

/* --- HERO DECORATIVE BACKGROUND --- */
.hero {
    position: relative;
    overflow: hidden;
    background: white !important;
}
.hero::before {
    content: '';
    position: absolute;
    top: -120px;
    left: -180px;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle at 60% 40%, #693CD6 0%, transparent 70%);
    opacity: 0.18;
    z-index: 0;
    filter: blur(8px);
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -140px;
    right: -160px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle at 40% 60%, #02515A 0%, transparent 70%);
    opacity: 0.13;
    z-index: 0;
    filter: blur(10px);
}
.hero-container, .hero-content, .hero-image {
    position: relative;
    z-index: 1;
}

/* --- SECTION ANIMATION --- */
.section-animate {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    transition: opacity 0.8s cubic-bezier(.4,0,.2,1), transform 0.8s cubic-bezier(.4,0,.2,1);
}
.section-animate.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* --- SECTION SPACING POLISH --- */
section {
    margin: 0;
    padding: 3rem 0;
}
@media (max-width: 900px) {
    section {
        margin-bottom: 1.5rem;
    }
}
@media (max-width: 600px) {
    section {
        padding: 1.5rem 0;
    }
}
.courses, .testimonials, .about {
    padding: 2.5rem 0;
}
.courses-modern-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 2.5rem;
    margin-top: 2.5rem;
}
@media (max-width: 600px) {
    .courses-modern-grid {
        grid-template-columns: 1fr !important;
    }
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: #666;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 28px;
    height: 52px;
    border-radius: 14px;
    font-size: 1.08rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: box-shadow 0.2s, background 0.2s, color 0.2s, transform 0.2s;
    box-shadow: 0 2px 12px 0 rgba(2,81,90,0.08);
    text-decoration: none;
    gap: 0.7em;
}
.btn-primary {
    background: linear-gradient(90deg, #02515A 0%, #1A3A5D 100%);
    color: #fff;
    border: none;
    box-shadow: 0 4px 24px 0 rgba(2,81,90,0.10);
}
.btn-primary:hover {
    background: linear-gradient(90deg, #1A3A5D 0%, #02515A 100%);
    box-shadow: 0 6px 32px 0 rgba(2,81,90,0.13);
    transform: translateY(-2px) scale(1.04);
}
.btn-secondary {
    background: #fff;
    color: #02515A;
    border: 2px solid #02515A;
    box-shadow: none;
}
.btn-secondary:hover {
    background: #F2F7F8;
    color: #1A3A5D;
    border-color: #1A3A5D;
    transform: translateY(-2px) scale(1.04);
}
.btn .btn-icon {
    display: inline-flex;
    align-items: center;
    font-size: 1.2em;
    margin-left: 0.5em;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

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

.nav-logo h2 {
    color: #02515A;
    font-weight: 700;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #02515A;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: #02515A;
    transition: width 0.3s ease;
}

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

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

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 0;
    display: flex;
    align-items: center;
    background: white !important;
    padding-top: 140px;
    padding-bottom: 40px;
}
.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3.5rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    min-height: 500px;
}
.hero-content {
    flex: 1 1 0%;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}
.hero-title {
    font-size: 3.3rem;
    font-weight: 800;
    line-height: 1.08;
    color: #111;
    margin-bottom: 1.1rem;
    letter-spacing: -1px;
}
.hero-title .gradient {
    background: linear-gradient(90deg, #02515A 0%, #693CD6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}
.hero-subtitle {
    font-size: 1.18rem;
    color: #6B7A8F;
    margin-bottom: 2.1rem;
    line-height: 1.6;
    max-width: 95%;
}
.hero-buttons {
    display: flex;
    gap: 1.1rem;
    margin-bottom: 2.1rem;
    margin-top: 0.2rem;
}

/* Hero Section */
.hero-image {
    flex: 1 1 0%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-width: 340px;
    min-height: 320px;
}
.hero-img-main {
    width: 480px;
    max-width: 100%;
    border-radius: 24px;
    box-shadow: 0 8px 40px 0 rgba(2,81,90,0.10);
    object-fit: cover;
    min-height: 320px;
    background: #eaf1f4;
}
.hero-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: #693CD6;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    padding: 10px 22px;
    border-radius: 12px;
    box-shadow: 0 2px 12px 0 rgba(107,107,206,0.13);
    z-index: 2;
    text-align: left;
}
.hero-badge span {
    display: block;
    font-size: 0.92em;
    font-weight: 400;
    opacity: 0.85;
}

/* Features Section */
.features {
    padding: 0rem 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 1fr;
    gap: 24px;
    margin-top: 2rem;
    align-items: stretch;
}

@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}
@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
}
@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #02515A 0%, #693CD6 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: white !important;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    color: #333;
    margin-bottom: 1.5rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    color: #02515A;
    margin-bottom: 0.5rem;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-graphic {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #02515A 0%, #693CD6 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: rotate 20s linear infinite;
}

.about-graphic i {
    font-size: 3rem;
    color: white;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Courses Section */
.courses {
    padding: 0rem 0;
    background: white;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.course-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.course-image {
    height: 200px;
    background: linear-gradient(135deg, #02515A 0%, #693CD6 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.course-image i {
    font-size: 4rem;
    color: white;
}

.course-content {
    padding: 2rem;
}

.course-content h3 {
    color: #333;
    margin-bottom: 1rem;
}

.course-features {
    list-style: none;
    margin: 1.5rem 0;
}

.course-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: #666;
}

.course-features i {
    color: #02515A;
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

.course-meta {
    display: flex;
    justify-content: space-between;
    margin: 1.5rem 0;
    color: #666;
    font-size: 0.9rem;
}

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

.course-meta i {
    margin-right: 0.5rem;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background: white !important;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}
.testimonial-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px 0 rgba(2,81,90,0.07);
    padding: 2rem 1.2rem 1.5rem 1.2rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: box-shadow 0.2s, transform 0.2s;
}
.testimonial-card:hover {
    box-shadow: 0 6px 24px 0 rgba(2,81,90,0.13);
    transform: translateY(-4px) scale(1.03);
}
.testimonial-card p {
    color: #1A3A5D;
    font-size: 1.08rem;
    margin-bottom: 1.1rem;
    font-style: italic;
}
.testimonial-card h4 {
    color: #02515A;
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
}
@media (max-width: 900px) {
    .testimonials-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.2rem;
    }
}
@media (max-width: 600px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .testimonial-card {
        padding: 1.2rem 0.7rem 1rem 0.7rem;
    }
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-info h4 {
    color: #333;
    margin-bottom: 0.25rem;
}

.author-info p {
    color: #02515A;
    margin: 0;
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: 0rem 0;
    background: white;
}

.contact h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #02515A 0%, #693CD6 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-icon i {
    font-size: 1.5rem;
    color: white;
}

.contact-item h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #666;
    margin: 0;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #02515A;
}

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

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
    margin-bottom: 2rem;
    align-items: start;
}

.footer-section {
    width: 100%;
    max-width: none;
    padding: 0 1rem;
}

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-section p {
    color: #bdc3c7;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section p i {
    color: #02515A;
    font-size: 1rem;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

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

.footer-section ul li a:hover {
    color: #02515A;
}

.social-links {
    display: flex;
    gap: 1.2rem;
    margin-top: auto;
    padding-top: 1.5rem;
    justify-content: flex-start;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #02515A;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

/* Footer Responsive Design */
@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    
    .footer-section {
        padding: 0 0.5rem;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .footer-section {
        padding: 0;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .footer-section ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .footer-section p {
        text-align: center;
        margin: 0.5rem 0;
    }
    
    .social-links {
        justify-content: center;
        display: flex;
        gap: 1rem;
        margin-top: 1rem;
    }
    
    .footer-bottom {
        text-align: center;
        padding: 2rem 1rem;
    }
}

/* Additional mobile footer styles for better center alignment */
@media (max-width: 480px) {
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer .container {
        padding: 0 1rem;
    }
    
    .footer-content {
        gap: 2rem;
    }
    
    .footer-section h3,
    .footer-section h4 {
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .footer-section p {
        font-size: 0.9rem;
        line-height: 1.5;
        text-align: center;
    }
    
    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }
    
    .footer-bottom {
        padding: 1.5rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100vw;
        left: auto;
        width: 80vw;
        max-width: 340px;
        height: 100vh;
        background: #fff;
        box-shadow: -2px 0 24px rgba(2,81,90,0.10);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 2.5rem 2rem 2rem 2rem;
        gap: 2rem;
        z-index: 1200;
        transition: right 0.35s cubic-bezier(.4,0,.2,1);
        font-size: 1.18rem;
        letter-spacing: 0.01em;
        overflow-y: auto;
    }
    .nav-menu.active {
        right: 0;
    }
    .nav-link {
        padding: 0.7em 0;
        font-size: 1.18em;
        width: 100%;
        text-align: left;
        border-bottom: 1px solid #f0f0f0;
        transition: background 0.2s;
    }
    .nav-link:last-child {
        border-bottom: none;
    }
    .nav-link:active, .nav-link:focus {
        background: #f3f0ff;
        color: #693CD6;
    }
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: #f3f0ff;
        box-shadow: 0 2px 8px rgba(2,81,90,0.07);
        z-index: 1300;
        cursor: pointer;
        transition: background 0.2s;
    }
    .hamburger.active {
        background: #693CD6;
    }
    .hamburger .bar {
        width: 26px;
        height: 3.5px;
        background: #02515A;
        margin: 3.5px 0;
        border-radius: 2px;
        transition: all 0.3s;
    }
    .hamburger.active .bar {
        background: #fff;
    }
    .nav-overlay {
        display: none;
        top: 0; left: 0; width: 100vw; height: 100vh;
        background: rgba(2,81,90,0.18);
        z-index: 1100;
        transition: opacity 0.3s;
    }
    .nav-overlay.active {
        display: block;
        opacity: 1;
    }
    .nav-menu .nav-close {
        display: block;
        position: absolute;
        top: 1.2rem;
        right: 1.2rem;
        font-size: 2rem;
        color: #02515A;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 1301;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

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

    .hero-buttons {
        justify-content: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
  .features-grid {
    display: flex;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    gap: 0;
    padding: 0;
    margin: 0;
  }

  .feature-card {
    flex: 0 0 100%;
    scroll-snap-align: center;
    background: #ffffff;
    margin: 0;
    padding: 2rem 1.2rem;
    border: 1px solid #ddd;
    border-radius: 12px;
    box-sizing: border-box;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  }

  .feature-icon {
    font-size: 2rem;
    color: #ff5722;
    margin-bottom: 1rem;
  }

  .features-grid::-webkit-scrollbar {
    display: none;
  }

  .container {
    padding: 0;
  }

  .features-arrows {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 1.5rem;
    color: #999;
    margin-top: 0.8rem;
    user-select: none;
  }
}

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

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

/* Loading animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #02515A 0%, #693CD6 100%);
    color: white;
    padding: 8rem 0 4rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.page-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Course Categories */
.course-categories {
    padding: 2rem 0;
    background: white;
    border-bottom: 1px solid #e9ecef;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 24px;
    border: 2px solid #02515A;
    background: transparent;
    color: #02515A;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tab-btn:hover,
.tab-btn.active {
    background: #02515A;
    color: white;
}

/* Course Detail Pages */
.course-detail {
    padding: 4rem 0;
    background: white;
}

.course-detail:nth-child(even) {
    background: #f8f9fa;
}

.course-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.course-badge {
    display: inline-block;
    background: #693CD6;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.course-subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.course-meta-large {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
}

.meta-item i {
    color: #02515A;
    width: 20px;
}

.course-price {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #02515A;
}

.original-price {
    font-size: 1.2rem;
    color: #999;
    text-decoration: line-through;
}

.discount {
    background: #693CD6;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.course-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.course-graphic {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #02515A 0%, #693CD6 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.course-graphic i {
    font-size: 3rem;
    color: white;
    margin: 0 0.5rem;
    animation: pulse 2s ease-in-out infinite;
}

.course-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.course-section {
    margin-bottom: 3rem;
}

.course-section h3 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.course-section h4 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.learning-objectives {
    display: grid;
    gap: 1rem;
}

.objective-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.objective-item i {
    color: #02515A;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.curriculum {
    display: grid;
    gap: 1.5rem;
}

.module {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 1.5rem;
    border-left: 4px solid #02515A;
}

.module-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.module-header h4 {
    color: #333;
    margin: 0;
}

.duration {
    background: #02515A;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
}

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

.module-topics li {
    padding: 0.5rem 0;
    color: #666;
    border-bottom: 1px solid #e9ecef;
}

.module-topics li:last-child {
    border-bottom: none;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.tool-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.tool-item:hover {
    transform: translateY(-5px);
}

.tool-item i {
    font-size: 2rem;
    color: #02515A;
    margin-bottom: 0.5rem;
}

.tool-item span {
    font-weight: 500;
    color: #333;
}

/* Course Sidebar */
.course-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.sidebar-card h4 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

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

.feature-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    color: #666;
    border-bottom: 1px solid #e9ecef;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list i {
    color: #02515A;
    width: 20px;
}

.career-stats {
    display: grid;
    gap: 1rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.stat-item h5 {
    font-size: 1.5rem;
    color: #02515A;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

.instructor {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.instructor-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #02515A 0%, #693CD6 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.instructor-avatar i {
    font-size: 1.5rem;
    color: white;
}

.instructor-info h5 {
    color: #333;
    margin-bottom: 0.5rem;
}

.instructor-info p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #02515A 0%, #693CD6 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Responsive Design for Courses Page */
@media (max-width: 768px) {
    .course-hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .course-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .course-meta-large {
        grid-template-columns: 1fr;
    }

    .category-tabs {
        flex-direction: column;
        align-items: center;
    }

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

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .course-graphic {
        width: 250px;
        height: 250px;
    }

    .course-graphic i {
        font-size: 2rem;
    }

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

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

/* About Page Styles */
.mission-vision {
    padding: 5rem 0;
    background: white;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.mission-card,
.vision-card {
    text-align: center;
    padding: 3rem 2rem;
    border-radius: 20px;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px);
}

.mission-icon,
.vision-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #02515A 0%, #693CD6 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 2rem;
}

.mission-icon i,
.vision-icon i {
    font-size: 2.5rem;
    color: white;
}

.mission-card h3,
.vision-card h3 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.mission-card p,
.vision-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Our Story */
.our-story {
    padding: 5rem 0;
    background: white !important;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
    color: #333;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.story-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.story-stat {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.story-stat h4 {
    font-size: 2.5rem;
    color: #02515A;
    margin-bottom: 0.5rem;
}

.story-stat p {
    color: #666;
    margin: 0;
    font-weight: 500;
}

.story-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.story-graphic {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #02515A 0%, #693CD6 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: float 6s ease-in-out infinite;
}

.story-graphic i {
    font-size: 4rem;
    color: white;
}

/* Our Values */
.our-values {
    padding: 5rem 0;
    background: white;
}

.our-values h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    text-align: center;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #02515A 0%, #693CD6 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 2rem;
    color: white;
}

.value-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

/* Our Team */
.our-team {
    padding: 5rem 0;
    background: #f8f9fa;
}

.our-team h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: #333;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.member-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #02515A 0%, #693CD6 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}

.member-avatar i {
    font-size: 2rem;
    color: white;
}

.member-info h3 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.member-title {
    color: #02515A;
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-bio {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.member-social {
    display: flex;
    gap: 1rem;
}

.member-social a {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #02515A;
    text-decoration: none;
    transition: all 0.3s ease;
}

.member-social a:hover {
    background: #02515A;
    color: white;
    transform: translateY(-3px);
}

/* Achievements */
.achievements {
    padding: 5rem 0;
    background: white;
}

.achievements h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
}

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

.achievement-card {
    text-align: center;
    padding: 2rem;
    border-radius: 20px;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.achievement-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #02515A 0%, #693CD6 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
}

.achievement-icon i {
    font-size: 2rem;
    color: white;
}

.achievement-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.achievement-card p {
    color: #666;
    line-height: 1.6;
}

/* Success Stories */
.success-stories {
    padding: 5rem 0;
    background: white !important;
}

.success-stories h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.story-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.story-content {
    margin-bottom: 1.5rem;
}

.story-content p {
    font-style: italic;
    color: #666;
    line-height: 1.6;
    font-size: 1.1rem;
}

.story-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #02515A 0%, #693CD6 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.author-avatar i {
    font-size: 1.5rem;
    color: white;
}

.author-info h4 {
    color: #333;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.author-info p {
    color: #666;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.salary {
    color: #02515A;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .story-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

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

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

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

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

@media (max-width: 480px) {
    .story-graphic {
        width: 200px;
        height: 200px;
    }

    .story-graphic i {
        font-size: 3rem;
    }

    .value-card,
    .team-member,
    .achievement-card,
    .story-card {
        padding: 1.5rem;
    }
}

/* Contact Page Styles */
.contact-info-section {
    padding: 5rem 0;
    background: white;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: stretch;
}
.contact-info-card {
    text-align: center;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    min-height: 400px;
    overflow-wrap: break-word;
    align-items: center;
}
.contact-info-card p {
    word-break: break-word;
}

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

.contact-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #02515A 0%, #693CD6 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
    flex-shrink: 0;
}

.contact-icon-large i {
    font-size: 2rem;
    color: white;
}

.contact-info-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-info-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Contact Form Section */
.contact-form-section {
    padding: 5rem 0;
    background: white;
}

.contact-form-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.form-intro h2 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.form-intro p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.form-features {
    display: grid;
    gap: 1rem;
}

.form-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #666;
}

.form-feature i {
    color: #02515A;
    font-size: 1.1rem;
}

.contact-form-enhanced {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #02515A;
}

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-label a {
    color: #02515A;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: white;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
}

.faq-grid {
    display: grid;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-question h3 {
    color: #333;
    margin: 0;
    font-size: 1.1rem;
}

.faq-question i {
    color: #02515A;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s cubic-bezier(.4,0,.2,1), opacity 0.3s;
}

.faq-answer.open {
    max-height: 500px;
    opacity: 1;
    transition: max-height 0.6s cubic-bezier(.4,0,.2,1), opacity 0.3s;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Map Section */
.map-section {
    padding: 5rem 0;
    background: white;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
}

.map-container {
    max-width: 800px;
    margin: 0 auto;
}

.map-placeholder {
    background: white;
    border-radius: 20px;
    padding: 4rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-placeholder i {
    font-size: 4rem;
    color: #02515A;
    margin-bottom: 1rem;
}

.map-placeholder h3 {
    color: #333;
    margin-bottom: 1rem;
}

.map-placeholder p {
    color: #666;
    margin-bottom: 2rem;
}

/* Responsive Design for Contact Page */
@media (max-width: 1200px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}
@media (max-width: 768px) {
    .contact-form-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .faq-question h3 {
        font-size: 1rem;
    }
}

@media (max-width: 600px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}
@media (max-width: 480px) {
    .contact-info-card,
    .contact-form-enhanced {
        padding: 1.5rem;
    }

    .map-placeholder {
        padding: 2rem 1rem;
    }

    .map-placeholder i {
        font-size: 3rem;
    }
} 

/* --- HERO STATS ENHANCED --- */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 2.5rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px 0 rgba(2,81,90,0.06);
    padding: 0.7rem 0.5rem;
    width: fit-content;
}
.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    padding: 0 2.2rem;
}
.hero-stat-number {
    font-size: 2.3rem;
    font-weight: 800;
    color: #02515A;
    margin-bottom: 0.2em;
    letter-spacing: -1px;
    line-height: 1.1;
}
.hero-stat-small {
    font-size: 1.1rem;
    font-weight: 600;
    color: #6B7A8F;
    margin-left: 2px;
}
.hero-stat-label {
    color: #6B7A8F;
    font-size: 1.08rem;
    font-weight: 400;
    margin-top: 0.1em;
    letter-spacing: 0.01em;
}
.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: #E3E8EC;
    border-radius: 2px;
    margin: 0 0.5rem;
}
@media (max-width: 900px) {
    .hero-stats {
        margin-top: 1.5rem;
        padding: 0.5rem 0.2rem;
    }
    .hero-stat {
        min-width: 90px;
        padding: 0 1.1rem;
    }
    .hero-stat-number {
        font-size: 1.5rem;
    }
    .hero-stat-divider {
        height: 28px;
    }
}
@media (max-width: 600px) {
    .hero-stats {
        flex-direction: column;
        box-shadow: none;
        background: transparent;
        padding: 0;
        width: 100%;
    }
    .hero-stat {
        flex-direction: row;
        justify-content: flex-start;
        align-items: baseline;
        min-width: 0;
        padding: 0.2rem 0;
        width: 100%;
    }
    .hero-stat-number {
        font-size: 1.2rem;
        margin-right: 0.7em;
    }
    .hero-stat-label {
        font-size: 1rem;
        margin-top: 0;
    }
    .hero-stat-divider {
        display: none;
    }
} 

/* --- HERO SECTION POLISH (MORE TOP PADDING & WIDER CONTENT) --- */
.hero {
    min-height: 0;
    display: flex;
    align-items: center;
    background: white !important;
    padding-top: 140px;
    padding-bottom: 40px;
}
.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3.5rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    min-height: 500px;
}
.hero-content {
    flex: 1 1 0%;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}
@media (max-width: 1100px) {
    .hero {
        padding-top: 96px;
    }
    .hero-container {
        max-width: 1000px;
    }
    .hero-content {
        max-width: 100%;
    }
}
@media (max-width: 900px) {
    .hero {
        padding-top: 64px;
        padding-bottom: 24px;
    }
    .hero-container {
        flex-direction: column;
        gap: 2.5rem;
        padding: 0 12px;
        min-height: 0;
        max-width: 100%;
    }
    .hero-content {
        max-width: 100%;
        align-items: center;
        text-align: center;
    }
}
@media (max-width: 600px) {
    .hero {
        padding-top: 110px;
        padding-bottom: 12px;
    }
    .hero-title {
        font-size: 1.7rem;
        margin-top: 1.2rem;
        display: block;
        opacity: 1;
    }
    .hero-img-main { max-width: 100%; width: 100%; min-height: 120px; }
    .hero-badge {
        font-size: 0.95rem;
        padding: 7px 14px;
        top: 10px;
        right: 10px;
    }
    .hero-stats {
        flex-direction: column;
        box-shadow: none;
        background: transparent;
        padding: 0;
        width: 100%;
        align-self: center;
    }
    .hero-stat {
        flex-direction: row;
        justify-content: flex-start;
        align-items: baseline;
        min-width: 0;
        padding: 0.2rem 0;
        width: 100%;
    }
    .hero-stat-number {
        font-size: 1.2rem;
        margin-right: 0.7em;
    }
    .hero-stat-label {
        font-size: 1rem;
        margin-top: 0;
    }
    .hero-stat-divider {
        display: none;
    }
}
@media (max-width: 480px) {
    .hero {
        padding-top: 110px;
    }
    .hero-title {
        font-size: 1.4rem;
        margin-top: 1.2rem;
        display: block;
        opacity: 1;
    }
}

/* --- Modern Courses Section --- */
.courses-modern-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 2.5rem;
    margin-top: 2.5rem;
}
.course-modern-card {
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 4px 32px 0 rgba(2,81,90,0.07);
    border: 1.5px solid #E6E8F0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: box-shadow 0.3s, transform 0.3s;
    padding-bottom: 1.2rem;
    cursor: pointer;
    outline: none;
}
.course-modern-card:hover {
    box-shadow: 0 8px 40px 0 rgba(2,81,90,0.13);
    transform: translateY(-6px) scale(1.02);
}
.course-modern-card:focus-visible {
    outline: 3px solid #693CD6;
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(105,60,214,0.10), 0 8px 40px 0 rgba(2,81,90,0.13);
    z-index: 2;
}
.course-modern-image {
    width: 100%;
    height: 170px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    position: relative;
    padding: 0 1.5rem 1.2rem 1.5rem;
    gap: 0.7rem;
}
.mentor-img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 3px solid #fff;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(2,81,90,0.10);
    position: relative;
    z-index: 1;
}
.course-modern-content {
    padding: 1.5rem 1.5rem 0.5rem 1.5rem;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}
.course-modern-content h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #02515A;
    margin-bottom: 0.2rem;
}
.course-modern-content p {
    color: #333;
    font-size: 1.04rem;
    margin-bottom: 0.2rem;
}
.course-modern-info-row {
    display: flex;
    gap: 1.2rem;
    align-items: center;
    font-size: 1rem;
    color: #444;
    margin: 0.5rem 0 0.2rem 0;
}
.course-modern-info-row i {
    color: #693CD6;
    margin-right: 0.4em;
    font-size: 1.08em;
}
.course-modern-mentors {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    margin-top: 0.7rem;
}
.mentor-avatars {
    display: flex;
    align-items: center;
    gap: -0.7rem;
    position: relative;
}
.mentor-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #fff;
    object-fit: cover;
    box-shadow: 0 1px 4px rgba(2,81,90,0.10);
    margin-left: -12px;
    background: #eee;
    position: relative;
    z-index: 1;
}
.mentor-avatar:first-child {
    margin-left: 0;
}
.mentor-avatar.extra {
    background: #693CD6;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.98em;
    font-weight: 600;
    border: 2px solid #fff;
    z-index: 0;
}
.mentor-info {
    display: flex;
    flex-direction: column;
    font-size: 0.98em;
    color: #333;
    line-height: 1.2;
}
.mentor-label {
    font-weight: 600;
    color: #02515A;
}
.mentor-companies {
    color: #666;
    font-size: 0.97em;
}
@media (max-width: 600px) {
    .courses-modern-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .course-modern-card {
        padding-bottom: 0.7rem;
    }
    .course-modern-content {
        padding: 1.1rem 1.1rem 0.3rem 1.1rem;
    }
    .course-modern-image {
        height: 120px;
        padding: 0 1rem 0.7rem 1rem;
    }
    .mentor-img {
        width: 38px;
        height: 38px;
    }
} 

.course-stock-img {
    width: 100%;
    max-width: 320px;
    max-height: 140px;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 2px 12px 0 rgba(2,81,90,0.10);
    margin: 0 auto;
    display: block;
}
@media (max-width: 600px) {
    .course-stock-img {
        max-width: 100%;
        max-height: 90px;
        border-radius: 10px;
    }
} 

.courses-modern-section {
    margin: 4rem 0 4rem 0;
} 

/* --- Minimal Courses Card Grid --- */
.courses-filter-section {
    padding: 3.5rem 0 4rem 0;
    margin-top: 80px;
}
.courses-card-bg {
    background: #fafbfc;
    border-radius: 32px;
    box-shadow: 0 4px 32px 0 rgba(2,81,90,0.04);
    padding: 2.5rem 2rem 2.5rem 2rem;
    margin: 0 auto;
    max-width: 1200px;
}
.courses-filter-bar {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
    margin-top: 1.5rem;
}
.filter-btn {
    background: none;
    border: none;
    font-size: 1.08rem;
    font-weight: 600;
    color: #333;
    padding: 0.6rem 1.6rem;
    border-radius: 22px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.filter-btn.active, .filter-btn:hover {
    background: #02515A;
    color: #fff;
}
.courses-card-grid {
    display: grid;
    /* grid-template-columns: 1fr; */
    justify-items: start !important;
    justify-content: flex-start !important;
    align-items: start !important;
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}
.courses-card-bg {
    text-align: left;
}

.course-card-minimal {
    background: linear-gradient(120deg, #1a1a2e 0%, #23234b 100%);
    border-radius: 32px;
    box-shadow: 0 4px 32px 0 rgba(2,81,90,0.10);
    color: #fff;
    padding: 2.2rem 1.7rem 1.3rem 1.7rem;
    
    display: flex;
    flex-direction: column;
    min-height: 320px;
    max-width: 540px;
    width: 100%;
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
}
.course-card-minimal-link {
    display: flex;
    height: 100%;
    width: 100%;
    min-width: 0;
    text-decoration: none;
    color: inherit;
}
.course-card-minimal-link:focus-visible .course-card-minimal {
    outline: 3px solid #693CD6;
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(105,60,214,0.10), 0 8px 40px 0 rgba(2,81,90,0.13);
    z-index: 2;
}
.course-card-minimal {
    flex: 1 1 auto;
    width: 100%;
    cursor: pointer;
}
.courses-card-grid:only-child, .courses-card-grid > *:only-child {
    justify-self: start !important;
    margin-left: 0 !important;
}
@media (max-width: 1100px) {
    .courses-card-grid {
        grid-template-columns: 1fr !important;
    }
}
@media (max-width: 600px) {
    .courses-card-grid {
        grid-template-columns: 1fr !important;
    }
}
.course-badge {
    position: absolute;
    top: 1.2rem;
    left: 1.2rem;
    font-size: 0.92rem;
    font-weight: 700;
    padding: 0.3em 1em;
    border-radius: 12px;
    background: #1ed760;
    color: #fff;
    letter-spacing: 0.02em;
}
.course-badge.bestseller {
    background: #bfa16c;
}
.course-badge.new {
    background: #1ed760;
}
.course-card-minimal h3 {
    font-size: 1.32rem;
    font-weight: 700;
    margin: 2.5rem 0 1.1rem 0;
    color: #fff;
}
.course-meta-row {
    display: flex;
    gap: 1.2rem;
    font-size: 1.01rem;
    color: #e0e0e0;
    margin-bottom: 1.7rem;
}
.course-meta-row i {
    margin-right: 0.4em;
    color: #bfa16c;
}
.course-mentors-row {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 1.2rem;
}
.mentor-face {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 1px 6px rgba(2,81,90,0.10);
    background: #eee;
}
.mentor-name {
    font-size: 0.98rem;
    color: #fff;
    font-weight: 500;
    margin-left: 0.3rem;
}
.course-preview-link {
    display: inline-block;
    font-size: 1.04rem;
    font-weight: 600;
    margin-top: auto;
    color: #02515A;
    text-decoration: none;
    transition: color 0.2s;
}
.course-preview-link.marketing {
    color: #02515A;
}
.course-preview-link.design {
    color: #693CD6;
}
.course-preview-link:hover {
    text-decoration: underline;
    color: #693CD6;
}
@media (max-width: 600px) {
    .courses-card-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .course-card-minimal {
        padding: 1.3rem 0.7rem 1rem 0.7rem;
        min-height: 220px;
    }
    .course-card-minimal h3 {
        margin: 2rem 0 0.7rem 0;
        font-size: 1.08rem;
    }
    .mentor-face {
        width: 32px;
        height: 32px;
    }
} 

.btn.btn-primary {
    background: #02515A;
    color: #fff;
    font-weight: 700;
    font-size: 1.13rem;
    padding: 0.95rem 2.2rem;
    justify-content: flex-start;
    border: none;
    border-radius: 2rem;
    box-shadow: 0 4px 18px 0 rgba(2,81,90,0.13);
    cursor: pointer;
    transition: background 0.2s, transform 0.18s, box-shadow 0.18s;
    display: inline-block;
    letter-spacing: 0.01em;
}
.btn.btn-primary:hover, .btn.btn-primary:focus {
    background: #014046;
    color: #fff;
    transform: scale(1.045);
    box-shadow: 0 8px 32px 0 rgba(2,81,90,0.18);
    text-decoration: none;
} 
.btn-gradient {
    background: linear-gradient(90deg, #02515A 0%, #693CD6 100%);
    color: #fff;
    font-weight: 800;
    font-size: 1.22rem;
    padding: 1.1rem 2.7rem;
    border: none;
    border-radius: 2.5rem;
    box-shadow: 0 6px 32px 0 rgba(2,81,90,0.18), 0 0 0 0 rgba(105,60,214,0.18);
    cursor: pointer;
    transition: background 0.2s, transform 0.18s, box-shadow 0.18s;
    display: inline-block;
    letter-spacing: 0.01em;
    position: relative;
    z-index: 1;
    animation: btn-glow 2.2s infinite alternate;
}
.btn-gradient:hover, .btn-gradient:focus {
    background: linear-gradient(90deg, #693CD6 0%, #02515A 100%);
    color: #fff;
    transform: scale(1.06);
    box-shadow: 0 12px 40px 0 rgba(2,81,90,0.22), 0 0 0 8px rgba(105,60,214,0.10);
    text-decoration: none;
}
@keyframes btn-glow {
    0% {
        box-shadow: 0 6px 32px 0 rgba(2,81,90,0.18), 0 0 0 0 rgba(105,60,214,0.18);
    }
    100% {
        box-shadow: 0 12px 40px 0 rgba(2,81,90,0.22), 0 0 0 12px rgba(105,60,214,0.10);
    }
}
.glass-card {
    border-radius: 2.5rem;
    padding: 1.5rem 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 40px 0 rgba(2,81,90,0.13);
    backdrop-filter: blur(14px);
    border: 1.5px solid rgba(105,60,214,0.13);
    max-width: 380px;
} 

/* --- Enhanced Typography --- */
h1, .hero-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 2.6rem;
    line-height: 1.15;
    letter-spacing: -1px;
    color: #22223b;
    margin-bottom: 0.5em;
    text-shadow: 0 2px 8px rgba(105, 60, 214, 0.08);
}

h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 2rem;
    line-height: 1.2;
    color: #3a3a5a;
    margin-bottom: 0.5em;
}

h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.3rem;
    color: #4b4b6b;
    margin-bottom: 0.4em;
}

p, .hero-subtitle, .section-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 1.08rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 1.1em;
}

/* Remove or override previous heading and paragraph styles for consistency */
h1 {
    font-size: 2.6rem;
    font-weight: 700;
    color: #22223b;
    margin-bottom: 0.5em;
    text-shadow: 0 2px 8px rgba(105, 60, 214, 0.08);
}
h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #3a3a5a;
    margin-bottom: 0.5em;
}
h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #4b4b6b;
    margin-bottom: 0.4em;
}
p {
    font-size: 1.08rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: 1.1em;
} 

/* --- ABOUT PAGE MODERN STYLES --- */

.hero-about {
    background: linear-gradient(120deg, #f2f7fa 0%, #eaf1f8 100%);
    padding: 100px 0 60px 0;
    text-align: center;
    position: relative;
}
.hero-about h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #02515A;
    margin-bottom: 1rem;
}
.hero-about p {
    font-size: 1.3rem;
    color: #1A3A5D;
    margin-bottom: 2rem;
}
.hero-about .btn {
    margin: 0 0.5rem;
}

.modern-bg {
    background: #f8fafc;
    padding: 60px 0;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}
@media (max-width: 900px) {
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 16px 0 rgba(2,81,90,0.07);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: box-shadow 0.2s;
}
.card i {
    color: #02515A;
    margin-bottom: 1rem;
}
.card:hover {
    box-shadow: 0 6px 32px 0 rgba(2,81,90,0.13);
}

.story-img {
    max-width: 320px;
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 2px 16px 0 rgba(2,81,90,0.07);
    display: block;
    margin: 0 auto;
}
.milestones {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
    padding: 0;
}
.milestones li {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 1px 8px 0 rgba(2,81,90,0.06);
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    color: #02515A;
    font-weight: 600;
    min-width: 140px;
    text-align: center;
}
@media (max-width: 600px) {
    .milestones {
        flex-direction: column;
        gap: 1rem;
    }
}

.core-values {
    background: #f8fafc;
    padding: 4rem 0 3rem 0;
}
.core-values-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 800;
    color: #1A3A5D;
    margin-bottom: 2.5rem;
}
.core-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}
.core-value-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(59,130,246,0.08);
    padding: 2.5rem 1.5rem 2rem 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s, transform 0.2s;
}
.core-value-card:hover {
    box-shadow: 0 8px 32px 0 rgba(2,81,90,0.13);
    transform: translateY(-4px) scale(1.03);
}
.core-value-card i {
    font-size: 2.5rem;
    margin-bottom: 1.1rem;
    color: #3b82f6;
}
.core-value-card h3 {
    font-size: 1.18rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}
@media (max-width: 900px) {
    .core-values-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
}
@media (max-width: 600px) {
    .core-values-grid {
        grid-template-columns: 1fr;
        gap: 1.1rem;
    }
    .core-values {
        padding: 2.2rem 0 1.5rem 0;
    }
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}
@media (max-width: 900px) {
    .team-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 600px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}
.team-member {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px 0 rgba(2,81,90,0.07);
    padding: 2rem 1.2rem;
    text-align: center;
    transition: box-shadow 0.2s;
}
.team-member:hover {
    box-shadow: 0 6px 24px 0 rgba(2,81,90,0.13);
}
.avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid #f2f7fa;
    box-shadow: 0 1px 8px 0 rgba(2,81,90,0.08);
}
.team-member h3 {
    color: #02515A;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}
.team-member p {
    color: #1A3A5D;
    font-size: 0.98rem;
    margin-bottom: 0.7rem;
}
.social-links a {
    color: #1A3A5D;
    font-size: 1.2rem;
    margin: 0 0.3rem;
    transition: color 0.2s;
}
.social-links a:hover {
    color: #02515A;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}
@media (max-width: 900px) {
    .achievements-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 600px) {
    .achievements-grid {
        grid-template-columns: 1fr;
    }
}
.achievement-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px 0 rgba(2,81,90,0.06);
    padding: 2rem 1.2rem;
    text-align: center;
    transition: box-shadow 0.2s;
}
.achievement-card i {
    font-size: 2rem;
    color: #F7B801;
    margin-bottom: 0.7rem;
}
.achievement-card h3 {
    color: #02515A;
    font-size: 1.1rem;
    font-weight: 700;
}
.achievement-card:hover {
    box-shadow: 0 6px 24px 0 rgba(2,81,90,0.13);
}

.stories-slider {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    margin-top: 2.5rem;
}
.story-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px 0 rgba(2,81,90,0.06);
    padding: 2rem 1.2rem;
    min-width: 320px;
    max-width: 400px;
    flex: 0 0 auto;
    text-align: left;
    transition: box-shadow 0.2s;
}
.story-card p {
    color: #1A3A5D;
    font-size: 1.05rem;
    margin-bottom: 1rem;
}
.story-card h4 {
    color: #02515A;
    font-size: 1rem;
    font-weight: 700;
}
.story-card:hover {
    box-shadow: 0 6px 24px 0 rgba(2,81,90,0.13);
}

/* --- END ABOUT PAGE MODERN STYLES --- */

/* --- ABOUT PAGE CUSTOM SECTIONS --- */

.about-vision {
    background: linear-gradient(120deg, #f2f7fa 0%, #eaf1f8 100%);
    padding: 70px 0 40px 0;
    text-align: center;
}
.vision-title {
    font-size: 2.1rem;
    font-weight: 800;
    color: #02515A;
    margin-bottom: 0;
}

.about-what-we-do {
    background: #fff;
    padding: 60px 0 40px 0;
}
.about-what-we-do h3 {
    color: #1A3A5D;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.about-what-we-do p {
    color: #444;
    font-size: 1.08rem;
    margin-bottom: 1.1rem;
}

.about-difference {
    background: #f8fafc;
    padding: 60px 0 40px 0;
}
.about-difference-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 800;
    color: #1A3A5D;
    margin-bottom: 2.5rem;
}
.about-difference-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}
@media (max-width: 1100px) {
    .about-difference-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}
@media (max-width: 800px) {
    .about-difference-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 500px) {
    .about-difference-grid {
        grid-template-columns: 1fr;
    }
}
.about-difference-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px 0 rgba(2,81,90,0.07);
    padding: 2rem 1.2rem 1.5rem 1.2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s;
}
.about-difference-card:hover {
    box-shadow: 0 6px 24px 0 rgba(2,81,90,0.13);
}
.about-difference-icon {
    font-size: 2rem;
    color: #6366f1;
    margin-bottom: 0.7rem;
}
.about-difference-card h3 {
    font-size: 1.1rem;
    color: #02515A;
    font-weight: 700;
    margin-bottom: 0.3rem;
}
.about-difference-card p {
    color: #4a5568;
    font-size: 0.98rem;
    margin-bottom: 0;
}

.about-mission {
    background: #fff;
    padding: 50px 0 30px 0;
}
.mission-card {
    background: linear-gradient(90deg, #f2f7fa 0%, #eaf1f8 100%);
    border-radius: 16px;
    box-shadow: 0 2px 12px 0 rgba(2,81,90,0.06);
    padding: 2.2rem 1.5rem;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}
.mission-card h3 {
    color: #02515A;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
}
.mission-card p {
    color: #1A3A5D;
    font-size: 1.08rem;
    margin-bottom: 0;
}

.about-story {
    background: #f8fafc;
    padding: 50px 0 30px 0;
}
.about-story h3 {
    color: #02515A;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}
.about-story blockquote {
    background: #fff;
    border-left: 6px solid #F7B801;
    border-radius: 12px;
    box-shadow: 0 1px 8px 0 rgba(2,81,90,0.06);
    padding: 1.5rem 2rem;
    color: #1A3A5D;
    font-size: 1.08rem;
    font-style: italic;
    max-width: 700px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .about-what-we-do .grid-2 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
@media (max-width: 600px) {
    .about-vision {
        padding: 40px 0 20px 0;
    }
    .vision-title {
        font-size: 1.2rem;
    }
    .about-what-we-do, .about-difference, .about-mission, .about-story {
        padding: 30px 0 15px 0;
    }
    .mission-card, .about-story blockquote {
        padding: 1.2rem 0.7rem;
    }
}

/* --- END ABOUT PAGE CUSTOM SECTIONS --- */

/* --- ABOUT PAGE HERO ALIGNMENT --- */
.hero-about {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(120deg, #f2f7fa 0%, #eaf1f8 100%);
    position: relative;
    padding: 0;
}
.hero-about .hero-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
}
.hero-about .hero-content {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.hero-about .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #02515A;
    margin-bottom: 1.2rem;
    line-height: 1.15;
}
.hero-about .hero-subtitle {
    font-size: 1.35rem;
    color: #1A3A5D;
    margin-bottom: 0;
    font-weight: 400;
    line-height: 1.5;
}
@media (max-width: 600px) {
    .hero-about .hero-title {
        font-size: 2.1rem;
    }
    .hero-about .hero-subtitle {
        font-size: 1rem;
    }
    .hero-about, .hero-about .hero-container {
        min-height: 40vh;
    }
}
/* --- END ABOUT PAGE HERO ALIGNMENT --- */

/* --- ABOUT PAGE HERO FLEX LAYOUT (IMPROVED PADDING) --- */
.hero-about {
    padding-left: 32px;
    padding-right: 32px;
}
.hero-about-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3.5rem;
    min-height: 55vh;
    padding: 2.5rem 0 1.5rem 0;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}
.hero-about-left {
    flex: 1.2;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    min-width: 280px;
    max-width: 480px;
    padding-left: 12px;
    padding-right: 12px;
}
.hero-about-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 12px;
    padding-right: 12px;
}
.hero-stats-bar {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 2px 16px 0 rgba(2,81,90,0.10);
    padding: 1.2rem 2rem;
    gap: 2.5rem;
    margin-top: 1.5rem;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
}
@media (max-width: 1100px) {
    .hero-about-flex {
        max-width: 98vw;
        gap: 2rem;
    }
    .hero-about {
        padding-left: 10px;
        padding-right: 10px;
    }
    .hero-about-left {
        max-width: 98vw;
    }
}
@media (max-width: 900px) {
    .hero-about-flex {
        flex-direction: column;
        gap: 2rem;
        min-height: 40vh;
        padding: 1.5rem 0 1rem 0;
        max-width: 98vw;
    }
    .hero-about-left, .hero-about-right {
        padding-left: 0;
        padding-right: 0;
        max-width: 100vw;
    }
    .hero-stats-bar {
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }
}
@media (max-width: 600px) {
    .hero-about {
        padding-left: 0;
        padding-right: 0;
    }
    .hero-about-flex {
        padding: 0.5rem 0 0.5rem 0;
    }
    .hero-stats-bar {
        padding: 1rem 0.5rem;
        max-width: 98vw;
    }
    .hero-about-left {
        max-width: 100vw;
    }
}
/* --- END ABOUT PAGE HERO FLEX LAYOUT (IMPROVED PADDING) --- */

/* --- ABOUT PAGE HERO FLEX LAYOUT (PROFESSIONAL FIXES) --- */
.hero-about {
    padding: 5rem 32px 5rem 32px;
    min-height: 70vh;
    margin-top: 80px; /* space below nav */
    box-sizing: border-box;
}
.hero-about-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3.5rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}
.hero-about-left {
    flex: 1.2;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    min-width: 280px;
    max-width: 480px;
    padding-left: 12px;
    padding-right: 12px;
}
.hero-stats-bar {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 2px 16px 0 rgba(2,81,90,0.10);
    padding: 1.2rem 2rem;
    gap: 0;
    margin-top: 1.5rem;
    max-width: 420px;
    width: 100%;
    box-sizing: border-box;
}
.hero-stat {
    flex: 1 1 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 0;
    white-space: nowrap;
}
.hero-stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #02515A;
    display: block;
}
.hero-stat-label {
    font-size: 1rem;
    color: #6a7a8c;
    display: block;
    margin-top: 0.2rem;
    white-space: normal;
}
.hero-stat-divider {
    width: 1px;
    background: #e6eaf0;
    margin: 0 1.2rem;
    border-radius: 2px;
    align-self: stretch;
}
.hero-about-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 12px;
    padding-right: 12px;
}
.hero-img-wrapper {
    position: relative;
    display: inline-block;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 4px 32px 0 rgba(2,81,90,0.10);
    background: #fff;
}
.hero-img-main {
    width: 320px;
    height: 340px;
    object-fit: cover;
    border-radius: 28px;
    display: block;
}
.hero-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: #693CD6;
    color: #fff;
    border-radius: 12px;
    padding: 10px 22px 6px 22px;
    font-size: 1.05rem;
    font-weight: 600;
    box-shadow: 0 2px 8px 0 rgba(2,81,90,0.10);
    z-index: 2;
    text-align: left;
    line-height: 1.2;
}
.hero-badge span {
    font-size: 0.95em;
    font-weight: 400;
    display: block;
    margin-top: 2px;
}
.hero-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: #1A3A5D;
    margin-bottom: 1.1rem;
    line-height: 1.13;
}
.hero-subtitle {
    font-size: 1.25rem;
    color: #3a4a5d;
    margin-bottom: 0.7rem;
    font-weight: 400;
    line-height: 1.5;
}
@media (max-width: 1100px) {
    .hero-about-flex {
        max-width: 98vw;
        gap: 2rem;
    }
    .hero-about {
        padding-left: 10px;
        padding-right: 10px;
    }
    .hero-about-left {
        max-width: 98vw;
    }
}
@media (max-width: 900px) {
    .hero-about-flex {
        flex-direction: column;
        gap: 2rem;
        min-height: 40vh;
        padding: 1.5rem 0 1rem 0;
        max-width: 98vw;
    }
    .hero-about-left, .hero-about-right {
        padding-left: 0;
        padding-right: 0;
        max-width: 100vw;
    }
    .hero-stats-bar {
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
        max-width: 98vw;
        padding: 1rem 0.5rem;
    }
}
@media (max-width: 600px) {
    .hero-about {
        padding-left: 0;
        padding-right: 0;
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
        margin-top: 60px;
    }
    .hero-about-flex {
        padding: 0.5rem 0 0.5rem 0;
    }
    .hero-stats-bar {
        flex-direction: column;
        gap: 1.2rem;
        max-width: 90vw;
        padding: 0rem 0.5rem;
    }
    .hero-about-left {
        max-width: 100vw;
    }
    .hero-stat-divider {
        width: 80%;
        height: 1px;
        margin: 0.7rem auto;
    }
}
/* --- END ABOUT PAGE HERO FLEX LAYOUT (PROFESSIONAL FIXES) --- */

.brand-nowrap {
    white-space: nowrap;
    display: inline-block;
    max-width: 100%;
    overflow-wrap: normal;
    text-overflow: ellipsis;
}
@media (max-width: 600px) {
    .hero-title {
        font-size: 1.5rem;
    }
    .brand-nowrap {
        font-size: 1.1em;
    }
}

.features-heading {
    font-size: 2.1rem;
    font-weight: 800;
    text-align: center;
    color: #1A3A5D;
    margin-bottom: 2.2rem;
    margin-top: 0.5rem;
    line-height: 1.18;
    letter-spacing: -0.5px;
}
@media (max-width: 600px) {
    .features-heading {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
    }
}

/* Card staggered animation */
.card-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
}
.card-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Keyframes for fade/slide (for optional use) */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
  #sticky-join-bar {
    width: 100% !important;
    left: 0 !important;
    right: 0 !important;
    border-radius: 0 !important;
    padding: 0 !important;
  }
  #sticky-join-bar > div {
    flex-direction: column !important;
    width: 98% !important;
    max-width: 100vw !important;
    border-radius: 0 !important;
    padding: 0.8rem 0.5rem !important;
    gap: 0.7rem !important;
  }
  #sticky-join-bar .btn-gradient {
    width: 100%;
    margin-left: 0 !important;
    font-size: 1rem !important;
    padding: 0.8em 0 !important;
    border-radius: 1.5em !important;
  }
  #sticky-join-bar div[style*="font-weight:700"] {
    font-size: 1rem !important;
    text-align: center !important;
  }
}

/* Minimal Enquiry Modal Styles */
#enquiry-modal {
  display: none;
  position: fixed;
  z-index: 10001;
  left: 0; top: 0; width: 100vw; height: 100vh;
  align-items: center;
  justify-content: center;
  background: none;
}
.enquiry-modal-overlay {
  position: absolute;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(30, 34, 90, 0.38);
  z-index: 1;
}
.enquiry-modal-content {
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 40px 0 rgba(2,81,90,0.18);
  display: flex;
  flex-direction: column;
  min-width: 320px;
  max-width: 95vw;
  width: 340px;
  padding: 1.5rem 1.2rem 1.2rem 1.2rem;
  align-items: stretch;
}
.enquiry-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  font-size: 1.3rem;
  border-radius: 50%;
  background: #f3f6fa;
  color: #222;
  border: none;
  box-shadow: 0 1px 4px rgba(2,81,90,0.08);
  cursor: pointer;
  z-index: 3;
}
.enquiry-modal-close:hover {
  background: #693CD6;
  color: #fff;
}
.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.enquiry-form h3 {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.2rem;
  color: #1a1a2e;
}
.enquiry-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.enquiry-form label {
  font-size: 0.97rem;
  color: #444;
  font-weight: 500;
  margin-bottom: 0.1rem;
}
.enquiry-form input {
  font-size: 0.97rem;
  padding: 0.5em 0.8em;
  border: 1.2px solid #e3e6ee;
  border-radius: 10px;
  background: #f8fafc;
  color: #1a1a2e;
  transition: border-color 0.18s, box-shadow 0.18s;
  box-shadow: 0 1px 2px rgba(2,81,90,0.03);
}
.enquiry-form input:focus {
  border-color: #693CD6;
  box-shadow: 0 0 0 2px #e6e0fa;
  outline: none;
}
.enquiry-form .btn-gradient {
  width: 100%;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 0.7em 0;
  border-radius: 1.3em;
  background: linear-gradient(90deg, #02515A 0%, #693CD6 100%);
  color: #fff;
  box-shadow: 0 2px 8px 0 rgba(2,81,90,0.10);
  margin-top: 0.5rem;
  border: none;
  transition: background 0.18s, box-shadow 0.18s;
  cursor: pointer;
}
.enquiry-form .btn-gradient:hover, .enquiry-form .btn-gradient:focus {
  background: linear-gradient(90deg, #693CD6 0%, #02515A 100%);
  box-shadow: 0 4px 18px 0 rgba(2,81,90,0.13);
}
@media (max-width: 500px) {
  .enquiry-modal-content {
    min-width: 0;
    max-width: 99vw;
    width: 98vw;
    border-radius: 12px;
    padding: 1rem 0.5rem;
  }
}

#custom-cursor, #custom-cursor-follower {
  pointer-events: none !important;
}

@media (max-width: 600px) {
  #sticky-join-bar > div {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 0.7rem !important;
    padding: 1rem 0.5rem !important;
    overflow-x: auto;
  }
  #sticky-join-bar .btn-gradient {
    margin-left: 0 !important;
    margin-top: 0.5rem !important;
    width: 100%;
    max-width: 320px;
    display: block;
  }
  #sticky-join-bar > div > div {
    width: auto !important;
    max-width: 100%;
    display: block;
  }
}
.tool-box {
  width: 180px;
  height: 180px;
  background: #fff;
  border-radius: 16px;
  border: 2px dashed #02515A;
  box-shadow: 0 4px 16px rgba(2, 81, 90, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1rem;
  transition: all 0.3s ease;
}

.tool-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(2, 81, 90, 0.2);
}

.tool-box img {
  max-height: 50px;
  max-width: 70px;
  margin-bottom: 0.75rem;
  object-fit: contain;
}

.tool-box span {
  font-size: 1rem;
  font-weight: 600;
  color: #02515A;
}


.skills-section {
  background: linear-gradient(90deg, #fafbfc 0%, #f3f0ff 100%);
  padding: 3rem 1rem;
}

.skills-section h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  color: #02515A;
  font-family: 'Poppins', sans-serif;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.skill-box {
  background: #fff;
  border-radius: 12px;
  border: 2px dashed #693CD6;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  padding: 1.5rem;
  text-align: center;
  height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.skill-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.skill-box img {
  height: 50px;
  width: 50px;
  margin: 0 auto 0.8rem auto;
  display: block;
}

.skill-box span {
  font-weight: 600;
  font-size: 0.95rem;
  color: #02515A;
  line-height: 1.3;
}

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

@media (max-width: 576px) {
  .skills-grid {
    grid-template-columns: 1fr;
  }
}


.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.5rem 0;
}

.tools-title {
  text-align: center;
  margin-bottom: 2rem;
}

.tools-grid {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: nowrap;
}

.tool-box {
  width: 200px;
  height: 200px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(2, 81, 90, 0.08);
  border: 2px dashed #02515A;
  background-clip: padding-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tool-box img {
  height: 50px;
  width: auto;
  margin-bottom: 1rem;
}

.tool-box span {
  font-size: 1.05rem;
  font-weight: 600;
  color: #02515A;
}


/* === Sticky Right Social Icons === */
.sticky-social-icons {
  position: fixed;
  top: 200px;
  right: 10px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-size: 60%;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.2s ease;
  box-shadow: none;
  background-color: transparent;
  border: none;
  outline: none;
  filter: none;
}

.social-icon:hover {
  transform: scale(1.1);
}

/* Brand Icons (with background-color + icon) */
.social-icon.instagram {
  background-color: transparent;
  background-image: url('../assets/instagram.png');
  background-size: contain;
}
.social-icon.linkedin {
  background-color: transparent;
  background-image: url('../assets/linkedin-logo.svg');
  background-size: contain;
}
.social-icon.youtube {
  background-color: transparent;
  background-image: url('../assets/youtube-logo.svg');
  background-size: contain;
}
@media (max-width: 767px) {
  .features {
    padding: 1rem 0;
  }

.courses {
    padding: 0rem 0;
}
.about {
    padding: 0rem 0;
}
.testimonials {
    padding: 0rem 0;
}
.contact {
    padding: 0rem 0;
}
}
@media (max-width: 767px) {
  .container {
    text-align: center;          
    display: flex;
    flex-direction: column;
    align-items: center;      
    justify-content: center;     
    padding: 1rem;                
  }
}
@media (max-width: 600px) {
  .hero-img-main {
    display: block;
    width: 100%;
    max-width: 100%;
    min-height: 120px;
    margin-left: auto;
    margin-right: auto;
  }
}

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

@media (max-width: 600px) {
  .tools-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (min-width: 993px) {
  .courses-card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.2rem;
    /* justify-items: start; */
    /* justify-content: flex-start; */
  }
  /* .courses-card-grid:only-child, .courses-card-grid > *:only-child {
    grid-template-columns: 1fr !important;
    justify-items: start !important;
    justify-content: flex-start !important;
  } */
}

@media (max-width: 992px) {
  .courses-card-grid {
    grid-template-columns: 1fr !important;
  }
}

.courses-card-grid {
  display: grid;
  /* grid-template-columns: 1fr; */
  justify-items: start !important;
  justify-content: flex-start !important;
  align-items: start !important;
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.courses-card-bg {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.courses-card-grid {
  justify-items: start !important;
  justify-content: flex-start !important;
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

@media (max-width: 600px) {
  .hero-image {
    margin-left: auto !important;
    margin-right: auto !important;
    align-items: center !important;
    display: flex !important;
    justify-content: center !important;
  }
}


/* Mobile Responsive CSS for What We Do Section */
@media (max-width: 767px) {
  .about-what-we-do .container {
    display: block !important;
    padding: 0 5% !important; /* 90% content width as requested */
  }
  
  .about-what-we-do .container > div {
    flex-direction: column !important;
    gap: 1.5rem !important;
  }
  
  .about-what-we-do .container > div > div {
    flex-direction: column !important;
    gap: 1.5rem !important;
  }
  
  .about-what-we-do .container > div > div > div:first-child {
    flex: none !important;
  }
  
  .about-what-we-do .container > div > div > div:last-child {
    flex: none !important;
    display: flex;
    justify-content: center;
  }
  
  .about-what-we-do img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .about-what-we-do h3 {
    font-size: 1.8rem !important;
    text-align: center;
    margin-bottom: 1rem !important;
  }
  
  .about-what-we-do p {
    font-size: 1rem !important;
    text-align: center;
    margin-bottom: 1rem !important;
  }
  
  .about-what-we-do ul {
    margin-bottom: 1rem !important;
  }
  
  .about-what-we-do ul li {
    font-size: 0.95rem !important;
    margin-bottom: 0.5rem !important;
  }
  
  .about-what-we-do .btn {
    display: block;
    text-align: center;
    margin: 1.5rem auto 0 auto !important;
    width: fit-content;
  }
}

