*
{
    margin: 0;
    padding: 0;
}

:root 
{
    --primary-color : #4FB883;
    --secondary-color: #34495E;
    --accent-color: #F6FBFF;

}

a{
    text-decoration: none !important;
}

@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');


body 
{
    font-family: "Work Sans",sans-serif !important;
    font-optical-sizing: auto;
    font-style: normal;
}

/* EdMaster Navbar Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

h1, h2, h3, h4, h5, h6 
{
    font-family: "Outfit", sans-serif;
}

ul{
    list-style: none;
    margin: 0;
    padding-left: 0;
}
.navbar-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

/* Brand Section */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.navbar-brand:hover {
    transform: translateY(-1px);
}

.brand-logo svg {
    transition: transform 0.3s ease;
}

.navbar-brand:hover .brand-logo svg {
    transform: rotate(5deg);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.2;
    font-family: "Work Sans", sans-serif;
}

.brand-tagline {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: background-color 0.2s ease;
}

.mobile-menu-toggle:hover {
    background-color: #f1f5f9;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background-color: #334155;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Navigation Menu */
.navbar-menu {
    display: flex  !important;
    align-items: center;
    gap: 2rem;
}

.navbar-nav {
    display: flex  !important;
    list-style: none;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative !important;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    text-decoration: none;
    color: #475569;
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    position: relative;
    font-family: "Work Sans", sans-serif;
}

.nav-link:hover {
    color: var(--primary-color);
    background-color: #adfcd483;
    transform: translateY(-1px);
}

.nav-link.active {
    color: var(--primary-color);
    background-color: #adfcd483;
}

.nav-icon {
    font-size: 1rem;
    opacity: 0.8;
}

.dropdown-arrow {
    font-size: 0.7rem;
    margin-left: 4px;
    transition: transform 0.2s ease;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    padding: 8px;
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-link {
    display: block;
    padding: 12px 16px;
    color: #475569;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.dropdown-link:hover {
    background-color: #f8fafc;
    color: #2563eb;
    transform: translateX(4px);
}

/* CTA Buttons */
.navbar-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-demo,
.btn-login {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.btn-demo {
    background: linear-gradient(135deg, #34495E 0%, #34495E 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(58, 139, 104, 0.3);
}

.btn-demo:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(58, 139, 104, 0.4);
}

.btn-login {
    background: #f8fafc;
    color: #475569;
    border: 1px solid #e2e8f0;
}

.btn-login:hover {
    background: #e2e8f0;
    color: #334155;
    transform: translateY(-1px);
}


/* Responsive Design */
@media (max-width: 1024px) {
    .navbar-container {
        padding: 0 1rem;
    }

    .navbar-nav {
        gap: 0.25rem;
    }

    .nav-link {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .navbar-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: white;
        border-top: 1px solid #e2e8f0;
        flex-direction: column;
        align-items: stretch;
        padding: 1.5rem;
        transform: translateY(-100vh);
        transition: transform 0.3s ease;
        z-index: 999;
        gap: 0;
    }

    .navbar-menu.active {
        transform: translateY(0);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .navbar-nav {
        flex-direction: column;
        width: 100%;
        gap: 0;
        margin-bottom: 1.5rem;
    }

    .nav-link {
        padding: 16px 0;
        border-radius: 0;
        border-bottom: 1px solid #f1f5f9;
        justify-content: space-between;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: #f8fafc;
        margin-top: 8px;
        padding: 0;
    }

    .dropdown-link {
        padding: 12px 20px;
    }

    .navbar-cta {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .btn-demo,
    .btn-login {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }

    .brand-text {
        display: none;
    }
}

@media (max-width: 480px) {
    .navbar-container {
        padding: 0 0.75rem;
        height: 64px;
    }

    .brand-name {
        font-size: 1.25rem;
    }

    .navbar-menu {
        top: 64px;
    }
}

/* Animation for navbar appearance */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.edmaster-navbar {
    animation: slideDown 0.5s ease forwards;
}

/* Loading state for better UX */
.navbar-loading {
    opacity: 0.7;
    pointer-events: none;
}


.edmaster-navbar {
    /* Force our styles over Bootstrap */
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    border-bottom: 1px solid rgba(226, 232, 240, 0.8) !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1000 !important;
    padding: 0 !important;
    margin: 0 !important;
    height: auto !important;
}

/* Protect navbar container */
.edmaster-navbar .navbar-container {
    max-width: 1280px !important;
    margin: 0 auto !important;
    padding: 0 1.5rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    height: 72px !important;
}

/* Protect navbar brand */
.edmaster-navbar .navbar-brand {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    text-decoration: none !important;
    margin: 0 !important;
    padding: 0 !important;
    height: auto !important;
    font-size: inherit !important;
    white-space: nowrap !important;
}

/* Protect navigation menu */
.edmaster-navbar .navbar-menu {
    display: flex !important;
    align-items: center !important;
    gap: 2rem !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Protect navbar nav */
.edmaster-navbar .navbar-nav {
    display: flex !important;
    list-style: none !important;
    gap: 0.5rem !important;
    margin: 0 !important;
    padding: 0 !important;
    flex-direction: row !important;
}

/* Protect nav items */
.edmaster-navbar .nav-item {
    position: relative !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Protect nav links */
.edmaster-navbar .nav-link {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    padding: 10px 16px !important;
    text-decoration: none !important;
    color: #475569 !important;
    font-weight: 500 !important;
    font-size: 0.95rem !important;
    border-radius: 8px !important;
    transition: all 0.2s ease !important;
    position: relative !important;
    font-family: "Work Sans", sans-serif !important;
    border: none !important;
    background: transparent !important;
}

/* Protect nav link hover states */
.edmaster-navbar .nav-link:hover {
    color: var(--primary-color) !important;
    background-color: #adfcd483 !important;
    transform: translateY(-1px) !important;
    text-decoration: none !important;
}

/* Protect active nav links */
.edmaster-navbar .nav-link.active {
    color: var(--primary-color) !important;
    background-color: #adfcd483 !important;
    text-decoration: none !important;
}

/* Protect CTA buttons */
.edmaster-navbar .btn-demo,
.edmaster-navbar .btn-login {
    display: inline-flex !important;
    align-items: center !important;
    padding: 10px 20px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    border-radius: 8px !important;
    transition: all 0.2s ease !important;
    position: relative !important;
    overflow: hidden !important;
    border: none !important;
    font-family: "Work Sans", sans-serif !important;
}

/* Protect mobile menu toggle */
.edmaster-navbar .mobile-menu-toggle {
    display: none !important;
    flex-direction: column !important;
    background: none !important;
    border: none !important;
    cursor: pointer !important;
    padding: 8px !important;
    border-radius: 6px !important;
    transition: background-color 0.2s ease !important;
}

/* Ensure our custom dropdown works over Bootstrap */
.edmaster-navbar .dropdown-menu {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    min-width: 220px !important;
    background: white !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(-10px) !important;
    transition: all 0.3s ease !important;
    padding: 8px !important;
    z-index: 100 !important;
    margin: 0 !important;
    display: block !important;
}

/* Reset Bootstrap's default styles that might interfere */
.edmaster-navbar *,
.edmaster-navbar *::before,
.edmaster-navbar *::after {
    box-sizing: border-box !important;
}

/* Protect against Bootstrap's margin utilities */
.edmaster-navbar .m-0 { margin: 0 !important; }
.edmaster-navbar .p-0 { padding: 0 !important; }

/* Make sure our fonts are preserved */
.edmaster-navbar,
.edmaster-navbar * {
    font-family: "Work Sans", sans-serif !important;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.edmaster-navbar {
    animation: slideDown 0.5s ease forwards;
}

/* Loading state for better UX */
.navbar-loading {
    opacity: 0.7;
    pointer-events: none;
}

.hero
{
    background-image: url('../images/background-3.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
    width: 100%;
    position: relative;
}

.hero .container 
{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin:  0 auto;
}

.hero-header 
{
    padding: 20px;
    text-align: center;
    margin: 0 auto;
    max-width: 1000px; 
}

.hero-title{
    font-size: 45px;
    font-weight: 700;
    line-height: 1.2;
    /* margin-bottom: 20px; */
}

.hero-buttons 
{
    margin: 0 auto;
    max-width: 800px;
}

.hero-image
{
    max-width: 700px;
    margin: 0 auto;
}

.hero-image img{
    max-width: 700px;
}

.btn-pricing
{
    background-color: #adfcd483;
    text-decoration: none;
    color: var(--primary-color);
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    transition: transform 0.2s ease;
}

.btn-pricing:hover
{
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 235, 192, 0.185);
}

.hero-image-1
{
    position: absolute;
    z-index: 1;
}

.hero-image-2
{
    position: relative;
    z-index: 2;
}

.features-icons 
{
    display: flex;
    justify-content: end;
    margin-top: 30px;
    position: absolute;
    top: 80%;
    right: 10%;
    transform:  translate(-70%, -10%);
    width: fit-content;
}

.feature-icon
{
    width: 60px;
    height: 60px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 -5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    color: var(--primary-color);
    font-size: 18px;
}

.highlight
{
    color: var(--primary-color);
}

.feature-card
{
    border: 2px solid #e2e8f0;
    padding: 16px;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.features-title
{
    font-size: 40px;
    font-weight: 700;
}

.feature-card-icon 
{
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #e2e8f0;
    padding: 16px; 
    border-radius: 50%;
    margin-bottom: 20px;
}

.feature-card-icon i
{
    font-size: 24px;
    color: var(--primary-color);
}

.feature-card-title
{
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-top: 10px 0 5px 0;
}

.feature-card-description
{
    color: #333;
    line-height: 1.5;
}

.about-edmaster
{
    background-color: #FAFAFA;
}

.about-image-container
{
    background-image: url('../images/background-3.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 29px;
}

.about-edmaster-title
{
    font-size: 40px ;
    font-weight: 700;
    line-height: 1.2;
    font-family: "Outfit", sans-serif;
    color: var(--secondary-color);
}

.button-icon
{
    font-size: 18px;
    color: white;
    padding: 5px;
    margin-right: 5px;
}


.btn-bordered
{
    color: #090909;
    padding: 0.7em 1.7em;
    font-size: 18px;
    border-radius: 0.5em;
    background: transparent;
    cursor: pointer;
    border: 1px solid #e8e8e8;
    transition: all 0.3s;
    box-shadow: 6px 6px 12px #c5c5c5, -6px -6px 12px #ffffff;
    text-decoration: none;
}

.btn-bordered:active
{
    color: #666;
    box-shadow: inset 4px 4px 12px #c5c5c5, inset -4px -4px 12px #ffffff;
}

.edmaster-stats 
{
    padding: 16px;
    background: var(--secondary-color);
    display: flex;
    gap: 40px;
    border-radius: 15px;
}

.stat-item
{
    flex: 1;
}
.stat-number
{
    color: var(--primary-color);
    font-family: "Outfit", sans-serif;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    font-weight:  700;

}
.stat-description
{
    color: white;
    font-size: 14px;
    line-height: 1.5;
}

.stat-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cssbuttons-io-button {
    background: var(--primary-color);
    color: white;
    font-family: inherit;
    padding: 0.35em;
    padding-left: 1.2em;
    font-size: 17px;
    font-weight: 500;
    border-radius: 0.9em;
    border: none;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    box-shadow: inset 0 0 1.6em -0.6em var(--primary-color);
    overflow: hidden;
    position: relative;
    height: 2.8em;
    padding-right: 3.3em;
    cursor: pointer;
}

.cssbuttons-io-button .icon {
    background: white;
    margin-left: 1em;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.2em;
    width: 2.2em;
    border-radius: 0.7em;
    box-shadow: 0.1em 0.1em 0.6em 0.2em var(--primary-color);
    right: 0.3em;
    transition: all 0.3s;
}

.cssbuttons-io-button:hover .icon {
    width: calc(100% - 0.6em);
}

.cssbuttons-io-button .icon svg {
    width: 1.1em;
    transition: transform 0.3s;
    color: var(--primary-color);
}

.cssbuttons-io-button:hover .icon svg {
    transform: translateX(0.1em);
}

.cssbuttons-io-button:active .icon {
    transform: scale(0.95);
}


.cl-title
{
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    color: #333;
}
.client-logos-header
{
    border-right: 2px solid #e2e8f0;
}

/* Client Logos Marquee Styles */
.client-logos-section {
    overflow: hidden;
}

.client-logos {
    overflow: hidden;
    white-space: nowrap;
}

.client-logos-marquee {
    overflow: hidden;
    width: 100%;
}

.client-logos-track {
    display: flex;
    animation: marquee 20s linear infinite;
    gap: 2rem;
    align-items: center;
}

.client-logo {
    flex-shrink: 0;
    height: 100px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.client-logo:hover {
    opacity: 1;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.client-logos-track:hover {
    animation-play-state: paused;
}


.why-item
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.why-icon
{
    background-color: #e2e8f0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-icon i 
{
    font-size: 24px;
    color: var(--primary-color);
}

.testimonial-heading-items
{
    display: flex;
}

.heading-item
{
    padding: 16px;
    background-color: #e2e8f0;
}

.heading-item.highlighted
{
    background-color: var(--primary-color);
    color: white;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.testimonial-items
{
    display: flex;
    flex-direction: row;
    overflow-x: hidden !important;
}

.testimonial-item
{
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
}
.testimonial-image
{
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    position: relative;
    margin-top: -30px;
    z-index: 2;
    background-color: white;
}

.testimonial-image img
{
    max-width: 70px;
}

.testimonial-content
{
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 24px;
    position: relative;
    z-index: 1;
    background-color: white;
}

.testimonial-content.central 
{
    background-color: var(--primary-color) !important;
    color: white;
}


.testimonial-item.left
{
    margin-right: -40px;
    position: relative;
    z-index: 1;
    transform: rotate(-8deg);
}

.testimonial-item.central
{
    margin-top: -50px;
    position: relative;
    z-index: 2;
}

.testimonial-item.right
{
    margin-left: -40px;
    position: relative;
    z-index: 1;
    transform: rotate(8deg);
}

/* FAQ Section Styles */
.faq-section {
    background-color: #f8f9fa;
    position: relative;
}

.faq-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-family: "Outfit", sans-serif;
}

.faq-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 0;
}

.faq-accordion-wrapper {
    background: white;
    /* border-radius: 16px; */
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    padding: 0;
}

.faq-accordion-item {
    border-bottom: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.faq-accordion-item:last-child {
    border-bottom: none;
}

.faq-accordion-item:hover {
    background-color: #f8f9fa;
}

.faq-question-header {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    user-select: none;
}

.faq-question-header:hover {
    background-color: rgba(79, 184, 131, 0.05);
}

.faq-question-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 0;
    line-height: 1.4;
    flex: 1;
    padding-right: 1rem;
}

.faq-toggle-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #45a374);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(79, 184, 131, 0.3);
}

.faq-toggle-icon i {
    color: white;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.faq-accordion-item.active .faq-toggle-icon {
    transform: rotate(45deg);
    background: linear-gradient(135deg, #45a374, var(--primary-color));
}

.faq-accordion-item.active .faq-question-header {
    background-color: rgba(79, 184, 131, 0.08);
    border-bottom: 1px solid rgba(79, 184, 131, 0.2);
}

.faq-answer-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    background-color: #fff;
}

.faq-answer-content.active {
    max-height: 500px;
    padding: 0 2rem 1.5rem 2rem;
}

.faq-answer-text {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.7;
    margin: 0;
    padding-top: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-main-title {
        font-size: 2rem;
    }
    
    .faq-question-header {
        padding: 1.25rem 1.5rem;
    }
    
    .faq-question-text {
        font-size: 1rem;
    }
    
    .faq-answer-content.active {
        padding: 0 1.5rem 1.25rem 1.5rem;
    }
    
    .faq-toggle-icon {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 576px) {
    .faq-question-header {
        padding: 1rem 1.25rem;
    }
    
    .faq-answer-content.active {
        padding: 0 1.25rem 1rem 1.25rem;
    }
}

/* Footer Styles */
.edmaster-footer {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2c3e50 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.edmaster-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><pattern id="grain" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="25" cy="25" r="0.5" fill="rgba(255,255,255,0.02)"/><circle cx="75" cy="75" r="0.5" fill="rgba(255,255,255,0.02)"/></pattern></defs><rect width="100" height="20" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.footer-main-content {
    padding: 4rem 0 2rem;
    position: relative;
    z-index: 2;
}

.footer-brand-section .footer-logo-container {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-logo {
    width: 40px;
    height: 40px;
    margin-right: 0.75rem;
}

.footer-brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    font-family: "Work Sans", sans-serif;
}

.footer-brand-description {
    color: #cbd5e0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.footer-social-links {
    display: flex;
    gap: 0.75rem;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social-link:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(79, 184, 131, 0.4);
}

.footer-section-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-section-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 1px;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 0.75rem;
}

.footer-link {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.footer-link:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-link::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.footer-link:hover::before {
    width: 10px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.footer-contact-icon {
    color: var(--primary-color);
    margin-right: 0.75rem;
    margin-top: 0.25rem;
    font-size: 0.9rem;
}

.footer-contact-text p {
    color: #cbd5e0;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-bottom-section {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    background: rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer-bottom-link {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-bottom-link:hover {
    color: var(--primary-color);
}

.footer-separator {
    color: rgba(255, 255, 255, 0.3);
    margin: 0 0.25rem;
}

.footer-copyright {
    text-align: right;
}

.footer-copyright p {
    color: #cbd5e0;
    margin: 0;
    font-size: 0.85rem;
}

/* Responsive Footer Styles */
@media (max-width: 992px) {
    .footer-main-content {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-section-title {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .footer-main-content {
        padding: 2.5rem 0 1rem;
    }
    
    .footer-brand-section {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .footer-logo-container {
        justify-content: center;
    }
    
    .footer-social-links {
        justify-content: center;
    }
    
    .footer-links-section,
    .footer-contact-section {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .footer-section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-contact-item {
        justify-content: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
        margin-bottom: 1rem;
    }
    
    .footer-copyright {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .footer-brand-name {
        font-size: 1.25rem;
    }
    
    .footer-brand-description {
        font-size: 0.9rem;
    }
    
    .footer-social-links {
        gap: 0.5rem;
    }
    
    .footer-social-link {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .footer-separator {
        display: none;
    }
}

/* About Page Styles */
.about-hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding-top: 6rem;
    position: relative;
}


.min-vh-55 {
    min-height: 55vh;
}

.about-hero-content {
    position: relative;
    z-index: 2;
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-hero-description {
    font-size: 1.2rem;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.about-hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.about-stat-item {
    text-align: left;
}

.about-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.about-stat-label {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
    font-weight: 500;
}

.about-hero-image,
.about-mission-image,
.about-philosophy-image,
.about-integration-image {
    position: relative;
    z-index: 2;
}

/* Image Placeholder Styles */
.about-image-placeholder {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border: 2px dashed #dee2e6;
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.about-image-placeholder:hover {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(79, 184, 131, 0.05), rgba(79, 184, 131, 0.1));
}

.about-placeholder-icon {
    font-size: 3rem;
    color: #adb5bd;
    margin-bottom: 1rem;
}

.about-placeholder-text {
    color: #6c757d;
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
}

/* Section Styles */
.about-mission-section {
    background-color: #ffffff;
}

.about-team-section {
    background-color: #f8f9fa;
}

.about-philosophy-section {
    background-color: #ffffff;
}

.about-partners-section {
    background-color: #f8f9fa;
}

.about-cta-section {
    background: linear-gradient(135deg, var(--primary-color), #45a374);
    color: white;
}

.about-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.about-section-description {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.about-subsection-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

/* Mission Highlights */
.about-mission-highlights {
    margin-top: 2rem;
}

.about-highlight-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.about-highlight-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #45a374);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.about-highlight-content h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.about-highlight-content p {
    color: #6c757d;
    margin: 0;
    line-height: 1.6;
}

/* Team Cards */
.about-team-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.about-team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.about-team-image {
    position: relative;
    overflow: hidden;
}

.about-team-image .about-image-placeholder {
    border-radius: 0;
    border: none;
    margin: 0;
    min-height: 250px;
}

.about-team-content {
    padding: 1.5rem;
}

.about-team-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.about-team-position {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.about-team-bio {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.about-team-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.about-expertise-tag {
    background: rgba(79, 184, 131, 0.1);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Philosophy Principles */
.about-philosophy-principles {
    margin-top: 2rem;
}

.about-principle-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.about-principle-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #45a374);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.about-principle-content h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
}

.about-principle-content p {
    color: #6c757d;
    margin: 0;
    line-height: 1.6;
}

/* Partners Grid */
.about-partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.about-partner-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.about-partner-item:hover {
    transform: translateY(-3px);
}

.about-partner-item .about-image-placeholder {
    min-height: 150px;
    border-radius: 0;
    border: none;
    margin: 0;
}

/* Integration Features */
.about-integration-features {
    margin-top: 2rem;
}

.about-integration-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.75rem 0;
}

.about-integration-icon {
    color: var(--primary-color);
    margin-right: 1rem;
    font-size: 1.1rem;
}

.about-integration-item span {
    color: #6c757d;
    font-weight: 500;
}

/* CTA Section */
.about-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.about-cta-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.about-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.about-cta-buttons .btn-demo {
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
}

.about-cta-buttons .btn-demo:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: white;
}

.about-cta-buttons .btn-bordered {
    border-color: white;
    color: white;
}

.about-cta-buttons .btn-bordered:hover {
    background: white;
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-hero-title {
        font-size: 2.8rem;
    }
    
    .about-section-title {
        font-size: 2rem;
    }
    
    .about-cta-title {
        font-size: 2rem;
    }
    
    .about-hero-stats {
        gap: 1.5rem;
    }
    
    .about-stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .about-hero-section {
        padding: 4rem 0 3rem;
    }
    
    .about-hero-title {
        font-size: 2.3rem;
        text-align: center;
    }
    
    .about-hero-description {
        text-align: center;
        font-size: 1.1rem;
    }
    
    .about-hero-stats {
        justify-content: center;
        gap: 1rem;
    }
    
    .about-stat-item {
        text-align: center;
    }
    
    .about-section-title {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .about-subsection-title {
        font-size: 1.3rem;
        text-align: center;
    }
    
    .about-section-description {
        text-align: center;
    }
    
    .about-highlight-item,
    .about-principle-item {
        flex-direction: column;
        text-align: center;
    }
    
    .about-highlight-icon,
    .about-principle-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .about-partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .about-cta-title {
        font-size: 1.8rem;
    }
    
    .about-cta-description {
        font-size: 1.1rem;
    }
    
    .about-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-cta-buttons .btn-demo,
    .about-cta-buttons .btn-bordered {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 576px) {
    .about-hero-title {
        font-size: 2rem;
    }
    
    .about-section-title {
        font-size: 1.6rem;
    }
    
    .about-cta-title {
        font-size: 1.6rem;
    }
    
    .about-image-placeholder {
        padding: 2rem 1rem;
        min-height: 200px;
    }
    
    .about-placeholder-icon {
        font-size: 2rem;
    }
    
    .about-team-content {
        padding: 1rem;
    }
    
    .about-partners-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Overview Page Styles */
.overview-hero-section {
    /* color: white; */
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
    background-color: #e2e8f0;
}


.overview-hero-content {
    position: relative;
    z-index: 2;
}

.overview-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.overview-hero-description {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    color: #333;
}

.overview-hero-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.overview-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.overview-badge:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Modules Section */
.overview-modules-section {
    background-color: #f8f9fa;
}

.overview-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-family: "Work Sans", sans-serif;
    text-align: center;
}

.overview-section-description {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 0;
    text-align: center;
}

/* Module Cards */
.overview-module-card {
    background: white;
    /* border-radius: 20px; */
    margin-bottom: 3rem;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    padding: 3rem 0;
}

.overview-module-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.overview-module-header {
    display: flex;
    align-items: center;
    margin-bottom: 2.5rem;
}

.overview-module-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #45a374);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(79, 184, 131, 0.3);
}

.overview-module-icon.academic {
    background: linear-gradient(135deg, #3498db, #2980b9);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

.overview-module-icon.finance {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.3);
}

.overview-module-icon.communication {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
    box-shadow: 0 8px 25px rgba(155, 89, 182, 0.3);
}

.overview-module-icon.student {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
}

.overview-module-icon i {
    font-size: 2rem;
    color: white;
}

.overview-module-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.overview-module-subtitle {
    color: #6c757d;
    font-size: 1rem;
    margin: 0;
    font-style: italic;
}

/* Module Features Row Layout */
.overview-module-features-row {
    margin-top: 2rem;
}

.overview-feature-item-compact {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    /* height: 100%; */
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    display: flex;
    align-items: center;
}

.overview-feature-item-compact:hover {
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
    border-color: var(--primary-color);
}

.overview-feature-icon-small {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), #45a374);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 1rem;
    flex-shrink: 0;
    font-size: 1rem;
}

.overview-feature-content-compact {
    flex: 1;
}

.overview-feature-content-compact h6 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.overview-feature-content-compact p {
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
    font-size: 0.9rem;
}

/* Full-width module images */
.overview-module-image-full {
    margin-top: 2rem;
}

.overview-module-image-full .overview-image-placeholder {
    min-height: 350px;
    width: 100%;
}

/* Module Features */
.overview-module-features {
    margin-top: 2rem;
}

.overview-feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.overview-feature-item:hover {
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transform: translateX(5px);
}

.overview-feature-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color), #45a374);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 1.25rem;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.overview-feature-content h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.overview-feature-content p {
    color: #6c757d;
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Image Placeholders */
.overview-image-placeholder {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border: 2px dashed #dee2e6;
    border-radius: 16px;
    padding: 4rem 2rem;
    text-align: center;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.overview-image-placeholder:hover {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(79, 184, 131, 0.05), rgba(79, 184, 131, 0.1));
}

.overview-placeholder-icon {
    font-size: 4rem;
    color: #adb5bd;
    margin-bottom: 1.5rem;
}

.overview-placeholder-text {
    color: #6c757d;
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
}

/* Benefits Section */
.overview-benefits-section {
    background: white;
}

.overview-benefit-card {
    background: #f8f9fa;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.overview-benefit-card:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.overview-benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), #45a374);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 8px 25px rgba(79, 184, 131, 0.3);
}

.overview-benefit-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.overview-benefit-description {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* CTA Section */
.overview-cta-section {
    background: linear-gradient(135deg, var(--secondary-color), #2c3e50);
    color: white;
}

.overview-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.overview-cta-description {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.overview-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.overview-cta-buttons .btn-demo {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.overview-cta-buttons .btn-demo:hover {
    background: #45a374;
    border-color: #45a374;
}

.overview-cta-buttons .btn-bordered {
    border-color: white;
    color: white;
}

.overview-cta-buttons .btn-bordered:hover {
    background: white;
    color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 992px) {
    .overview-hero-title {
        font-size: 2.8rem;
    }
    
    .overview-section-title {
        font-size: 2rem;
    }
    
    .overview-cta-title {
        font-size: 2rem;
    }
    
    .overview-module-title {
        font-size: 1.8rem;
    }
    
    .overview-module-card {
        padding: 2rem 0;
    }
    
    .overview-module-icon {
        width: 70px;
        height: 70px;
    }
    
    .overview-module-icon i {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .overview-hero-section {
        padding: 4rem 0 3rem;
    }
    
    .overview-hero-title {
        font-size: 2.3rem;
    }
    
    .overview-hero-description {
        font-size: 1.1rem;
    }
    
    .overview-hero-badges {
        justify-content: center;
        gap: 0.75rem;
    }
    
    .overview-badge {
        font-size: 0.85rem;
        padding: 0.4rem 1rem;
    }
    
    .overview-section-title {
        font-size: 1.8rem;
    }
    
    .overview-module-card {
        margin-bottom: 2rem;
        padding: 1.5rem 0;
    }
    
    .overview-module-header {
        flex-direction: column;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .overview-module-icon {
        margin-right: 0;
        margin-bottom: 1rem;
        width: 65px;
        height: 65px;
    }
    
    .overview-module-title {
        font-size: 1.6rem;
        text-align: center;
    }
    
    .overview-module-subtitle {
        text-align: center;
    }
    
    .overview-feature-item-compact {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
    }
    
    .overview-feature-icon-small {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .overview-image-placeholder {
        min-height: 250px;
        padding: 2rem 1rem;
    }
    
    .overview-placeholder-icon {
        font-size: 2.5rem;
    }
    
    .overview-placeholder-text {
        font-size: 1rem;
    }
    
    .overview-benefit-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .overview-cta-title {
        font-size: 1.8rem;
    }
    
    .overview-cta-description {
        font-size: 1.1rem;
    }
    
    .overview-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .overview-cta-buttons .btn-demo,
    .overview-cta-buttons .btn-bordered {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 576px) {
    .overview-hero-title {
        font-size: 2rem;
    }
    
    .overview-section-title {
        font-size: 1.6rem;
    }
    
    .overview-cta-title {
        font-size: 1.6rem;
    }
    
    .overview-module-title {
        font-size: 1.4rem;
    }
    
    .overview-benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .overview-benefit-title {
        font-size: 1.2rem;
    }
}

.pricing
{
    margin-top: 3rem;
}

.pricing-section-title
{
    font-weight: 700;
    font-size: 60px;
}

.pricing-item 
{
    background-color: #e2e8f0;
    border: var(--primary-color) 2px solid;
    padding: 24px;
    height: 100%;
    border-radius: 15px;
}


.pricing-item.annual
{
    background-color: var(--primary-color);
    color: white;
    border: #e2e8f0 2px solid;
}

.price-range
{
    font-size: 20px;
    color: #333;
}

.price-range.annual
{
    color: white;
}

.pricing-title
{
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 20px;
}

.pricing-price
{
    font-weight: 700;
    font-size: 46px;
    margin-bottom: 20px;
}

.pricing-features
{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pricing-features li span 
{
    margin-right: 10px;
    color: var(--primary-color);
}

.pricing-features.annual li span
{
    color: #e2e8f0;
}

.contact-section {
    padding: 80px 0;
}

.contact-info-container {
    background-color: white;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    height: 100%;
}

.contact-form-container {
    background-color: white;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 30px;
    height: 100%;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--accent-color);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    color: var(--primary-color);
    font-size: 20px;
}

.contact-text {
    flex: 1;
}

.contact-text h5 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.contact-text p {
    font-size: 16px;
    color: #555;
    margin: 0;
}

.contact-form-title {
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.contact-form .form-control {
    border-radius: 8px;
    padding: 12px 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    height: auto;
    font-size: 15px;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(79, 184, 131, 0.25);
}

.contact-form textarea.form-control {
    height: 150px;
}

.submit-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 30px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background-color: #3ca26f;
}

.map-container {
    height: 450px;
    margin-top: 50px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.page-title {
    position: relative;
    background-color: var(--secondary-color);
    padding: 50px 0;
    text-align: center;
    margin-bottom: 50px;
    color: white;
}

.page-title h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.page-title p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

.client-info
{
    font-weight: 800;
    font-size: 18px;
}


@media(max-width: 600px){
    .edmaster-stats{
        flex-direction: column;
        gap: 20px;
    }

    html{
        overflow-x: hidden;
    }
    .edmaster-navbar .mobile-menu-toggle{
        display: flex !important;
    }
    .edmaster-navbar .navbar-nav{
        flex-direction: column !important;
    }
}

@media(max-width: 992px){
    .edmaster-navbar .mobile-menu-toggle {
        display: flex !important;
    }

    .edmaster-navbar .navbar-nav {
        flex-direction: column !important;
    }

    html {
        overflow-x: hidden;
    }
}









