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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header Styles */
header {
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    transition: all 0.3s ease;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

header .logo h1,
header .nav-links a {
    color: #fff;
    transition: color 0.3s ease;
}

header .nav-links a:hover {
    color: #FFCC00;
}

header.scrolled .logo h1,
header.scrolled .nav-links a {
    color: #002A32;
}

header.scrolled .nav-links a:hover {
    color: #2E7D32;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 5% 0.5rem 24px;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 56px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

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

.logo h1 {
    color: #fff;
    font-size: 1.1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: color 0.3s ease;
    margin: 0;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    margin-left: 0;
    font-weight: 600;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 2px 0;
}

.nav-links a:hover {
    color: #FFCC00;
    transform: translateY(-2px);
}

header.scrolled .nav-links a:hover {
    color: #2E7D32;
}

/* Hero Section */
.hero {
    background: linear-gradient(120deg, #53c491 0%, #009669 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 1rem 0 1rem;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    gap: 2rem;
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-left {
    flex: 1;
    color: #fff;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    letter-spacing: 2px;
    font-size: 1rem;
    color: #e0e0e0;
    margin-bottom: 1.5rem;
    display: block;
}

.hero-left h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    line-height: 1.2;
}

.highlight-waktu {
    color: #d1ff72;
    font-weight: 700;
}

.highlight-tempat {
    color: #d1ff72;
    font-weight: 700;
}

.highlight-biaya {
    color: #d1ff72;
    font-weight: 700;
}

.hero-left p {
    color: #e0e0e0;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 480px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn-outline {
    padding: 0.9rem 2rem;
    border: 2px solid #fff;
    background: transparent;
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #fff;
    color: #2E7D32;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.btn-gradient {
    padding: 0.9rem 2rem;
    background: linear-gradient(90deg, #00796B 0%, #2E7D32 60%, #FFCC00 100%);
    background-size: 200% 100%;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(46, 125, 50, 0.15);
    transition: all 0.3s ease;
}

.btn-gradient:hover {
    background-position: 100% 0;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.3);
}

.btn-glass {
    padding: 0.9rem 2rem;
    background: #002A32;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 42, 50, 0.10);
    transition: all 0.4s cubic-bezier(.4,2,.3,1), background 0.6s cubic-bezier(.4,2,.3,1);
    position: relative;
    overflow: hidden;
    background-size: 200% 100%;
    background-position: 0 0;
}

.btn-glass:hover {
    background: linear-gradient(#d1ff72 100%);
    color: #002A32;
    background-position: 100% 0;
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 5px 15px rgba(0, 42, 50, 0.18);
}

.hero-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInRight 1s ease-out;
}

.hero-img {
    width: 420px;
    height: 320px;
    max-width: 90%;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem;
    box-shadow: 0 8px 32px rgba(46, 125, 50, 0.18);
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.hero-img::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #2E7D32, #FFCC00, #2E7D32);
    border-radius: 34px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-img:hover {
    transform: scale(1.05);
}

.hero-img:hover::before {
    opacity: 0.5;
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.7;
    }
    100% {
        opacity: 0.3;
    }
}

@media (max-width: 900px) {
    .hero-container {
        flex-direction: column;
        gap: 2.5rem;
        text-align: center;
    }
    .hero-left, .hero-right {
        flex: unset;
        width: 100%;
    }
    .hero-img {
        margin: 0 auto;
    }
}

/* About Section */
.about {
    padding: 5rem 1rem;
    background-color: #f9f9f9;
}

.about h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: rgba(0, 42, 50, 0.8);;
    font-size: 2.5rem;
}

/* Values Layout Styles */
.values-layout {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 3rem;
    align-items: flex-start;
}

.values-left {
    flex: 1;
    display: flex;
    justify-content: center;
}

.values-right {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

/* Main Card (Left Side) */
.value-card-main {
    background: linear-gradient(120deg, #53c491 0%, #009669 100%);
    color: #fff;
    box-shadow: 0 8px 24px rgba(46, 125, 50, 0.15);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.value-card-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    z-index: 1;
}

.value-card-main:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 32px rgba(46, 125, 50, 0.25);
}

.value-card-main i {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.15);
    border: 2px solid rgba(255,255,255,0.3);
    position: relative;
    z-index: 2;
}

.value-card-main h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.value-card-main p {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Small Cards (Right Side) */
.value-card-small {
    background: #fff;
    color: #333;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.value-card-small::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(120deg, #53c491 0%, #1db492 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.value-card-small:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.value-card-small:hover::before {
    transform: scaleX(1);
}

.value-card-small i {
    font-size: 1.5rem;
    color: #1db492;
    margin-bottom: 1rem;
    background: rgba(209, 255, 114, 0.1);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.3s ease;
}

.value-card-small:hover i {
    background: linear-gradient(120deg, #53c491 0%, #1db492 100%);
    color: #fff;
    transform: scale(1.1);
}

.value-card-small h3 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.value-card-small p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .values-layout {
        flex-direction: column;
        gap: 2rem;
    }
    
    .values-left {
        order: 2;
    }
    
    .values-right {
        order: 1;
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .value-card-main {
        padding: 2rem 1.5rem;
        min-height: 350px;
    }
    
    .value-card-main i {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .value-card-main h3 {
        font-size: 1.5rem;
    }
    
    .value-card-main p {
        font-size: 1rem;
    }
    
    .value-card-small {
        padding: 1.2rem;
    }
    
    .value-card-small i {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .value-card-small h3 {
        font-size: 1.1rem;
    }
    
    .value-card-small p {
        font-size: 0.85rem;
    }
}

/* Classes Section */
.classes {
    padding: 5rem 1rem;
}

.classes h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: rgba(0, 42, 50, 0.8);;
}

.class-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.class-card i {
    font-size: 2.5rem;
    color: #2E7D32;
    margin-bottom: 1rem;
}

/* Contact Section */
.contact {
    padding: 5rem 1rem;
    background: linear-gradient(135deg, rgba(0, 42, 50, 0.8) 0%, rgba(0, 42, 50, 0.8) 100%), url('assets/contact-bg.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    color: #fff;
    position: relative;
}

.contact h2 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.contact p {
    margin-bottom: 2rem;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: #25D366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
    z-index: 1000;
}

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

/* Footer */
footer {
    background: linear-gradient(120deg, #53c491 0%, #009669 100%);
    color: #fff;
    text-align: center;
    padding: 1rem;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    /* Navbar: Sembunyikan menu pada mobile */
    .nav-links {
        display: none !important;
    }

    /* Hero Section: Sembunyikan gambar asatidz */
    .hero {
        padding: 80px 1rem 3rem 1rem;
    }
    
    .hero-right {
        display: none !important;
        width: 0;
        height: 0;
        overflow: hidden;
    }

    .hero-left {
        text-align: center;
    }

    /* Program Kelas: Pastikan kartu responsif */
    .program-class-card {
        padding: 1rem;
    }

    .program-card-content-wrapper {
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .program-class-card-icon-wrapper {
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
    }

    .program-class-card-icon {
        font-size: 1rem;
    }

    .program-class-card h3 {
        font-size: 1.1rem;
    }

    .program-class-card p {
        font-size: 0.85rem;
    }
}

/* Custom scrollbar hide for horizontal scrolling */
.scrollbar-hide {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;  /* Chrome, Safari, Opera */
}

/* Program Kelas Custom Styles */
.program-classes-section {
    padding-top: 4rem; /* Reduced top padding */
    margin: 0; /* Remove left and right margins */
}

.program-classes-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: rgba(0, 42, 50, 0.8);;
    margin-bottom: 0.5rem; /* Reduced space below title */
}

.program-classes-section p {
    text-align: center;
    font-size: 1.1rem;
    color: #4a5568;
}

.program-classes-header {
    margin-bottom: 4rem; /* Increased space between header and cards */
    text-align: center;
}

.program-classes-container {
    overflow: hidden;
    position: relative;
}

.program-row {
    display: flex;
    gap: 0; /* Remove gap between cards */
    margin-bottom: 0; /* Remove margin between rows */
    width: max-content;
}

.program-row-1 {
    animation: scrollRight 30s linear infinite;
}

.program-row-2 {
    animation: scrollLeft 30s linear infinite;
}

@keyframes scrollRight {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollLeft {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

.program-class-card {
    background: linear-gradient(120deg, #53c491 0%, #009669 100%);
    border-radius: 0;
    box-shadow: 0 3px 10px rgba(46, 125, 50, 0.10);
    padding: 2.5rem 1.5rem 1.5rem 1.5rem;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #fff;
    width: 280px;
    height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    flex-shrink: 0;
    margin: 0; /* Remove any margin */
}

/* Alternating card backgrounds */
.program-class-card:nth-child(odd) {
    background: linear-gradient(120deg, #53c491 0%, #009669 100%);
    color: #fff;
    border-radius: 0;
}

.program-class-card:nth-child(even) {
    background: #fff;
    color: #333;
    border: none;
    border-radius: 0;
}

.program-class-card:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 8px 24px rgba(46, 125, 50, 0.18);
}

.program-class-card-icon-wrapper {
    width: 60px;
    height: 60px;
    min-width: 60px;
    min-height: 60px;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    margin-left: 0;
    margin-right: auto;
    box-shadow: 0 4px 16px rgba(46, 125, 50, 0.10);
    border: 1.5px solid rgba(255,255,255,0.3);
}

/* Icon wrapper for even cards (white background) */
.program-class-card:nth-child(even) .program-class-card-icon-wrapper {
    background: rgba(46, 125, 50, 0.1);
    border: 1.5px solid rgba(46, 125, 50, 0.2);
}

.program-class-card-icon {
    font-size: 1.5rem;
    color: #fff;
}

/* Icon color for even cards */
.program-class-card:nth-child(even) .program-class-card-icon {
    color: #1db492;
}

.program-class-card h3 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-align: left;
    width: 100%;
}

/* Text color for even cards */
.program-class-card:nth-child(even) h3 {
    color: #333;
}

.program-class-card p {
    color: #fff;
    font-size: 0.9rem;
    line-height: 1.4;
    text-align: left;
    width: 100%;
}

/* Text color for even cards */
.program-class-card:nth-child(even) p {
    color: #666;
}

/* Pause animation on hover */
.program-classes-container:hover .program-row-1,
.program-classes-container:hover .program-row-2 {
    animation-play-state: paused;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .program-classes-section {
        margin: 0 1rem; /* Smaller margin on mobile */
    }
    
    .program-row {
        gap: 0;
        margin-bottom: 0;
    }
    
    .program-class-card {
        width: 240px;
        height: 240px;
        padding: 2rem 1.2rem 1.2rem 1.2rem;
    }
    
    .program-class-card-icon-wrapper {
        width: 50px;
        height: 50px;
        min-width: 50px;
        min-height: 50px;
    }
    
    .program-class-card-icon {
        font-size: 1.2rem;
    }
    
    .program-class-card h3 {
        font-size: 1.1rem;
    }
    
    .program-class-card p {
        font-size: 0.85rem;
    }
}

/* New custom class for inner flex container in cards */
.program-card-content-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 1rem; /* Space between icon and text */
}

.program-card-content-wrapper > div {
    /* This targets the text container directly */
}

/* View All Button */
.btn-view-all {
    color: #002A32;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
    display: inline-block;
    text-decoration: underline;
    text-align: center;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.btn-view-all:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.3);
}

/* Popup Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.popup-content {
    background: #fff;
    border-radius: 16px;
    max-width: 90%;
    max-height: 90%;
    width: 800px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: popupSlideIn 0.3s ease-out;
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.popup-header {
    background: linear-gradient(120deg, #53c491 0%, #009669 100%);
    color: #fff;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.popup-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.popup-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.popup-close:hover {
    transform: scale(1.2);
}

.popup-body {
    padding: 2rem;
    max-height: 60vh;
    overflow-y: auto;
}

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

.class-item-popup {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.class-item-popup:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.class-icon-popup {
    width: 60px;
    height: 60px;
    background: linear-gradient(120deg, #53c491 0%, #009669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #fff;
    font-size: 1.5rem;
}

.class-item-popup h4 {
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.class-item-popup p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

/* Mobile Responsive for Popup */
@media (max-width: 768px) {
    .popup-content {
        width: 95%;
        max-height: 95%;
    }
    
    .popup-header {
        padding: 1rem 1.5rem;
    }
    
    .popup-header h3 {
        font-size: 1.3rem;
    }
    
    .popup-body {
        padding: 1.5rem;
    }
    
    .class-grid-popup {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .class-item-popup {
        padding: 1.2rem;
    }
    
    .class-icon-popup {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* LMS Product Section */
.lms-section {
    padding: 5rem 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.lms-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.lms-text {
    flex: 1;
}

.lms-subtitle {
    color: #53c491;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.lms-text h2 {
    color: #002A32;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.lms-text p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 500px;
}

.lms-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-item i {
    color: #53c491;
    font-size: 1.2rem;
    width: 20px;
}

.feature-item span {
    color: #333;
    font-weight: 500;
    font-size: 1rem;
}

.btn-lms {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(120deg, #53c491 0%, #009669 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.2);
}

.btn-lms:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(46, 125, 50, 0.3);
}

.lms-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.laptop-container {
    position: relative;
    max-width: 500px;
    width: 100%;
    background: linear-gradient(120deg, #53c491 0%, #009669 100%);
    border-radius: 12px;
    padding: 1rem;
}

.laptop-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    transition: transform 0.3s ease;
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
}

.laptop-img:hover {
    transform: scale(1.05);
}

/* Mobile Responsive for LMS Section */
@media (max-width: 768px) {
    .lms-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .lms-text h2 {
        font-size: 2rem;
    }
    
    .lms-text p {
        font-size: 1rem;
    }
    
    .lms-features {
        align-items: center;
    }
    
    .feature-item {
        justify-content: center;
    }
    
    .laptop-container {
        max-width: 350px;
    }
} 