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

:root {
    --primary-orange: #f26f21;
    --accent-peach: #ff8c69;
    --accent-blue: #3a47d5;
    --text-white: #ffffff;
    --text-gray: #777777;
    --text-dark: #1a1a1a;
    --text-muted: #555555;
    --text-gray-blue: #8a9fc0;
    --bg-black: #0a0a0a;
    --bg-white: #ffffff;
    --bg-light: #f3f4f6;
    --blue-dark: #1e3a8a;
    --whatsapp-green: #25d366;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body,
input,
button,
textarea,
select {
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-black);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* --- Utility Classes --- */
.text-orange {
    color: var(--primary-orange);
}

.text-peach {
    color: var(--accent-peach);
}

.text-white {
    color: var(--text-white);
}

.text-blue {
    color: var(--accent-blue);
}

.text-blue-dark {
    color: var(--blue-dark);
}

.text-dark {
    color: var(--text-dark);
}

.text-gray-blue {
    color: var(--text-gray-blue);
}

/* Font Weights */
.fw-light {
    font-weight: 300;
}

.fw-regular {
    font-weight: 400;
}

.fw-medium {
    font-weight: 500;
}

.fw-semibold {
    font-weight: 600;
}

.fw-bold {
    font-weight: 700;
}

.fw-extra-bold {
    font-weight: 800;
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.logo-img {
    height: 35px;
    width: auto;
    display: block;
}

.logo-img-footer {
    height: 45px;
    width: auto;
    display: block;
    margin-bottom: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 1px;
}

.logo-icon {
    position: relative;
    width: 25px;
    height: 25px;
}

.logo-box {
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary-orange);
    border-radius: 4px;
}

.logo-inner {
    position: absolute;
    top: 50%;
    right: -2px;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--primary-orange);
    border-radius: 2px;
}

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

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition);
    color: var(--text-white);
    opacity: 0.8;
}

.nav-links a:hover,
.nav-links a.active {
    opacity: 1;
}

.nav-links a.active {
    background: var(--primary-orange);
    padding: 8px 18px;
    border-radius: 5px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 30px;
    height: 2px;
    background: var(--text-white);
    transition: var(--transition);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    background-image: url('https://images.unsplash.com/photo-1550751827-4bd374c3f58b?auto=format&fit=crop&q=80&w=2070');
    /* Placeholder or pattern */
    background-size: cover;
    background-position: center;
}

/* Recreating the geometric wireframe look from screenshot */
.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.9) 100%),
        url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M0 0 L100 100 M100 0 L0 100" stroke="white" stroke-width="0.1" fill="none" opacity="0.2"/></svg>');
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.1)), url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
}

/* Add geometric wireframes like in the photo */
.hero::after {
    content: '';
    position: absolute;
    right: 5%;
    top: 20%;
    width: 400px;
    height: 400px;
    background-image: url('https://cdn.pixabay.com/photo/2016/11/19/22/52/grid-1841551_1280.png');
    /* Wireframe pattern */
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.15;
    pointer-events: none;
}

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

.hero-content {
    /* max-width: 850px; */
}

.hero-title {
    font-size: 72px;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: 58px;
    font-weight: 500;
    margin-bottom: 30px;
}

.hero-description {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 550px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    align-items: center;
}

.btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

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

.btn-secondary {
    color: white;
    font-weight: 500;
}

.btn-icon {
    width: 35px;
    height: 35px;
    background: rgba(0, 0, 0, 1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.btn-secondary .btn-icon {
    background: rgba(255, 255, 255, 0.1);
}

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

.btn-primary:hover {
    box-shadow: 0 10px 20px rgba(242, 111, 33, 0.3);
}

/* --- Fixed Elements --- */
.whatsapp-fixed {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--whatsapp-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    z-index: 1001;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

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

/* Scroll Down Animated Indicator */
.scroll-down-wrapper {
    position: fixed;
    bottom: 30px;
    right: 120px;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    pointer-events: none;
}

.scroll-text {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: rotate 10s linear infinite;
    fill: var(--text-gray);
    font-weight: bold;
    letter-spacing: 2px;
}

.scroll-arrow {
    background: var(--primary-orange);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    font-size: 16px;
    border: 4px solid var(--bg-black);
}

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

    to {
        transform: rotate(360deg);
    }
}

/* --- Responsive Media Queries --- */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 56px;
    }

    .hero-subtitle {
        font-size: 46px;
    }

    .nav-links {
        gap: 15px;
    }

    .nav-links a {
        font-size: 14px;
    }
}

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

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--bg-black);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.5s;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 34px;
    }

    .hero-btns {
        flex-direction: column;
        align-items: flex-start;
    }

    .scroll-down-wrapper {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 28px;
    }

    .hero-description {
        font-size: 16px;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}

/* --- About Section --- */
.about {
    position: relative;
    background-color: var(--bg-white);
    padding: 120px 0;
    overflow: hidden;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-content {
    width: 100%;
}

.section-title {
    font-size: 44px;
    font-weight: 500;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 40px;
}

.about-text p {
    font-size: 17px;
    color: var(--text-gray);
    margin-bottom: 25px;
    font-weight: 400;
    line-height: 1.7;
}

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

.about-image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 4/5;
    z-index: 3;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

/* Logo badge on image */
.about-logo-badge {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.about-logo-badge .badge-ai {
    background: #333;
    color: white;
    font-weight: 800;
    padding: 5px 8px;
    border-radius: 5px;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 2px;
}

.about-logo-badge .badge-ai span {
    color: var(--primary-orange);
}

/* Concentric background circles */
.about-bg-circles {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 800px;
    height: 800px;
    z-index: 1;
    opacity: 0.4;
    pointer-events: none;
}

.about-bg-circles div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid #e0e0e0;
    border-radius: 50%;
}

.circle-1 {
    width: 200px;
    height: 200px;
}

.circle-2 {
    width: 400px;
    height: 400px;
}

.circle-3 {
    width: 600px;
    height: 600px;
}

.circle-4 {
    width: 800px;
    height: 800px;
}

.about-grid-line-v {
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background: #e0e0e0;
    z-index: 1;
}

.about-grid-line-h {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #e0e0e0;
    z-index: 1;
}

@media (max-width: 991px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .section-title {
        font-size: 48px;
    }

    .about-bg-circles {
        right: 50%;
        transform: translate(50%, -50%);
    }
}

/* --- Approach Section --- */
.approach {
    background: var(--bg-black);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

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

.approach-header {
    margin-bottom: 80px;
}

.approach-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.approach-pill {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
}

.pill-logo {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 800;
    font-size: 18px;
}

.pill-logo i {
    color: var(--primary-orange);
}

.pill-divider {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
}

.pill-name {
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 14px;
    opacity: 0.8;
}

.logo-img-pill {
    height: 25px;
    width: auto;
}

.pill-members {
    display: flex;
    margin-left: 20px;
}

.pill-members img {
    height: 50px;
    width: 50px;
    object-fit: cover;
    border-radius: 50%;
    /* Soft corners as requested earlier */
    border: 3px solid #000;
    margin-left: -15px;
    /* Overlap effect */
    transition: transform 0.3s ease;
}

.pill-members img:first-child {
    margin-left: 0;
}

.pill-members img:hover {
    transform: translateY(-5px);
    z-index: 10;
}

.approach-title {
    font-size: 74px;
    font-weight: 500;
    line-height: 1;
    color: var(--text-white);
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.approach-card {
    padding: 50px 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 350px;
    transition: var(--transition);
}

.approach-card:last-child {
    border-right: none;
}

.approach-card:hover {
    border-top: 4px solid var(--primary-orange);
    margin-top: -1px;
}

.approach-card:hover .footer-btn {
    background: var(--primary-orange);
    transform: scale(1.15);
    box-shadow: 0 8px 20px rgba(242, 111, 33, 0.4);
}

.card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.card-text {
    font-size: 15px;
    color: #999;
    line-height: 1.6;
}

.card-footer {
    margin-top: 40px;
}

.footer-dot {
    width: 6px;
    height: 6px;
    background: #333;
    border-radius: 50%;
}

.footer-btn {
    width: 40px;
    height: 40px;
    background: var(--primary-orange);
    color: black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

/* Geometric Decorative Elements */
.geom-wireframe {
    position: absolute;
    width: 600px;
    height: 600px;
    opacity: 0.15;
    pointer-events: none;
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M50 0 L93.3 25 L93.3 75 L50 100 L6.7 75 L6.7 25 Z" stroke="white" stroke-width="0.5" fill="none"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
}

.geom-top-left {
    top: -100px;
    left: -200px;
    transform: rotate(15deg);
}

.geom-bottom-right {
    bottom: -100px;
    right: -100px;
    transform: rotate(-15deg);
}

@media (max-width: 1200px) {
    .approach-title {
        font-size: 64px;
    }
}

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

    .approach-card {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .approach-card:nth-child(2) {
        border-right: none;
    }
}

@media (max-width: 768px) {
    .approach-top-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .approach-title {
        font-size: 48px;
    }

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

    .approach-card {
        border-right: none;
    }
}

/* --- Courses Section --- */
.courses {
    background: var(--bg-light);
    padding: 100px 0;
}

.courses-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.courses-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
}

.view-all {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    color: var(--text-dark);
    opacity: 0.8;
}

.circle-arrow {
    width: 35px;
    height: 35px;
    background: #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: var(--transition);
}

.view-all:hover .circle-arrow {
    background: var(--primary-orange);
    color: white;
}

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

.course-card {
    background: var(--bg-white);
    padding: 50px 30px;
    border-radius: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    min-height: 450px;
    z-index: 1;
}

/* Orange sliding background overlay */
.course-card::before {
    content: '';
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-orange);
    transition: var(--transition);
    z-index: -1;
}

.course-card:hover::before {
    bottom: 0;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    color: white;
}

.course-icon-group {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.course-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    background: #f9fafb;
    transition: var(--transition);
}

.course-card:hover .course-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.icon-php {
    color: #f26f21;
    background: #fff5f0;
}

.icon-node {
    color: #539e43;
    background: #f0fdf4;
}

.icon-react {
    color: #61dafb;
    background: #f0f9ff;
}

.icon-react-blue {
    color: #007aff;
    background: #f0f7ff;
}

.icon-ba {
    color: #f26f21;
    background: #fff5f0;
    font-weight: 700;
    font-size: 24px;
}

.icon-flutter {
    color: #02569b;
    background: #f0f7ff;
}

.icon-marketing {
    color: #ff5722;
    background: #fff3e0;
}

.icon-sales {
    color: #4caf50;
    background: #e8f5e9;
}

.icon-design {
    color: #9c27b0;
    background: #f3e5f5;
}

.icon-analytics {
    color: #2196f3;
    background: #e3f2fd;
}

.icon-ai {
    color: #673ab7;
    background: #ede7f6;
}

/* Hide the more badge as requested */
.icon-more {
    display: none;
}

.course-main-content {
    transition: var(--transition);
}

.course-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
    transition: var(--transition);
}

.course-card:hover .course-name {
    color: white;
}

.course-desc {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 40px;
    transition: var(--transition);
}

.course-card:hover .course-desc {
    color: white;
    opacity: 0.9;
}

.read-more {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    color: var(--text-dark);
    transition: var(--transition);
}

.course-card:hover .read-more {
    color: white;
}

.circle-arrow-sm {
    width: 35px;
    height: 35px;
    background: #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: var(--transition);
}

.course-card:hover .circle-arrow-sm {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Remove the sliding lower block as the whole card now turns orange */
.card-highlight {
    display: none;
}

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

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

    .courses-title {
        font-size: 28px;
    }
}

/* --- Testimonials Section --- */
.testimonials {
    background: #f8f8f8;
    padding: 100px 0;
    text-align: center;
}

.testimonials-header {
    margin-bottom: 60px;
}

.testimonials-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
}

.testimonials-subtitle {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: -10px;
}

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

.avatar-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.avatar-item {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    opacity: 0.5;
    transition: var(--transition);
    background: #e0e0e0;
    margin: 15px auto;
}

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

.swiper-slide-active .avatar-item {
    width: 90px;
    height: 90px;
    opacity: 1;
    border: 3px solid var(--primary-orange);
    padding: 3px;
    margin: 0 auto;
}

.avatar-item.placeholder {
    background: #eeeeee;
    opacity: 0.3;
}

.testimonial-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.quote-mark {
    font-size: 40px;
    color: var(--primary-orange);
    margin-bottom: 20px;
}

.student-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.student-role {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-gray);
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.6;
    color: #444;
    font-weight: 400;
}

.testimonials-navigation {
    position: absolute;
    top: 50%;
    left: -60px;
    width: calc(100% + 120px);
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 10;
}

.test-nav-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bbb;
    cursor: pointer;
    pointer-events: auto;
    transition: var(--transition);
}

.test-nav-btn:hover {
    background: var(--primary-orange);
    color: white;
    border-color: var(--primary-orange);
}

.test-nav-btn.swiper-button-disabled {
    opacity: 0.3;
    pointer-events: none;
    background: #f0f0f0;
}

.test-nav-btn.next.active {
    background: #e0e0e0;
    color: var(--text-dark);
}

@media (max-width: 1100px) {
    .testimonials-navigation {
        left: 0;
        width: 100%;
        position: static;
        transform: none;
        margin-top: 40px;
        justify-content: center;
        gap: 20px;
    }
}

@media (max-width: 768px) {

    .testimonials-title,
    .testimonials-subtitle {
        font-size: 32px;
    }

    .avatar-wrapper {
        gap: 10px;
    }

    .avatar-item {
        width: 45px;
        height: 45px;
    }

    .avatar-item.active {
        width: 65px;
        height: 65px;
    }

    .testimonial-text {
        font-size: 16px;
    }

    .testimonials-navigation {
        position: static;
        transform: none;
        margin-top: 40px;
        justify-content: center;
        gap: 20px;
    }
}

/* --- Footer Section --- */
body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.footer {
  background: #0d0d0d;
  color: #ccc;
  padding: 50px 20px 20px;
}

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

.footer-grid {
  display: flex;
  flex : flex-wrap;
  justify-content : space-around;
  gap: 50px;
  padding-left : 55px
}
.footer-col { 
    width : 100%;
}
.footer-col h3 {
  color: #fff;
  margin-bottom: 15px;
  position: relative;
}

.footer-col h3::after {
  content: "";
  width: 40px;
  height: 3px;
  background: orange;
  position: absolute;
  left: 0;
  bottom: -5px;
}

.logo {
  color: #fff;
}

.desc {
  font-size: 14px;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin: 10px 0;
  cursor: pointer;
  transition: 0.3s;
}

.footer-col ul li:hover {
  color: orange;
  transform: translateX(5px);
}

.footer-col ul li a {
  text-decoration: none;
  color: #ccc;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: orange;
  transform: translateX(5px);
}

.social a {
  color: #ccc;
  margin-right: 15px;
  font-size: 26px;
  transition: 0.3s;
}

.social a:hover {
  color: orange;
  transform: scale(1.2);
}

.info p {
  margin: 8px 0;
}

.whatsapp-btn {
  margin-top: 10px;
  padding: 10px;
  background: transparent;
  border: 1px solid green;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
}

.whatsapp-btn:hover {
  background: green;
}

.callback-btn {
  margin-top: 15px;
  padding: 10px;
  border: 1px dashed orange;
  background: transparent;
  color: orange;
  max-width : 200px;
  border-radius: 5px;
  cursor: pointer;
}

.callback-btn:hover {
  background: orange;
  color: #000;
}

.social {
  margin-top: 15px;
}

.social i {
  margin-right: 10px;
  cursor: pointer;
  font-size: 26px;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #222;
  padding-top: 15px;
}

.footer-bottom span {
  color: orange;
}

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

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

/* --- About Page Specific Styles (New Hero) --- */
.about-hero {
    background: #ffffff;
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
    color: var(--text-dark);
}

.about-hero-top {
    margin-bottom: 100px;
    /* Large space between title and text */
    position: relative;
    z-index: 5;
}

.hero-breadcrumbs {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 40px;
}

.hero-main-title {
    font-size: 84px;
    font-weight: 500;
    line-height: 0.9;
    color: #333;
    letter-spacing: -2px;
}

.dectac-gradient {
    background: linear-gradient(to right, #f26f21, #3a47d5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-us-scroll {
    position: absolute;
    bottom: -120px;
    left: 0;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #999;
}

.scroll-arrow {
    width: 32px;
    height: 32px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.about-hero-bottom {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 100px;
    align-items: flex-end;
    position: relative;
    z-index: 5;
}

.hero-sub-title {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
    color: #333;
}

.hero-sub-title .text-peach {
    color: #f26f21;
}

.provider-text {
    display: block;
    color: #8a9fc0;
    font-weight: 400;
}

.hero-para {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

/* Wireframe Graphic Positioning */
.wireframe-graphic {
    position: absolute;
    top: 50px;
    right: 10%;
    width: 450px;
    opacity: 0.8;
    z-index: 1;
}

@media (max-width: 1200px) {
    .hero-main-title {
        font-size: 64px;
    }

    .hero-sub-title {
        font-size: 36px;
    }
}

@media (max-width: 991px) {
    .about-hero-bottom {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-hero-top {
        margin-bottom: 120px;
    }

    .wireframe-graphic {
        width: 300px;
        top: 20%;
        right: -50px;
    }
}

.section-padding {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.image-wrapper-decorative {
    position: relative;
}

.image-wrapper-decorative img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--primary-orange);
    color: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(242, 111, 33, 0.4);
    animation: float 4s ease-in-out infinite;
}

.experience-badge .num {
    display: block;
    font-size: 32px;
    font-weight: 800;
}

.experience-badge .txt {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lead-text {
    font-size: 20px;
    font-weight: 500;
    color: var(--accent-peach);
    margin-bottom: 25px;
}

.main-text {
    color: #999;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.about-stats-mini {
    display: flex;
    gap: 40px;
    border-top: 1px solid #333;
    padding-top: 40px;
}

.stat-num {
    font-size: 28px;
    font-weight: 800;
    color: white;
    margin-bottom: 5px;
}

.stat-num-dark {
    color: var(--text-dark);
}

.stat-label {
    font-size: 13px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mission Vision */
.mission-vision {
    background: #fdfdfd;
}

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

.mv-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    color: var(--text-dark);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

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

.mv-icon {
    width: 60px;
    height: 60px;
    background: #fff5f0;
    color: var(--primary-orange);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 25px;
}

.mv-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.mv-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

/* --- Modern Mission & Vision Section --- */
.mission-vision-modern {
    background: #fff;
    overflow: hidden;
}

.mv-flex-container {
    display: flex;
    min-height: 500px;
}

.mv-image-side {
    flex: 1;
    overflow: hidden;
}

.mv-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.mv-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-overlay-logo {
    position: absolute;
    top: 15%;
    left: 24%;
    width: 380px;
    /* Made wider to cover the "AC" part */
    height: 160px;
    /* Stronger smudge to totally kill the old pixels */
    backdrop-filter: blur(25px) brightness(1.05) contrast(0.85);
    background: rgba(253, 253, 253, 0.4);
    box-shadow: 0 0 60px 40px rgba(253, 253, 253, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: perspective(1000px) rotateY(-8deg);
    z-index: 5;
    pointer-events: none;
}

.image-overlay-logo img {
    width: 85%;
    height: auto;
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.1));
    /* Subtle shadow to look like a real decal */
}

.mv-content-side {
    flex: 1;
    display: flex;
}

.mv-column {
    flex: 1;
    background: var(--primary-orange);
    padding: 60px 40px;
    color: white;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vision-col {
    background: #f26011;
    /* Slightly different orange for depth */
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.bg-label {
    position: absolute;
    top: 20px;
    left: 40px;
    font-size: 60px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.08);
    pointer-events: none;
    line-height: 1;
}

.mv-column h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.mv-column p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 2;
}

@media (max-width: 1100px) {
    .mv-flex-container {
        flex-direction: column;
    }

    .mv-image-side {
        height: 400px;
    }

    .mv-content-side {
        flex-direction: column;
    }

    .mv-column {
        padding: 80px 40px;
    }
}

/* --- Director's Message Section --- */
.director-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 50px;
    align-items: stretch;
}

.director-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.message-card {
    background: #f7f7f7;
    padding: 60px;
    border-radius: 30px;
    border-left: 5px solid var(--primary-orange);
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.message-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.message-body p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.director-signature {
    border-top: 1px solid #ddd;
    padding-top: 20px;
}

.sig-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-orange) !important;
    margin-bottom: 2px !important;
}

.sig-title {
    font-size: 14px;
    color: #888;
}

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

    .message-card {
        padding: 40px;
    }
}

/* --- Success Stories Section --- */
.success-stories {
    background: #fdfdfd;
}

.section-title-alt {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 50px;
    color: #333;
}

.story-gradient {
    background: linear-gradient(to right, #f26f21, #3a47d5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.success-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.success-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}

.success-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.success-img {
    height: 300px;
    background: #e5e5e5;
    position: relative;
    overflow: hidden;
}

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

.silhouette-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 150px;
    color: #ccc;
    background: #eee;
}

.success-info {
    padding: 25px 20px;
    text-align: center;
}

.success-info h3 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.success-info p {
    font-size: 13px;
    color: #888;
}

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

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

/* --- About CTA Section --- */
.about-cta {
    background: #f4f4f4;
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.about-cta .container {
    position: relative;
}

.cta-title {
    font-size: 52px;
    font-weight: 400;
    line-height: 1.2;
    color: #000;
    margin-bottom: 50px;
    letter-spacing: -0.5px;
}

.fw-bold {
    font-weight: 700;
}

.fw-light {
    font-weight: 300;
    opacity: 0.8;
}

.cta-btn-wrapper {
    display: flex;
    justify-content: center;
}

.cta-btn-main {
    background: #ff7c38;
    /* Vibrant orange from image */
    color: #000;
    padding: 15px 15px 15px 50px;
    border-radius: 60px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    display: inline-flex;
    align-items: center;
    gap: 25px;
    transition: var(--transition);
}

.cta-btn-main:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 124, 56, 0.3);
}

.cta-icon-circle {
    width: 45px;
    height: 45px;
    background: #000;
    color: #ff7c38;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.cta-indicator-dot {
    position: absolute;
    left: 10%;
    top: 30%;
    width: 15px;
    height: 15px;
    background: #e0e0e0;
    border-radius: 50%;
}

/* --- Success Stories Section --- */

.cta-btn-main:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(242, 111, 33, 0.4);
}

.cta-btn-main:hover .cta-btn-icon {
    transform: rotate(-45deg);
}

@media (max-width: 768px) {
    .cta-title {
        font-size: 32px;
    }
}

/* Navbar Dark Theme (for light pages) */
.navbar-dark-theme {
    background: #000 !important;
    border-bottom: 1px solid #222;
}

.navbar-dark-theme .logo span,
.navbar-dark-theme .nav-links a {
    color: white;
}

.navbar-dark-theme .logo-icon {
    border-color: #444;
}

.navbar-dark-theme .hamburger span {
    background: white;
}

/* --- Reveal Animations --- */
.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-left {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.stagger-1 {
    transition-delay: 0.1s;
}

.stagger-2 {
    transition-delay: 0.2s;
}

.stagger-3 {
    transition-delay: 0.3s;
}

.stagger-4 {
    transition-delay: 0.4s;
}

/* --- Modern Course Page Styles --- */
.course-page-modern {
    background-color: var(--bg-black);
    color: var(--text-white);
}

.course-main {
    position: relative;
    padding: 180px 0 100px;
}

.course-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    padding: 0 40px;
}

.side-branding {
    width: 300px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.vertical-text-outline {
    position: sticky;
    top: 180px;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 200px;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(242, 111, 33, 0.4);
    line-height: 1;
    letter-spacing: 20px;
    opacity: 0.8;
}

.course-content-grid {
    flex-grow: 1;
    position: relative;
    z-index: 5;
}

.course-header-text {
    margin-bottom: 80px;
}

.breadcrumb-nav {
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-weight: 600;
}

.breadcrumb-nav a {
    color: var(--text-gray);
    transition: var(--transition);
}

.breadcrumb-nav a:hover {
    color: var(--text-white);
}

.main-title {
    font-size: 82px;
    font-weight: 400;
    line-height: 1;
}

.courses-list-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px 80px;
}

.course-item {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.item-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
}

.item-desc {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
    max-width: 450px;
}

.module-list {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
}

.module-list li {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 18px 0;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: var(--text-white);
    opacity: 0.9;
    text-transform: uppercase;
    transition: var(--transition);
}

.module-list li:hover {
    color: var(--primary-orange);
    padding-left: 10px;
}

.read-more-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-orange);
    letter-spacing: 2px;
    margin-top: 20px;
    transition: var(--transition);
}

.arrow-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: var(--transition);
}

.read-more-btn:hover .arrow-circle {
    background: var(--primary-orange);
    color: var(--bg-black);
    transform: translateX(5px);
}

@media (max-width: 1400px) {
    .vertical-text-outline {
        font-size: 150px;
    }

    .side-branding {
        width: 200px;
    }
}

@media (max-width: 1100px) {
    .courses-list-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .side-branding {
        display: none;
    }

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

@media (max-width: 768px) {
    .main-title {
        font-size: 52px;
    }
}

/* --- Impact CTA Section --- */
.impact-cta {
    background-color: #f7f7f7;
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.decorative-dot-cta {
    position: absolute;
    width: 15px;
    height: 15px;
    background-color: #ddd;
    border-radius: 50%;
    top: 40px;
    left: 40%;
    opacity: 0.6;
}

.impact-title {
    font-size: 64px;
    font-weight: 500;
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: 50px;
    letter-spacing: -2px;
}

.impact-title span.fw-light {
    font-weight: 400;
    opacity: 0.8;
}

.text-orange-impact {
    color: #f26f21;
}

.gradient-text-impact {
    background: linear-gradient(to right, #666, #3a47d5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 300;
}


.gradient-text {
    background: linear-gradient(90deg, #ff7e5f, #3a47d5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}

.cta-btn-impact {
    display: inline-flex;
    align-items: center;
    background-color: #f26f21;
    color: #000;
    padding: 20px 45px;
    border-radius: 60px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    gap: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
    margin-top: 10px;
}

.cta-icon-black {
    background-color: #000;
    color: var(--primary-orange);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

@media (max-width: 768px) {
    .impact-title {
        font-size: 38px;
    }
}

/* --- Contact Page Styles --- */
.contact-page {
    background-color: #ffffff;
}

.navbar-black {
    background: rgba(0, 0, 0, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: 15px 0 !important;
}

.navbar-black .nav-links a {
    color: #ffffff !important;
    opacity: 0.8 !important;
}

.navbar-black .nav-links a:hover,
.navbar-black .nav-links a.active {
    opacity: 1 !important;
}

.navbar-black .logo {
    color: #ffffff !important;
}

.contact-hero {
    padding: 150px 0 60px;
    background-color: #ffffff;
}

.breadcrumb-nav {
    font-size: 13px;
    font-weight: 500;
    color: #a0a0a0;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.breadcrumb-nav span {
    color: #1a1a1a;
}

.contact-main-title {
    font-size: 82px;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0 0 40px;
    letter-spacing: -3px;
}

.contact-visuals {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.indicator-dot-small {
    width: 15px;
    height: 15px;
    background-color: #eeeeee;
    border-radius: 50%;
}

.send-message-hint {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 13px;
    font-weight: 500;
    color: #000;
    letter-spacing: 2px;
}

.icon-circle-down {
    width: 45px;
    height: 45px;
    background-color: #eeeeee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #000;
}

.contact-form-section {
    padding: 80px 0 150px;
}

.modern-contact-form {
    max-width: 1100px;
    margin: 0 auto;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-group.full-width {
    grid-column: 1 / span 2;
    margin-top: 60px;
}

.form-group label {
    font-size: 12px;
    font-weight: 500;
    color: #a0a0a0;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    border: none;
    border-bottom: 1.5px solid #eeeeee;
    padding: 15px 0;
    font-size: 18px;
    font-family: inherit;
    background: transparent;
    transition: var(--transition);
    color: #000;
    font-weight: 500;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--primary-orange);
}

.form-group select {
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 24 24"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right center;
    cursor: pointer;
}

@media (max-width: 991px) {
    .contact-main-title {
        font-size: 62px;
    }

    .form-grid {
        gap: 60px 80px;
    }
}

@media (max-width: 768px) {
    .contact-main-title {
        font-size: 44px;
        letter-spacing: -1px;
    }

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

    .form-group.full-width {
        grid-column: 1;
    }

    .contact-hero {
        padding: 120px 0 40px;
    }
}

.textarea-group {
    margin-top: 60px !important;
}

.textarea-group label {
    display: flex;
    align-items: center;
    gap: 15px;
}

.label-dot {
    width: 12px;
    height: 12px;
    background-color: #dddddd;
    border-radius: 50%;
    display: inline-block;
}

.form-submit-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
}

.privacy-notice {
    font-size: 13px;
    color: #888;
    font-weight: 400;
}

.form-submit-btn {
    display: inline-flex;
    align-items: center;
    background-color: #ff7c38;
    color: #1a1a1a;
    padding: 15px 15px 15px 50px;
    border-radius: 60px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    gap: 30px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.form-submit-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 124, 56, 0.3);
}

.icon-circle-arrow {
    width: 45px;
    height: 45px;
    background-color: #000;
    color: #ff7c38;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

@media (max-width: 991px) {
    .form-submit-row {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
}

/* --- Map Section --- */
.container-full {
    width: 100%;
}

.contact-map-section {
    padding: 0;
    margin-bottom: -5px;
}

.map-wrapper {
    width: 100%;
    line-height: 0;
}

.map-wrapper iframe {
    filter: grayscale(0.2) contrast(1.1);
    transition: var(--transition);
}

.map-wrapper iframe:hover {
    filter: grayscale(0);
}

@media (max-width: 768px) {
    .map-wrapper iframe {
        height: 350px;
    }
}


.program {
    padding: 80px 20px;
    background: #000;
    color: #fff;
    text-align: center;
}

.program .container {
    max-width: 1200px;
    margin: auto;
}

/* Title */
.program .title {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 20px;
}

.program .title span {
    background: linear-gradient(90deg, #ff7a18, #ff3cac, #3f5efb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Subtitle */
.program .subtitle {
    color: #aaa;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

/* Cards Grid */
.program .cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid #222;
    border-left: 1px solid #222;
}

.program .card {
    padding: 30px;
    border-right: 1px solid #222;
    border-bottom: 1px solid #222;
    text-align: left;
    font-weight: 500;
    transition: 0.3s ease;
}

.program .card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

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

@media (max-width: 600px) {
    .program .cards {
        grid-template-columns: 1fr;
    }

    .program .title {
        font-size: 30px;
    }
}

/* --- Course Detail Page --- */
.course-detail-page {
    background-color: var(--bg-white);
    color: var(--text-dark);
}

.course-detail-hero {
    position: relative;
    padding: 160px 0 100px;
    background-color: #fff;
    overflow: hidden;
}

.hero-wireframe {
    position: absolute;
    top: -50px;
    right: -100px;
    width: 600px;
    opacity: 0.15;
    pointer-events: none;
}

.breadcrumb-detail {
    margin-bottom: 40px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #888;
}

.breadcrumb-detail a {
    color: #888;
    transition: var(--transition);
}

.breadcrumb-detail a:hover {
    color: var(--primary-orange);
}

.course-title-main {
    font-size: 64px;
    line-height: 1.1;
    font-weight: 500;
    margin-bottom: 10px;
}

.course-subtitle-main {
    font-size: 54px;
    font-weight: 300;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 20px;
}

.dot-decor {
    width: 12px;
    height: 12px;
    background: #e0e0e0;
    border-radius: 50%;
    display: inline-block;
}

.about-course-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 60px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn-arrow-down {
    width: 40px;
    height: 40px;
    background: #e8e8e8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #1a1a1a;
    transition: var(--transition);
}

.about-course-btn:hover .btn-arrow-down {
    background: var(--primary-orange);
    color: #fff;
    transform: translateY(5px);
}

.course-info-card {
    background: #fff;
    border-radius: 12px;
    padding: 50px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    margin-top: -50px;
    position: relative;
    z-index: 10;
    border: 1px solid #f0f0f0;
}

.card-highlight {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 20px;
}

.card-highlight b {
    color: var(--text-dark);
}

.info-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

.info-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.tools-covered {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
    font-size: 15px;
    color: #666;
}

.tools-covered b {
    color: #1a1a1a;
    font-weight: 700;
}

.learn-section {
    padding: 100px 0;
    background: #fff;
}

.learn-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 80px;
}

.learn-icon {
    width: 40px;
    height: 40px;
    position: relative;
}

.learn-icon span {
    position: absolute;
    width: 25px;
    height: 25px;
    border-radius: 4px;
}

.learn-icon .sq-1 {
    background: #4caf50;
    top: 0;
    left: 0;
}

.learn-icon .sq-2 {
    background: #f44336;
    top: 5px;
    left: 5px;
    z-index: 2;
}

.learn-icon .sq-3 {
    background: #2196f3;
    top: 10px;
    left: 10px;
    z-index: 3;
}

.learn-title {
    font-size: 48px;
    font-weight: 500;
    color: #1a1a1a;
}

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

.learn-item {}

.learn-item-title {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #1a1a1a;
    margin-bottom: 25px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 25px;
    text-transform: uppercase;
}

.learn-list {}

.learn-list li {
    font-size: 15px;
    color: #555;
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
}

.learn-list li::before {
    content: " ?\; position: absolute; left: 0; color: #333; font-size: 10px; top: 3px; 
    }
@media (max-width: 991px) {
        .learn-grid {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .course-title-main {
            font-size: 48px;
        }

        .course-subtitle-main {
            font-size: 38px;
        }
    }
    

    /* --- Why Join Section --- */
    .why-join-section {
        background-color: var(--bg-black);
        color: var(--text-white);
        padding: 120px 0;
        position: relative;
        overflow: hidden;
    }

    .why-join-wireframe {
        position: absolute;
        left: -100px;
        top: 50%;
        transform: translateY(-50%);
        width: 600px;
        opacity: 0.15;
        pointer-events: none;
    }

    .why-join-content {
        position: relative;
        z-index: 2;
        text-align: center;
    }

    .why-join-title {
        font-size: 54px;
        font-weight: 500;
        margin-bottom: 25px;
    }

    .why-join-title .text-orange {
        color: var(--primary-orange);
    }

    .why-join-title .text-blue {
        color: #3a47d5;
    }

    .why-join-subtitle {
        font-size: 18px;
        color: #888;
        max-width: 800px;
        margin: 0 auto 80px;
        line-height: 1.6;
    }

    .why-join-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .why-join-item {
        padding: 40px 30px;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
        text-align: left;
        transition: var(--transition);
    }

    .why-join-item:last-child {
        border-right: none;
    }

    .why-join-item h4 {
        font-size: 20px;
        font-weight: 600;
        line-height: 1.4;
        color: #fff;
    }

    .why-join-item:hover {
        background: rgba(255, 255, 255, 0.02);
    }

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

        .why-join-item:nth-child(2n) {
            border-right: none;
        }

        .why-join-item {
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
    }

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

        .why-join-item {
            border-right: none;
        }

        .why-join-title {
            font-size: 38px;
        }
    }

    .footer-links li a,
.legal-links li a {
    transition: all 0.3s ease;
    position: relative;
}

.footer-links li a:hover,
.legal-links li a:hover {
    color: #ff6b00;
    transform: translateX(5px);
}
.footer-links li a::after,
.legal-links li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0%;
    height: 2px;
    background: #ff6b00;
    transition: 0.3s;
}

.footer-links li a:hover::after,
.legal-links li a:hover::after {
    width: 100%;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1a1a1a;
    color: #fff;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #ff6b00;
    transform: translateY(-5px) scale(1.1);
}

.faq-section {
  padding: 60px 20px;
  background: #f9fbfd;
  font-family: Arial, sans-serif;
}

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

.faq-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: #1a1a1a;
}

.faq-item {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: 0.3s ease;
}

.faq-question {
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  background: #f1f5f9;
}

.faq-icon {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  color: #555;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 15px 20px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}
.other-courses {
  padding: 40px;
  background: #f9f9f9;
}

.other-courses h2 {
  text-align: center;
  margin-bottom: 30px;
   font-size: 32px;
}

.slider {
  overflow: hidden;
  position: relative;
  height: 272px;
  padding: 17px;
}

.slider-track {
  display: flex;
  max-height : 250px;
  gap: 20px;
  animation: scroll 20s linear infinite;
}

.course-card-swiper {
  min-width: 250px;
  background: #fff;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* Hover Effect */
.course-card-swiper:hover {
  transform: translateY(-8px) scale(1.03);
  background: #ff6b00;
  color: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Make inner text also white */

.course-card-swiper p {
font-size : 13px;
font-weight : bold
}

.course-card-swiper:hover p {
  color: #fff;
}

.course-card-swiper:hover i {
    color: #000;
}
.course-card-swiper img {
  width: 100%;
  border-radius: 8px;
}

.course-title {
  margin-top: 10px;
  font-weight: bold;
}

/* Auto scroll animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}