:root {
    --purple-main: #5E4BB6;
    --purple-light: #7E6EE8;
    --text-dark: #333;
    --text-muted: #666;
    --white: #ffffff;
    --bg-light: #F8F9FF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}


/* Rounded main container like the image */
.main-containers {
    /* width: 100%; */
    /* max-width: 93%; */
    /* background-color: var(--bg-light); */
    /* border-radius: 50px; */
    /* overflow: hidden; */
    /* box-shadow: 0 20px 50px rgba(0,0,0,0.1); */
    /* padding: 60px; */
    margin: 60px;
}

/* --- HERO SECTION --- */
.hero-section {
    background: linear-gradient(135deg, #4A3BB1 0%, #7B6EE8 100%);
    padding: 60px 80px 0 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 480px;
    border-radius: 30px;
}

.hero-content {
    flex: 1;
    color: var(--white);
    padding-bottom: 60px;
}

.subtitle {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.main-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 5px 0 15px 0;
    line-height: 1.1;
}

.description {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 520px;
}

/* White Floating Card */
.cta-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    width: 420px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.cta-text {
    color: var(--purple-main);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.cta-input-group {
    display: flex;
    gap: 10px;
}

.select-box {
    flex: 1;
    border: 1.5px solid #eee;
    border-radius: 8px;
    display: flex;
    align-items: center;
    padding: 0 12px;
}

.select-box i {
    color: var(--purple-main);
    margin-right: 8px;
}

.select-box select {
    border: none;
    outline: none;
    width: 100%;
    font-size: 0.85rem;
    color: #888;
    background: transparent;
}

.btn-primary {
    background: var(--purple-main);
    color: white;
    border: none;
    padding: 12px 18px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.hero-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.btn-ghost {
    border: 1.5px solid rgba(255,255,255,0.6);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.btn-ghost:hover {
    border-color: white;
    background-color: rgba(255,255,255,0.1);
}

.btn-whatsapp {
    background: #25D366;
    color: #0b3320;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    border: none;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp i {
    font-size: 1rem;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(37, 211, 102, 0.45);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    position: relative;
}

.hero-character {
    max-width: 360px;
    width: 100%;
    display: block;
}

.hero-screen {
    position: absolute;
    bottom: -212px;
    right: 60px;
    background: white;
    padding: 15px;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.hero-screen img {
    width: 180px;
    height: auto;
    display: block;
}

.cta-card small {
    display: block;
    margin-top: 15px;
    font-size: 0.75rem;
    color: #666;
}

/* --- ABOUT SECTION --- */
.about-section {
    padding: 100px 80px;
}

.about-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

/* Image Gallery Layout */
.image-gallery {
    flex: 1;
    display: flex;
    gap: 15px;
}

.img-tall img {
    width: 180px;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.img-stack {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.img-stack img {
    width: 220px;
    height: 142px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

/* About Text */
.about-content {
    flex: 1;
}

.section-tag {
    font-size: 0.8rem;
    color: var(--purple-main);
    font-weight: 600;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 10px 0 20px 0;
    color: #111;
}

.about-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.btn-learn {
    background: var(--purple-main);
    color: white;
    border: none;
    padding: 12px 35px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(94, 75, 182, 0.3);
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    .hero-section, .about-grid {
        flex-direction: column;
        padding: 40px;
        text-align: center;
    }
    .hero-image, .image-gallery {
        justify-content: center;
        margin-top: 40px;
    }
    .cta-card {
        width: 100%;
        margin: 0 auto;
    }
}
:root {
    /* Exact colors from the image */
    --bg-color: #F4F6FC; 
    --primary-purple: #5E4BB6;
    --text-black: #1A1A1A;
    --text-grey: #6E7191;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.about-section {
    background-color: var(--bg-color);
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
}

.about-container {
    max-width: 1100px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 80px;
}

/* Image Grid Layout */
.image-grid-wrapper {
    position: relative;
    flex: 1;
}

/* Subtle "Plus" pattern background */
.bg-pattern {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#d1d5db 1px, transparent 1px);
    background-size: 20px 20px;
    z-index: 0;
    opacity: 0.5;
}

.image-grid {
    position: relative;
    display: flex;
    gap: 20px;
    z-index: 1;
}

.img-tall img {
    width: 200px;
    height: 320px;
    object-fit: cover;
    border-radius: 12px;
    border: 4px solid white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.img-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.img-small img {
    width: 260px;
    height: 150px;
    object-fit: cover;
    border-radius: 12px;
    border: 4px solid white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Content Styling */
.about-content {
    flex: 1;
}

.about-tag {
    color: var(--primary-purple);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.about-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-black);
    line-height: 1.2;
    margin-bottom: 20px;
}

.about-description {
    color: var(--text-grey);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 35px;
}

.about-list {
    list-style: none;
    margin-bottom: 35px;
    padding-left: 0;
}

.about-list li {
    position: relative;
    padding-left: 22px;
    color: var(--text-grey);
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.about-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-purple);
    font-weight: 700;
}

/* Specific Button Style */
.btn-learn {
    background-color: var(--primary-purple);
    color: white;
    padding: 14px 38px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    /* Soft Purple Glow Shadow */
    box-shadow: 0 10px 20px rgba(94, 75, 182, 0.3);
}

.btn-learn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(94, 75, 182, 0.4);
    background-color: #4e3da1;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }
    .image-grid {
        justify-content: center;
    }
    .about-title {
        font-size: 2rem;
    }
}

:root {
    --primary-purple: #5E4BB6;
    --text-black: #1A1A1A;
    --text-grey: #7A7A7A;
    --bg-light: #ffffff;
    --card-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    --icon-gradient: linear-gradient(135deg, #7E6EE8 0%, #4A3BB1 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.services-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
    text-align: center;
}

.containers {
    max-width: 1100px;
    margin: 0 auto;
}

/* Header Styling */
.services-tag {
    color: var(--primary-purple);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.services-main-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-black);
    margin-bottom: 50px;
}

/* Grid Layout */
.services-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* Individual Card Styling */
.service-card {
    background: #fff;
    padding: 50px 30px;
    border-radius: 20px;
    width: 320px;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.02);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(94, 75, 182, 0.1);
}

/* Icon with Background Circle */
.icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 25px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-circle {
    position: absolute;
    width: 60px;
    height: 60px;
    background-color: #F4F3FF; /* Very light purple circle background */
    border-radius: 50%;
    z-index: 1;
}

.service-icon {
    font-size: 2.5rem;
    position: relative;
    z-index: 2;
    /* Gradient Icon Effect */
    background: var(--icon-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-black);
    margin-bottom: 15px;
}

.service-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-grey);
}

.screens-section {
    background-color: var(--bg-color);
    padding: 90px 20px 120px;
}

.screens-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.screen-description {
    color: var(--text-grey);
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 15px;
}

.screens-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.screen-card {
    background: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
}

.screen-card img {
    width: 100%;
    height: auto;
    border-radius: 14px;
    margin-bottom: 12px;
}

.screen-card figcaption {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-black);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .services-main-title {
        font-size: 2rem;
    }
    .service-card {
        width: 100%;
        max-width: 400px;
    }

    .main-containers {
    margin: 21px;
    }

    .main-title {
    font-size: 2.5rem;
    }
}

@media (max-width: 900px) {
    .hero-screen {
        position: static;
        margin-top: 30px;
    }

    .hero-section {
        padding: 40px;
    }

    .cta-card {
        width: 100%;
    }
    .main-title {
    font-size: 2.5rem;
    }
}

@media (max-width: 600px) {
    .hero-actions {
        flex-direction: column;
    }

    .btn-ghost,
    .btn-primary {
        width: 100%;
    }
       .main-containers {
    margin: 21px;
    }
    .main-title {
    font-size: 2.5rem;
    }
}
.img-small img {
    width: 276px;
    height: 259px;
}