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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #333;
    padding-top: 80px;
}

/* Header Styles */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    height: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav_logo img {
    width: 260px;
}

.mob_menu_icon {
    display: none;
    align-items: center;
    gap: 1rem;
}

.menubar_icon {
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.menubar_icon div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.menubar_icon span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menubar_icon.active .line-1 {
    transform: rotate(45deg) translate(3px, 3px);
}

.menubar_icon.active .line-2 {
    opacity: 0;
}

.menubar_icon.active .line-3 {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mob_logo img,
.tab_logo img {
    height: 40px;
    width: auto;
}

.containers {
    display: flex;
    align-items: center;
}

.nav_menu ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav_menu a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
    text-transform: capitalize;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.nav_menu a:hover {
    color: #0056b3;
    transform: translateY(-2px);
}

.active-nav {
    background: #0056b3 !important;
    color: white !important;
}

.cursor-pointer {
    cursor: pointer;
}

.nav_icons {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1rem;
    align-items: center;
}

.nav_icons li {
    width: 45px;
    height: 45px;
    border: 2px solid #0056b3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.nav_icons li:hover {
    background: #0056b3;
    border-color: #0056b3;
    transform: translateY(-2px);
}

.nav_icons a {
    color: #333;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.nav_icons li:hover a {
    color: white;
}

.searchBox {
    position: relative;
}

.search-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 18px;
}

.search_field {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 0.5rem;
    padding: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: none;
    min-width: 250px;
    margin-top: 10px;
}

.search_field input {
    border: none;
    outline: none;
    width: 100%;
    padding: 0.5rem;
    font-size: 14px;
}

.singin-icon {
    display: none;
    width: 45px;
    height: 45px;
    border: 3px solid #0056b3;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.singin-icon:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

.singin-icon a {
    color: #333;
    text-decoration: none;
}

.singin-icon:hover a {
    color: white;
}

/* Mobile Menu */
.mobile_menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 999;
}

.mobile_menu.active {
    max-height: 500px;
}

.mob_nav_menu ul {
    list-style: none;
    margin: 0;
    padding: 1rem;
}

.mob_nav_menu li {
    border-bottom: 1px solid #eee;
}

.mob_nav_menu a {
    display: block;
    padding: 1rem;
    color: #333;
    text-decoration: none;
    text-transform: capitalize;
    cursor: pointer;
}

.mob_nav_menu a:hover {
    color: #0056b3;
    background: #f8f9fa;
}

/* Tuition Master Page Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.text-primary {
    color: #0056b3;
}

/* Button Styles */
.btn {
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: #0056b3;
    color: white;
}

.btn-primary:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #0056b3;
    border: 2px solid #0056b3;
}

.btn-outline:hover {
    background: #0056b3;
    color: white;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    background: white;
    padding: 6rem 0;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: #0056b3;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.25rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 2rem;
}

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

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Management Types Section */
.management-types-section {
    padding: 6rem 0;
    background: #f9fafb;
}

.management-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.management-type-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.management-type-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.type-header {
    padding: 2rem;
    color: white;
    position: relative;
}

.type-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.type-icon i {
    font-size: 1.5rem;
    color: white;
}

.type-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.type-content {
    padding: 2rem;
}

.type-content p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: #4b5563;
}

.features-list li i {
    color: #10b981;
    margin-right: 0.5rem;
    font-size: 1rem;
}

/* Tuition Master Features Section */
.tuitionmaster-features-section {
    padding: 6rem 0;
    background: #f9fafb;
}

.features-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.features-showcase:nth-child(even) {
    direction: rtl;
}

.features-showcase:nth-child(even) > * {
    direction: ltr;
}

.feature-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.feature-content p {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.feature-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-highlights li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #4b5563;
    font-size: 1rem;
}

.feature-highlights li i {
    color: #0056b3;
    margin-right: 1rem;
    font-size: 1.25rem;
    width: 24px;
    text-align: center;
}

.feature-image {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.feature-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.feature-card {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.feature-card:hover {
    background: #f9fafb;
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: #0056b3;
}

.feature-card-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, #0056b3 0%, #0034aa 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-card-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Benefits Section */
.benefits-section {
    padding: 6rem 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #cce0ff 0%, #99c2ff 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.benefit-icon i {
    font-size: 1.5rem;
    color: #0056b3;
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.benefit-details {
    list-style: none;
    padding: 0;
    text-align: left;
}

.benefit-details li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: #4b5563;
    font-size: 0.875rem;
}

.benefit-details li i {
    color: #0056b3;
    margin-right: 0.5rem;
    font-size: 0.75rem;
}

/* Requirements Section */
.requirements-section {
    padding: 6rem 0;
    background: #f9fafb;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.requirement-card {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.requirement-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.requirement-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #cce0ff 0%, #99c2ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.requirement-icon i {
    font-size: 1.5rem;
    color: #0056b3;
}

.requirement-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.requirement-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Onboarding Process Section */
.onboarding-section {
    padding: 6rem 0;
    background: white;
}

.onboarding-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
}

.step-card {
    text-align: center;
    position: relative;
}

.step-number {
    width: 3rem;
    height: 3rem;
    background: #0056b3;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step-icon {
    width: 3rem;
    height: 3rem;
    background: #cce0ff;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.step-icon i {
    font-size: 1.25rem;
    color:#0056b3;
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.step-content p {
    color: #6b7280;
    line-height: 1.6;
}

.step-connector {
    position: absolute;
    top: 1.5rem;
    left: 100%;
    width: 2rem;
    height: 2px;
    background: #e5e7eb;
    transform: translateX(-50%);
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0056b3 0%, #0034aa 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.cta-section .btn-primary {
    background: white;
    color: #0056b3;
}

.cta-section .btn-primary:hover {
    background: #f3f4f6;
}

/* Footer Styles */
.footer {
    background: white;
    color: #333;
    padding: 4rem 0 0;
    border-top: 1px solid #e5e7eb;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-widget h2.widget-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.footer-logo {
    margin-bottom: 2rem;
}

.footer-logo img {
    width: 260px;
}

.footer-about-text p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-menu ul li a {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.footer-menu ul li a i {
    margin-right: 0.5rem;
    color: #01a6fd;
    font-size: 0.8rem;
}

.footer-menu ul li a:hover {
    color:#01a6fd;
}

.copy-right-menu {
    border-top: 1px solid #e5e7eb;
    padding: 2rem 0;
}

.copy-right-menu .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.col-md-6 {
    flex: 1;
    min-width: 250px;
}

.copy-right-text p {
    color: #6b7280;
    font-size: 0.9rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.copy-right-menu-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
}

.copy-right-menu-item ul li a {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.copy-right-menu-item ul li a:hover {
    color: #0056b3;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .containers {
        display: none;
    }

    .mob_menu_icon {
        display: flex;
    }

    .singin-icon {
        display: flex;
    }

    .mobile_menu {
        display: block;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .nav {
        padding: 0 1rem;
    }

    .nav_logo img {
        width: 180px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .copy-right-menu .row {
        flex-direction: column;
        text-align: center;
    }
    
    .copy-right-menu-item ul {
        flex-direction: column;
        gap: 1rem;
        justify-content: center;
    }
    
    .footer-logo img {
        width: 180px;
    }

    .step-connector {
        display: none;
    }

    .features-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .features-showcase:nth-child(even) {
        direction: ltr;
    }

    .feature-content h3 {
        font-size: 1.5rem;
    }

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

    .feature-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2rem 0 0;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
    
    .widget-title {
        font-size: 1.25rem !important;
    }

    .hero-section {
        padding: 4rem 0 3rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}