/* =========================================
   TABLE OF CONTENTS
   =========================================
   1. CSS Variables & Resets
   2. Typography & Utilities
   3. Buttons
   4. Navigation & Navbar
   5. Hero Section
   6. Features - General
   7. Features - Dashboard
   8. Features - 3-Column Layout
   9. Features - Student Management
   10. Features - Staff Management
   11. Features - Online Admission
   12. Features - Academics & Performance
   13. Features - Communication
   14. Features - Website Customization
   15. How It Works
   16. Why Choose Us
   17. Pricing
   18. Testimonials
   19. FAQ
   20. CTA Section
   21. Footer
   22. Responsive Adjustments
   ========================================= */

/* =========================================
   1. CSS Variables & Resets
   ========================================= */
:root {
    --primary: #2563EB;
    --primary-dark: #151837;
    --secondary: #3b82f6;
    --text-dark: #131e39;
    --text-body: #1b2056;
    --text-muted: #6b7280;
    --text-white: #ffffff;
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-light-blue: #eff6ff;
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Mulish', sans-serif;
    --transition-fast: 0.2s ease-in-out;
    --transition-normal: 0.3s ease-in-out;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: none;
}

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

/* =========================================
   2. Typography & Utilities
   ========================================= */
.text-center {
    text-align: center;
}

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

.text-blue {
    color: var(--primary) !important;
}

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

.bg-primary-dark {
    background-color: var(--primary-dark);
}

.bg-light-gray {
    background-color: var(--bg-light);
}

.bg-light-blue {
    background-color: var(--bg-light-blue);
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.shadow-lg {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* =========================================
   3. Buttons
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    border-radius: 8px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all var(--transition-fast);
    gap: 0.5rem;
}

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

.btn-primary:hover {
    background-color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-white);
    border-color: var(--text-white);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-icon svg {
    transition: transform var(--transition-fast);
}

.btn-icon:hover svg {
    transform: translateX(4px);
}

.btn-glow {
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
}

.btn-glow:hover {
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.6);
}

.btn-nav {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    white-space: nowrap;
}

.btn-cta-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    border-radius: 8px;
    border: 1.5px solid var(--primary);
    color: var(--primary);
    background: transparent;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-cta-outline:hover {
    background-color: var(--bg-light-blue);
}

/* =========================================
   4. Navigation & Navbar
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 0 5%;
    min-height: 64px;
    z-index: 1060;
    background-color: var(--bg-white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1440px;
    min-height: 64px;
    margin: 0 auto;
    position: relative;
    flex-wrap: nowrap;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: 0.5px;
    z-index: 1001;
    flex-shrink: 0;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1200;
    transition: all var(--transition-fast);
}

.hamburger:hover {
    opacity: 0.7;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2.5px;
    background-color: var(--text-dark);
    border-radius: 2px;
    transition: all var(--transition-normal);
    transform-origin: center;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0;
}

.nav-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all var(--transition-fast);
    position: relative;
    text-decoration: none;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width var(--transition-fast);
}

.nav-links a:hover {
    color: var(--text-dark);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.45);
    z-index: 1050;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* Mobile Navbar */
@media (max-width: 992px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        z-index: 1060;
        transform: translateX(100%);
        width: min(400px, 85vw);
        height: 100dvh;
        background-color: #ffffff;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 5rem 1.5rem 2rem;
        gap: 0;
        z-index: 1060;
        overflow-y: auto;
        overflow-x: hidden;
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -8px 0 32px rgba(0, 0, 0, 0.15);
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-close-btn {
        position: absolute;
        top: 1.25rem;
        right: 1.25rem;
        width: 36px;
        height: 36px;
        background: transparent;
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.25rem;
        color: var(--text-dark);
        line-height: 1;
        transition: background-color var(--transition-fast);
    }

    .nav-close-btn:hover {
        background-color: rgba(0, 0, 0, 0.05);
    }

    .nav-links {
        flex-direction: column;
        gap: 0;
        width: 100%;
        margin-bottom: 2rem;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-links a {
        display: block;
        padding: 1rem 0;
        font-size: 1.1rem;
        color: var(--text-dark);
        font-weight: 600;
        width: 100%;
    }

    .nav-links a::after {
        display: none;
    }

    .nav-links a:hover {
        color: var(--primary);
        padding-left: 8px;
    }

    .nav-actions {
        width: 100%;
        padding-top: 1rem;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
    }

    .btn-nav {
        width: 100%;
        justify-content: center;
        padding: 0.85rem;
        font-size: 1rem;
    }

    .nav-overlay {
        display: block;
        pointer-events: none;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0 4%;
    }

    .nav-logo {
        font-size: 1.1rem;
    }

    .nav-menu {
        max-width: 100%;
        padding: 5rem 1.5rem 2rem;
    }

    .nav-links a {
        font-size: 1rem;
        padding: 0.875rem 0;
    }

    .btn-nav {
        font-size: 0.95rem;
    }
}

/* =========================================
   5. Hero Section
   ========================================= */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/rectangle_4452_2043_356.png');
    background-size: 52%;
    background-position: right center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-overlay-slanted {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-dark);
    clip-path: polygon(0 0, 50% 0, 58% 100%, 0 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 9rem 5% 6rem;
    max-width: 55%;
}

.hero-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #8eb1fe;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
}

.label-line {
    height: 1px;
    width: 50px;
    background-color: #8eb1fe;
}

.hero-title {
    color: var(--text-white);
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.hero-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

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

.hero-avatar-1 {
    position: absolute;
    top: 25%;
    right: 12%;
    width: 30px;
    height: 40px;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
    object-fit: contain;
}

.hero-avatar-2 {
    position: absolute;
    bottom: 15%;
    left: 56%;
    width: 45px;
    height: 45px;
    z-index: 2;
    animation: float 8s ease-in-out infinite reverse;
    object-fit: contain;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

@media (max-width: 992px) {
    .hero-bg-image {
        background-size: cover;
        background-position: center;
    }

    .hero-overlay-slanted {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        opacity: 0.9;
    }

    .hero-content {
        max-width: 100%;
        padding: 6rem 5%;
    }

    .hero-avatar-2 {
        bottom: 30%;
        left: 65%;
    }
}

/* =========================================
   6. Features - General
   ========================================= */
.features-section {
    padding: 6rem 5% 4rem;
}

.features-intro {
    max-width: 700px;
    margin: 0 auto 4rem;
}

.feature-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-content {
    flex: 1;
    max-width: 550px;
}

.feature-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: .5rem;
    letter-spacing: -0.5px;
}

.feature-desc {
    font-size: 0.95rem;
    margin-bottom: .8rem;
    color: var(--text-body);
    line-height: 1.4;
}

.feature-list-title {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: .4rem;
}

.feature-list {
    margin-bottom: 1rem;
}

.feature-list li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-body);
}

.feature-list.dot-list li::before {
    content: "";
    width: 6px;
    height: 6px;
    background-color: var(--text-body);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 8px;
}

.feature-images {
    flex: 1;
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}

.feature-img-main {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
}

.feature-img-floating {
    position: absolute;
    z-index: 2;
    animation: float 7s ease-in-out infinite;
}

.feature-images-wrapper {
    flex: 1;
    position: relative;
    width: 100%;
    max-width: 550px;
    padding-left: 50px;
}

.main-dashboard-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
    transition: transform var(--transition-normal);
}

.feature-row:hover .main-dashboard-img {
    transform: translateY(-5px);
}

.floating-dashboard-img {
    position: absolute;
    bottom: 10%;
    left: -12%;
    width: 65%;
    z-index: 2;
    animation: float 7s ease-in-out infinite;
}

.bottom-right {
    bottom: -20px;
    right: -20px;
    max-width: 40%;
}

.top-right {
    top: -20px;
    right: 0;
    max-width: 40%;
}

.right-center {
    right: -30px;
    top: 30%;
    max-width: 35%;
}

.bottom-left {
    bottom: -20px;
    left: -20px;
    max-width: 40%;
}

.complex-layout {
    min-height: 400px;
}

.feature-blur-icon {
    position: absolute;
    left: 2%;
    top: 50%;
    transform: translateY(-50%);
    width: 120px;
    z-index: 0;
    pointer-events: none;
    opacity: 0.85;
    filter: blur(15px);
}

@media (min-width: 992px) {
    .feature-row {
        flex-direction: row;
        justify-content: space-between;
    }

    .feature-row.reverse {
        flex-direction: row-reverse;
    }
}

/* =========================================
   7. Features - Dashboard (already covered above)
   ========================================= */

/* =========================================
   8. Features - 3-Column Layout
   ========================================= */
.features-section-3col {
    padding: 4rem 5%;
    position: relative;
    overflow: hidden;
}

.feature-row-3col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-vector-svg {
    max-width: 250px;
    width: 100%;
    height: auto;
    transform: translateY(-50px);
}

.feature-col-svg {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

@media (max-width: 991px) {
    .feature-col-svg {
        position: absolute;
        width: 180px;
        height: 180px;
        opacity: 0.4;
        pointer-events: none;
        z-index: 0;
        top: 0;
        right: -40px;
        overflow: hidden;
    }

    .feature-col-svg .feature-vector-svg {
        width: 100%;
        height: 100%;
        transform: none;
    }

    .feature-row-3col .feature-img-floating.bottom-left {
        bottom: -4.5rem;
        left: 0;
        max-width: 75%;
    }
}

@media (min-width: 992px) {
    .features-section-3col {
        padding: 6rem 0;
        overflow-x: hidden;
    }

    .feature-row-3col {
        max-width: 100%;
        grid-template-columns: calc(max(0px, 50vw - 600px) + 60px) minmax(auto, 500px) 1fr;
        gap: 2rem;
        margin: 0;
    }

    .feature-col-svg {
        padding-right: 2rem;
        justify-content: flex-end;
    }

    .feature-row-3col .feature-content {
        max-width: 100%;
    }

    .feature-row-3col .feature-images {
        padding-right: max(2rem, calc(50vw - 600px));
        display: flex;
        justify-content: flex-end;
        position: relative;
    }

    .feature-row-3col .feature-img-main {
        width: 75%;
        margin-left: 25%;
        display: block;
    }

    .feature-row-3col .feature-img-floating.bottom-left {
        bottom: -3rem;
        left: 0;
        max-width: 75%;
    }

    .feature-row-3col.reverse {
        max-width: 1200px;
        margin: 0 auto;
        grid-template-columns: 1fr minmax(auto, 420px) 120px;
        align-items: flex-start;
    }

    .feature-row-3col.reverse .feature-images {
        padding-right: 0;
        padding-left: 0;
        justify-content: flex-start;
    }

    .feature-row-3col.reverse .feature-col-svg {
        padding-right: 0;
        padding-left: 1rem;
        justify-content: flex-start;
    }

    .feature-row-3col.reverse .feature-vector-svg {
        max-width: 120px;
        transform: translateY(0);
    }

    .feature-row-3col.reverse .feature-title {
        margin-bottom: 0.5rem;
    }

    .feature-row-3col.reverse .feature-desc {
        margin-bottom: 1rem;
    }

    .feature-row-3col.reverse .feature-list-title {
        margin-bottom: 0.5rem;
    }

    .feature-row-3col.reverse .feature-list li {
        margin-bottom: 0.4rem;
    }

    .feature-row-3col.reverse .feature-list {
        margin-bottom: 0.75rem;
    }
}

/* =========================================
   9. Features - Student Management
   ========================================= */
.feature-images-stacked {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    margin-top: -6%;
}

.feature-card-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 91%;
    background-color: #111827;
    border-radius: 20px;
    z-index: 0;
}

.img-boy {
    position: absolute;
    bottom: 0;
    left: 5%;
    width: 60%;
    height: auto;
    z-index: 1;
}

.img-girl {
    position: relative;
    width: 70%;
    height: auto;
    z-index: 2;
    margin-right: 5%;
}

/* =========================================
   10. Features - Staff Management
   ========================================= */
.staff-management-section {
    position: relative;
    background-image: url('images/rectangle_60_2006_404.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    padding: 1.5rem 5%;
}

.staff-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.90);
    z-index: 0;
}

.staff-management-section .feature-row {
    position: relative;
    z-index: 1;
}

.staff-shapes-container {
    position: relative;
    width: 100%;
    max-width: 480px;
    margin: 15px auto;
}

.staff-dashboard-img {
    position: relative;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    z-index: 2;
}

.staff-shape-orange {
    position: absolute;
    bottom: -3%;
    left: -2%;
    width: 50%;
    height: 55%;
    background-color: #FF8A00;
    border-radius: 20px;
    z-index: 1;
}

.staff-shape-blue {
    position: absolute;
    top: -12%;
    right: -4%;
    width: 35%;
    height: 50%;
    background-color: #4F46E5;
    border-radius: 20px;
    z-index: 1;
}

.staff-shape-circle {
    position: absolute;
    bottom: 0;
    right: -8%;
    width: 28%;
    aspect-ratio: 1 / 1;
    background-color: var(--primary);
    border-radius: 50%;
    z-index: 1;
}

@media (min-width: 992px) {
    .staff-management-section.features-section {
        padding: 1.5rem 0;
    }
}

@media (max-width: 768px) {
    .staff-shape-orange {
        left: -2%;
        bottom: -4%;
        width: 35%;
    }

    .staff-shape-blue {
        right: -2%;
        top: -4%;
        width: 30%;
    }
}

/* =========================================
   11. Features - Online Admission
   ========================================= */
.admission-section {
    overflow: hidden;
}

.admission-images {
    position: relative;
    width: 100%;
    padding-bottom: 80px;
}

.admission-main {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    position: relative;
    z-index: 1;
    display: block;
}

.admission-floating {
    position: absolute;
    bottom: -13%;
    left: -16%;
    width: 100%;
    z-index: 2;
    animation: float 7s ease-in-out infinite;
}

.admission-content {
    position: relative;
    z-index: 2;
}

.admission-vector {
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    width: 180px;
    opacity: 0.7;
    pointer-events: none;
    z-index: 0;
}

.admission-section .feature-title {
    margin-bottom: 0.5rem;
}

.admission-section .feature-content {
    margin-top: -1rem;
}

.admission-section .feature-desc {
    margin-bottom: 1rem;
}

.admission-section .feature-list-title {
    margin-bottom: 0.5rem;
}

.admission-section .feature-list li {
    margin-bottom: 0.4rem;
}

.admission-section .feature-list {
    margin-bottom: 0.75rem;
}

@media (max-width: 991px) {
    .admission-images {
        padding-bottom: 60px;
    }

    .admission-floating {
        left: -1%;
        width: 90%;
    }

    .admission-vector {
        width: 120px;
        right: -20px;
        opacity: 0.4;
    }
}

/* =========================================
   12. Features - Academics & Performance
   ========================================= */
.academics-section {
    overflow: hidden;
}

.academics-content {
    position: relative;
    z-index: 2;
}

.academics-vector {
    position: absolute;
    left: -80px;
    top: 50%;
    transform: translateY(-50%);
    width: 180px;
    opacity: 1;
    pointer-events: none;
    z-index: 0;
}

.academics-images {
    position: relative;
    padding-bottom: 60px;
}

.academics-images .feature-img-main {
    width: 100%;
    border-radius: 12px;
    position: relative;
    z-index: 1;
}

.academics-floating {
    position: absolute;
    bottom: 2%;
    left: -45%;
    width: 100%;
    z-index: 2;
    animation: float 7s ease-in-out infinite;
    border-radius: 8px;
}

@media (max-width: 991px) {
    .academics-vector {
        left: -40px;
        width: 120px;
    }

    .academics-floating {
        left: 35%;
        width: 80%;
        bottom: -10%;
    }
}

/* =========================================
   13. Features - Communication
   ========================================= */
.comm-main {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* =========================================
   14. Features - Website Customization
   ========================================= */
.website-section {
    padding: 5rem 5%;
    overflow: hidden;
    position: relative;
}

.website-section .feature-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.website-content {
    flex: 1;
    max-width: 500px;
    position: relative;
    z-index: 2;
}

.website-vector {
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    max-width: 160px;
    pointer-events: none;
    z-index: 0;
}

.website-images {
    flex: 1;
    position: relative;
    width: 100%;
    max-width: 580px;
    min-height: 420px;
}

.website-main {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56%;
    height: auto;
    z-index: 2;
    border-radius: 12px;
    display: block;
}

.website-chip-top {
    position: absolute;
    top: -4%;
    left: -2%;
    width: 100%;
    height: auto;
    z-index: 4;
    animation: float 5s ease-in-out infinite;
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.15));
}

.website-chip-bottom {
    position: absolute;
    bottom: 0%;
    right: -5%;
    width: 60%;
    height: auto;
    z-index: 4;
    animation: float 7s ease-in-out infinite reverse;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.18));
}

.website-gem {
    position: absolute;
    top: 20%;
    right: 1%;
    width: 60px;
    height: auto;
    z-index: 3;
    animation: float 6s ease-in-out infinite 1s;
    pointer-events: none;
}

@media (min-width: 992px) {
    .website-section .feature-row {
        flex-direction: row;
        justify-content: space-between;
        gap: 4rem;
    }

    .website-images {
        min-height: 460px;
    }
}

@media (max-width: 991px) and (min-width: 768px) {
    .website-images {
        min-height: 360px;
    }

    .website-vector {
        right: -30px;
        max-width: 110px;
        opacity: 0.35;
    }
}

@media (max-width: 767px) {
    .website-section {
        padding: 3rem 1.5rem;
    }

    .website-images {
        min-height: 300px;
        max-width: 100%;
    }

    .website-main {
        top: 80%;
        left: 40%;
    }

    .website-chip-top {
        width: 50%;
        top: 25%;
        left: 10%;
    }

    .website-chip-bottom {
        width: 65%;
        bottom: -5%;
        right: -3%;
    }

    .website-gem {
        right: -5%;
        width: 45px;
    }

    .website-vector {
        right: -20px;
        max-width: 80px;
        opacity: 0.2;
    }
}

@media (max-width: 480px) {
    .website-images {
        min-height: 250px;
    }

    .website-gem {
        display: none;
    }

    .website-vector {
        display: none;
    }
}

/* =========================================
   15. How It Works
   ========================================= */
.how-it-works {
    position: relative;
    padding: 5rem 5% 6rem;
    overflow: hidden;
    display: block;
}

.hiw-bg {
    position: absolute;
    inset: 0;
    background-image: url('images/howitworkbg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    opacity: .25;
}

.hiw-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(12, 20, 49, 0.78);
    z-index: 1;
}

.hiw-gem {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.hiw-gem--topleft {
    top: 8%;
    left: 3%;
    width: 30px;
}

.hiw-gem--bottomleft {
    bottom: 18%;
    left: 5%;
    width: 48px;
    animation: float 7s ease-in-out infinite;
}

.hiw-dot-orange {
    position: absolute;
    top: 13%;
    left: 18%;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #FF8A00;
    z-index: 1;
    opacity: 0.9;
}

.hiw-header {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 3.5rem;
}

.hiw-header .section-subtitle {
    margin-bottom: 0;
    opacity: 0.75;
}

.hiw-grid {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hiw-step {
    display: grid;
    grid-template-columns: 160px 60px 1fr;
    align-items: flex-start;
    min-height: 90px;
}

.hiw-left {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hiw-box {
    border: 1.5px dashed rgba(255, 255, 255, 0.5);
    border-radius: 6px;
    padding: 0.6rem 2rem;
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
    text-align: center;
    width: 100%;
}

.hiw-connector-v {
    width: 1px;
    flex: 1;
    min-height: 48px;
    border-left: 1.5px dashed rgba(255, 255, 255, 0.35);
    margin-top: 2px;
}

.hiw-line-h {
    align-self: flex-start;
    margin-top: 1rem;
    border-top: 1.5px dashed rgba(255, 255, 255, 0.35);
    width: 100%;
}

.hiw-right {
    padding-left: 0.5rem;
    padding-bottom: 2rem;
}

.hiw-step--last .hiw-right {
    padding-bottom: 0;
}

.hiw-step-title {
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    font-family: var(--font-heading);
}

.hiw-step-desc {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    line-height: 1.5;
}

.hiw-bottom-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 2;
    pointer-events: none;
}

@media (max-width: 768px) {
    .hiw-grid {
        max-width: 100%;
    }

    .hiw-step {
        grid-template-columns: 110px 40px 1fr;
    }

    .hiw-box {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .hiw-gem--bottomleft {
        width: 36px;
        left: 2%;
    }

    .hiw-dot-orange {
        left: 8%;
    }
}

/* =========================================
   16. Why Choose Us
   ========================================= */
.why-choose-us {
    padding: 5rem 5%;
    background-color: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.why-choose-us .section-title {
    margin-bottom: 0.4rem;
}

.wcu-dot-img {
    width: 30px;
    height: 30px;
    margin: 0 0 2.5rem;
    position: absolute;
    top: 15%;
    left: 30%;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    width: 100%;
    margin-top: 30px;
}

.benefit-card {
    padding: 1.75rem 2rem;
    background: var(--bg-white);
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
    transition: box-shadow var(--transition-fast);
}

.benefit-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.11);
}

.benefit-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.benefit-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    line-height: 1.5;
    margin-top: 20px;
}

.benefit-link {
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--primary);
    text-decoration: none;
}

.benefit-link:hover {
    color: var(--primary-dark);
}

.wcu-gem {
    position: absolute;
    bottom: 2%;
    right: -10px;
    width: 60px;
    height: auto;
    pointer-events: none;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

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

    .wcu-gem {
        width: 40px;
    }
}

/* =========================================
   17. Pricing
   ========================================= */
.pricing-section {
    padding: 5rem 5%;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    color: var(--text-white);
    position: relative;
    overflow: hidden;
}

.pricing-bg {
    position: absolute;
    inset: 0;
    background-image: url('images/princingbg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.pricing-gem {
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: auto;
    pointer-events: none;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

.pricing-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.pricing-title {
    color: var(--text-white);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.pricing-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.pricing-list-title {
    color: var(--text-white);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.pricing-list {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1.5rem;
}

.pricing-list li {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
}

.pricing-cta-text {
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--text-white);
    font-size: 0.95rem;
}

.pricing-images {
    flex: 1;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    min-height: 380px;
}

.pricing-img {
    width: 100%;
    max-width: 480px;
    height: auto;
    position: relative;
    z-index: 1;
    display: block;
}

@media (min-width: 992px) {
    .pricing-section {
        flex-direction: row;
        align-items: center;
        gap: 4rem;
    }
}

@media (max-width: 767px) {
    .pricing-images {
        min-height: 300px;
    }

    .pricing-gem {
        width: 40px;
    }
}

/* =========================================
   18. Testimonials
   ========================================= */
.testimonials-section {
    padding: 5rem 5%;
    background-color: var(--bg-light);
}

.testimonials-inner {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.testimonial-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.testimonial-avatars {
    display: flex;
    margin-bottom: 2rem;
}

.t-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid var(--bg-white);
    object-fit: cover;
    margin-left: -10px;
}

.t-avatar:first-child {
    margin-left: 0;
}

.testimonial-quote-circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background-color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.quote-svg {
    width: 56px;
    height: 56px;
    object-fit: contain;
}

.testimonial-trusted {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-align: center;
    max-width: 160px;
}

.testimonial-right {
    flex: 1;
    min-width: 0;
    width: 100%;
    max-width: 100%;
}

.testimonial-right .section-title {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.testimonial-carousel {
    overflow: hidden;
    width: 100%;
}

.testimonial-track {
    display: flex;
    transition: transform 0.45s ease-in-out;
}

.testimonial-card {
    min-width: 100%;
    box-sizing: border-box;
    padding: 1rem;
}

.testimonial-card-inner {
    background: var(--bg-white);
    padding: 1.75rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    height: 100%;
    box-sizing: border-box;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.author-info {
    text-align: left;
}

.author-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
}

.author-school {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.testimonial-divider {
    border: none;
    border-top: 1px solid #e5e7eb;
    margin: 1rem 0;
}

.testimonial-text {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.7;
    text-align: center;
    font-style: normal;
}

.testimonial-dots {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-end;
    margin-top: 1.25rem;
}

.t-dot {
    width: 45px;
    height: 3px;
    border-radius: 3px;
    background-color: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.t-dot--active {
    background-color: var(--primary-dark);
    width: 60px;
}

@media (min-width: 992px) {
    .testimonials-inner {
        flex-direction: row;
        align-items: flex-start;
        gap: 5rem;
    }
}

@media (max-width: 767px) {
    .testimonials-section {
        padding: 4rem 1.5rem;
    }

    .testimonial-right .section-title {
        text-align: center;
    }

    .testimonial-dots {
        justify-content: center;
    }
}

/* =========================================
   19. FAQ
   ========================================= */
.faq-section {
    padding: 5rem 5%;
    background-color: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.faq-section .section-title {
    margin-bottom: 2rem;
}

.faq-gem {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.faq-gem--topright {
    top: 4%;
    right: 2%;
    width: 52px;
}

.faq-gem--left {
    left: 2%;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-item {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    border-bottom: 1px solid #e5e7eb;
    overflow: hidden;
}

.faq-item:first-child {
    border-top: 1px solid #e5e7eb;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.25rem 0;
    background: transparent;
    border: none;
    font-family: var(--font-heading);
    font-size: 0.975rem;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: color var(--transition-fast);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-icon {
    font-size: 0;
    flex-shrink: 0;
    transition: transform var(--transition-normal);
    line-height: 1;
}

.faq-icon::before {
    font-size: 1.25rem;
    content: '+';
}

.faq-item.active .faq-icon::before {
    content: '−';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    padding: 0;
}

.faq-item.active .faq-answer {
    padding-bottom: 1.25rem;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* =========================================
   20. CTA Section
   ========================================= */
.cta-section {
    padding: 5rem 5%;
    background-color: var(--bg-white);
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #f1f5f9;
}

.cta-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-desc {
    font-size: 0.9rem;
    color: var(--text-body);
    max-width: 520px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-gem {
    position: absolute;
    bottom: 10%;
    right: 2%;
    width: 52px;
    pointer-events: none;
    animation: float 6s ease-in-out infinite;
}

@media (max-width: 640px) {
    .cta-title {
        font-size: 1.5rem;
    }
}

/* =========================================
   21. Footer
   ========================================= */
.footer {
    background-color: var(--primary-dark);
    padding: 4rem 5% 2rem;
    color: var(--text-white);
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: space-between;
    max-width: 1440px;
    margin: 0 auto 3rem;
}

.footer-brand {
    flex: 1 1 320px;
    max-width: 420px;
}

.footer-logo {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: 1px;
    margin-bottom: 1.25rem;
    text-decoration: none;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.875rem;
    line-height: 1.8;
    margin-bottom: 1.75rem;
}

.footer-bottom-brand {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-links {
    display: flex;
    gap: 0.6rem;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.12);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    text-decoration: none;
    transition: background-color var(--transition-fast);
}

.social-icon:hover {
    background-color: var(--primary);
    color: var(--text-white);
}

.help-box {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: transparent;
    padding: 0;
}

.help-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1rem;
}

.help-box span {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    font-weight: 500;
}

.footer-column {
    flex: 1 1 160px;
}

.footer-heading {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.footer-text {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.875rem;
    line-height: 1.7;
}

.footer-menu li {
    margin-bottom: 0.65rem;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.875rem;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-menu a:hover {
    color: var(--text-white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.75rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    max-width: 1440px;
    margin: 0 auto;
}

.footer-brand-name {
    color: var(--primary);
    font-weight: 600;
}

@media (max-width: 768px) {
    .footer-logo {
        font-size: 2rem;
    }

    .footer-brand {
        max-width: 100%;
    }
}

/* =========================================
   22. Responsive Adjustments
   ========================================= */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.25rem;
    }

    .pricing-list {
        grid-template-columns: 1fr;
    }

    .feature-images.complex-layout {
        min-height: 300px;
    }
}