:root {
    --primary-color: #5f3e94;
    --primary-color-hover: #4b3272;
    --footer-color: #0f0d33;
    --secondary-color: #22a4e1;
    --secondary-color-hover: #0088cc;
    --linear-gradient: linear-gradient(to right, #542c8a, #735eba, #542c8a);
    --linear-gradient-hover: linear-gradient(to right, #735eba, #542c8a);
    --text-color: #333;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --header-height: 60px;
    --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;
    /* New typography variables */
    --text-xs: 0.75rem; /* 12px */
    --text-sm: 0.875rem; /* 14px */
    --text-base: 1rem; /* 16px */
    --text-lg: 1.125rem; /* 18px */
    --text-xl: 1.25rem; /* 20px */
    --text-2xl: 1.5rem; /* 24px */
    --text-3xl: 1.875rem; /* 30px */
    --text-4xl: 2.25rem; /* 36px */
    --text-5xl: 3rem; /* 48px */
    --text-6xl: 3.75rem; /* 60px */

    /* Fluid typography variables */
    --fluid-min-width: 320px;
    --fluid-max-width: 1200px;
    --fluid-min-scale: 1; /* Minimum scale factor */
    --fluid-max-scale: 1.2; /* Maximum scale factor */
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html,
body {
    overflow-x: hidden;
}

@font-face {
    font-family: 'RB Regular';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../../../fonts/RB_Regular/RB\ Bold.ttf') format('truetype');
}

@font-face {
    font-family: 'RB Regular';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../../../fonts/RB_Regular/RB\ Regular.ttf') format('truetype');
}
*,
*::before,
*::after {
    box-sizing: border-box;
}
body {
    font-family: 'RB Regular', sans-serif;
}

/* ===============================
    1. navbar CSS
================================== */

.website-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--white);
    box-shadow: var(--shadow);
    padding: 10px 0;
}

.header-top {
    height: var(--header-height);
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 20px;
}

.logo {
    flex-shrink: 0;
    margin-left: 0;
}

.logo img {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
}

/* Desktop Navigation */
.desktop-nav {
    flex-grow: 1;
}

.nav-list {
    display: flex;
    list-style: none;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.nav-list li {
    margin-left: 10px;
}

.nav-list a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 12px;
    transition: all 0.3s;
    display: block;
}

.nav-list a:hover {
    color: var(--primary-color);
}

.header-buttons {
    display: flex;
    flex-shrink: 0;
    align-items: center;
}
.header-buttons .rs-right-btn-inner a,
.nav-list .menu-item-changeLanguage a {
    color: #000;
    transition: all 0.3s ease;
}
.header-buttons .rs-right-btn-inner a:hover,
.nav-list .menu-item-changeLanguage a:hover {
    color: var(--secondary-color);
    transition: all 0.3s ease;
}
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 0px !important;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s;
    white-space: nowrap;
}
/* .btn:hover {
    transform: translateY(-2px);
} */
.btn-primary {
    background: var(--linear-gradient);
    color: var(--white);
    border: none;
}

.btn-primary:hover {
    background: var(--linear-gradient-hover);
    /* transform: translateY(-2px); */
}

.btn-login {
    background-color: transparent;
    color: #000;
}

.btn-login:hover {
    /* background-color: var(--white);
    transform: translateY(-2px); */
    color: var(--secondary-color);
    /* border: 2px solid var(--secondary-color); */
}

.nav-list li.active a {
    color: var(--primary-color);
    font-weight: 600;
    position: relative;
}

.nav-list li a:active {
    color: var(--primary-color);
}

.nav-list li a:hover {
    color: var(--primary-color);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    width: 30px;
    height: 24px;
    position: relative;
    cursor: pointer;
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--primary-color);
    /* border-radius: 3px; */
    transition: all 0.3s;
}

.mobile-toggle span:nth-child(1) {
    top: 0;
}

.mobile-toggle span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.mobile-toggle span:nth-child(3) {
    bottom: 0;
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    background: var(--white);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 999;
}

.mobile-nav.active {
    max-height: 500px;
    padding: 20px 0;
}

.mobile-nav .nav-list {
    flex-direction: column;
    padding: 0;
}

.mobile-nav .nav-list li {
    margin: 0;
    text-align: right;
}

.mobile-nav .nav-list a {
    padding: 12px 15px;
    border-bottom: 1px solid var(--white);
    display: flex;
    align-items: center;
    gap: 4px;
}

.mobile-buttons {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 15px;
}

.mobile-toggle {
    width: 30px;
    height: 18px !important;
}

/* Desktop Navigation */
.nav-list a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 12px;
    transition: all 0.3s;
    display: block;
    position: relative;
}

/* .nav-list a:hover {
    color: var(--primary-color);
}


.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: #8A2BE2;
    transition: width 0.3s ease;
}

.nav-list a:hover::after {
    width: 80%;
} */
/* Responsive Styles */
@media (max-width: 992px) {
    .desktop-nav,
    .header-buttons {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }
    .website-header {
        padding: 0px;

        box-shadow: none;
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

@media (min-width: 993px) {
    .mobile-nav {
        display: none;
    }
}

@media (max-width: 576px) {
    .logo img {
        height: 30px;
    }
}

/* ===============================
    1. end navbar CSS
================================== */

/* ===============================
    2. footer CSS
================================== */
.footer {
    background-color: var(--footer-color);
    color: var(--white);
    padding: 40px 0 20px;
}

.footer-section {
    margin-bottom: 30px;
}

.footer-title {
    font-weight: bold;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    font-size: 1.4rem;
}
/*
.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
} */

.footer-links a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: var(--white);
    /* padding-right: 5px; */
}

.footer-contact p {
    margin-bottom: 10px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.footer-contact i {
    margin-left: 10px;
    color: var(--secondary-color);
}

.app-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.app-btn {
    /* background-color: #283056; */
    color: white;
    padding: 8px 15px;
    /* border-radius: 5px; */
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.app-btn:hover {
    background-color: #283056;
    color: white;
}

.social-icons {
    margin-top: 15px;
}

.social-icons a {
    display: inline-block;
    color: #ccc;
    font-size: 16px;
    margin-left: 10px;
    transition: color 0.3s;
    background: #283056;
    padding: 12px;
    /* border-radius: 2px; */
}

.social-icons a:hover {
    color: #4dabf7;
}

.footer-about {
    border-top: 1px solid #444;
    padding-top: 20px;
    margin-top: 30px;
}

.footer-about {
    font-size: 14px;
    color: #aaa;
    margin: 0;
}
.footer-about .text-color {
    text-align: end;
}

.terms-link {
    color: #aaa;
    text-decoration: none;
}

.terms-link:hover {
    text-decoration: underline;
    color: var(--white);
}
.app-button {
    display: flex;
}

@media (max-width: 768px) {
    .footer-title::after {
        right: 50%;
        transform: translateX(50%);
    }

    .app-buttons {
        justify-content: center;
    }
    .footer-contact {
        text-align: center;
        display: inline-block;
    }

    .footer-about,
    .footer-about .text-color {
        text-align: center;
    }
}
@media (max-width: 576px) {
    .app-button {
        display: none;
    }
}

/* ===============================
    2. end footer CSS
================================== */

/* ===============================
    3. landing-hero CSS
================================== */

.eduexpert-hero {
    color: var(--white);
    height: 100vh;
    padding: 8rem 1rem;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    text-align: right;

}
.eduexpert-hero-backgrounds .eduexpert-hero-bg-slide {
    background-position: top;
 }

.desktop-only { display: block;
 }
.mobile-only { display: none; }



/* Background Slides Styles with Parallax */
.eduexpert-hero-backgrounds {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    perspective: 1000px;
}

.eduexpert-hero-bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.1) translateZ(0);
    transition: all 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, opacity;
    z-index: 1;
}

/* .eduexpert-hero-bg-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
                  rgba(0, 0, 0, 0.6) 0%,
                  rgba(0, 0, 0, 0.3) 50%,
                  rgba(0, 0, 0, 0.6) 100%);
  } */
.eduexpert-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.eduexpert-hero-bg-slide.active {
    opacity: 1;
    transform: scale(1) translateZ(0);
    animation: eduexpertKenBurns 20s infinite alternate;
}

@keyframes eduexpertKenBurns {
    0% {
        transform: scale(1) translateX(0) translateY(0);
    }
    100% {
        transform: scale(1.1) translateX(-3%) translateY(-3%);
    }
}

/* Overlay Gradient */
/* .eduexpert-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.2) 0%,
      rgba(0, 0, 0, 0.6) 100%
    );
    z-index: 2;
  } */

/* Content Styles */
.eduexpert-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 3;
}

/* Buttons Styles */
.eduexpert-btn {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.eduexpert-btn-primary {
    background-color: var(--white);
    /* border-color: var(--primary-color); */
    min-width: 180px;
    color: var(--primary-color);
}

.eduexpert-btn-primary:hover {
    background-color: #f0f0f0;
    color: var(--primary-color);
    /* border-color: var(--primary-color-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    color: var(--white); */
}

.eduexpert-btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.eduexpert-btn-primary:hover::after {
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: scale(20, 20);
        opacity: 0;
    }
}

.eduexpert-btn-outline-light {
    /* border-color: var(--white); */
    color: var(--white);
    min-width: 180px;
}

.eduexpert-btn-outline-light:hover {
    /* background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    color: var(--white); */
    color: var(--secondary-color);
}

/* Enhanced Background Indicators */
.eduexpert-background-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 4;
}

.eduexpert-background-indicators button {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    opacity: 0.7;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
    position: relative;
    margin: 8px;
}

.eduexpert-background-indicators button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.3s ease;
}

.eduexpert-background-indicators button.active {
    opacity: 1;
    border-color: var(--white);
}

.eduexpert-background-indicators button.active::before {
    transform: translate(-50%, -50%) scale(1);
    background-color: var(--white);
}

.eduexpert-background-indicators button:hover {
    transform: scale(1.2);
}

.nav-pills .nav-link {
    border-radius: 0px !important;
}

/* Navigation Arrows */
.eduexpert-slide-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 4;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.eduexpert-slide-nav:hover {
    background: rgba(0, 0, 0, 0.5);
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.eduexpert-slide-prev {
    left: 20px;
}

.eduexpert-slide-next {
    right: 20px;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .eduexpert-hero-content h1 {
        font-size: 3.5rem !important;
    }

}
@media (max-width: 1024px) {
     .eduexpert-hero {
        height: 55vh;
    }
}
@media (max-width: 992px) {
    .eduexpert-hero-content h1 {
        font-size: 3rem !important;
    }

    .eduexpert-slide-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

}

@media (max-width: 768px) {
    .eduexpert-hero-content {
        padding: 1.5rem;
        text-align: center;
    }

    .eduexpert-hero-content h1 {
        font-size: 2.5rem !important;
    }

    .eduexpert-hero-content .lead {
        font-size: 1.1rem;
    }

    .eduexpert-slide-nav {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .eduexpert-background-indicators {
        bottom: 20px;
    }
    .eduexpert-hero {
        /* min-height: 60vh; */
        padding: 4rem 1rem;
        height: auto;
    }
}
@media (max-width: 768px) {
  .desktop-only { display: none; }
  .mobile-only { display: block; }
}
@media (max-width: 576px) {
    .eduexpert-hero-content h1 {
        font-size: 2.2rem !important;
        margin-bottom: 1rem !important;
    }

    .eduexpert-hero-content p.fw-bold {
        font-size: 1.2rem !important;
    }

    .eduexpert-btn {
        padding: 0.75rem 1.5rem !important;
        font-size: 1rem !important;
    }

    .eduexpert-slide-nav {
        display: none;
    }
    /* .eduexpert-hero {
        min-height: 70vh;
    } */
}

@media (max-width: 400px) {
    .eduexpert-hero-content h1 {
        font-size: 2rem !important;
    }
    .ai-tabs .nav-link {
        padding: 10px 15px !important;
    }
}

/* ===============================
    3. end landing-hero CSS
================================== */

/* ===============================
    4.  landing-ai CSS
================================== */
.landing-ai h2,
.landing-ai p {
    color: var(--primary-color);
}

.ai-tabs .nav-link {
    background-color: var(--white);
    border: 2px solid #e0e0e0;
    /* border-radius: 4px; */
    color: var(--primary-color);
    transition: all 0.3s ease;
    /* padding: 22px 20px; */
    padding: 20px 15px;
    font-size: 1.3rem;
    text-align: right;
    position: relative;
    height: 100%;
}

.ai-tabs .nav-link .tab-number {
    display: inline-block;
    background-color: #f0f0f0;
    color: var(--secondary-color);
    padding: 5px 12px;
    font-weight: bold;
    font-size: 0.9rem;
    min-width: 32px;
    text-align: center;
    transition: box-shadow 0.3s ease;
    border: 4px solid;
}

.landing-ai .tab-content {
    height: 100%;
}

.ai-tabs .nav-link.active {
    color: var(--secondary-color);

    background-color: var(--white);
    box-shadow: inset 0 0 20px rgba(0, 95, 142, 0.25);
}

/* .ai-tabs .nav-link .tab-number {
    color: #3a2460;
    background-color: #f0f0f0;
  } */
.icon-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.icon-container h3 {
    font-size: calc(1.1rem + 0.6vw);
}

.icon-container i,
.icon-container svg {
    background: var(--white);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--secondary-color);
    display: inline-block;
    background-color: #f0f0f0;
    color: var(--secondary-color);
    padding: 5px 12px;
    font-weight: bold;
    font-size: 1.5rem;
    min-width: 32px;
    text-align: center;
    transition: box-shadow 0.3s ease;
    /* border-radius: 4px; */
}
/* .ai-tabs .nav-link.active {
    background-color: var(--white);
    color:  var(--secondary-color);
    border-color: var(--secondary-color);
    box-shadow: inset 0 0 10px rgba(34, 164, 225, 0.25);
  } */

.tab-content .ai-box {
    min-height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow 0.3s ease;
    background-color: #d5cce2;
}

.landing-ai .bg-tab-highlight {
    box-shadow: inset 0 0 20px rgba(34, 164, 225, 0.25);
}

.ai-circles {
    position: relative;
    width: 100%;
    height: 0;
    overflow: visible;
    z-index: 0;
}

.circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    z-index: -1;
}

.circle-1 {
    width: 300px;
    height: 300px;
    background: var(--secondary-color);
    right: -150px;
    bottom: -150px;
    filter: blur(20px);
}

.circle-2 {
    width: 300px;
    height: 300px;
    background: var(--secondary-color);
    left: -150px;
    bottom: -150px;
    filter: blur(20px);
}

@media (max-width: 768px) {
    .circle-1 {
        width: 200px;
        height: 200px;
    }

    .circle-2 {
        width: 200px;
        height: 200px;
    }
}

/* .landing-ai {
    position: relative;
    overflow: hidden;
    background-color: #ffffff;
  }


  .landing-ai .text-muted {
    color: #495057 !important;
  }


  .ai-tabs .nav-link {
    background-color: #ffffff;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    color: #1a3e72;
    transition: all 0.3s ease;
    padding: 18px 20px;
    font-size: 1.1rem;
    text-align: right;
    margin-bottom: 12px;
  }

  .ai-tabs .nav-link:hover {
    border-color: #86b7fe;
  }

  .ai-tabs .nav-link.active {
    background-color: #f8f9fa;
    color: #0d6efd;
    border-color: #0d6efd;
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.25);
  }


  .ai-tabs .nav-link .tab-number {
    background-color: #e9ecef;
    color: #1a3e72;
    padding: 6px 12px;
    border: 3px solid #e9ecef;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 4px;
    min-width: 30px;
    text-align: center;
  }

  .ai-tabs .nav-link.active .tab-number {
    background-color: #ffffff;
    color: #0d6efd;
    border-color: #0d6efd;
  }


  .icon-container {
    margin: -15px 0 15px;
  }

  .icon-container i,
  .icon-container svg {
    background-color: #f8f9fa;
    color: #0d6efd;
    border: 2px solid #0d6efd;
    padding: 12px;
    font-size: 1.8rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  }


  .tab-content {
    background-color: #ffffff;
    border-radius: 8px;
    border: 1px solid #dee2e6;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
    padding: 25px;
  }

  .tab-content h5 {
    color: #212529;
    font-weight: 700;
    margin-bottom: 1rem;
  }

  .tab-content .ai-box {
    min-height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    border-radius: 8px;
    border: 1px dashed #adb5bd;
  }


  .ai-circles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    overflow: hidden;
  }

  .circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    filter: blur(30px);
  }

  .circle-1 {
    width: 300px;
    height: 300px;
    background: #0d6efd;
    right: -100px;
    bottom: -100px;
  }

  .circle-2 {
    width: 300px;
    height: 300px;
    background: #0d6efd;
    left: -100px;
    top: -100px;
  }


  @media (max-width: 768px) {
    .ai-tabs .nav-link {
      padding: 14px 16px;
      font-size: 1rem;
    }

    .circle-1,
    .circle-2 {
      width: 200px;
      height: 200px;
      filter: blur(20px);
    }
  } */
/* ===============================
    4. end landing-ai CSS
================================== */

/* ===============================
    5.  landing-features CSS
================================== */
.features-section {
    direction: rtl;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    background-image: url('/eduexpertwebsite/images/landing/bg-schools.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.features-header {
    text-align: center;
    margin-bottom: 30px;
}
.features-header h2 {
    color: var(--primary-color);
    font-size: 2rem;
}

.features-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.features-row {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-box {
    background-color: #f3f0ff;
    padding: 15px;
    height: 220px;
    width: calc(25% - 20px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
}

.feature-box h3 {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1.4;
}

.feature-box p {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.feature-box img {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.arrow-icon-rotated {
    position: absolute;
    top: 10px;
    left: 10px;
    transform: rotate(-45deg);
    z-index: 2;
}

.arrow-icon-rotated svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 992px) {
    .feature-box {
        width: calc(50% - 15px);
        height: 220px;
    }
}

@media (max-width: 768px) {
    .feature-box {
        width: 100%;
        /* max-width: 250px; */
        margin: 0 auto;
        height: 200px;
    }
    .features-header h2 {
        font-size: 1.6rem;
    }
    .feature-box h3 {
        font-size: 16px;
    }
    .feature-box p {
        font-size: 13px;
        -webkit-line-clamp: 4;
    }
}

/* .features-section {
    direction: rtl;
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    background-image: url('/eduexpertwebsite/images/landing/bg-schools.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }

  .features-header {
    text-align: center;
    margin-bottom: 20px;
  }
  .features-header h2 {
      color: var(--primary-color);
      font-size: 2rem
  }
  .features-circular-container {
    width: 100%;
    position: relative;
    height: 450px;
    overflow: hidden;
  }

  .features-row {
    display: flex;
    gap: 20px;
    padding: 10px;
    width: max-content;
  }

  .features-row-top {
    position: absolute;
    top: 0;
    left: 0;
    animation: scrollRight 30s linear infinite;
  }

  .features-row-bottom {
    position: absolute;
    top: 200px;
    left: 0;
    margin-top: 30px;
    animation: scrollLeft 30s linear infinite;
  }

  .feature-box {
    background-color: #F3F0FF;
    padding: 12px;
    height: 200px;
    width: 270px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    flex-shrink: 0;
  }

  .feature-box h3 {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1.4;
  }

  .feature-box p {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .feature-box img {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
  }

  .feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    animation-play-state: paused;
  }
  .arrow-icon-rotated {
    position: absolute;
    top: 10px;
    left: 10px;
    transform: rotate(-45deg);
    z-index: 2;
  }

  .arrow-icon-rotated svg {
    width: 20px;
    height: 20px;
  }



  @media (max-width: 768px) {
    .feature-box {
      min-width: 200px;

    }
    .features-header h2 {
        font-size: 1.6rem
    }

    .feature-box h3 {
      font-size: 16px;
    }

    .feature-box p {
      font-size: 13px;
      -webkit-line-clamp: 4;
    }

    .features-row-bottom {
      top: 240px;
    }

    .features-circular-container {
      height: 480px;
    }
  }


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

  @keyframes scrollRight {
    0% {
      transform: translateX(-50%);
    }
    100% {
      transform: translateX(0);
    }
  } */
/* ===============================
    5. end landing-features CSS
================================== */

/* ===============================
    6.  landing-analysis CSS
================================== */
/* .analysis-section {
    background: var(--linear-gradient);
  }
  .analysis-section h2 {
    line-height: 1.6;
    font-size: 2rem;
  }
  .analysis-section p {
    text-align: justify;
  }

  .analysis-section .text-secondary-color {
    color: var(--secondary-color);
  }

  .analysis-section .btn-secondary-color {
    background-color: var(--white);
    color: var(--primary-color);
    transition: 0.3s ease;

  }
  .analysis-span .number {
    font-size: 49px;
  }
  .analysis-span .number span {
    font-size: 12px;
    display: flex;
  }
  .analysis-section .btn-secondary-color:hover {

      color: var(--primary-color);
      background-color: #f0f0f0;
  }

  .analysis-section .stat-box {
    background: var(--white);
    color: var(--primary-color);
    padding: 1rem 1.5rem;
    min-width: 45%;
    box-shadow: var(--shadow);
  }

  .analysis-section .stat-number {
    font-size: 2rem;
    font-weight: bold;
  }

  .analysis-section .stat-label {
    font-size: 0.9rem;
    font-weight: 600;
  }

  .analysis-section .bg-primary-color {
    background-color: var(--primary-color);
  } */
/* ===============================
    6.  landing-analysis CSS
================================== */
.analysis-section {
    background: var(--linear-gradient);
}
.analysis-section h2 {
    line-height: 1.6;
    font-size: 2rem;
}
.analysis-section p {
    text-align: justify;
}

.analysis-section .text-secondary-color {
    color: var(--secondary-color);
}

.analysis-span .number {
    font-size: 49px;
}
.analysis-span .number span {
    font-size: 12px;
    display: flex;
}

.analysis-section .stat-box {
    /* background: var(--white); */
    color: var(--primary-color);
    padding: 1.5rem 2rem;
    box-shadow: var(--shadow);
    /* border-radius: 12px; */
    transition: all 0.3s ease;
    min-width: 160px;
}
.analysis-section .stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.analysis-section .stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
    color: white;
    text-align: center;
}
.analysis-section .btn-secondary-color {
    transition: 0.3s ease;
    background-color: var(--white);
    background: transparent;
    color: var(--primary-color);
    border: none;
    padding: 11px 37px;
    margin-top: 20px;
    font-weight: bold;
    width: 35%;
    transition: 0.3s;
    display: flex;
    justify-content: center;
}
.analysis-section .btn-secondary-color:hover {
    background-color: #f0f0f0;
    color: var(--primary-color);
}
.analysis-section .stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    text-align: center;
}

.stat-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    /* border-radius: 16px; */
    border: 1px solid rgba(255, 255, 255, 0.2);
    /* transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); */
    overflow: hidden;
    z-index: 1;
    min-width: 180px;
}

.stat-box:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.icon-wrapper {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 auto;
}

.ai-tools-icon {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border: 2px solid var(--secondary-color);
}

.ai-tools-icon .particles {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px dashed var(--secondary-color);
    animation: rotate 15s linear infinite;
    opacity: 0.6;
}

.satisfaction-icon {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff6b6b;
    font-size: 1.5rem;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 50%;
    border: 2px solid #ff6b6b;
}

.satisfaction-icon .pulse-effect {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 107, 107, 0.3);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.stat-box:hover .hover-effect {
    height: 100%;
}

.stat-box:hover .stat-number,
.stat-box:hover .stat-label {
    color: white !important;
}

.analysis-section .btn-secondary-color {
    transition: 0.3s ease;
    background-color: var(--white);
    color: var(--primary-color);
    border: none;
    padding: 11px 37px;
    margin-top: 20px;
    font-weight: bold;
    min-width: 180px;
    transition: 0.3s;
    display: inline-flex;
    justify-content: center;
    text-align: center;
}

@media (max-width: 992px) {
    .analysis-section .text-lg-start {
        text-align: center !important;
    }
    .analysis-section .btn-secondary-color {
        transition: 0.3s ease;
        background-color: var(--white);
        /* background: transparent; */
        color: var(--primary-color);
        border: none;
        padding: 11px 37px;
        margin-top: 20px;
        font-weight: bold;

        transition: 0.3s;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .analysis-section .justify-content-lg-start {
        justify-content: center !important;
    }

    .analysis-section .btn-secondary-color {
        width: 100%;
        max-width: 250px;
        margin: 20px auto 0;
    }

    .order-1 {
        order: 1 !important;
    }

    .order-2 {
        order: 2 !important;
    }
}
/* ===============================
    6. end landing-analysis CSS
================================== */

/* ===============================
    7.  landing-about CSS
================================== */

.about-section h2 {
    color: var(--primary-color);
    line-height: 1.6;
    font-size: 2rem;
}

.about-section p {
    line-height: 1.8;
}

.about-section img {
    object-fit: cover;
}

/* ===============================
    7. end landing-about CSS
================================== */

/* ===============================
    8.  landing-users CSS
================================== */

.users-section {
    background-color: #e4dbff;
}
.users-section .row a {
    color: #000;
}
.section-title {
    color: var(--primary-color);
    font-size: 2rem;
}

.user-box {
    background-color: var(--white);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    cursor: pointer;
    height: 200px;
}

.user-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.user-label {
    font-weight: 600;
    font-size: 1rem;
    /* color: var(--primary-color); */
}

.bg-glass {
    background: rgb(199 196 203 / 70%);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.object-fit-cover {
    object-fit: cover;
}
@media (max-width: 768px) {
    .analysis-section h2,
    .about-section h2,
    .section-title {
        font-size: 1.6rem;
    }
}
/* ===============================
    8. end landing-users CSS
================================== */

/* ===============================
    9.  landing-system-features CSS
================================== */
.system-features {
    color: var(--text-color);
}

.system-features h2 {
    color: var(--primary-color);
    font-size: 2rem;
}
.system-features h3 {
    font-size: 1.2rem;
}
.system-features .feature-item {
    color: var(--text-color);
}

.system-features .feature-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    background: #f6f6f6;
    padding: 6px;
    box-shadow: 0px 24px 50px 0px #0d0c381a;
    /* border-radius: 8px; */
}

/* .feature-item p {
    text-align: justify;
} */

@media (max-width: 767.98px) {
    /* .main-feature-img {
        display: none !important;
    } */

    .system-features h2 {
        font-size: 1.6rem;
    }
}
/* ===============================
    9. end landing-system-features CSS
================================== */

/* ===============================
    10.  landing-subscriptions CSS
================================== */
.subscriptions-section {
    background: var(--linear-gradient);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.decorative-circle {
    position: absolute;
    width: 250px;
    height: 400px;
    background: radial-gradient(circle, var(--primary-color) 50%, var(--secondary-color) 50%);
    bottom: -37%;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    z-index: 0;
}

.subscription-card {
    background-color: var(--white);

    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    color: var(--text-color);
    transition: transform 0.3s ease;
    line-height: 2.1;
    position: relative;
    z-index: 1;
}
.subscription-card:hover {
    transform: translateY(-5px);
}

.plan-title {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}
.plan-price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
}
.plan-price span {
    font-size: 0.9rem;
    color: #777;
}
.plan-note {
    font-size: 0.85rem;
    color: #555;
}

.btn-gradient {
    background: var(--linear-gradient);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    font-weight: bold;
    transition: background 0.3s ease;
}
.btn-gradient:hover {
    background: var(--linear-gradient-hover);
    color: var(--white);
}

.feature-title {
    font-weight: bold;
    color: var(--primary-color);
    font-size: 1rem;
}

.text-primary {
    color: var(--primary-color) !important;
}
.plan-features {
    list-style: none;
    padding: 0;
    margin: 0;
}
.plan-features li {
    position: relative;
    margin-bottom: 10px;
}
.subscriptions-section h1,
.subscriptions-section p {
    color: var(--primary-color);
}

.free-trial-info {
    font-size: 0.85rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.check-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    text-align: center;
    line-height: 20px;
    font-size: 13px;
    font-weight: bold;
    content: '✔';
}
.check-icon::before {
    content: '✔';
    display: block;
    font-size: 13px;
}

.ribbon {
    position: absolute;
    top: -1px;
    left: -14px;
    background-color: var(--white);
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    font-size: 0.8rem;
    padding: 5px 10px;
    transform: rotate(-22deg);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}

.border-featured {
    border: 2px solid var(--secondary-color);
}
.custom-checkbox {
    width: 18px;
    height: 18px;
    background-color: var(--white);
    border: 2px solid var(--primary-color);
    cursor: pointer;
    transition: all 0.2s ease;
}
.custom-checkbox:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}
.custom-checkbox:checked::before {
    content: '✔';
    color: white;
    display: block;
    text-align: center;
    font-size: 13px;
    line-height: 16px;
}
.plan-note label {
    font-size: 0.85rem;
    color: var(--text-color);
    cursor: pointer;
    margin: 0;
}
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: '✗';
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    color: #ff4444;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    border-radius: 50%;
    transition: 0.4s;
}

input:checked + .slider {
    background: linear-gradient(to bottom, var(--primary-color), var(--primary-color));
}

input:checked + .slider:before {
    content: '✓';
    color: #4caf50;
    transform: translateX(24px);
}

/* .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

.icon-bg {
    width: 32px;
    height: 32px;
    background-color: #ffeeee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hover-effect:hover {

    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.switch input:checked+.slider {
    background-color: var(--primary-color);
}

.slider:before {
    transition: .3s;
    content: "✗";
    color: #ff4444;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.switch input:checked+.slider:before {
    content: "✓";
    color: #4CAF50;
    transform: translateX(20px);
}

input:checked+.slider {
    background: linear-gradient(to bottom, var(--turquoise), var(--primary-color));
}

input:checked+.slider:before {
    transform: translateX(24px);
} */

/* ===============================
    10. end landing-subscriptions CSS
================================== */

/* ===============================
    11.  landing-how-it-works CSS
================================== */
.how-it-works {
    padding: 4rem 1rem;
}

.how-it-works h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: bold;
    font-size: 2rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    position: relative;
    padding-right: 1rem;
}
.step-fas {
    position: relative;
}
/* .step-fas::before {
    position: absolute;
    content: "";
    top: -7px;
    background-color: #dbd8d8;
    z-index: -3;
    height: 100;
    height: 3px;
    width: 43px;
    box-shadow: 0px 0px 1.6px 4px #dbd8d8;
    left: 3px;

  }

  .step-fas::after {
    position: absolute;
    content: "";
    bottom : -7px;
    background-color: #dbd8d8;
    z-index: -3;
    height: 100;
    height: 3px;
    width: 43px;
    box-shadow: 0px 0px 1.6px 4px #dbd8d8;
    left: 3px;

  } */

.step-icon {
    background: white;
    color: var(--secondary-color);
    border: 5px solid;
    width: 50px;
    height: 50px;
    /* border-radius: 10px; */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}

.step-title {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.step-desc {
    color: var(--text-color);
    font-size: 0.95rem;
    margin: 0;
}

.how-img {
    max-width: 100%;
    /* border-radius: 10px; */
    height: auto;
}

.step:not(:last-child)::before {
    content: '';
    position: absolute;
    top: 50px;
    right: 41px;
    width: 2px;
    height: calc(211% - 100px);
    background-color: var(--secondary-color);
}

@media (max-width: 991.98px) {
    .how-it-works h2 {
        font-size: 1.6rem;
    }

    /* .step {
      flex-direction: row;
      align-items: flex-start;
    } */
    .step:not(:last-child)::before {
        content: '';
        position: absolute;
        top: 43px;
        right: 40px;
        width: 2px;
        height: calc(278% - 100px);
        background-color: var(--secondary-color);
    }
    /* .step-fas::before {
        width: 37px;
        left: 4px;
    } */

    .step-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .step-title {
        font-size: 1.1rem;
    }

    .step-desc {
        font-size: 0.9rem;
    }

    .how-img {
        max-width: 90%;
    }
}
@media (max-width: 575.98px) {
    .step:not(:last-child)::before {
        content: '';
        position: absolute;
        top: 45px;
        right: 37px;
        height: calc(221% - 100px);
    }
}

/* ===============================
    11. end landing-how-it-works CSS
================================== */

/* ===============================
    12.  landing-download-app CSS
================================== */
.download-app-section {
    position: relative;
    overflow: hidden;
}

.download-app-section .container {
    background: url('/eduexpertwebsite/images/landing/bg-application.png') no-repeat center/cover;
}

.download-app-section .row {
    position: relative;
    z-index: 1;
}

.download-title {
    color: var(--primary-color);
    font-weight: 800;
    font-size: 2rem;
    line-height: 1.4;
}

.download-description {
    color: var(--text-color);
    font-size: 1.1rem;
    margin: 1rem 0 1rem;
    max-width: 500px;
}

.qr-img {
    width: 130px;
    /* border-radius: 12px; */
    box-shadow: 0 0 20px rgba(34, 164, 225, 0.3);
    transition: transform 0.3s ease;
}

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

.store-label {
    margin-top: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
}

.store-icons img {
    height: 60px;
    margin: 0.5rem;
    transition: transform 0.3s ease;
    max-width: 100%;
    /* margin-top: 24px; */
}

.store-icons img:hover {
    transform: scale(1.1);
}

.phone-screens {
    max-width: 100%;
    height: auto;
    margin-top: 24px;
}

.app-button .app-btn {
    background-color: var(--white);
    color: var(--primary-color);
    padding: 10px 20px;
    /* border-radius: 8px; */
    font-weight: bold;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    /* border: 2px solid; */
    gap: 8px;
    /* box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2); */
    transition: background-color 0.3s ease;
}

.app-button .app-btn:hover {
    background-color: #f0f0f0;
    color: var(--primary-color);
}

@media (max-width: 991.98px) {
    .text-col {
        text-align: center;
    }

    .download-description {
        margin-left: auto;
        margin-right: auto;
    }

    .qr-img {
        margin-bottom: 1rem;
    }

    .phone-screens {
        max-width: 70%;
    }
}

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

    .download-description {
        font-size: 1rem;
    }

    .qr-img {
        width: 100px;
    }

    .store-icons img {
        height: 40px;
    }
}

/* ===============================
    12. end  landing-download-app CSS
================================== */

/* ===============================
    13.  landing-schools CSS
================================== */
.hero-schools-section {
    background: #f5f5f5;
    color: #4b5675;
    text-align: center;
    position: relative;
}

.hero-schools-section .top-image {
    max-width: 200px;
    margin-bottom: 20px;
}

.hero-schools-section h2 {
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.6;
}

.hero-schools-section p {
    margin-top: 10px;
    font-size: 1.1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-schools-section .btn-primary {
    background-color: var(--white) !important;
    background: transparent;
    color: var(--primary-color);
    border: none;
    padding: 10px 25px;
    margin-top: 20px;
    font-weight: bold;
    /* border-radius: 8px; */
    transition: 0.3s;
    /* box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2); */
}

.hero-schools-section .btn-primary:hover {
    background-color: #f0f0f0;
    color: var(--primary-color);
}

.hero-icon-left,
.hero-icon-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 15%;
    max-width: 120px;
}

.hero-icon-left {
    right: 20%;
}

.hero-icon-right {
    left: 20%;
}

.schools-section {
    overflow: hidden;
    padding: 2rem 0;
}

.schools-section h2 {
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 20px;
    font-size: 2rem;
    line-height: 2;
}
.schools-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.school-logos img {
    height: 35px;
    max-width: 100px;
    opacity: 0.9;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.mySwiper {
    width: 100%;
    padding: 10px 0;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
}
.swiper {
    width: 100%;
    height: auto;
    margin-top: 0;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.swiper-slide img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}
.school-logos {
    margin: 0;
    padding: 0;
}
@media (max-width: 991.98px) {
    .hero-icon-left,
    .hero-icon-right {
        display: none;
    }

    .hero-schools-section h2,
    .schools-section h2 {
        font-size: 1.5rem;
    }

    .hero-schools-section p {
        font-size: 0.95rem;
    }

    .hero-schools-section .top-image {
        max-width: 150px;
    }
}
/* ===============================
    13. end landing-schools CSS
================================== */

/* ===============================
    14.  landing-contact CSS
================================== */
.contact-section {
    background-color: var(--light-gray);
}
.contact-row {
    z-index: 1;
    position: relative;
}
.contact-section h2 {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1.8;
}
.contact-section h3 {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1.8;
}
.contact-section h2 span {
    color: var(--secondary-color) !important;
}

.contact-box,
.contact-info-box {
    background-color: var(--white);
    padding: 30px;
    /* border-radius: 10px; */
    box-shadow: var(--shadow);
}

.contact-box label {
    font-weight: bold;
    color: var(--primary-color);
}

.contact-box .form-control {
    border-radius: 0rem;
    font-size: 0.95rem;
    background: #e5e5e5;
    padding: 12px;
    margin-top: 10px;
    box-shadow: none;
}
.contact-circle {
    position: absolute;
    width: 250px;
    height: 200px;
    background: radial-gradient(circle, var(--secondary-color) 50%);
    bottom: 35%;
    left: 71%;
    transform: translateX(-50%);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    z-index: 0;
}

.contact-box .btn {
    background: var(--linear-gradient);
    color: var(--white);
    padding: 10px 25px;
    font-weight: bold;
    /* border-radius: 5px; */
    transition: 0.3s ease;
}

.contact-box .btn:hover {
    background: var(--linear-gradient-hover);
    color: var(--white);
}

.contact-info-box h5,
.contact-box h5 {
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-info-box .info-item {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    /* border-radius: 0.5rem; */
    font-size: 0.95rem;
    background: #e5e5e5;
    padding: 12px;
    margin-top: 10px;
    word-break: break-word;
}

.contact-info-box .info-item a {
    color: inherit;
    text-decoration: none;
}

.contact-info-box .info-item a:hover {
    text-decoration: underline;
}

.contact-info-box .info-item i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}
@media (min-width: 767.98px) and (max-width: 992px) {
    .contact-box,
    .contact-info-box {
        padding: 20px;
    }
    .contact-info-box .info-item {
        font-size: 0.8rem;
        padding: 8px;
        gap: 5px;
    }
}
/* Responsive Design */
@media (max-width: 767.98px) {
    .contact-section h2 {
        font-size: 1.5rem;
        text-align: center;
    }
    .contact-circle {
        bottom: 75%;
        left: 50%;
    }
    .contact-info-box .info-item {
        margin-bottom: 0px;
    }

    .contact-box,
    .contact-info-box {
        padding: 20px;
    }

    .contact-box .btn {
        width: 100%;
    }
}
/* ===============================
    14. end landing-contact CSS
================================== */

/* ===============================
    1.  subscriptions-pricing CSS
================================== */

.pricing-comparison-section {
    background-image: url('/eduexpertwebsite/images/landing/bg-schools.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    padding: 2rem 1rem;
}

.pricing-comparison-section h2 {
    color: var(--primary-color);
    font-size: 2rem;
}

.toggle-btn {
    background: var(--linear-gradient);
    color: var(--white);
    padding: 10px 24px;
    border: none;
    /* border-radius: 20px; */
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    position: relative;
}

.pricing-table {
    width: 100%;
    min-width: 700px;
    border-collapse: collapse;
    /* background: white; */
    /* border-radius: 16px; */
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    margin-top: 25px;
}

.pricing-table thead th {
    padding: 24px 16px;
    /* background-color: #fff; */
    font-size: 1rem;
    border-bottom: 2px solid var(--white);
    vertical-align: middle;
    text-align: center;
}

.plan {
    font-weight: bold;
    position: relative;
    color: var(--primary-color);
}

.plan.popular {
    background: var(--linear-gradient);
    color: var(--white);
    /* border: 3px solid var(--primary-color); */
    /* border-radius: 4px; */
    position: absolute;
    /* left: 29%;
    width: 200px; */
    left: 24%;
    width: 300px;
    padding: 5px;
    text-align: center;
    /* position: relative; */
}

.plan.popular-2 {
    display: none;
}

.popular-badge {
    display: inline-block;
    background: var(--white);
    color: var(--primary-color);
    padding: 2px 10px;
    /* border-radius: 12px; */
    font-size: 0.75rem;
    margin-top: 5px;
    font-weight: bold;
}

.price-tag {
    display: block;
    font-size: 1.1rem;
    font-weight: bold;
    margin-top: 4px;
}

.pricing-table td {
    padding: 18px 12px;
    font-size: 0.95rem;
    border-bottom: 1px solid #bab8bd;
    text-align: center;
    vertical-align: middle;
    max-width: 290px;
}

.feature-col {
    width: 25%;
    max-width: 220px;
    text-align: right;
    padding-right: 20px;
    color: #444;
    font-weight: 500;
}

/* Icons */
.icon-check,
.icon-x {
    display: inline-block;
    width: 28px;
    height: 28px;
    line-height: 28px;
    border-radius: 50%;
    font-weight: bold;
    color: white;
    font-size: 0.85rem;
}

.icon-check {
    background-color: var(--secondary-color);
}

.icon-x {
    background-color: #ef4444;
}
.plan.popular::after {
    position: absolute;
    content: '';
    width: 2px;
    background-color: var(--primary-color);
    height: 562px;
    right: 0;
}

.plan.popular::before {
    position: absolute;
    content: '';
    width: 2px;
    background-color: var(--primary-color);
    height: 562px;
    left: 0;
}

@media (max-width: 992px) {
    .plan.popular {
        display: none;
    }

    .plan.popular-2 {
        display: inline-block;
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .pricing-table thead th,
    .pricing-table td {
        padding: 12px;
        font-size: 0.85rem;
    }

    .pricing-comparison-section h2 {
        font-size: 1.5rem;
    }

    .feature-col {
        width: 30%;
        padding-right: 12px;
    }

    .toggle-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    .popular-badge {
        font-size: 0.7rem;
    }
}
/* ===============================
    1. end subscriptions-pricing CSS
================================== */

/* ===============================
    2.  subscriptions-faq CSS
================================== */

.faq-section {
    padding: 40px 20px;
    background: #e4dbff;
}

.faq-title {
    font-weight: bold;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
}

.faq-box {
    background-color: var(--white);
    /* border-radius: 8px; */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-box:hover {
    background: var(--white);
}

.faq-icon {
    background: var(--linear-gradient);
    color: var(--white);
    width: 30px;
    height: 30px;
    /* border-radius: 6px; */
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    flex-shrink: 0;
    transition: background-color 0.3s;
}

.faq-box:hover .faq-icon {
    background-color: var(--primary-color-hover);
}

.faq-question {
    margin: 0;
    font-size: 16px;
    color: var(--text-color);
}

.faq-answer {
    font-size: 15px;
    color: #333;
    margin-top: 10px;
    transition: all 0.3s ease;
}
.faq-answer {
    font-size: 15px;
    color: #333;
    margin-top: 10px;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition:
        max-height 0.4s ease,
        opacity 0.3s ease;
}

.faq-box.open .faq-answer {
    max-height: 500px;
    opacity: 1;
}

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

/* ===============================
    2. end subscriptions-faq CSS
================================== */

/* ===============================
    3.  termsCSS
================================== */
.terms-header {
    background: #f4f4f4;
    border-bottom: 1px solid #ddd;
    position: relative;
    overflow: hidden;
}
.subscriptions-section {
    background: var(--linear-gradient);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.terms-header h2 {
    position: relative;
    z-index: 1;
    color: var(--primary-color);
}

.terms-content h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.terms-content p {
    font-size: 1rem;
    color: #333;
    line-height: 1.8;
    padding-right: 1.5rem;
}
/* .decorative-circle {
    position: absolute;
    width: 150px;
    height: 150px;
    background-color: var(--primary-color);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    top: -50px;
    left: -50px;
    opacity: 0.2;
    z-index: 0;
} */
.terms-content ul {
    list-style: none;
    padding-right: 1.5rem;
}

.terms-content ul li {
    position: relative;
    padding-right: 1.5rem;
    margin-bottom: 0.75rem;
}

.terms-content ul li::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0.5rem;
    width: 10px;
    height: 10px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

@media (max-width: 768px) {
    .terms-header h2 {
        font-size: 1.5rem;
    }
    .terms-content {
        padding: 1rem;
    }
}

.users-section p {
    font-size: 1.25rem;
}
/* ===============================
    3.  end termsCSS
================================== */

/* ==================== */
/* HEADING CONSISTENCY */
/* ==================== */
h1,
.h1 {
    font-size: clamp(var(--text-4xl), 5vw, var(--text-6xl));
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

h2,
.h2 {
    font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

h3,
.h3 {
    font-size: clamp(var(--text-2xl), 3vw, var(--text-4xl));
    line-height: 1.4;
    font-weight: 600;
    margin-bottom: 1rem;
}

h4,
.h4 {
    font-size: clamp(var(--text-xl), 2.5vw, var(--text-3xl));
    line-height: 1.4;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

h5,
.h5 {
    font-size: clamp(var(--text-lg), 2vw, var(--text-2xl));
    line-height: 1.5;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

h6,
.h6 {
    font-size: var(--text-base);
    line-height: 1.5;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ==================== */
/* SPECIFIC COMPONENT UPDATES */
/* ==================== */

/* Navbar */
.nav-list a {
    font-size: var(--text-base);
    font-weight: 500;
}

/* Footer */
.footer-title {
    font-size: var(--text-xl);
    font-weight: 700;
}

.footer-links a {
    font-size: var(--text-sm);
}

.footer-contact p {
    font-size: var(--text-sm);
}

.footer-about {
    font-size: var(--text-xs);
}

/* Hero Section */
.eduexpert-hero-content h1 {
    font-size: clamp(2rem, 6vw, 3.5rem) !important;
    line-height: 1.2;
}

.eduexpert-hero-content .lead {
    font-size: clamp(var(--text-lg), 2.5vw, var(--text-xl));
}

/* AI Section */
.landing-ai h2 {
    font-size: clamp(var(--text-2xl), 4vw, var(--text-3xl));
}
.landing-ai p {
    font-size: clamp(var(--text-base), 2vw, var(--text-lg));
}
.ai-tabs .nav-link {
    font-size: clamp(var(--text-base), 2.5vw, var(--text-lg)) !important;
}

.icon-container h3 {
    font-size: clamp(var(--text-base), 2.5vw, var(--text-lg));
}

/* Features Section */
.features-header h2 {
    font-size: clamp(var(--text-2xl), 4vw, var(--text-3xl));
}

.feature-box h3 {
    font-size: clamp(var(--text-base), 2vw, var(--text-lg));
    font-weight: 600;
}

.feature-box p {
    font-size: var(--text-sm);
}

/* Analysis Section */
.analysis-section h2 {
    font-size: clamp(var(--text-2xl), 4vw, var(--text-3xl));
}

.analysis-span .number {
    font-size: clamp(2rem, 6vw, 3rem);
}

.analysis-section .stat-number {
    font-size: clamp(1.25rem, 4vw, 1.5rem);
}

.analysis-section .stat-label {
    font-size: clamp(var(--text-sm), 2vw, var(--text-base));
}

/* About Section */
.about-section h2 {
    font-size: clamp(var(--text-2xl), 4vw, var(--text-3xl));
}

/* Users Section */
.section-title {
    font-size: clamp(var(--text-2xl), 4vw, var(--text-3xl));
}

.user-label {
    font-size: var(--text-base);
    font-weight: 600;
}

/* System Features */
.system-features h2 {
    font-size: clamp(var(--text-2xl), 4vw, var(--text-3xl));
}

.system-features h3 {
    font-size: clamp(var(--text-lg), 2.5vw, var(--text-xl));
}

/* Subscriptions */
.subscriptions-section h2 {
    font-size: clamp(var(--text-2xl), 4vw, var(--text-3xl)) !important;
}
.subscription-cta h3 {
    font-size: clamp(var(--text-lg), 2.5vw, var(--text-xl)) !important;
}
.subscription-card-horizontal .plan-title {
    font-size: clamp(var(--text-xl), 2.5vw, var(--text-2xl)) !important;
    font-weight: 600;
}

.subscription-card .plan-title {
    font-size: clamp(var(--text-xl), 2.5vw, var(--text-2xl)) !important;
}

.discounted-price .plan-price {
    font-size: clamp(var(--text-xl), 2.5vw, var(--text-2xl)) !important;
}

.plan-price {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
}

.plan-note {
    font-size: var(--text-sm);
}

.feature-title {
    font-size: var(--text-base);
    font-weight: 600;
}

/* How It Works */
.how-it-works h2 {
    font-size: clamp(var(--text-2xl), 4vw, var(--text-3xl));
}

.step-title {
    font-size: var(--text-lg);
    font-weight: 600;
}

.step-desc {
    font-size: var(--text-base);
}

/* Download App */
.download-title {
    font-size: clamp(var(--text-2xl), 4vw, var(--text-3xl));
}

.download-description {
    font-size: var(--text-base);
}

.store-label {
    font-size: var(--text-sm);
    font-weight: 600;
}

/* Schools Section */
.hero-schools-section h2,
.schools-section h2 {
    font-size: clamp(var(--text-2xl), 4vw, var(--text-3xl));
}

.hero-schools-section p {
    font-size: var(--text-base);
}

/* Contact Section */
.contact-section h2 {
    font-size: clamp(var(--text-2xl), 4vw, var(--text-3xl));
}

.contact-section h3 {
    font-size: clamp(var(--text-xl), 3vw, var(--text-2xl));
}

.contact-box label {
    font-size: var(--text-sm);
    font-weight: 600;
}

.contact-box .form-control {
    font-size: var(--text-base);
}

.contact-info-box h5,
.contact-box h5 {
    font-size: var(--text-lg);
    font-weight: 600;
}

.contact-info-box .info-item {
    font-size: var(--text-sm);
}

/* Pricing Table */
.pricing-comparison-section h2 {
    font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
}

.pricing-table thead th {
    font-size: var(--text-base);
}

.pricing-table td {
    font-size: var(--text-sm);
}

/* FAQ Section */
.faq-title {
    font-size: clamp(var(--text-2xl), 4vw, var(--text-3xl));
}

.faq-question {
    font-size: var(--text-base);
}

.faq-answer {
    font-size: var(--text-sm);
}

/* Terms Section */
.terms-header h2 {
    font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
}

.terms-content h3 {
    font-size: clamp(var(--text-xl), 3vw, var(--text-2xl));
}

.terms-content p {
    font-size: var(--text-base);
}

/* ==================== */
/* RESPONSIVE ADJUSTMENTS */
/* ==================== */
@media (max-width: 992px) {
    :root {
        --text-base: 0.9375rem; /* 15px */
    }

    h1,
    .h1 {
        font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl));
    }

    h2,
    .h2 {
        font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
    }
}

@media (max-width: 768px) {
    :root {
        --text-base: 0.875rem; /* 14px */
    }

    body {
        line-height: 1.5;
    }

    h1,
    .h1 {
        font-size: clamp(var(--text-2xl), 5vw, var(--text-4xl));
        margin-bottom: 1rem;
    }

    h2,
    .h2 {
        font-size: clamp(var(--text-xl), 4vw, var(--text-3xl));
        margin-bottom: 0.75rem;
    }

    h3,
    .h3 {
        font-size: clamp(var(--text-lg), 3vw, var(--text-2xl));
    }

    /* Adjust specific components for mobile */
    .feature-box h3 {
        font-size: var(--text-lg);
    }

    .analysis-span .number {
        font-size: clamp(1.75rem, 5vw, 2.25rem);
    }
}

@media (max-width: 576px) {
    :root {
        --text-base: 0.8125rem; /* 13px */
    }

    h1,
    .h1 {
        font-size: clamp(var(--text-xl), 5vw, var(--text-3xl));
    }

    h2,
    .h2 {
        font-size: clamp(var(--text-lg), 4vw, var(--text-2xl));
    }

    /* Ensure text doesn't get too small */
    .footer-links a,
    .footer-contact p,
    .footer-about,
    .feature-box p,
    .plan-note,
    .pricing-table td,
    .faq-answer,
    .contact-info-box .info-item {
        font-size: var(--text-sm);
    }
}

/* ==================== */
/* UTILITY CLASSES */
/* ==================== */
.text-xs {
    font-size: var(--text-xs) !important;
}
.text-sm {
    font-size: var(--text-sm) !important;
}
.text-base {
    font-size: var(--text-base) !important;
}
.text-lg {
    font-size: var(--text-lg) !important;
}
.text-xl {
    font-size: var(--text-xl) !important;
}
.text-2xl {
    font-size: var(--text-2xl) !important;
}
.text-3xl {
    font-size: var(--text-3xl) !important;
}
.text-4xl {
    font-size: var(--text-4xl) !important;
}
.text-5xl {
    font-size: var(--text-5xl) !important;
}
.text-6xl {
    font-size: var(--text-6xl) !important;
}

.font-light {
    font-weight: 300 !important;
}
.font-normal {
    font-weight: 400 !important;
}
.font-medium {
    font-weight: 500 !important;
}
.font-semibold {
    font-weight: 600 !important;
}
.font-bold {
    font-weight: 700 !important;
}

.leading-tight {
    line-height: 1.25 !important;
}
.leading-normal {
    line-height: 1.5 !important;
}
.leading-relaxed {
    line-height: 1.625 !important;
}
.leading-loose {
    line-height: 2 !important;
}
