/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: #666;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background-color: #1e40af;
    color: white;
    border-color: #1e40af;
}

.btn-primary:hover {
    background-color: #1d4ed8;
    border-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #1e40af;
    border-color: #1e40af;
}

.btn-secondary:hover {
    background-color: #1e40af;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.2);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

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

.nav {
    padding: 1rem 0;
}

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

.nav-logo h2 {
    color: #1e40af;
    font-size: 1.5rem;
    margin-bottom: 0;
}

.nav-tagline {
    color: #666;
    font-size: 0.9rem;
    font-weight: 400;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link:hover,
.nav-link.active {
    color: #1e40af;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 250px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
    background-color: #f8fafc;
    color: #1e40af;
}

.dropdown-divider {
    height: 1px;
    background-color: #e5e7eb;
    margin: 0.5rem 0;
}

.dropdown-header {
    font-weight: 600;
    color: #374151 !important;
    background-color: #f3f4f6 !important;
    cursor: default;
}

.dropdown-header:hover {
    background-color: #f3f4f6 !important;
    color: #374151 !important;
}

.nav-contact {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-phone {
    color: #1e40af;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #1e40af;
}

.stat-label {
    font-size: 0.9rem;
    color: #64748b;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

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

.section-header h2 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

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

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

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

.service-card h3 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.service-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
}

.service-link {
    color: #1e40af;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 0.75rem;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background-color: #f8fafc;
}

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

.feature {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

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

.feature h3 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.feature p {
    color: #64748b;
}

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

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

.testimonial {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.stars {
    color: #fbbf24;
    margin-bottom: 1rem;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #374151;
}

.testimonial-author strong {
    color: #1e293b;
    display: block;
}

.testimonial-author span {
    color: #64748b;
    font-size: 0.9rem;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    color: #bfdbfe;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta .btn-primary {
    background-color: white;
    color: #1e40af;
    border-color: white;
}

.cta .btn-primary:hover {
    background-color: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.cta .btn-secondary {
    background-color: transparent;
    color: white;
    border-color: white;
}

.cta .btn-secondary:hover {
    background-color: white;
    color: #1e40af;
}

/* Footer */
.footer {
    background-color: #1e293b;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #cbd5e1;
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

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

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

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: #374151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.office-info p {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.office-info i {
    color: #3b82f6;
    margin-top: 0.2rem;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: #cbd5e1;
    margin-bottom: 0;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-logo h2 {
        font-size: 1.2rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        padding: 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, opacity 0.3s ease;
        z-index: 1000;
        opacity: 0;
    }
    
    .nav-menu.active {
        max-height: 800px;
        opacity: 1;
    }
    
    .nav-menu li {
        margin: 0;
        border-bottom: 1px solid #f1f5f9;
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu .nav-link {
        padding: 1rem 2rem;
        display: block;
        text-decoration: none;
        color: #333;
        transition: background-color 0.3s ease;
    }
    
    .nav-menu .nav-link:hover {
        background-color: #f8fafc;
        color: #1e40af;
    }
    
    .nav-menu .dropdown .nav-link {
        position: relative;
    }
    
    .nav-menu .dropdown .nav-link i {
        transition: transform 0.3s ease;
    }
    
    .nav-menu .dropdown.active .nav-link i {
        transform: rotate(180deg);
    }
    
    .nav-contact {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #f8fafc;
        padding: 1.5rem 2rem;
        flex-direction: column;
        gap: 1rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease 0.1s;
        z-index: 999;
        border-top: 1px solid #e2e8f0;
        margin-top: -1px;
    }
    
    .nav-contact.active {
        max-height: 200px;
    }
    
    .nav-contact .btn {
        width: 100%;
        text-align: center;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .dropdown-content {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: #f8fafc;
        margin: 0;
        border-radius: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .dropdown.active .dropdown-content {
        max-height: 400px;
    }
    
    /* Only apply hover on non-mobile devices */
    @media (min-width: 769px) {
        .dropdown:hover .dropdown-content {
            max-height: 400px;
        }
    }
    
    .dropdown-content a {
        padding: 0.75rem 3rem;
        font-size: 0.9rem;
        border-bottom: 1px solid #e2e8f0;
        background-color: #f8fafc;
    }
    
    .dropdown-content a:hover {
        background-color: #e2e8f0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .nav-logo h2 {
        font-size: 1rem;
        line-height: 1.2;
    }
    
    .nav-menu {
        padding: 1.5rem;
    }
    
    .nav-contact {
        padding: 1rem 1.5rem;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .services,
    .why-choose-us,
    .testimonials,
    .cta {
        padding: 60px 0;
    }
    
    .service-card,
    .testimonial {
        padding: 1.5rem;
    }
}


/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    color: white;
    padding: 120px 0 60px;
    text-align: center;
}

.page-header-content h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header-content p {
    color: #bfdbfe;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #bfdbfe;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb span {
    color: #93c5fd;
}

/* Main Content Layout */
.main-content {
    padding: 80px 0;
    background-color: #ffffff;
}

.content-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.content-main {
    max-width: none;
}

.content-section {
    margin-bottom: 3rem;
}

.content-section h2 {
    color: #1e293b;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #1e40af;
}

.content-section h3 {
    color: #374151;
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
}

.content-section h4 {
    color: #4b5563;
    font-size: 1.2rem;
    margin: 1.5rem 0 1rem;
}

.content-section p {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* Info Table Styles */
.info-table {
    margin: 2rem 0;
    background-color: #f8fafc;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.info-table h4 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.info-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.info-table th,
.info-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.info-table th {
    background-color: #1e40af;
    color: white;
    font-weight: 600;
}

.info-table tr:last-child td {
    border-bottom: none;
}

.info-table tr:nth-child(even) {
    background-color: #f8fafc;
}

/* Sidebar Styles */
.content-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.sidebar-widget {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.sidebar-widget h3 {
    color: #1e293b;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #1e40af;
}

.fact-list,
.document-list {
    list-style: none;
    padding: 0;
}

.fact-list li,
.document-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1f5f9;
    color: #4b5563;
}

.fact-list li:last-child,
.document-list li:last-child {
    border-bottom: none;
}

.fact-list strong {
    color: #1e293b;
}

.document-list li::before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
    margin-right: 0.5rem;
}

.cta-widget {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    color: white;
    text-align: center;
}

.cta-widget h3 {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.cta-widget p {
    color: #bfdbfe;
    margin-bottom: 1.5rem;
}

.btn-block {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
}

.cta-widget .btn-primary {
    background-color: white;
    color: #1e40af;
    border-color: white;
}

.cta-widget .btn-primary:hover {
    background-color: #f8fafc;
}

.cta-widget .btn-secondary {
    background-color: transparent;
    color: white;
    border-color: white;
}

.cta-widget .btn-secondary:hover {
    background-color: white;
    color: #1e40af;
}

/* Related Services */
.related-services {
    padding: 80px 0;
    background-color: #f8fafc;
}

.related-services h2 {
    text-align: center;
    color: #1e293b;
    margin-bottom: 3rem;
}

/* Responsive Design for Content Pages */
@media (max-width: 1024px) {
    .content-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .content-sidebar {
        position: static;
        order: -1;
    }
    
    .sidebar-widget {
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 100px 0 40px;
    }
    
    .page-header-content h1 {
        font-size: 2.5rem;
    }
    
    .main-content {
        padding: 60px 0;
    }
    
    .content-section h2 {
        font-size: 1.75rem;
    }
    
    .info-table {
        padding: 1rem;
        overflow-x: auto;
    }
    
    .info-table table {
        min-width: 600px;
    }
    
    .sidebar-widget {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .page-header-content h1 {
        font-size: 2rem;
    }
    
    .content-section h2 {
        font-size: 1.5rem;
    }
    
    .content-section h3 {
        font-size: 1.25rem;
    }
    
    .info-table th,
    .info-table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.9rem;
    }
}


/* Contact Page Styles */
.contact-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.contact-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.contact-form-section h2 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.contact-form-section p {
    color: #64748b;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Form Styles */
.contact-form {
    background-color: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1e40af;
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

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

/* Radio and Checkbox Styles */
.radio-group {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.radio-label,
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: 400;
}

.radio-label input[type="radio"],
.checkbox-label input[type="checkbox"] {
    display: none;
}

.radio-custom,
.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #d1d5db;
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-custom {
    border-radius: 4px;
}

.radio-label input[type="radio"]:checked + .radio-custom,
.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    border-color: #1e40af;
    background-color: #1e40af;
}

.radio-label input[type="radio"]:checked + .radio-custom::after {
    content: '';
    width: 8px;
    height: 8px;
    background-color: white;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '✓';
    color: white;
    font-size: 12px;
    font-weight: bold;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.form-disclaimer {
    text-align: center;
    color: #64748b;
    font-size: 0.9rem;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Contact Info Cards */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.contact-card h3 {
    color: #1e293b;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-card h3 i {
    color: #1e40af;
}

.office-details p {
    margin-bottom: 1rem;
    color: #4b5563;
}

.office-details strong {
    color: #1e293b;
}

.office-details a {
    color: #1e40af;
    text-decoration: none;
}

.office-details a:hover {
    text-decoration: underline;
}

.emergency-contact {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border-color: #f59e0b;
}

.emergency-note {
    background-color: rgba(245, 158, 11, 0.1);
    padding: 1rem;
    border-radius: 6px;
    border-left: 4px solid #f59e0b;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.expectation-list {
    list-style: none;
    padding: 0;
}

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

.expectation-list i {
    color: #10b981;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background-color: #f8fafc;
}

.map-section h2 {
    text-align: center;
    color: #1e293b;
    margin-bottom: 3rem;
}

.map-container {
    background-color: #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    min-height: 400px;
    position: relative;
}

.map-placeholder {
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 400px;
    background: linear-gradient(135deg, #e5e7eb, #d1d5db);
}

.map-office {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 300px;
}

.map-office h4 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.map-office p {
    color: #64748b;
    margin-bottom: 1.5rem;
}

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

.faq-section h2 {
    text-align: center;
    color: #1e293b;
    margin-bottom: 3rem;
}

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

.faq-item {
    background-color: #f8fafc;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.faq-item h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p {
    color: #4b5563;
    line-height: 1.6;
}

/* Responsive Design for Contact Page */
@media (max-width: 1024px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info-section {
        order: -1;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .radio-group {
        flex-direction: column;
        gap: 1rem;
    }
    
    .map-placeholder {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .contact-form {
        padding: 1.5rem;
    }
    
    .contact-card {
        padding: 1rem;
    }
    
    .map-office {
        padding: 1.5rem;
    }
    
    .faq-item {
        padding: 1.5rem;
    }
}


/* About Page Styles */
.about-intro {
    padding: 80px 0;
    background-color: #ffffff;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text h2 {
    color: #1e293b;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.about-text p {
    color: #4b5563;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-card {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.2);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Mission & Values */
.mission-values {
    padding: 80px 0;
    background-color: #f8fafc;
}

.mission-content {
    text-align: center;
}

.mission-text {
    max-width: 800px;
    margin: 0 auto 4rem;
}

.mission-text h2 {
    color: #1e293b;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.mission-text p {
    color: #4b5563;
    font-size: 1.2rem;
    line-height: 1.8;
}

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

.value-item {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 2rem;
    color: white;
}

.value-item h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.value-item p {
    color: #64748b;
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.team-member {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.member-photo {
    height: 300px;
    overflow: hidden;
    background: linear-gradient(135deg, #e5e7eb, #d1d5db);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    font-size: 1.2rem;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info {
    padding: 2rem;
}

.member-info h3 {
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.member-title {
    color: #1e40af;
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-credentials {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.member-bio {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.member-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.member-specialties span {
    background-color: #e0f2fe;
    color: #0369a1;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Awards Section */
.awards-section {
    padding: 80px 0;
    background-color: #f8fafc;
}

.awards-section h2 {
    text-align: center;
    color: #1e293b;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

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

.award-item {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.award-item:hover {
    transform: translateY(-3px);
}

.award-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 1rem;
}

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

.award-item h3 {
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.award-item p {
    color: #64748b;
    font-size: 0.9rem;
}

/* Why Choose About */
.why-choose-about {
    padding: 80px 0;
    background-color: #ffffff;
}

.why-choose-about h2 {
    text-align: center;
    color: #1e293b;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

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

.choose-item {
    background-color: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #1e40af;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.choose-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.choose-item h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.choose-item p {
    color: #4b5563;
    line-height: 1.6;
}

/* Responsive Design for About Page */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-stats {
        order: -1;
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .about-stats {
        grid-template-columns: 1fr 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .choose-grid {
        grid-template-columns: 1fr;
    }
    
    .mission-text h2,
    .about-text h2,
    .awards-section h2,
    .why-choose-about h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .awards-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .value-item,
    .award-item,
    .choose-item {
        padding: 1.5rem;
    }
    
    .member-info {
        padding: 1.5rem;
    }
    
    .mission-text h2,
    .about-text h2,
    .awards-section h2,
    .why-choose-about h2 {
        font-size: 1.75rem;
    }
}


/* Verification Page Styles */
.verification-section {
    padding: 60px 0;
}

.verification-header {
    text-align: center;
    margin-bottom: 3rem;
}

.verification-header h2 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.verification-header p {
    color: #64748b;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

.verification-form-container {
    max-width: 600px;
    margin: 0 auto 3rem;
    background-color: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.verification-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.verification-form .form-group {
    margin-bottom: 0;
}

.verification-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #374151;
}

.verification-form input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.verification-form input:focus {
    outline: none;
    border-color: #1e40af;
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.verification-form .btn {
    margin-top: 1rem;
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
}

.verification-results {
    max-width: 800px;
    margin: 2rem auto;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.verification-results.success {
    border-left: 4px solid #10b981;
}

.verification-results.error {
    border-left: 4px solid #ef4444;
}

.results-header {
    padding: 1.5rem 2rem;
    background-color: #f8fafc;
    border-bottom: 1px solid #e5e7eb;
}

.results-header h3 {
    margin: 0;
    font-size: 1.25rem;
}

.results-header h3.success {
    color: #10b981;
}

.results-header h3.error {
    color: #ef4444;
}

.results-content {
    padding: 2rem;
}

.certificate-details {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid #1e40af;
}

.certificate-details h4 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.certificate-details p {
    margin-bottom: 0.5rem;
    color: #4b5563;
}

.certificate-details strong {
    color: #1e293b;
}

.sample-certificates {
    margin: 4rem 0;
}

.sample-certificates h3 {
    text-align: center;
    color: #1e293b;
    margin-bottom: 2rem;
    font-size: 2rem;
}

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

.certificate-card {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.certificate-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.certificate-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

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

.certificate-card h4 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

.verification-info {
    margin: 4rem 0;
    padding: 3rem 0;
    background-color: #f8fafc;
    border-radius: 12px;
}

.verification-info h3 {
    text-align: center;
    color: #1e293b;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.info-item {
    text-align: center;
    padding: 1.5rem;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.info-icon i {
    font-size: 1.25rem;
    color: white;
}

.info-item h4 {
    color: #1e293b;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

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

/* Responsive Design for Verification Page */
@media (max-width: 768px) {
    .verification-header h2 {
        font-size: 2rem;
    }
    
    .verification-form-container {
        padding: 1.5rem;
        margin: 0 1rem 2rem;
    }
    
    .certificates-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .verification-results {
        margin: 2rem 1rem;
    }
    
    .results-header,
    .results-content {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .verification-header h2 {
        font-size: 1.75rem;
    }
    
    .verification-form-container {
        padding: 1rem;
    }
    
    .certificate-card {
        padding: 1.5rem;
    }
    
    .verification-info {
        padding: 2rem 1rem;
    }
    
    .verification-info h3 {
        font-size: 1.75rem;
    }
}

/* Loading Indicator */
.loading-indicator {
    text-align: center;
    margin: 2rem 0;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #e5e7eb;
    border-top: 4px solid #1e40af;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

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

.loading-indicator p {
    color: #64748b;
    font-size: 1rem;
    margin: 0;
}

/* Notification Popup */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 1rem 1.5rem;
    z-index: 10000;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s ease;
    max-width: 400px;
    border-left: 4px solid #1e40af;
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification.success {
    border-left-color: #10b981;
}

.notification.error {
    border-left-color: #ef4444;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.notification-content i {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.notification.success .notification-content i {
    color: #10b981;
}

.notification.error .notification-content i {
    color: #ef4444;
}

.notification-content span {
    color: #1e293b;
    font-weight: 500;
    flex-grow: 1;
}

.notification-close {
    background: none;
    border: none;
    color: #64748b;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
    transition: background-color 0.2s ease;
    flex-shrink: 0;
}

.notification-close:hover {
    background-color: #f1f5f9;
    color: #374151;
}

.notification-close i {
    font-size: 0.875rem;
}

/* Responsive Design for Notifications */
@media (max-width: 768px) {
    .notification {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        transform: translateY(-100px);
    }
    
    .notification.show {
        transform: translateY(0);
    }
}

/* Course Page Styles */
.course-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background-color: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid #1e40af;
}

.highlight-item i {
    color: #1e40af;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.objectives-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.objectives-list li {
    position: relative;
    padding: 0.75rem 0 0.75rem 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.objectives-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 1.1rem;
}

.objectives-list li:last-child {
    border-bottom: none;
}

.module-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.module-item {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

.module-header {
    background-color: #f8fafc;
    padding: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.module-duration {
    background-color: #1e40af;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.module-content {
    padding: 1.5rem;
}

.module-content ul {
    margin: 0;
    padding-left: 1.5rem;
}

.module-content li {
    margin-bottom: 0.5rem;
    color: #64748b;
}

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

.format-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background-color: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.format-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

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

.format-item h3 {
    color: #1e293b;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.format-item p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
}

.instructor-info {
    padding: 1rem 0;
}

.instructor-info h4 {
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.instructor-info p {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

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

.instructor-credentials li {
    padding: 0.25rem 0;
    color: #64748b;
    font-size: 0.875rem;
    position: relative;
    padding-left: 1rem;
}

.instructor-credentials li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1e40af;
}

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

.related-courses li {
    margin-bottom: 0.5rem;
}

.related-courses a {
    color: #1e40af;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.related-courses a:hover {
    color: #1e3a8a;
    text-decoration: underline;
}

.widget-note {
    font-size: 0.8rem;
    color: #64748b;
    font-style: italic;
    margin-top: 0.5rem;
    text-align: center;
}

/* Courses Grid Styles */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.course-card {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: white;
}

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

.course-card.featured {
    border-color: #1e40af;
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.1);
}

.course-image {
    height: 120px;
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.course-image i {
    font-size: 2.5rem;
    color: white;
}

.course-content {
    padding: 1.5rem;
}

.course-content h3 {
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.course-subtitle {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.course-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.course-details span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #64748b;
    background-color: #f1f5f9;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}

.course-details i {
    color: #1e40af;
}

.course-description {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.benefit-item {
    text-align: center;
    padding: 2rem 1.5rem;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

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

.benefit-item h3 {
    color: #1e293b;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.benefit-item p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cta-section {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    color: white;
    padding: 3rem 0;
    margin: 3rem 0;
    border-radius: 12px;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.cta-content p {
    color: #e0e7ff;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

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

.cta-buttons .btn {
    min-width: 150px;
}

/* Responsive Design for Course Pages */
@media (max-width: 768px) {
    .course-highlights {
        grid-template-columns: 1fr;
    }
    
    .module-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .format-grid {
        grid-template-columns: 1fr;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Animation Styles */
.service-card,
.feature,
.testimonial {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.service-card.animate-in,
.feature.animate-in,
.testimonial.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Header scroll effect */
.header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

/* Form Error Styles */
.form-group input.error,
.form-group textarea.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

