/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

body {
    font-family: 'Inter', 'Noto Sans Ethiopic', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

body[lang="am"] {
    font-family: 'Noto Sans Ethiopic', 'Inter', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    animation: slideDown 0.8s ease-out;
}

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

.nav-logo img {
    height: 95px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    animation: fadeInLeft 1s ease-out 0.2s both;
}

.nav-logo {
    display: flex;
    align-items: center;
    margin-left: -40px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu li {
    animation: fadeInRight 0.8s ease-out both;
}

.nav-menu li:nth-child(1) { animation-delay: 0.1s; }
.nav-menu li:nth-child(2) { animation-delay: 0.2s; }
.nav-menu li:nth-child(3) { animation-delay: 0.3s; }
.nav-menu li:nth-child(4) { animation-delay: 0.4s; }
.nav-menu li:nth-child(5) { animation-delay: 0.5s; }

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #1e40af;
}

.student-portal-link {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    color: white !important;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 500;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.student-portal-link:hover {
    background: linear-gradient(135deg, #1d4ed8, #2563eb);
    color: white !important;
    transform: translateY(-1px);
}

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(30, 64, 175, 0.4), rgba(30, 64, 175, 0.4)), url('https://i.pinimg.com/736x/51/46/2b/51462bff02c31d97324d43de3928996d.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 90px;
    position: relative;
}

.hero-overlay {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1.2s ease-out 0.5s both;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease-out 0.8s both;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease-out 1s both;
}

.cta-button {
    background-color: #1e40af;
    color: white;
    padding: 15px 30px;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    animation: scaleIn 0.8s ease-out 1.2s both;
}

.cta-button:hover {
    background-color: #1d4ed8;
}

.placeholder-image {
    background-color: #e2e8f0;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-weight: 500;
    text-align: center;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: #ffffff;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e40af;
    margin-bottom: 50px;
    font-weight: 700;
    animation: fadeInUp 0.8s ease-out;
}

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

.feature-card {
    text-align: center;
    padding: 40px 20px;
    background-color: #f8fafc;
    border: 2px solid #e2e8f0;
    transition: transform 0.3s, border-color 0.3s;
    animation: fadeInUp 0.8s ease-out both;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #3b82f6;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #1e40af;
}

.feature-card h3 {
    color: #1e40af;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Services Overview */
.services-overview {
    padding: 80px 0;
    background-color: #ffffff;
}

.services-overview h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e40af;
    margin-bottom: 50px;
    font-weight: 700;
    animation: fadeInUp 0.8s ease-out;
}

.services-carousel {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.service-slide {
    display: none;
    animation: fadeInUp 0.8s ease-out;
}

.service-slide.active {
    display: block;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    background-color: #f8fafc;
    border: 2px solid #e2e8f0;
    transition: border-color 0.3s, transform 0.3s;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out both;
    text-align: center;
    padding: 20px 15px;
}

.service-card .feature-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #1e40af;
    text-align: center;
}

.service-card h3 {
    color: #1e40af;
    font-size: 1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.service-card p {
    color: #64748b;
    line-height: 1.4;
    font-size: 0.9rem;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }

.service-card:hover {
    border-color: #3b82f6;
    transform: translateY(-5px);
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.service-card h3 {
    color: #1e40af;
    font-size: 1.3rem;
    margin: 20px 30px 15px;
    font-weight: 600;
}

.service-card p {
    color: #64748b;
    line-height: 1.6;
    margin: 0 30px 30px;
}

/* Trust Indicators */
.trust-indicators {
    padding: 80px 0;
    background-color: #1e40af;
    color: white;
}

.trust-indicators h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: 700;
    animation: fadeInUp 0.8s ease-out;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    animation: scaleIn 0.8s ease-out both;
}

.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(2) { animation-delay: 0.2s; }
.stat-item:nth-child(3) { animation-delay: 0.3s; }
.stat-item:nth-child(4) { animation-delay: 0.4s; }

.stat-item h3 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #3b82f6;
}

.stat-item p {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Partners Section */
.partners {
    padding: 80px 0;
    background-color: #f8fafc;
}

.partners h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e40af;
    margin-bottom: 50px;
    font-weight: 700;
    animation: fadeInUp 0.8s ease-out;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.partner-logo {
    background-color: #ffffff;
    padding: 20px;
    border: 2px solid #e2e8f0;
    transition: transform 0.3s, border-color 0.3s;
    animation: fadeInUp 0.8s ease-out both;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 150px;
    gap: 10px;
}

.partner-logo img {
    max-width: 100%;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.partner-logo span {
    font-weight: 600;
    color: #1e40af;
    text-align: center;
    font-size: 0.9rem;
}

.partner-logo:nth-child(1) { animation-delay: 0.1s; }
.partner-logo:nth-child(2) { animation-delay: 0.2s; }
.partner-logo:nth-child(3) { animation-delay: 0.3s; }
.partner-logo:nth-child(4) { animation-delay: 0.4s; }
.partner-logo:nth-child(5) { animation-delay: 0.5s; }
.partner-logo:nth-child(6) { animation-delay: 0.6s; }

.partner-logo:hover {
    transform: translateY(-5px);
    border-color: #3b82f6;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: #ffffff;
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e40af;
    margin-bottom: 50px;
    font-weight: 700;
    animation: fadeInUp 0.8s ease-out;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 2px solid #e2e8f0;
    margin-bottom: 10px;
    animation: fadeInUp 0.8s ease-out both;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }

.faq-question {
    background-color: #f8fafc;
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #1e40af;
    font-size: 1.1rem;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #e2e8f0;
}

.faq-icon {
    transition: transform 0.3s;
    color: #1e40af;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: #ffffff;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 20px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Footer */
.footer {
    background-color: #0f172a;
    color: white;
    padding: 50px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-section h3,
.footer-section h4 {
    color: #3b82f6;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #3b82f6;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #1e40af;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s;
}

.social-icon:hover {
    background-color: #3b82f6;
    transform: translateY(-2px);
}

.lang-btn {
    background-color: #1e40af;
    color: white;
    border: none;
    padding: 8px 15px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background-color 0.3s;
}

.lang-btn:hover {
    background-color: #3b82f6;
}

.language-toggle {
    margin-left: 10px;
}

/* Page Styles */
.page-header {
    background-image: linear-gradient(rgba(30, 64, 175, 0.8), rgba(30, 64, 175, 0.8)), url('https://images.unsplash.com/photo-1541339907198-e08756dedf3f?w=1920&h=400&fit=crop&crop=center');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0 60px;
    margin-top: 90px;
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-header p {
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.page-content {
    padding: 80px 0;
}

.content-section {
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease-out both;
}

.content-section:nth-child(1) { animation-delay: 0.1s; }
.content-section:nth-child(2) { animation-delay: 0.2s; }
.content-section:nth-child(3) { animation-delay: 0.3s; }

.content-section h2 {
    color: #1e40af;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.content-section p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Form Styles */
.form-container {
    background-color: #f8fafc;
    padding: 40px;
    border: 2px solid #e2e8f0;
    max-width: 600px;
    margin: 0 auto;
    animation: scaleIn 0.8s ease-out 0.3s both;
}

.content-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

.content-with-image.reverse {
    grid-template-columns: 1fr 1fr;
}

.content-with-image.reverse .content-text {
    order: 2;
}

.content-with-image.reverse .content-image {
    order: 1;
}

.content-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border: 2px solid #e2e8f0;
}

.content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #374151;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #e2e8f0;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #3b82f6;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.submit-button {
    background-color: #1e40af;
    color: white;
    padding: 15px 40px;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #1d4ed8;
}

/* Testimonial Styles */
.testimonial-carousel {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.carousel-container {
    overflow: hidden;
    position: relative;
}

.testimonial-slide {
    display: none;
    animation: fadeInUp 0.8s ease-out;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-card {
    background-color: #f8fafc;
    padding: 40px;
    border: 2px solid #e2e8f0;
    text-align: center;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.testimonial-profile {
    margin-bottom: 20px;
}

.testimonial-profile img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #1e40af;
}

.testimonial-text {
    font-style: italic;
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 1.1rem;
}

.testimonial-author {
    font-weight: 600;
    color: #1e40af;
}

.carousel-nav {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    pointer-events: none;
}

.carousel-btn {
    background-color: #1e40af;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s;
    pointer-events: all;
}

.carousel-btn:hover {
    background-color: #3b82f6;
}

.carousel-btn.prev {
    margin-left: -25px;
}

.carousel-btn.next {
    margin-right: -25px;
}

.carousel-dots {
    text-align: center;
    margin-top: 30px;
}

.dot {
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: #e2e8f0;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active,
.dot:hover {
    background-color: #1e40af;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: #f8fafc;
    padding: 30px;
    border: 2px solid #e2e8f0;
    animation: fadeInUp 0.8s ease-out both;
}

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }
.testimonial-card:nth-child(4) { animation-delay: 0.4s; }
.testimonial-card:nth-child(5) { animation-delay: 0.5s; }
.testimonial-card:nth-child(6) { animation-delay: 0.6s; }
.testimonial-card:nth-child(7) { animation-delay: 0.7s; }
.testimonial-card:nth-child(8) { animation-delay: 0.8s; }
.testimonial-card:nth-child(9) { animation-delay: 0.9s; }

.testimonial-text {
    font-style: italic;
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 600;
    color: #1e40af;
}

/* Responsive Design - Mobile First Approach */

/* Base mobile styles (320px+) */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    /* Navigation improvements */
    .nav-container {
        padding: 0 16px;
        height: 60px;
    }
    
    .nav-logo img {
        height: 50px;
        max-width: 180px;
    }
    
    .nav-logo {
        margin-left: 0;
    }
    
    /* Hero section mobile optimization */
    .hero {
        height: 70vh;
        min-height: 500px;
        background-attachment: scroll;
        margin-top: 60px;
        padding: 20px 0;
    }
    
    .hero-content {
        padding: 0 16px;
    }
    
    .hero-content h1 {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 16px;
    }
    
    .hero-content p {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 24px;
    }
    
    /* Touch-friendly buttons */
    .cta-button,
    .submit-button {
        padding: 16px 24px;
        font-size: 1rem;
        min-height: 48px;
        border-radius: 8px;
        width: 100%;
        max-width: 280px;
    }
    
    /* Page headers */
    .page-header {
        padding: 100px 0 40px;
        margin-top: 60px;
    }
    
    .page-header h1 {
        font-size: 1.75rem;
        line-height: 1.3;
        padding: 0 16px;
    }
    
    .page-header p {
        padding: 0 16px;
        font-size: 1rem;
    }
    
    /* Section headings */
    .features h2,
    .services-overview h2,
    .trust-indicators h2,
    .blog-section h2,
    .partners h2,
    .faq h2 {
        font-size: 1.5rem;
        line-height: 1.3;
        margin-bottom: 32px;
        padding: 0 16px;
    }
    
    /* Cards and content */
    .feature-card,
    .service-card,
    .testimonial-card,
    .blog-card {
        padding: 24px 20px;
        margin: 0 8px;
    }
    
    .feature-card h3,
    .service-card h3 {
        font-size: 1.1rem;
        line-height: 1.4;
    }
    
    .feature-card p,
    .service-card p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    /* Grid layouts */
    .features-grid,
    .services-grid,
    .testimonial-grid,
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 8px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 16px;
    }
    
    .stat-item h3 {
        font-size: 2rem;
        margin-bottom: 8px;
    }
    
    .stat-item p {
        font-size: 1rem;
    }
    
    /* Partners grid */
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 16px;
    }
    
    .partner-logo {
        height: 120px;
        padding: 16px;
    }
    
    .partner-logo img {
        max-height: 50px;
    }
    
    .partner-logo span {
        font-size: 0.85rem;
    }
    
    /* Content sections */
    .content-with-image,
    .content-with-image.reverse {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 0 16px;
    }
    
    .content-with-image.reverse .content-text,
    .content-with-image.reverse .content-image {
        order: unset;
    }
    
    .content-image {
        height: 200px;
    }
    
    /* Forms */
    .form-container {
        padding: 24px 20px;
        margin: 0 16px;
        border-radius: 8px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 14px 12px;
        font-size: 16px; /* Prevents zoom on iOS */
        border-radius: 6px;
        min-height: 48px;
    }
    
    .form-group textarea {
        min-height: 120px;
    }
    
    .form-group label {
        font-size: 0.95rem;
        margin-bottom: 6px;
    }
    
    /* FAQ */
    .faq-container {
        margin: 0 16px;
    }
    
    .faq-question {
        padding: 16px;
        font-size: 1rem;
        line-height: 1.4;
        min-height: 48px;
    }
    
    .faq-answer p {
        padding: 16px;
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 16px;
    }
    
    .footer-section p,
    .footer-section a {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .social-icons {
        justify-content: center;
        gap: 12px;
    }
    
    .social-icon {
        width: 44px;
        height: 44px;
        border-radius: 8px;
    }
    
    /* Blog cards */
    .blog-content {
        padding: 20px;
    }
    
    .blog-content h3 {
        font-size: 1.1rem;
        line-height: 1.4;
    }
    
    .blog-content p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .blog-link {
        font-size: 0.95rem;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }
    
    /* Process flow mobile */
    .process-step {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        text-align: center;
        padding-bottom: 30px;
        margin: 0 8px;
    }
    
    .process-step:not(:last-child)::after {
        left: 50%;
        transform: translateX(-50%);
        top: 100px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .step-content {
        padding: 20px 16px;
        margin: 0;
    }
    
    .step-content h3 {
        font-size: 1.1rem;
    }
    
    .step-content li {
        font-size: 0.9rem;
    }
    
    /* Counselors mobile */
    .counselors-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 8px;
    }
    
    .counselor-card {
        flex-direction: column;
        text-align: center;
        padding: 20px 16px;
        margin: 0;
    }
    
    .counselor-image {
        align-self: center;
    }
    
    .counselor-image img {
        width: 80px;
        height: 80px;
    }
    
    .counselor-info h3 {
        font-size: 1.1rem;
    }
    
    .credential-item {
        justify-content: center;
        text-align: left;
        font-size: 0.85rem;
    }
    
    .counselor-bio {
        border-left: none;
        border-top: 3px solid #3b82f6;
        padding-left: 0;
        padding-top: 12px;
        text-align: left;
        font-size: 0.9rem;
    }
}

/* Tablet styles (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .nav-container {
        padding: 0 20px;
    }
    
    .nav-logo {
        margin-left: 0;
    }
    
    .hero {
        height: 75vh;
        background-attachment: scroll;
        margin-top: 70px;
    }
    
    .hero-content {
        padding: 0 20px;
    }
    
    .hero-content h1 {
        font-size: 2.25rem;
        line-height: 1.2;
    }
    
    .hero-content p {
        font-size: 1.1rem;
        line-height: 1.5;
    }
    
    .page-header h1 {
        font-size: 2.25rem;
    }
    
    .features h2,
    .services-overview h2,
    .trust-indicators h2,
    .blog-section h2,
    .partners h2,
    .faq h2 {
        font-size: 1.875rem;
    }
    
    .features-grid,
    .services-grid,
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .content-with-image,
    .content-with-image.reverse {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .content-with-image.reverse .content-text,
    .content-with-image.reverse .content-image {
        order: unset;
    }
    
    .content-image {
        height: 280px;
    }
    
    .form-container {
        padding: 32px 24px;
        margin: 0 20px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .faq-container {
        margin: 0 20px;
    }
    
    /* Process flow tablet */
    .process-step {
        gap: 25px;
        margin: 0 10px;
    }
    
    .step-content {
        padding: 24px 20px;
    }
    
    .step-content h3 {
        font-size: 1.2rem;
    }
    
    .process-guarantee {
        padding: 35px 25px;
    }
    
    .guarantee-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    /* Counselors tablet */
    .counselors-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .counselor-card {
        padding: 25px;
        gap: 20px;
    }
    
    .counselor-image img {
        width: 100px;
        height: 100px;
    }
    
    .counselor-info h3 {
        font-size: 1.3rem;
    }
    
    .credential-item {
        font-size: 0.9rem;
    }
    
    /* Blog page tablet */
    .blog-posts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .blog-categories {
        gap: 12px;
        margin-bottom: 45px;
    }
    
    .category-btn {
        padding: 11px 20px;
        font-size: 0.9rem;
    }
    
    .newsletter-form {
        max-width: 350px;
    }
}

/* Large tablet/small desktop (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 0 24px;
    }
    
    .hero-content h1 {
        font-size: 2.75rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
    
    .partners-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Mobile navigation improvements */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
        padding: 8px;
        min-width: 44px;
        min-height: 44px;
        justify-content: center;
        align-items: center;
    }
    
    .nav-menu.active {
        display: flex;
        position: fixed;
        left: 0;
        top: 60px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.15);
        z-index: 999;
        padding: 20px 0;
    }
    
    .nav-menu li {
        margin: 8px 0;
    }
    
    .nav-menu li a {
        font-size: 1.1rem;
        padding: 12px 20px;
        display: block;
        min-height: 44px;
        line-height: 1.4;
        border-radius: 6px;
        margin: 0 20px;
        transition: background-color 0.3s;
    }
    
    .nav-menu li a:hover {
        background-color: #f1f5f9;
    }
    
    .language-toggle {
        margin: 16px 0;
    }
    
    .lang-btn {
        padding: 12px 20px;
        font-size: 1rem;
        min-height: 44px;
        border-radius: 6px;
    }
}ext,
    .content-with-image.reverse .content-image {
        order: unset;
    }
    
    .content-image {
        height: 250px;
    }
}
/* Legal Footer */
.legal-footer {
    background: #1e293b;
    color: #94a3b8;
    padding: 20px 0;
    font-size: 14px;
}

.legal-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.legal-links a {
    color: #94a3b8;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
    padding: 8px;
    border-radius: 4px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

.legal-links a:hover {
    color: #3b82f6;
    background-color: rgba(59, 130, 246, 0.1);
}

.legal-links a:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

.legal-links span {
    color: #64748b;
}

@media (max-width: 768px) {
    .legal-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .legal-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }
    
    .legal-links a {
        margin: 4px;
        font-size: 0.9rem;
    }
    
    .copyright p {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }
}

/* Legal Modals */
.legal-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.modal-content h2 {
    background: #1e40af;
    color: white;
    margin: 0;
    padding: 20px 30px;
    border-radius: 12px 12px 0 0;
    font-size: 24px;
}

.modal-body {
    padding: 30px;
    line-height: 1.6;
}

.modal-body h3 {
    color: #1e40af;
    margin-top: 25px;
    margin-bottom: 10px;
    font-size: 18px;
}

.modal-body p {
    margin-bottom: 15px;
    color: #374151;
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    color: white;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.close:hover {
    opacity: 0.7;
}


/* Back to Top Button */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #1e40af;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 1500;
}

#backToTop.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#backToTop:hover {
    background: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 64, 175, 0.4);
}

#backToTop:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    #backToTop {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}
/* Blog Section */
.blog-section {
    padding: 80px 0;
    background: white;
}

.blog-section h2 {
    text-align: center;
    color: #1e40af;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 60px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.blog-card {
    background: white;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.blog-content {
    padding: 25px;
}

.blog-category {
    display: inline-block;
    background: #1e40af;
    color: white;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 15px;
}

.blog-content h3 {
    color: #1e293b;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
}

.blog-content p {
    color: #64748b;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-link {
    color: #1e40af;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.blog-link:hover {
    color: #3b82f6;
}

.blog-link i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.blog-link:hover i {
    transform: translateX(3px);
}

.blog-cta {
    text-align: center;
    margin-top: 50px;
}

.view-blogs-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #1e40af;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

.view-blogs-btn:hover {
    background: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 64, 175, 0.4);
}

.view-blogs-btn i {
    transition: transform 0.3s ease;
}

.view-blogs-btn:hover i {
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .blog-content {
        padding: 20px;
    }
    
    .view-blogs-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}
/* Mobile Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.hamburger:hover {
    background-color: #f1f5f9;
}

.hamburger span {
    width: 24px;
    height: 3px;
    background: #1e40af;
    margin: 2px 0;
    transition: 0.3s;
    border-radius: 2px;
}

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

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

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

/* Carousel mobile improvements */
@media (max-width: 768px) {
    .carousel-btn {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .carousel-btn.prev {
        margin-left: -22px;
    }
    
    .carousel-btn.next {
        margin-right: -22px;
    }
    
    .dot {
        height: 12px;
        width: 12px;
        margin: 0 6px;
        min-width: 44px;
        min-height: 44px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }
    
    .dot::before {
        content: '';
        width: 12px;
        height: 12px;
        background-color: inherit;
        border-radius: 50%;
    }
    
    .testimonial-card {
        min-height: auto;
        padding: 24px 20px;
    }
    
    .testimonial-profile img {
        width: 60px;
        height: 60px;
    }
    
    .testimonial-text {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .testimonial-author {
        font-size: 0.95rem;
    }
}

/* Modal mobile improvements */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 5% auto;
        max-height: 90vh;
        border-radius: 8px;
    }
    
    .modal-content h2 {
        padding: 16px 20px;
        font-size: 1.25rem;
        border-radius: 8px 8px 0 0;
    }
    
    .modal-body {
        padding: 20px;
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .modal-body h3 {
        font-size: 1.1rem;
        margin-top: 20px;
        margin-bottom: 8px;
    }
    
    .close {
        right: 16px;
        top: 16px;
        font-size: 24px;
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.2);
    }
}

/* Back to top mobile optimization */
@media (max-width: 768px) {
    #backToTop {
        bottom: 20px;
        right: 20px;
        width: 48px;
        height: 48px;
        font-size: 16px;
    }
}

/* Blog Page Styles */
.blog-page-content {
    padding: 80px 0;
    background: #f8fafc;
}

/* Counselors Section */
.section-intro {
    text-align: center;
    color: #64748b;
    font-size: 18px;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.counselors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.counselor-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 4px;
    padding: 30px;
    display: flex;
    gap: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.counselor-card:hover {
    transform: translateY(-5px);
    border-color: #3b82f6;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.counselor-image {
    flex-shrink: 0;
}

.counselor-image img {
    width: 120px;
    height: 120px;
    border-radius: 4px;
    object-fit: cover;
    border: 3px solid #1e40af;
}

.counselor-info h3 {
    color: #1e40af;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
}

.counselor-title {
    color: #3b82f6;
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 20px;
}

.counselor-credentials {
    margin-bottom: 20px;
}

.credential-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
}

.credential-item i {
    color: #1e40af;
    margin-top: 2px;
    flex-shrink: 0;
    width: 16px;
}

.credential-item span {
    color: #374151;
    line-height: 1.5;
}

.counselor-bio {
    color: #64748b;
    font-size: 15px;
    line-height: 1.6;
    font-style: italic;
    border-left: 3px solid #3b82f6;
    padding-left: 15px;
}

@media (max-width: 768px) {
    .counselors-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .counselor-card {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }
    
    .counselor-image {
        align-self: center;
    }
    
    .counselor-image img {
        width: 100px;
        height: 100px;
    }
    
    .credential-item {
        justify-content: center;
        text-align: left;
    }
    
    .counselor-bio {
        border-left: none;
        border-top: 3px solid #3b82f6;
        padding-left: 0;
        padding-top: 15px;
        text-align: left;
    }
}

/* Advisory Philosophy Styles */
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.philosophy-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 4px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.philosophy-card:hover {
    transform: translateY(-5px);
    border-color: #3b82f6;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.philosophy-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

.philosophy-icon i {
    font-size: 28px;
    color: white;
}

.philosophy-card h3 {
    color: #1e40af;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.philosophy-card > p {
    color: #64748b;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: left;
}

.philosophy-points {
    list-style: none;
    text-align: left;
    margin: 0;
    padding: 0;
}

.philosophy-points li {
    color: #374151;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.philosophy-points li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 600;
    font-size: 16px;
}

.ethics-commitment {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border: 2px solid #cbd5e1;
    border-radius: 4px;
    padding: 35px;
    margin-top: 50px;
    text-align: center;
}

.commitment-content h3 {
    color: #1e40af;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.commitment-content > p {
    color: #64748b;
    font-size: 16px;
    margin-bottom: 25px;
}

.commitment-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.badge-item {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    padding: 20px 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.badge-item:hover {
    border-color: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.badge-item strong {
    display: block;
    color: #1e40af;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.badge-item span {
    color: #64748b;
    font-size: 13px;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin: 30px 0;
    }
    
    .philosophy-card {
        padding: 25px 20px;
    }
    
    .philosophy-icon {
        width: 60px;
        height: 60px;
    }
    
    .philosophy-icon i {
        font-size: 24px;
    }
    
    .philosophy-card h3 {
        font-size: 18px;
    }
    
    .philosophy-card > p {
        font-size: 14px;
    }
    
    .philosophy-points li {
        font-size: 13px;
    }
    
    .ethics-commitment {
        padding: 25px 20px;
        margin-top: 40px;
    }
    
    .commitment-content h3 {
        font-size: 20px;
        flex-direction: column;
        gap: 5px;
    }
    
    .commitment-badges {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .badge-item {
        padding: 15px 12px;
    }
}

@media (max-width: 480px) {
    .philosophy-card {
        padding: 20px 16px;
        margin: 0 8px;
    }
    
    .ethics-commitment {
        padding: 20px 16px;
        margin: 40px 8px 0;
    }
    
    .commitment-content h3 {
        font-size: 18px;
    }
    
    .commitment-content > p {
        font-size: 14px;
    }
    
    .badge-item strong {
        font-size: 14px;
    }
    
    .badge-item span {
        font-size: 12px;
    }
}

/* Ethical Claims & Disclaimers Styles */
.disclaimers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.disclaimer-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 4px;
    padding: 30px 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.disclaimer-card:hover {
    transform: translateY(-3px);
    border-color: #f59e0b;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.disclaimer-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.disclaimer-icon i {
    font-size: 24px;
    color: white;
}

.disclaimer-card h3 {
    color: #1e40af;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center;
}

.disclaimer-statement {
    color: #dc2626;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    margin-bottom: 20px;
    padding: 10px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 4px;
}

.disclaimer-details p {
    color: #64748b;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
}

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

.disclaimer-points li {
    color: #374151;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.disclaimer-points li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: #f59e0b;
    font-size: 14px;
}

.transparency-commitment {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border: 2px solid #0ea5e9;
    border-radius: 4px;
    padding: 35px;
    margin-top: 50px;
}

.commitment-header {
    text-align: center;
    margin-bottom: 30px;
}

.commitment-header h3 {
    color: #1e40af;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.commitment-header p {
    color: #64748b;
    font-size: 16px;
    margin: 0;
}

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

.commitment-item {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.commitment-item:hover {
    border-color: #0ea5e9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.commitment-item h4 {
    color: #1e40af;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.commitment-item p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .disclaimers-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin: 30px 0;
    }
    
    .disclaimer-card {
        padding: 25px 20px;
    }
    
    .disclaimer-icon {
        width: 50px;
        height: 50px;
    }
    
    .disclaimer-icon i {
        font-size: 20px;
    }
    
    .disclaimer-card h3 {
        font-size: 18px;
    }
    
    .disclaimer-statement {
        font-size: 14px;
    }
    
    .disclaimer-details p {
        font-size: 14px;
    }
    
    .disclaimer-points li {
        font-size: 13px;
    }
    
    .transparency-commitment {
        padding: 25px 20px;
        margin-top: 40px;
    }
    
    .commitment-header h3 {
        font-size: 20px;
        flex-direction: column;
        gap: 5px;
    }
    
    .commitment-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .commitment-item {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .disclaimer-card {
        padding: 20px 16px;
        margin: 0 8px;
    }
    
    .transparency-commitment {
        padding: 20px 16px;
        margin: 40px 8px 0;
    }
    
    .commitment-header h3 {
        font-size: 18px;
    }
    
    .commitment-header p {
        font-size: 14px;
    }
    
    .commitment-item h4 {
        font-size: 14px;
    }
    
    .commitment-item p {
        font-size: 13px;
    }
}

/* Process Flow Styles */
.process-flow {
    margin: 50px 0;
}

.process-step {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 40px;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 30px;
    top: 80px;
    width: 2px;
    height: calc(100% - 40px);
    background: linear-gradient(to bottom, #3b82f6, #1e40af);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
    position: relative;
    z-index: 2;
}

.step-content {
    flex: 1;
    background: white;
    padding: 25px;
    border: 2px solid #e2e8f0;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.step-content:hover {
    border-color: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.step-content h3 {
    color: #1e40af;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.step-content > p {
    color: #3b82f6;
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 14px;
}

.step-content ul {
    list-style: none;
    margin-bottom: 20px;
}

.step-content li {
    color: #374151;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.step-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 600;
}

.step-outcome {
    background: #f0f9ff;
    border: 1px solid #0ea5e9;
    border-radius: 4px;
    padding: 12px 15px;
    color: #0c4a6e;
    font-weight: 500;
    font-size: 14px;
}

.process-guarantee {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    border-radius: 4px;
    padding: 40px;
    margin-top: 60px;
    color: white;
    text-align: center;
}

.guarantee-content h3 {
    font-size: 24px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

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

.guarantee-item {
    text-align: center;
}

.guarantee-item strong {
    display: block;
    font-size: 18px;
    margin-bottom: 8px;
    color: #fbbf24;
}

.guarantee-item p {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .process-step {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        text-align: center;
        padding-bottom: 30px;
    }
    
    .process-step:not(:last-child)::after {
        left: 50%;
        transform: translateX(-50%);
        top: 100px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .step-content {
        padding: 20px;
    }
    
    .step-content h3 {
        font-size: 18px;
    }
    
    .process-guarantee {
        padding: 30px 20px;
    }
    
    .guarantee-content h3 {
        font-size: 20px;
        flex-direction: column;
        gap: 5px;
    }
    
    .guarantee-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .process-step {
        margin-bottom: 30px;
    }
    
    .step-content {
        padding: 15px;
    }
    
    .step-content li {
        font-size: 14px;
    }
}

.blog-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.category-btn {
    background: white;
    color: #64748b;
    border: 2px solid #e2e8f0;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.category-btn:hover,
.category-btn.active {
    background: #1e40af;
    color: white;
    border-color: #1e40af;
    transform: translateY(-2px);
}

.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.blog-post-card {
    background: white;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.blog-post-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.blog-post-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-post-card:hover .blog-post-image img {
    transform: scale(1.05);
}

.blog-post-content {
    padding: 25px;
}

.blog-post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.blog-post-category {
    background: #1e40af;
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.blog-post-date {
    color: #64748b;
    font-size: 13px;
}

.blog-post-content h2 {
    color: #1e293b;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-post-content p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-post-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 12px;
    color: #64748b;
}

.blog-post-stats span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1e40af;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    color: #3b82f6;
    gap: 12px;
}

.read-more-btn i {
    transition: transform 0.3s ease;
}

.read-more-btn:hover i {
    transform: translateX(3px);
}

.blog-newsletter {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    border-radius: 4px;
    padding: 50px;
    text-align: center;
    color: white;
    margin-top: 60px;
}

.newsletter-content h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
}

.newsletter-content p {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    max-width: 400px;
    margin: 0 auto;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    outline: none;
}

.newsletter-form button {
    background: #0f172a;
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: #1e293b;
    transform: translateY(-2px);
}

/* Blog filtering */
.blog-post-card.hidden {
    display: none;
}

/* Mobile responsiveness for blog page */
@media (max-width: 768px) {
    .blog-categories {
        gap: 10px;
        margin-bottom: 40px;
        padding: 0 16px;
    }
    
    .category-btn {
        padding: 10px 18px;
        font-size: 13px;
        min-height: 44px;
    }
    
    .blog-posts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 16px;
    }
    
    .blog-post-content {
        padding: 20px;
    }
    
    .blog-post-content h2 {
        font-size: 16px;
    }
    
    .blog-newsletter {
        padding: 30px 20px;
        margin: 40px 16px 0;
    }
    
    .newsletter-content h3 {
        font-size: 22px;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 15px;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
        min-height: 48px;
    }
}

@media (max-width: 480px) {
    .blog-categories {
        justify-content: flex-start;
        overflow-x: auto;
        padding: 0 16px 10px;
        -webkit-overflow-scrolling: touch;
    }
    
    .category-btn {
        white-space: nowrap;
        flex-shrink: 0;
        min-width: auto;
    }
    
    .blog-posts-grid {
        padding: 0 8px;
    }
    
    .blog-post-card {
        margin: 0 8px;
    }
    
    .blog-newsletter {
        margin: 40px 8px 0;
        padding: 25px 16px;
    }
    
    .newsletter-content h3 {
        font-size: 20px;
    }
    
    .newsletter-content p {
        font-size: 14px;
    }
}

/* Pricing Page Styles */
.pricing-structure {
    padding: 80px 0;
    background: #f8f9fa;
}

.pricing-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background: white;
    border-radius: 4px;
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.pricing-card.featured {
    border: 3px solid #007bff;
    transform: scale(1.05);
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.price {
    font-size: 2rem;
    font-weight: bold;
    color: #007bff;
    margin-bottom: 20px;
}

.popular {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #007bff;
    color: white;
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: bold;
}

.pricing-content p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.pricing-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.pricing-features li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 25px;
}

.pricing-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.fee-calculation {
    padding: 80px 0;
    background: white;
}

.calculation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.calculation-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 4px;
    background: #f8f9fa;
    transition: transform 0.3s ease;
}

.calculation-card:hover {
    transform: translateY(-3px);
}

.calc-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.calculation-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.calculation-card p {
    color: #666;
    line-height: 1.6;
}

.payment-options {
    padding: 80px 0;
    background: #f8f9fa;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.payment-card {
    background: white;
    padding: 40px 30px;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.payment-card h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #333;
}

.payment-card p {
    color: #666;
    line-height: 1.6;
}

.value-proposition {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.value-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.value-stat {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #007bff;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
}

.value-text {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    text-align: center;
}

.pricing-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.pricing-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Pricing Mobile Responsive */
@media (max-width: 768px) {
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 16px;
    }
    
    .pricing-card {
        padding: 30px 20px;
        margin: 0;
    }
    
    .pricing-card.featured {
        transform: none;
        border: 2px solid #007bff;
    }
    
    .calculation-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 16px;
    }
    
    .calculation-card {
        padding: 25px 20px;
    }
    
    .payment-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 16px;
    }
    
    .payment-card {
        padding: 30px 20px;
    }
    
    .value-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 16px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .pricing-cta h2 {
        font-size: 1.75rem;
    }
    
    .pricing-cta p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .pricing-intro {
        padding: 0 16px;
        font-size: 1rem;
    }
    
    .pricing-card {
        padding: 25px 16px;
    }
    
    .pricing-header h3 {
        font-size: 1.25rem;
    }
    
    .price {
        font-size: 1.5rem;
    }
    
    .calculation-card {
        padding: 20px 16px;
    }
    
    .calc-icon {
        font-size: 2.5rem;
    }
    
    .calculation-card h3 {
        font-size: 1.1rem;
    }
    
    .payment-card {
        padding: 25px 16px;
    }
    
    .payment-card h3 {
        font-size: 1.2rem;
    }
    
    .value-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .value-text {
        padding: 0 16px;
        font-size: 1rem;
    }
}

.admin-user {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #1e40af;
    font-weight: 500;
    margin-left: 20px;
}

.logout-btn {
    color: #ef4444;
    font-size: 1.1rem;
    margin-left: 8px;
    transition: color 0.3s;
    text-decoration: none;
}

.logout-btn:hover {
    color: #dc2626;
}

/* Admin Tab Styles */
.admin-tabs {
    display: flex;
    gap: 5px;
    margin-bottom: 30px;
    border-bottom: 2px solid #e2e8f0;
    overflow-x: auto;
}

.tab-btn {
    background: white;
    border: none;
    padding: 12px 20px;
    color: #64748b;
    font-weight: 500;
    cursor: pointer;
    border-radius: 4px 4px 0 0;
    transition: all 0.3s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tab-btn:hover {
    background: #f1f5f9;
    color: #1e40af;
}

.tab-btn.active {
    background: #1e40af;
    color: white;
    border-bottom: 2px solid #1e40af;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Admin Dashboard Styles */
.admin-navbar {
    background: #1e293b;
    color: white;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.admin-navbar .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-navbar .nav-logo span {
    color: white;
    font-weight: 600;
    margin-left: 10px;
}

.admin-user {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
}

.logout-btn {
    color: #ef4444;
    font-size: 1.2rem;
    margin-left: 10px;
    transition: color 0.3s;
}

.logout-btn:hover {
    color: #dc2626;
}

.admin-header {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.admin-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.admin-content {
    padding: 40px 0;
    background: #f8fafc;
}

.stats-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background: white;
    padding: 25px;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.stat-info h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 5px;
}

.stat-info p {
    color: #64748b;
    margin-bottom: 5px;
}

.stat-change {
    font-size: 0.9rem;
    font-weight: 500;
}

.stat-change.positive {
    color: #10b981;
}

.analytics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.analytics-card {
    background: white;
    padding: 25px;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.analytics-card h3 {
    color: #1e40af;
    font-size: 1.2rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.metric-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #e2e8f0;
}

.metric-row:last-child {
    border-bottom: none;
}

.metric-row span {
    color: #64748b;
}

.metric-row strong {
    color: #1e293b;
    font-weight: 600;
}

.recent-activity {
    background: white;
    padding: 25px;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.recent-activity h3 {
    color: #1e40af;
    font-size: 1.2rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.activity-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 4px;
    border-left: 4px solid #3b82f6;
}

.activity-icon {
    width: 40px;
    height: 40px;
    background: #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.activity-content p {
    margin: 0 0 5px 0;
    color: #1e293b;
}

.activity-content span {
    color: #64748b;
    font-size: 0.9rem;
}

/* Admin Mobile Responsive */
@media (max-width: 768px) {
    .admin-tabs {
        gap: 2px;
    }
    
    .tab-btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .tab-btn i {
        display: none;
    }
    
    .stats-overview {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .analytics-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-card {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .admin-header h1 {
        font-size: 1.8rem;
    }
    
    .admin-user span {
        display: none;
    }
}

/* Pricing Page Styles */
.admin-navbar {
    background: #1e293b;
    color: white;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.admin-navbar .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-navbar .nav-logo span {
    color: white;
    font-weight: 600;
    margin-left: 10px;
}

.admin-user {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
}

.logout-btn {
    color: #ef4444;
    font-size: 1.2rem;
    margin-left: 10px;
    transition: color 0.3s;
}

.logout-btn:hover {
    color: #dc2626;
}

.admin-header {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.admin-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.admin-content {
    padding: 40px 0;
    background: #f8fafc;
}

.stats-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background: white;
    padding: 25px;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.stat-info h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 5px;
}

.stat-info p {
    color: #64748b;
    margin-bottom: 5px;
}

.stat-change {
    font-size: 0.9rem;
    font-weight: 500;
}

.stat-change.positive {
    color: #10b981;
}

.analytics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.analytics-card {
    background: white;
    padding: 25px;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.analytics-card h3 {
    color: #1e40af;
    font-size: 1.2rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.metric-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #e2e8f0;
}

.metric-row:last-child {
    border-bottom: none;
}

.metric-row span {
    color: #64748b;
}

.metric-row strong {
    color: #1e293b;
    font-weight: 600;
}

.recent-activity {
    background: white;
    padding: 25px;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.recent-activity h3 {
    color: #1e40af;
    font-size: 1.2rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.activity-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 4px;
    border-left: 4px solid #3b82f6;
}

.activity-icon {
    width: 40px;
    height: 40px;
    background: #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.activity-content p {
    margin: 0 0 5px 0;
    color: #1e293b;
}

.activity-content span {
    color: #64748b;
    font-size: 0.9rem;
}

/* Admin Mobile Responsive */
@media (max-width: 768px) {
    .stats-overview {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .analytics-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-card {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .admin-header h1 {
        font-size: 1.8rem;
    }
    
    .admin-user span {
        display: none;
    }
}

/* Student Login Styles */
.login-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.login-card {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #e2e8f0;
}

.login-header {
    text-align: center;
    margin-bottom: 30px;
}

.login-header i {
    font-size: 3rem;
    color: #1e40af;
    margin-bottom: 15px;
}

.login-header h2 {
    color: #1e293b;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.login-header p {
    color: #64748b;
    font-size: 0.95rem;
}

.login-form {
    margin-bottom: 25px;
}

.password-input {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #64748b;
    cursor: pointer;
    padding: 5px;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.9rem;
    color: #374151;
}

.checkbox-label input {
    margin-right: 8px;
    width: auto;
}

.forgot-password {
    color: #1e40af;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.forgot-password:hover {
    color: #3b82f6;
}

.login-btn {
    width: 100%;
    background: #1e40af;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.login-btn:hover {
    background: #1d4ed8;
}

.login-footer {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.login-footer p {
    color: #64748b;
    font-size: 0.9rem;
}

.login-footer a {
    color: #1e40af;
    text-decoration: none;
}

.access-info {
    background: #f8fafc;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.access-info h3 {
    color: #1e40af;
    font-size: 1.3rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: white;
    padding: 20px;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.info-card i {
    font-size: 1.5rem;
    color: #1e40af;
    margin-top: 2px;
}

.info-card h4 {
    color: #1e293b;
    font-size: 1rem;
    margin-bottom: 5px;
}

.info-card p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Student Portal Styles */
.student-user {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #1e40af;
    font-weight: 500;
    margin-left: 20px;
}

.portal-tabs {
    display: flex;
    gap: 5px;
    margin-bottom: 30px;
    border-bottom: 2px solid #e2e8f0;
    overflow-x: auto;
}

.portal-tabs .tab-btn {
    background: white;
    border: none;
    padding: 12px 20px;
    color: #64748b;
    font-weight: 500;
    cursor: pointer;
    border-radius: 4px 4px 0 0;
    transition: all 0.3s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}

.portal-tabs .tab-btn:hover {
    background: #f1f5f9;
    color: #1e40af;
}

.portal-tabs .tab-btn.active {
    background: #1e40af;
    color: white;
    border-bottom: 2px solid #1e40af;
}

.dashboard-overview {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.welcome-card {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    color: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.welcome-card h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.quick-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.status-timeline {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    border-left: 4px solid #e2e8f0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.timeline-item.completed {
    border-left-color: #10b981;
}

.timeline-item.active {
    border-left-color: #f59e0b;
    background: #fffbeb;
}

.timeline-item.pending {
    border-left-color: #e2e8f0;
    opacity: 0.7;
}

.timeline-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.timeline-item.completed .timeline-icon {
    background: #10b981;
}

.timeline-item.active .timeline-icon {
    background: #f59e0b;
}

.timeline-item.pending .timeline-icon {
    background: #9ca3af;
}

.timeline-content h4 {
    color: #1e293b;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.timeline-content p {
    color: #64748b;
    margin-bottom: 8px;
}

.timeline-date {
    color: #9ca3af;
    font-size: 0.85rem;
    font-weight: 500;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.session-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.session-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.session-header h4 {
    color: #1e293b;
    font-size: 1.1rem;
    margin: 0;
}

.session-type {
    background: #1e40af;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
}

.session-details {
    margin-bottom: 20px;
}

.session-details p {
    color: #64748b;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.session-actions {
    display: flex;
    gap: 10px;
}

.join-btn, .reschedule-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.join-btn {
    background: #10b981;
    color: white;
}

.join-btn:hover {
    background: #059669;
}

.reschedule-btn {
    background: #f3f4f6;
    color: #374151;
    border: 1px solid #d1d5db;
}

.reschedule-btn:hover {
    background: #e5e7eb;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.course-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.course-card:hover {
    transform: translateY(-2px);
}

.course-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.course-header i {
    font-size: 1.5rem;
    color: #1e40af;
}

.course-header h4 {
    color: #1e293b;
    font-size: 1.1rem;
    margin: 0;
}

.course-progress {
    margin-bottom: 15px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-fill {
    height: 100%;
    background: #10b981;
    transition: width 0.3s;
}

.course-progress span {
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 500;
}

.course-details {
    margin-bottom: 20px;
}

.course-details p {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.continue-btn {
    width: 100%;
    background: #1e40af;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.continue-btn:hover {
    background: #1d4ed8;
}

.video-categories {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.video-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-2px);
}

.video-thumbnail {
    height: 180px;
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: white;
}

.video-thumbnail i {
    font-size: 3rem;
    opacity: 0.9;
}

.video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
}

.video-info {
    padding: 20px;
}

.video-info h4 {
    color: #1e293b;
    font-size: 1rem;
    margin-bottom: 8px;
}

.video-info p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 12px;
}

.video-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: #9ca3af;
}

.video-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Mobile Responsive for Student Portal */
@media (max-width: 768px) {
    .login-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 16px;
    }
    
    .login-card, .access-info {
        padding: 25px 20px;
    }
    
    .portal-tabs {
        gap: 2px;
    }
    
    .portal-tabs .tab-btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .portal-tabs .tab-btn i {
        display: none;
    }
    
    .quick-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .schedule-grid, .courses-grid, .videos-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .session-actions {
        flex-direction: column;
    }
    
    .join-btn, .reschedule-btn {
        width: 100%;
        justify-content: center;
    }
    
    .video-categories {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    
    .category-btn {
        white-space: nowrap;
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {
    .quick-stats {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        padding: 15px;
        gap: 15px;
    }
    
    .session-card, .course-card, .video-card {
        margin: 0 8px;
    }
    
    .welcome-card h2 {
        font-size: 1.25rem;
        flex-direction: column;
        gap: 5px;
    }
}

/* Better focus states for accessibility */
.cta-button:focus,
.submit-button:focus,
.carousel-btn:focus,
.hamburger:focus,
.nav-menu a:focus,
.lang-btn:focus,
.social-icon:focus,
.blog-link:focus,
.faq-question:focus,
.login-btn:focus,
.continue-btn:focus,
.join-btn:focus,
.reschedule-btn:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* Improve text contrast on mobile */
@media (max-width: 768px) {
    .hero-content p {
        text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    }
    
    .page-header p {
        text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    }
}