/* ===================================
   LANDING PAGE - MENTORKU STYLE
   =================================== */

/* CSS Variables */
:root {
    /* Brand Palette - SellingPro Style */
    --primary-navy: #0F172A;
    /* Dark Navy */
    --primary-navy-light: #1E293B;
    --primary-red: #D80032;
    /* SellingPro Red */
    --primary-red-dark: #A60026;

    /* Gradients */
    --gradient-navy: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    --gradient-red: linear-gradient(135deg, #D80032 0%, #FF2353 100%);
    --gradient-royal: linear-gradient(135deg, #002347 0%, #003366 100%);
    /* Elegant Royal Navy */

    /* Generic mappings */
    --primary-blue: #183966;
    --primary-blue-light: var(--primary-navy-light);

    --text-dark: #1F2937;
    --text-gray: #6B7280;
    --text-light: #9CA3AF;
    --bg-light: #F9FAFB;
    --bg-white: #FFFFFF;
    --border-color: #E5E7EB;

    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul,
ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================================
   NAVBAR
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-logo img {
    height: 40px;
}

.navbar-logo span {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-blue);
}

.navbar-logo span .highlight {
    color: var(--primary-red);
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}

.navbar-menu a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
}

.navbar-menu a:hover {
    color: var(--primary-blue);
}

.navbar-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width 0.3s ease;
}

.navbar-menu a:hover::after {
    width: 100%;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--gradient-blue);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: white;
}

.btn-red {
    background: var(--gradient-red);
    color: white;
}

.btn-red:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.navbar-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    padding: 100px 0 60px;
    background: #EFF3F8;
    position: relative;
    overflow: hidden;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 50px;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-dark);
    margin-bottom: 25px;
    /* font-style: italic; */
}

.hero-title .highlight {
    color: var(--primary-blue);
    font-style: italic;
}

.hero-description {
    font-size: 15px;
    color: var(--text-gray);
    margin-bottom: 30px;
    max-width: 480px;
    line-height: 1.8;
}

.btn-outline-blue {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-blue);
    background: transparent;
    border: 2px solid var(--primary-blue);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline-blue:hover {
    background: var(--primary-blue);
    color: white;
}

.hero-image {
    position: relative;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* Hero Info Cards */
.hero-info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    background: transparent;
}

.hero-info-card {
    padding: 30px 25px;
    border-left: 4px solid var(--primary-red);
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.hero-info-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.hero-info-card p {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

/* ===================================
   CORE VALUE SECTION
   =================================== */
.core-value {
    padding: 80px 0;
    background: var(--primary-blue);
    color: white;
}

.core-value-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.core-value-subtitle {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid white;
}

.core-value-title {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 30px;
    color: white;
}

.core-value-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.core-value-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 600;
}

.core-value-list li i {
    color: white;
    font-size: 20px;
}

.core-value-media {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.core-value-video {
    position: relative;
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    /* box-shadow: var(--shadow-xl); */
}

.core-value-video img {
    width: 100%;
    height: auto;
    display: block;
}

.core-value-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.85) 0%, rgba(59, 130, 246, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.core-value-video-text {
    text-align: center;
}

.core-value-video-text p {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.6;
    color: white;
    margin: 0;
}

.btn-core-value {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 10px;
    padding: 14px 35px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: white;
    background: transparent;
    border: 2px solid white;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-core-value:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-core-value i {
    font-size: 16px;
}

/* ===================================
   OUR SERVICES SECTION
   =================================== */
.our-services {
    padding: 80px 0 40px;
    background: var(--bg-white);
}

.our-services-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 50px;
}

.our-services-subtitle {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--primary-red);
}

.our-services-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.5;
    color: var(--text-dark);
}

.our-services-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.our-services-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 30px 0;
    border-top: 1px solid var(--border-color);
}

.our-services-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.our-services-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    color: var(--primary-blue);
    font-size: 20px;
}

.our-services-item span {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.our-services-line {
    width: 150px;
    height: 4px;
    background: var(--primary-red);
    margin: 0 auto;
}

/* ===================================
   ABOUT BRAND SECTION
   =================================== */
.about-brand {
    padding: 80px 0;
    background: var(--primary-blue);
    color: white;
}

.about-brand-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-brand-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 20px;
    color: white;
}

.brand-highlight {
    display: inline-block;
    background: var(--primary-red);
    padding: 5px 15px;
    border-radius: var(--radius-sm);
    color: white;
}

.about-brand-description {
    font-size: 18px;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 30px;
}

.btn-about-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 35px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: white;
    background: transparent;
    border: 2px solid white;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-about-brand:hover {
    background: var(--primary-red-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.about-brand-video {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    /* box-shadow: var(--shadow-xl); */
}

.about-brand-video img {
    width: 100%;
    height: auto;
    display: block;
}

.about-brand-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.85) 0%, rgba(59, 130, 246, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.about-brand-video-overlay p {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    color: white;
    text-align: center;
    margin: 0;
}

/* ===================================
   FEATURES SECTION
   =================================== */
.features {
    padding: 80px 0;
    background: var(--bg-white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-description {
    font-size: 16px;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 35px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    font-size: 28px;
}

.feature-icon.blue {
    background: rgba(30, 58, 138, 0.1);
    color: var(--primary-blue);
}

.feature-icon.red {
    background: rgba(220, 38, 38, 0.1);
    color: var(--primary-red);
}

.feature-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.feature-description {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* ===================================
   OUR TEAM SECTION
   =================================== */
.our-team {
    padding: 80px 0;
    background: var(--bg-white);
    color: var(--text-dark);
}

.our-team-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
}

.our-team-subtitle {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--primary-red);
}

.our-team-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--primary-blue);
    max-width: 400px;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: white;
    background: var(--primary-red);
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-view-all:hover {
    background: var(--primary-red-dark);
    transform: translateX(5px);
}

.our-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.team-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-red);
    box-shadow: var(--shadow-md);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.team-card-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--border-color);
}

.team-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.team-card-role {
    display: block;
    font-size: 14px;
    color: var(--primary-red);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-card-description {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

/* ===================================
   PORTFOLIO SECTION
   =================================== */
.portfolio {
    padding: 80px 0;
    background: var(--primary-blue);
    color: white;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.portfolio-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 50px;
}

.portfolio-subtitle {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 2px solid white;
}

.portfolio-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.4;
    color: white;
    margin-bottom: 20px;
}

.portfolio-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin: 0;
}

.portfolio-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.portfolio-stat-item {
    text-align: left;
}

.portfolio-stat-number {
    display: block;
    font-size: 48px;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 8px;
}

.portfolio-stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.portfolio-cta {
    text-align: center;
}

.btn-portfolio {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 35px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: white;
    background: transparent;
    border: 2px solid white;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-portfolio:hover {
    background: white;
    color: var(--primary-blue);
}

/* ===================================
   LEARNING FEATURES SECTION
   =================================== */
.learning-features {
    padding: 80px 0;
    background: var(--bg-white);
}

.learning-features-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 50px;
}

.learning-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.learning-feature-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.learning-feature-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.learning-feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

/* Colorful icons */
.learning-feature-card:nth-child(1) .learning-feature-icon {
    color: #F59E0B;
}

/* Orange/Yellow */
.learning-feature-card:nth-child(2) .learning-feature-icon {
    color: #8B5CF6;
}

/* Purple */
.learning-feature-card:nth-child(3) .learning-feature-icon {
    color: #EC4899;
}

/* Pink */
.learning-feature-card:nth-child(4) .learning-feature-icon {
    color: #10B981;
}

/* Green */
.learning-feature-card:nth-child(5) .learning-feature-icon {
    color: #3B82F6;
}

/* Blue */
.learning-feature-card:nth-child(6) .learning-feature-icon {
    color: #EF4444;
}

/* Red */
.learning-feature-card:nth-child(7) .learning-feature-icon {
    color: #06B6D4;
}

/* Cyan */
.learning-feature-card:nth-child(8) .learning-feature-icon {
    color: #F97316;
}

/* Orange */

.learning-feature-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.learning-feature-name::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--primary-red);
}

.learning-feature-desc {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 15px 0 0;
}

/* ===================================
   LEARNING VIDEOS SECTION
   =================================== */
.learning-videos {
    padding: 80px 0;
    background: var(--primary-blue);
}

.learning-videos-title {
    font-size: 36px;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 50px;
}

.learning-videos-carousel {
    display: flex;
    align-items: center;
    gap: 20px;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: none;
    color: var(--primary-red);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.carousel-btn:hover {
    background: var(--bg-light);
    transform: scale(1.1);
}

.learning-videos-wrapper {
    display: flex;
    gap: 20px;
    flex: 1;
    overflow: hidden;
}

.learning-video-card {
    flex: 1;
    min-width: 0;
}

.learning-video-thumb {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 16/9;
}

.learning-video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.learning-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-red);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
}

.play-btn:hover {
    background: var(--primary-red-dark);
    transform: scale(1.1);
}

.learning-video-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 10px 15px;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 13px;
}

.learning-video-header .fa-youtube {
    color: var(--primary-red);
}

.learning-video-header span {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ===================================
   HAPPY CLIENTS SECTION
   =================================== */
.happy-clients {
    padding: 80px 0;
    background: var(--primary-blue);
}

.happy-clients-title {
    font-size: 32px;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 50px;
}

.happy-clients-carousel {
    display: flex;
    align-items: center;
    gap: 30px;
}

.clients-carousel-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    color: var(--primary-red);
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.clients-carousel-btn:hover {
    transform: scale(1.2);
}

.happy-clients-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: var(--radius-lg);
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    padding: 15px;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.client-logo:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.client-logo img {
    max-width: 100%;
    max-height: 40px;
    object-fit: contain;
}

.happy-clients-slider {
    flex: 1;
    overflow: hidden;
}

.clients-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.clients-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.clients-dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

.clients-dot.active {
    background: var(--primary-red);
}


/* ===================================
   CONTACT CTA SECTION
   =================================== */
.contact-cta {
    padding: 50px 0;
    background: url('/images/bg-section-butuh-saran.png') center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

.contact-cta-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.contact-cta-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.contact-cta-description {
    font-size: 15px;
    color: var(--primary-blue);
    opacity: 0.85;
    margin: 0;
    max-width: 450px;
}

.btn-contact-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 40px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-blue);
    background: white;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-contact-cta i {
    font-size: 18px;
}

.btn-contact-cta:hover {
    background: var(--bg-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* ===================================
   INSTRUCTOR SECTION
   =================================== */
.instructor {
    padding: 80px 0;
    background: var(--bg-light);
}

.instructor .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.instructor-image {
    position: relative;
}

.instructor-image img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.instructor-badge {
    position: absolute;
    bottom: 30px;
    right: -30px;
    background: var(--bg-white);
    padding: 20px 25px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 15px;
}

.instructor-badge-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.instructor-badge-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.instructor-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.instructor-content p {
    font-size: 15px;
    color: var(--text-gray);
    margin-bottom: 25px;
    line-height: 1.8;
}

.instructor-list {
    margin-bottom: 30px;
}

.instructor-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 15px;
}

.instructor-list li i {
    color: var(--primary-blue);
    font-size: 18px;
}

/* ===================================
   TESTIMONIALS SECTION (NEW DESIGN)
   =================================== */
.testimonials-new {
    padding: 80px 0;
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
}

/* World map background */
.testimonials-new::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 70%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600'%3E%3Cg fill='%23234E70' opacity='0.15'%3E%3Cpath d='M100,250 C150,200 200,180 280,200 C320,210 350,180 400,190 C450,200 480,160 520,170 C580,185 620,150 680,165 C740,180 780,140 850,160 C920,180 960,150 1000,170 C1040,190 1080,160 1120,180 L1120,400 C1080,420 1040,400 1000,380 C960,360 920,390 850,370 C780,350 740,380 680,360 C620,340 580,370 520,350 C480,330 450,360 400,340 C350,320 320,350 280,330 C200,300 150,330 100,310 Z'/%3E%3C/g%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
}

.testimonials-new-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.testimonials-carousel-wrapper {
    overflow: hidden;
    padding: 50px 0 20px;
}

.testimonials-carousel {
    display: flex;
    align-items: flex-start;
    transition: transform 0.5s ease;
    padding-top: 50px;
}

.testimonial-card-new {
    position: relative;
    width: 280px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 30px 20px 20px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

/* Side cards styling - overlap without rotation */
.testimonial-card-new:first-child {
    margin-right: -40px;
    z-index: 1;
}

.testimonial-card-new:last-child {
    margin-left: -40px;
    z-index: 1;
}

/* Center card (active) - elevated and in front */
.testimonial-card-new.active {
    z-index: 10;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.testimonial-avatar {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid white;
    box-shadow: var(--shadow-md);
}

/* Side cards avatar border colors */
.testimonial-card-new:first-child .testimonial-avatar {
    border-color: #EC4899;
}

.testimonial-card-new.active .testimonial-avatar {
    border-color: #10B981;
}

.testimonial-card-new:last-child .testimonial-avatar {
    border-color: #3B82F6;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    margin-top: 30px;
    position: relative;
    min-height: 250px;
    display: flex;
    flex-direction: column;
}

.quote-mark {
    font-family: Georgia, serif;
    font-size: 48px;
    color: var(--primary-blue);
    opacity: 0.3;
    line-height: 1;
}

.quote-open {
    position: absolute;
    top: -10px;
    left: 0;
}

.quote-close {
    position: absolute;
    bottom: 40px;
    right: 0;
}

.testimonial-text {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 15px 0 20px;
    text-align: left;
    flex: 1;
    min-height: 150px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
}

.testimonial-text strong {
    color: var(--primary-blue);
    font-weight: 600;
}

.testimonial-author {
    font-size: 12px;
    color: var(--text-gray);
    text-align: left;
    margin-top: 15px;
}

.testimonial-author .author-name {
    color: var(--text-dark);
    font-weight: 600;
}

.testimonial-author .author-role {
    color: var(--text-gray);
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.testimonials-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonials-dots .dot.active {
    background: #10B981;
}

.testimonials-dots .dot:hover {
    background: var(--primary-blue);
}

/* ===================================
   STATS SECTION
   =================================== */
.stats {
    padding: 80px 0;
    background: var(--gradient-blue);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 15px;
    opacity: 0.9;
}

/* ===================================
   COURSES SECTION
   =================================== */
.courses {
    padding: 80px 0;
    background: var(--bg-light);
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.course-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.course-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.course-card:hover .course-image img {
    transform: scale(1.05);
}

.course-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-red);
    color: white;
    padding: 5px 12px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
}

.course-content {
    padding: 25px;
}

.course-category {
    font-size: 12px;
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 10px;
}

.course-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.4;
}

.course-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 13px;
    color: var(--text-gray);
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.course-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ===================================
   WHY US SECTION
   =================================== */
.why-us {
    padding: 80px 0;
    background: var(--bg-white);
}

.why-us .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-us-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.why-us-content p {
    font-size: 15px;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.why-us-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.why-us-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.why-us-item i {
    width: 40px;
    height: 40px;
    background: var(--gradient-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-us-item h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 5px;
}

.why-us-item p {
    font-size: 13px;
    color: var(--text-gray);
    margin: 0;
}

.why-us-image img {
    width: 100%;
    border-radius: var(--radius-xl);
}

/* ===================================
   CTA SECTION (NEW DESIGN)
   =================================== */
.cta-new {
    /* padding: 40px 0; */
    background: var(--primary-red);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-new-wrapper {
    display: flex;
    align-items: flex-end;
    gap: 30px;
}

.cta-image {
    flex-shrink: 0;
    /* width: 420px; */
    min-height: 420px;
    display: flex;
    align-items: flex-end;
}

.cta-image img {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: contain;
    object-position: bottom center;
}

.cta-content {
    flex: 1;
    text-align: center;
    padding: 40px 0;
}

.cta-title-1 {
    font-size: 28px;
    font-weight: 700;
    /* font-style: italic; */
    line-height: 1.4;
    margin-bottom: 25px;
    color: white;
}

.cta-title-2 {
    font-size: 26px;
    font-weight: 700;
    /* font-style: italic; */
    line-height: 1.4;
    margin-bottom: 20px;
    color: white;
}

.cta-description {
    font-size: 16px;
    /* font-style: italic; */
    opacity: 0.95;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.btn-cta-new {
    display: inline-block;
    padding: 16px 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: white;
    background: transparent;
    border: 2px solid white;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cta-new:hover {
    background: white;
    color: var(--primary-red);
}

/* ===================================
   PARTNERS SECTION
   =================================== */
.partners {
    padding: 60px 0;
    background: var(--bg-light);
}

.partners-title {
    text-align: center;
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.partners-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.partners-grid img {
    height: 40px;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.partners-grid img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    padding: 60px 0 30px;
    background: #000000;
    color: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo span {
    font-size: 24px;
    font-weight: 700;
}

.footer-logo .highlight {
    color: var(--primary-red);
}

.footer-brand p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-blue);
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 25px;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    font-size: 14px;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 14px;
    color: var(--text-light);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1024px) {

    .hero .container,
    .instructor .container,
    .why-us .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 36px;
    }

    .features-grid,
    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-lg);
    }

    .navbar-menu.active {
        display: flex;
    }

    .navbar-toggle {
        display: flex;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-stats {
        justify-content: center;
    }

    .features-grid,
    .courses-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 28px;
    }

    .why-us-list {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 24px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 36px;
    }
}

/* ===================================
   USER DROPDOWN
   =================================== */
.user-dropdown {
    position: relative;
    cursor: pointer;
}

.user-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 10px;
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
}

.user-toggle:hover {
    background: var(--bg-light);
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    /* border: 2px solid var(--primary-blue); */
}

.user-name {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
}

.user-toggle i {
    font-size: 12px;
    color: var(--text-gray);
    transition: transform 0.3s ease;
}

.user-dropdown:hover .user-toggle i {
    transform: rotate(180deg);
}

.user-menu {
    position: absolute;
    top: 100%;
    right: 0;
    width: 200px;
    background: white;
    box-shadow: var(--shadow-xl);
    border-radius: var(--radius-md);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1001;
    border: 1px solid var(--border-color);
}

.user-dropdown:hover .user-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-menu-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    text-decoration: none !important;
}

.user-menu-item:hover {
    background: var(--bg-light);
    color: var(--primary-blue);
}

.user-menu-item i {
    width: 18px;
    text-align: center;
}

.text-danger {
    color: var(--primary-red) !important;
}

.dropdown-divider {
    height: 1px;
    background: var(--border-color);
    margin: 5px 0;
}

/* ===================================
   RESPONSIVE STYLES
   =================================== */

/* Large Tablets & Small Desktops */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    /* Hero */
    .hero-wrapper {
        gap: 30px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-info-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    /* Core Value */
    .core-value-wrapper {
        gap: 40px;
    }

    .core-value-title {
        font-size: 24px;
    }

    /* Our Services */
    .our-services-wrapper {
        gap: 40px;
    }

    .our-services-list {
        grid-template-columns: repeat(2, 1fr);
    }

    /* About Brand */
    .about-brand-wrapper {
        gap: 40px;
    }

    .about-brand-title {
        font-size: 28px;
    }

    /* Our Team */
    .our-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Features */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Learning Features */
    .learning-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Learning Videos */
    .learning-videos-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Happy Clients */
    .happy-clients-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    /* CTA */
    .cta-image {
        width: 350px;
        min-height: 350px;
    }

    .cta-title-1 {
        font-size: 24px;
    }

    .cta-title-2 {
        font-size: 22px;
    }
}

/* Tablets */
@media (max-width: 991px) {

    /* Navbar */
    .navbar-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        box-shadow: var(--shadow-md);
    }

    .navbar-menu.active {
        display: flex;
    }

    .navbar-toggle {
        display: flex;
    }

    .navbar-actions {
        display: none;
    }

    /* Hero */
    .hero-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        order: 1;
    }

    .hero-image {
        order: 2;
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-description {
        max-width: 100%;
        margin: 0 auto 30px;
    }

    .hero-info-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .hero-info-card {
        text-align: left;
    }

    /* Core Value */
    .core-value-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .core-value-list li {
        justify-content: center;
    }

    /* Our Services */
    .our-services-wrapper {
        grid-template-columns: 1fr;
    }

    .our-services-image {
        order: 2;
    }

    .our-services-content {
        order: 1;
        text-align: center;
    }

    .our-services-list {
        grid-template-columns: repeat(2, 1fr);
    }

    /* About Brand */
    .about-brand-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-brand-video {
        order: 1;
    }

    .about-brand-content {
        order: 2;
    }

    /* Our Team */
    .our-team-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .our-team-title {
        max-width: 100%;
    }

    .our-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Portfolio */
    .portfolio-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .portfolio-stats {
        grid-template-columns: repeat(4, 1fr);
    }

    /* Features */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* CTA */
    .cta-new-wrapper {
        flex-direction: column;
        align-items: center;
        /* Center items horizontally */
        text-align: center;
    }

    .cta-image {
        width: 280px;
        min-height: 280px;
        order: 1;
        justify-content: center;
        /* Center image within container */
    }

    .cta-content {
        order: 2;
    }

    /* Testimonials */
    .testimonial-card-new {
        width: 250px;
    }
}

/* Mobile Landscape & Small Tablets */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    /* General Sections */
    .hero {
        padding: 80px 0 40px;
    }

    .core-value,
    .our-services,
    .about-brand,
    .our-team,
    .features,
    .portfolio {
        padding: 60px 0;
    }

    /* Hero */
    .hero-title {
        font-size: 28px;
    }

    .hero-description {
        font-size: 14px;
    }

    /* Section Headers */
    .section-title {
        font-size: 28px;
    }

    .section-description {
        font-size: 14px;
    }

    /* Our Team */
    .our-team-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    /* Portfolio Stats */
    .portfolio-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-number {
        font-size: 36px;
    }

    /* Learning Features */
    .learning-features-grid {
        grid-template-columns: 1fr;
    }

    /* Learning Videos */
    .learning-videos {
        padding: 60px 0;
    }

    .learning-videos-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .learning-videos-carousel {
        flex-direction: column;
        gap: 25px;
    }

    .learning-videos-wrapper {
        flex-direction: column;
        width: 100%;
    }

    .learning-video-card {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .learning-videos-carousel .carousel-btn {
        display: none;
    }

    /* Features */
    .features-grid {
        grid-template-columns: 1fr;
    }

    /* Happy Clients */
    .happy-clients {
        padding: 60px 0;
    }

    .happy-clients-title {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .happy-clients-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .clients-carousel-btn {
        width: 30px;
        height: 30px;
        font-size: 18px;
    }

    /* Contact CTA */
    .contact-cta-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .contact-cta-title {
        font-size: 24px;
    }

    /* CTA New */
    .cta-title-1 {
        font-size: 22px;
    }

    .cta-title-2 {
        font-size: 20px;
    }

    .cta-description {
        font-size: 14px;
    }

    .btn-cta-new {
        padding: 14px 30px;
        font-size: 13px;
    }

    /* Testimonials */
    .testimonials-new-title {
        font-size: 28px;
    }

    .testimonial-card-new {
        width: 220px;
    }

    .testimonial-card-new:first-child,
    .testimonial-card-new:last-child {
        display: none;
    }

    .testimonial-text {
        font-size: 12px;
        min-height: 120px;
    }

    /* Footer */
    .footer-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-links-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }
}

/* Mobile Portrait */
@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }

    /* Navbar */
    .navbar {
        padding: 10px 0;
    }

    .navbar-logo img {
        height: 32px;
    }

    .navbar-logo span {
        font-size: 18px;
    }

    /* Hero */
    .hero {
        padding: 70px 0 30px;
    }

    .hero-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .hero-description {
        font-size: 13px;
        margin-bottom: 25px;
    }

    .btn-outline-blue {
        padding: 12px 24px;
        font-size: 13px;
    }

    .hero-info-card {
        padding: 20px;
    }

    .hero-info-card h3 {
        font-size: 16px;
    }

    .hero-info-card p {
        font-size: 12px;
    }

    /* Core Value */
    .core-value {
        padding: 50px 0;
    }

    .core-value-subtitle {
        font-size: 12px;
    }

    .core-value-title {
        font-size: 22px;
    }

    .core-value-list li {
        font-size: 14px;
    }

    /* Our Services */
    .our-services {
        padding: 50px 0 30px;
    }

    .our-services-subtitle {
        font-size: 12px;
    }

    .our-services-title {
        font-size: 22px;
    }

    .our-services-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* About Brand */
    .about-brand {
        padding: 50px 0;
    }

    .about-brand-title {
        font-size: 24px;
    }

    .about-brand-description {
        font-size: 14px;
    }

    /* Our Team */
    .our-team {
        padding: 50px 0;
    }

    .our-team-subtitle {
        font-size: 12px;
    }

    .our-team-title {
        font-size: 26px;
    }

    .team-member-name {
        font-size: 16px;
    }

    /* Portfolio */
    .portfolio {
        padding: 50px 0;
    }

    .portfolio-subtitle {
        font-size: 12px;
    }

    .portfolio-title {
        font-size: 24px;
    }

    .portfolio-stats {
        gap: 15px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 12px;
    }

    /* Learning Features */
    .learning-features {
        padding: 50px 0;
    }

    .learning-features-title {
        font-size: 24px;
    }

    /* Features */
    .features {
        padding: 50px 0;
    }

    .section-title {
        font-size: 24px;
    }

    .feature-card {
        padding: 25px 20px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .feature-title {
        font-size: 16px;
    }

    .feature-description {
        font-size: 13px;
    }

    /* Happy Clients */
    .happy-clients {
        padding: 50px 0;
    }

    .happy-clients-title {
        font-size: 22px;
        margin-bottom: 25px;
    }

    .happy-clients-carousel {
        gap: 15px;
    }

    .happy-clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 20px;
    }

    .client-logo {
        padding: 10px;
    }

    .client-logo img {
        max-height: 30px;
    }

    .clients-dot {
        width: 10px;
        height: 10px;
    }

    /* Contact CTA */
    .contact-cta {
        padding: 40px 0;
    }

    .contact-cta-title {
        font-size: 20px;
    }

    .contact-cta-description {
        font-size: 13px;
    }

    /* CTA New */
    .cta-new {
        padding: 30px 0;
    }

    .cta-image {
        width: 280px;
        /* Increased from 220px */
        min-height: 280px;
        /* Increased from 220px */
    }

    .cta-image img {
        max-height: 350px;
        /* Increased from 280px */
    }

    .cta-content {
        padding: 20px 0;
    }

    .cta-title-1 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .cta-title-2 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .cta-description {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .btn-cta-new {
        padding: 12px 25px;
        font-size: 12px;
    }

    /* Testimonials */
    .testimonials-new {
        padding: 50px 0;
    }

    .testimonials-new-title {
        font-size: 24px;
        margin-bottom: 40px;
    }

    .testimonials-carousel-wrapper {
        padding: 0;
        overflow: hidden;
        width: 100%;
    }

    .testimonials-carousel {
        padding-top: 20px;
        gap: 0;
    }

    .testimonial-card-new {
        width: 100%;
        min-width: 100%;
        /* Ensure 1 card per view */
        padding: 25px 20px;
        margin: 0 !important;
        /* Reset margin override */
        opacity: 1 !important;
        /* Reset opacity */
        transform: none !important;
        /* Reset transform */
        border: 1px solid var(--border-color);
        /* Add border for definition */
        box-shadow: none;
        /* remove shadow for cleaner look or keep it */
    }

    /* Reset side cards styling override */
    .testimonial-card-new:first-child,
    .testimonial-card-new:last-child {
        margin: 0 !important;
        display: block !important;
        /* Ensure visible */
    }

    .testimonial-card-new.active {
        transform: none !important;
        background: white !important;
    }

    .testimonial-avatar {
        width: 60px;
        height: 60px;
        top: -30px;
    }

    .testimonial-content {
        min-height: auto;
        /* Auto height on mobile */
    }

    .testimonial-text {
        font-size: 14px;
    }

    /* Footer */
    .footer {
        padding: 50px 0 20px;
    }

    .footer-logo span {
        font-size: 20px;
    }

    .footer-description {
        font-size: 13px;
    }

    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-links-title {
        font-size: 15px;
    }

    .footer-links li a {
        font-size: 13px;
    }

    .footer-bottom-text {
        font-size: 12px;
    }

    .footer-social a {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

/* Extra Small Mobile */
@media (max-width: 375px) {
    .hero-title {
        font-size: 20px;
    }

    .hero-description {
        font-size: 12px;
    }

    .core-value-title {
        font-size: 20px;
    }

    .our-services-title {
        font-size: 20px;
    }

    .about-brand-title {
        font-size: 20px;
    }

    .section-title {
        font-size: 20px;
    }

    .happy-clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-title-1 {
        font-size: 16px;
    }

    .cta-title-2 {
        font-size: 14px;
    }
}