/* General Setup */
body {
    font-family: 'Urbanist', sans-serif;
    margin: 0;
    background-color: #FFFFFF;
    color: #4A4A4A;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.logo span img{
 top:-1px;
}

/* Reusable Components */
.lms-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.lms-section {
    padding: 6rem 0;
}

.lms-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
}

.lms-heading-primary {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #333;
}

.lms-heading-secondary {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #333;
}

.lms-paragraph {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #555;
    max-width: 550px;
}
.lms-large-paragraph {
    font-size: 1.25rem;
}

.lms-highlight-gradient {
    background: linear-gradient(90deg, #8253C2, #F45346);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lms-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.lms-btn-primary {
    background: #611F69;
    color: #fff;
}
.lms-btn-primary:hover {
    background: #5a359a;
    transform: translateY(-2px);
}

.lms-btn-secondary {
    background-color: #fff;
    color: #611F69;
    border: 1px solid #611F69;
}
.lms-btn-secondary:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
}

.lms-btn-dark {
    background-color: #611F69;
    color: #fff;
}
.lms-btn-dark:hover {
    background-color: #5a359a;
    transform: translateY(-2px);
}

.lms-text-center {
    text-align: center;
}
.lms-text-white {
    color: #fff;
}

/* Animation Keyframes */
@keyframes floatAnimation {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

/* Section Appear Animation */
.lms-animate-section {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.lms-animate-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}


/* Hero Section */
.lms-hero-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.lms-hero-box {
    max-width: 1350px;
    margin: 0 auto;
    background: #F5F0FD;
    border-radius: 24px;
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.lms-hero-flex-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.lms-hero-content {
    flex-basis: 50%;
    z-index: 10;
}

.lms-hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.lms-hero-stat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    line-height: 1.3;
    position: relative;
}
.lms-hero-stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 80%;
    background-color: #d1d5db;
}

.lms-hero-stat-item img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.lms-hero-image-area {
    flex-basis: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lms-hero-bg-circles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.lms-hero-bg-circles .circle {
    position: absolute;
    border-radius: 50%;
    background-color: #CEBAD1;
    top: 96%;
    left: 70%;
    transform: translate(-50%, -50%);
}

.lms-hero-bg-circles .circle-1 {
    width: 1000px;
    height: 1000px;
    opacity: 0.4;
}
.lms-hero-bg-circles .circle-2 {
    width: 800px;
    height: 800px;
    opacity: 0.6;
}

.lms-hero-bg-circles .circle-3 {
    width: 600px;
    height: 600px;
    opacity: 0.6;
}

.lms-hero-main-img {
    max-width: 400px;
    position: relative;
    z-index: 5;
    top: 80px;
}

.lms-video-call {
    position: absolute;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    animation: floatAnimation 6s ease-in-out infinite;
    z-index: 6;
}
.lms-video-call-1 { top: 10%; right: 5%; animation-delay: 0s; box-shadow: 5.972px 5.972px 0 0 #1F1D0D; }
.lms-video-call-2 { bottom: 20%; right: 0; animation-delay: 1s; box-shadow: 5.972px 5.972px 0 0 #1F1D0D; }
.lms-video-call-3 { bottom: 10%; left: -5%; animation-delay: 2s; box-shadow: 5.972px 5.972px 0 0 #1F1D0D;}


/* Intro Section */
.lms-intro-image-wrapper {
    padding: 1rem;
    border-radius: 24px;
}
.lms-intro-image-wrapper img {
    border-radius: 16px;
}

/* Features Section */
.lms-dark-purple-bg {
    position: relative;
    overflow: hidden;
    background-image: url("data:image/svg+xml,%3Csvg width='1440' height='461' viewBox='0 0 1440 461' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1440 0H0V461L360 446.772L720 432.543L1440 404.086V0Z' fill='%2368176A'/%3E%3C/svg%3E");
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    padding-bottom: 10rem; /* Add padding to account for the curve */
}

.lms-dark-purple-bg .lms-container {
    position: relative;
    z-index: 2;
}
.lms-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}
.lms-feature-card {
    background-color: #FFFFFF;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 1.5rem;
    border-radius: 20px;
    color: #333;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.lms-type-card-icon-bg{
    display: flex;
    align-items: center;
    justify-content: start;
    margin-bottom: 1.5rem;
}

.lms-type-card-icon-sec4{
    left: -40px;
    position: relative;
}

.lms-feature-card-icon{
    width: 44px;
    height: 44px;
    border-radius: 0.46875rem;
    background: #F5F0FD;
    margin-bottom: 0;
    flex-shrink: 0;
}
.lms-feature-card-icon svg{
    padding: 7px;
}
.lms-feature-title {
    font-size: 1.25rem;
    margin-top: 0;
    margin-bottom: 0.5rem;
}
.lms-feature-card p {
    color: #555;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Learning Experience Section */
.lms-light-bg {
    background: #F7F2FF;
}
.lms-types-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}
.lms-type-card {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 2rem;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.10), 0 2px 6px 2px rgba(0, 0, 0, 0.05);
}
.lms-type-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
}
.lms-type-card-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    animation: floatAnimation 5s ease-in-out infinite;
}
.lms-type-card:nth-child(2) .lms-type-card-icon { animation-delay: 0.5s; }
.lms-type-card:nth-child(3) .lms-type-card-icon { animation-delay: 1s; }
.lms-type-card:nth-child(4) .lms-type-card-icon { animation-delay: 1.5s; }

.lms-type-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #333;
}
.lms-type-card-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

/* Reasons Section */
.lms-reasons-grid {
    margin-top: 4rem;
}
.lms-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.lms-list-item {
    font-size: 1.2rem;
    font-weight: 500;
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Use Cases Section */
.lms-use-cases-grid {
    margin-top: 4rem;
}
.lms-use-cases-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.lms-use-cases-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1.1rem;
    line-height: 1.6;
}
.lms-use-cases-list li::before {
    font-size: 1.5rem;
    color: #6F42C1;
    flex-shrink: 0;
}
.lms-use-cases-list span {
    font-weight: bold;
}

/* Impact Section */
.lms-stats-box {
    background-color: #fff;
    border-radius: 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-top: 3rem;
}
.lms-stat-item {
    padding: 1rem;
    text-align: center;
    position: relative;
}
.lms-stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -0.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background-color: #e5e7eb;
}
.lms-stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #66A349;
    display: block;
}
.lms-stat-label {
    font-size: 1.1rem;
    font-weight: 500;
    color: #444;
    margin-top: 0.5rem;
    display: block;
}

/* CTA Section */
.lms-cta-box {
    max-width: 1350px;
    margin: 0 auto;
    background: var(--12, linear-gradient(35deg, rgba(225, 244, 255, 0.60) 12%, rgba(249, 225, 255, 0.80) 27%, rgba(255, 230, 233, 0.60) 100%));
    border-radius: 24px;
    padding: 4rem 2rem;
    text-align: center;
}
.lms-cta-heading {
    font-size: 2.5rem;
    max-width: 800px;
    margin: 0 auto 1rem auto;
}
.lms-cta-subheading {
    color: #555;
    font-size: 1.2rem;
    margin: 0 auto 2rem auto;
}
.lms-banner-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .lms-grid-2col {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .lms-hero-flex-container {
        flex-direction: column;
        text-align: center;
    }
    .lms-hero-box {
        padding: 2rem;
    }
    .lms-hero-content {
        order: 2;
        margin-top: 2rem;
    }
    .lms-hero-image-area {
        order: 1;
        width: 100%;
    }
    .lms-features-grid {
        grid-template-columns: 1fr 1fr;
    }
    .lms-types-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .lms-stats-box {
        grid-template-columns: repeat(2, 1fr);
    }
    .lms-hero-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .lms-heading-primary { font-size: 2.5rem; }
    .lms-heading-secondary { font-size: 2.2rem; }
    .lms-section { padding: 3rem 0; }
    .lms-container { padding: 0 1.5rem; }
    
    .lms-hero-content { 
        order: 1; 
        margin-top: 0;
    }
    .lms-hero-image-area { 
        order: 2; 
        margin-top: 2rem;
    }
    .lms-video-call { display: none; }
    
    .lms-intro-image-wrapper { order: 1; }
    .lms-grid-2col .lms-content-block { order: 2; text-align: center; }
    .lms-grid-2col .lms-content-block .lms-paragraph { margin-left: auto; margin-right: auto; }

    .lms-features-grid,
    .lms-types-grid {
        grid-template-columns: 1fr;
    }

    .lms-reasons-grid,
    .lms-use-cases-grid {
        gap: 2rem;
        text-align: center;
    }
    .lms-reasons-image-area { order: 1; }
    .lms-list { order: 2; text-align: left;}

    .lms-use-cases-image-area { order: 1; }
    .lms-use-cases-list { order: 2; text-align: left;}
    
    .lms-banner-buttons { flex-direction: column; width: 100%;}
    .lms-btn { width: 100%; box-sizing: border-box; text-align: center;}

    .lms-stats-box {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }
    .lms-stat-item {
        padding: 1.5rem 0;
    }
    .lms-stat-item:not(:last-child)::after {
        display: none;
    }
    .lms-stat-item:nth-child(2n-1)::after {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        width: 1px;
        height: 100%;
        background-color: #e5e7eb;
    }
     .lms-stat-item:nth-child(1), .lms-stat-item:nth-child(2) {
        border-bottom: 1px solid #e5e7eb;
    }
}
