* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    --primary: #1563ac;
}


body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    /* background: linear-gradient(135deg, var(--primary) 0%, #764ba2 100%); */
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}


.logo {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, #764ba2 100%);
    padding: 120px 0 80px;
    text-align: center;
    color: white;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: white;
    color: var(--primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary);
}

/* Features Section */
.features {
    padding: 80px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #333;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Applications Section */
.applications {
    padding: 80px 0;
    background: #f8f9fa;
}

.app-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.app-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.app-card:hover {
    transform: translateY(-5px);
}

.app-header {
    padding: 2rem;
    text-align: center;
    background: linear-gradient(135deg, var(--primary) 0%, #764ba2 100%);
    color: white;
}

.app-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.app-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.app-subtitle {
    opacity: 0.9;
}

.app-content {
    padding: 2rem;
}

.app-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.app-features li {
    padding: 0.5rem 0;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.app-features li i {
    color: var(--primary);
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.tech-tag {
    background: #e9ecef;
    color: #495057;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #764ba2 100%);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer p {
    opacity: 0.8;
}

/* Content Sections */
.content-section {
    padding: 80px 0;
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.text-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.text-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 0.5rem 0;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-list li i {
    color: var(--primary);
}

.image-placeholder {
    background: linear-gradient(135deg, var(--primary) 0%, #764ba2 100%);
    height: 400px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

/* Category Sections */
.category-section {
    padding: 60px 0;
    background: white;
}

.category-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #333;
    text-align: center;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.category-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-3px);
}

.category-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.category-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.category-card p {
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary) 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .app-grid {
        grid-template-columns: 1fr;
    }

    .two-column {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}


/* Documentation Layout */
.documentation-layout {
    min-height: 100vh;
    background: #f8f9fa;
}

.container-fluid {
    padding: 0;
}

.row {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}

/* Sidebar Styles */
.documentation-sidebar {
    background: #ffffff;
    border-right: 1px solid #e9ecef;
    min-height: calc(100vh - 200px);
    position: sticky;
    top: 100px;
    box-shadow: 2px 0 10px rgba(0,0,0,0.05);
}

.sidebar-header {
    padding: 30px 25px 20px;
    border-bottom: 1px solid #e9ecef;
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    color: var(--primary);
    margin: -1px -1px 0 -1px;
}

.sidebar-header h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.sidebar-nav {
    padding: 20px 0;
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    margin: 0;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    color: #495057;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    position: relative;
}

.nav-link:hover {
    background: #f8f9fa;
    color: var(--primary);
    text-decoration: none;
    border-left-color: var(--primary);
    transform: translateX(5px);
}

.nav-link.active {
    background: linear-gradient(90deg, #f8f9ff 0%, #ffffff 100%);
    color: var(--primary);
    border-left-color: var(--primary);
    font-weight: 600;
    box-shadow: inset 0 0 0 1px #e3f2fd;
}

.nav-link i {
    font-size: 18px;
    width: 24px;
    margin-right: 12px;
    text-align: center;
}

.nav-link span {
    font-size: 15px;
    font-weight: 500;
}

/* Main Content Styles */
.documentation-content {
    background: #ffffff;
    min-height: calc(100vh - 200px);
    padding: 40px 50px;
    margin-left: 0;
}

.documentation-content h2 {
    color: #2c3e50;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 15px;
    /* border-bottom: 3px solid var(--primary); */
    /* position: relative; */
}

.documentation-content h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary);
}

.documentation-content h3 {
    color: #34495e;
    font-size: 24px;
    font-weight: 600;
    margin: 40px 0 20px;
    position: relative;
    padding-left: 20px;
}

.documentation-content h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background: linear-gradient(135deg, var(--primary), #764ba2);
    border-radius: 2px;
}

.documentation-content h4 {
    color: #495057;
    font-size: 20px;
    font-weight: 600;
    margin: 30px 0 15px;
}

.documentation-content p {
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

/* Platform Grid */
.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.platform-card {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.platform-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #764ba2);
}

.platform-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-color: var(--primary);
}

.platform-icon {
    font-size: 56px;
    color: var(--primary);
    margin-bottom: 20px;
    display: block;
}

.platform-card h4 {
    color: #2c3e50;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.platform-card p {
    color: #6c757d;
    line-height: 1.6;
    font-size: 15px;
}

/* Features List */
.features-list {
    margin: 40px 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 25px;
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.feature-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, var(--primary), #764ba2);
    border-radius: 0 2px 2px 0;
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.feature-item i {
    font-size: 28px;
    color: var(--primary);
    margin-right: 20px;
    margin-top: 5px;
    flex-shrink: 0;
}

.feature-item h4 {
    color: #2c3e50;
    margin: 0 0 10px 0;
    font-size: 20px;
    font-weight: 600;
}

.feature-item p {
    color: #6c757d;
    margin: 0;
    line-height: 1.6;
    font-size: 15px;
}

/* Steps Container */
.steps-container {
    margin: 40px 0;
}

.step {
    display: flex;
    margin-bottom: 30px;
    padding: 30px;
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.step::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, var(--primary), #764ba2);
    border-radius: 0 2px 2px 0;
}

.step:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #764ba2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    margin-right: 25px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.step-content h4 {
    color: #2c3e50;
    margin: 0 0 10px 0;
    font-size: 20px;
    font-weight: 600;
}

.step-content p {
    color: #6c757d;
    margin: 0;
    line-height: 1.6;
    font-size: 15px;
}

/* Guide Sections */
.guide-section {
    margin: 40px 0;
    padding: 30px;
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    position: relative;
}

.guide-section::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, var(--primary), #764ba2);
    border-radius: 0 2px 2px 0;
}

.guide-section h3 {
    color: #2c3e50;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 600;
}

.guide-section ul {
    margin: 20px 0;
    padding-left: 25px;
}

.guide-section li {
    margin-bottom: 12px;
    line-height: 1.7;
    color: #495057;
    font-size: 15px;
    position: relative;
}

.guide-section li::marker {
    color: var(--primary);
}

/* Issue Items */
.issue-item {
    margin: 25px 0;
    padding: 25px;
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    position: relative;
}

.issue-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #dc3545;
    border-radius: 0 2px 2px 0;
}

.issue-item h4 {
    color: #dc3545;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
}

.issue-item ul {
    margin: 0;
    padding-left: 25px;
}

.issue-item li {
    margin-bottom: 8px;
    color: #495057;
    line-height: 1.6;
    font-size: 15px;
}

/* Code Styling */
code {
    background: #f8f9fa;
    padding: 4px 8px;
    border-radius: 6px;
    font-family: 'Fira Code', 'Courier New', monospace;
    font-size: 14px;
    color: #e83e8c;
    border: 1px solid #e9ecef;
}

pre {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    overflow-x: auto;
    border: 1px solid #e9ecef;
    margin: 20px 0;
}

pre code {
    background: none;
    padding: 0;
    color: #495057;
    border: none;
}

/* Responsive Design */
@media (max-width: 991px) {
    .documentation-sidebar {
        position: static;
        min-height: auto;
    }
    
    .documentation-content {
        padding: 30px 20px;
    }
    
    .platform-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .col-3 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .col-9 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .documentation-content {
        padding: 20px 15px;
    }
    
    .documentation-content h2 {
        font-size: 28px;
    }
    
    .platform-card {
        padding: 20px;
    }
    
    .feature-item {
        padding: 20px;
    }
    
    .step {
        padding: 20px;
    }
}

/* Professional Footer Styles */
.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ecf0f1;
    padding: 60px 0 0;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #3498db;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-section h4 {
    color: #ecf0f1;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #3498db;
}

.footer-logo p {
    color: #bdc3c7;
    font-size: 14px;
    margin-bottom: 15px;
}

.footer-description {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(52, 152, 219, 0.1);
    color: #3498db;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(52, 152, 219, 0.2);
}

.social-link:hover {
    background: #3498db;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a:hover {
    color: #3498db;
    padding-left: 8px;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 1px;
    background: #3498db;
    transition: width 0.3s ease;
}

.footer-links a:hover::before {
    width: 4px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #bdc3c7;
    font-size: 14px;
    line-height: 1.5;
}

.contact-item i {
    color: #3498db;
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(189, 195, 199, 0.1);
    padding: 25px 0;
    background: rgba(0, 0, 0, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright p {
    color: #bdc3c7;
    font-size: 14px;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #3498db;
}

.tech-stack {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #bdc3c7;
    font-size: 13px;
}

.tech-stack i {
    font-size: 18px;
    color: #3498db;
    transition: transform 0.3s ease;
}

.tech-stack i:hover {
    transform: scale(1.2);
}

/* Footer Responsive Design */
@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 30px;
    }
    
    .footer-section:last-child {
        grid-column: 1 / -1;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-section:last-child {
        grid-column: 1;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-bottom-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .tech-stack {
        flex-direction: column;
        gap: 5px;
    }
}

/* Ensure col-3 and col-9 work on all screen sizes */
.col-3 {
    flex: 0 0 25%;
    max-width: 25%;
    padding-left: 0;
    padding-right: 0;
    order: 1;
}

.col-9 {
    flex: 0 0 75%;
    max-width: 75%;
    padding-left: 0;
    padding-right: 0;
    order: 2;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    line-height: 1.5;
    color: #333;
    background-color: #fff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(21, 99, 172, 0.1);
}

.form-control::placeholder {
    color: #6c757d;
    opacity: 1;
}

.form-control:disabled {
    background-color: #f8f9fa;
    opacity: 0.65;
}

/* Textarea specific styles */
textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Select specific styles */
select.form-control {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px 12px;
    padding-right: 40px;
    appearance: none;
}

/* Checkbox styles */
.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    cursor: pointer;
    accent-color: var(--primary);
}

.checkbox-label:hover {
    color: var(--primary);
}

/* Form validation styles */
.form-control.is-invalid {
    border-color: #dc3545;
}

.form-control.is-invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.form-control.is-valid {
    border-color: #28a745;
}

.form-control.is-valid:focus {
    border-color: #28a745;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}

/* Error and success messages */
.invalid-feedback {
    display: block;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: #dc3545;
}

.valid-feedback {
    display: block;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: #28a745;
}

/* Form row for side-by-side inputs */
.form-row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.form-row > .form-group {
    padding-right: 15px;
    padding-left: 15px;
    flex: 1;
}

/* Contact form specific styles */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form .form-group:last-child {
    margin-bottom: 0;
}

.contact-form .btn {
    width: 100%;
    padding: 14px 30px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Form header styles */
.form-header {
    margin-bottom: 2rem;
    text-align: center;
}

.form-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.form-header p {
    color: #666;
    font-size: 1rem;
}

/* Responsive form styles */
@media (max-width: 768px) {
    .form-control {
        padding: 10px 14px;
        font-size: 0.9rem;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .form-row > .form-group {
        padding-right: 0;
        padding-left: 0;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .form-header h3 {
        font-size: 1.5rem;
    }
}

/* Info Sections Styling */
.info-section {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin-bottom: 25px;
}

.info-section .section-title {
    display: flex;
    align-items: center;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #333;
    font-weight: 600;
}

.info-section .section-title i {
    margin-right: 10px;
    color: var(--primary);
    font-size: 1.2rem;
}

/* Quick Help Links */
.quick-help-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.help-link {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background: #f8f9fa;
    border: 2px solid transparent;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.help-link:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(21, 99, 172, 0.3);
}

.help-link i:first-child {
    margin-right: 15px;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.help-link span {
    flex: 1;
    font-weight: 500;
}

.help-link i:last-child {
    margin-left: 10px;
    font-size: 0.9rem;
    opacity: 0.7;
    transition: transform 0.3s ease;
}

.help-link:hover i:last-child {
    transform: translateX(3px);
}

/* Business Hours */
.business-hours {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid var(--primary);
    transition: all 0.3s ease;
}

.hours-item:hover {
    background: #e3f2fd;
    transform: translateX(3px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.hours-item.closed {
    border-left-color: #dc3545;
    background: #fff5f5;
}

.hours-item.closed:hover {
    background: #ffe6e6;
}

.day-range {
    font-weight: 600;
    color: #333;
    font-size: 1rem;
}

.time-range {
    color: #666;
    font-size: 0.95rem;
    font-weight: 500;
}

.hours-item.closed .day-range {
    color: #dc3545;
}

.hours-item.closed .time-range {
    color: #dc3545;
    font-weight: 600;
}

/* Responsive Design for Info Sections */
@media (max-width: 768px) {
    .info-section {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .help-link {
        padding: 12px 15px;
    }
    
    .help-link:hover {
        transform: none;
    }
    
    .hours-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .hours-item:hover {
        transform: none;
    }
}

/* Info List Styling */
.info-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid var(--primary);
    transition: all 0.3s ease;
}

.info-item:hover {
    background: #e3f2fd;
    transform: translateX(3px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.info-item i {
    margin-right: 12px;
    color: var(--primary);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.info-item span {
    color: #333;
    font-weight: 500;
}

/* Policy Intro Styling */
.policy-intro {
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 40px;
    border-left: 5px solid var(--primary);
}

.policy-intro h2 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 2rem;
}

.policy-intro p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

/* Feature Grid for Policy Pages */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

/* Responsive Design for Info Lists */
@media (max-width: 768px) {
    .info-item {
        padding: 10px 12px;
    }
    
    .info-item:hover {
        transform: none;
    }
    
    .policy-intro {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .policy-intro h2 {
        font-size: 1.5rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23e3f2fd" opacity="0.3"/><circle cx="75" cy="75" r="1" fill="%23e3f2fd" opacity="0.3"/><circle cx="50" cy="10" r="0.5" fill="%23e3f2fd" opacity="0.2"/><circle cx="10" cy="60" r="0.5" fill="%23e3f2fd" opacity="0.2"/><circle cx="90" cy="40" r="0.5" fill="%23e3f2fd" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
    z-index: 1;
}

.testimonials .container {
    position: relative;
    z-index: 2;
}

.testimonials .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
    position: relative;
}

.testimonials .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Testimonials Slider */
.testimonials-slider {
    position: relative;
    margin-bottom: 60px;
}

.slider-container {
    overflow: hidden;
    border-radius: 15px;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.testimonial-slide {
    min-width: 33.333%;
    max-width: 33.333%;
    flex-shrink: 0;
    padding: 0 15px;
    box-sizing: border-box;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(21, 99, 172, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
}

.testimonial-content {
    margin-bottom: 25px;
    position: relative;
}

.quote-icon {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 15px;
    opacity: 0.7;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    font-style: italic;
    margin: 0;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    margin: 0 0 5px 0;
}

.author-info p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.author-info .location {
    font-size: 0.8rem;
    color: #999;
    font-style: italic;
}

.rating {
    display: flex;
    gap: 2px;
}

.rating i {
    color: #ffc107;
    font-size: 1rem;
}

/* Slider Controls */
.slider-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.slider-btn {
    background: var(--primary);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(21, 99, 172, 0.3);
}

.slider-btn:hover {
    background: #0d4a8a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(21, 99, 172, 0.4);
}

.slider-btn:active {
    transform: translateY(0);
}

.slider-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

.slider-dot:hover {
    background: #999;
}

.testimonials-cta {
    text-align: center;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.testimonials-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.testimonials-cta p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}


.cta-buttons .btn-primary {
    background: var(--primary);
    color: white;
    border: 2px solid var(--primary);
}

.cta-buttons .btn-primary:hover {
    background: #0d4a8a;
    border-color: #0d4a8a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(21, 99, 172, 0.3);
}

.cta-buttons .btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.cta-buttons .btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(21, 99, 172, 0.3);
}

/* Responsive Design for Testimonials */
@media (max-width: 768px) {
    .testimonials {
        padding: 60px 0;
    }
    
    .testimonials .section-title {
        font-size: 2rem;
    }
    
    .testimonials .section-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .testimonial-slide {
        min-width: 33.333%; /* Keep 3 slides on tablet */
        max-width: 33.333%;
        padding: 0 10px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .slider-controls {
        gap: 15px;
        margin: 20px 0;
    }
    
    .testimonials-cta {
        padding: 30px 20px;
    }
    
    .testimonials-cta h3 {
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .testimonial-slide {
        min-width: 33.333%; /* Keep 3 slides on mobile */
        max-width: 33.333%;
        padding: 0 5px;
    }
    
    .testimonial-card {
        padding: 15px;
    }
    
    .quote-icon {
        font-size: 1.5rem;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
    }
}

