:root {
    --primary-color: #2196f3;
    --secondary-color: #1976d2;
    --accent-color: #42a5f5;
    --dark-bg: #1e222d;
    --darker-bg: #131722;
    --card-bg: #2a2e39;
    --light-text: #ffffff;
    --muted-text: #9598a1;
    --border-color: #363a45;
    --success-color: #089981;
    --danger-color: #f23645;
    --chart-grid: #363c4e;
    --hover-bg: rgba(255, 255, 255, 0.05);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--darker-bg);
    color: var(--light-text);
    line-height: 1.6;
}

/* Navbar Styles */
.navbar {
    background-color: var(--dark-bg);
    border-bottom: 1px solid var(--border-color);
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--light-text) !important;
}

.navbar-brand span {
    color: var(--primary-color);
}

.nav-link {
    color: var(--muted-text) !important;
    font-weight: 500;
    padding: 0.75rem 1rem !important;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--light-text) !important;
    background-color: var(--hover-bg);
}

/* Common Header Fix for All Pages */
.hero-section,
.about-header,
.services-header,
.pricing-header,
.contact-header,
.terms-header {
    padding-top: 80px !important;
    margin-top: 40px !important;
}

/* Hero Section - Updated with slider */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
    padding-top: 60px !important;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: slideShow 24s infinite;
}

.hero-slider .slide:nth-child(1) {
    animation-delay: 0s;
}

.hero-slider .slide:nth-child(2) {
    animation-delay: 8s;
}

.hero-slider .slide:nth-child(3) {
    animation-delay: 16s;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(19, 23, 34, 0.95), rgba(19, 23, 34, 0.85));
    z-index: 1;
}

@keyframes slideShow {
    0%, 25%, 100% {
        opacity: 0;
        transform: scale(1.1);
    }
    4%, 21% {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-section .container {
    position: relative;
    z-index: 2;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-section h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--light-text);
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-section .lead {
    color: var(--light-text);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
}

.hero-section .hero-image {
    margin-top: -30px;
}

.hero-section .hero-cta {
    margin-bottom: 2rem;
}

.hero-section .btn {
    margin-right: 1rem;
    margin-bottom: 1rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.hero-section .btn-primary {
    background-color: var(--primary-color);
    border: none;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
}

.hero-section .btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.4);
}

.hero-section .btn-outline-light {
    border: 2px solid var(--light-text);
    background-color: transparent;
}

.hero-section .btn-outline-light:hover {
    background-color: var(--light-text);
    color: var(--darker-bg);
}

/* Responsive styles for hero section */
@media (max-width: 991.98px) {
    .hero-section {
        padding-top: 80px;
    }
    
    .hero-section .container {
        padding-top: 40px;
    }
    
    .hero-section h1 {
        font-size: 3rem;
    }
    
    .hero-section .lead {
        font-size: 1.25rem;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        min-height: 80vh;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section .lead {
        font-size: 1.1rem;
    }
    
    .hero-section .btn {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

/* About Section */
.about-section {
    background-color: var(--dark-bg);
    padding: 100px 0;
}

.section-title {
    color: var(--light-text);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.section-title span {
    color: var(--primary-color);
}

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

.feature-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    background-color: var(--hover-bg);
}

.feature-item i {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.25rem;
}

.feature-item h4 {
    color: var(--light-text);
    margin-bottom: 1rem;
}

.feature-item p {
    color: var(--muted-text);
    margin: 0;
}

/* Services Section */
.services-section {
    background-color: var(--darker-bg);
    padding: 100px 0;
}

.service-card {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    height: 100%;
    transition: transform 0.3s ease;
}

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

.service-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    color: var(--light-text);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--muted-text);
    margin: 0;
}

/* Contact Section */
.contact-section {
    background-color: var(--dark-bg);
    padding: 100px 0;
}

.contact-form .form-control {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    color: var(--light-text);
    border-radius: 8px;
    padding: 0.75rem 1rem;
}

.contact-form .form-control:focus {
    background-color: var(--card-bg);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(41, 98, 255, 0.2);
    color: var(--light-text);
}

.contact-info {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.info-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.info-item p {
    color: var(--muted-text);
    margin: 0;
}

/* Footer */
.footer {
    background-color: var(--dark-bg);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 20px;
}

.footer-section h4 {
    color: var(--light-text);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-section p {
    color: var(--muted-text);
}

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

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

.footer-links a {
    color: var(--muted-text);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--light-text);
}

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

.social-links a {
    color: var(--muted-text);
    font-size: 1.25rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--card-bg);
    text-align: center;
}

.footer-bottom p {
    color: var(--muted-text);
    margin: 0;
}

/* Animations */
[data-aos] {
    opacity: 0;
    transition-duration: 1s;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .hero-section,
    .about-header,
    .services-header,
    .pricing-header,
    .contact-header,
    .terms-header {
        padding-top: 100px !important;
    }
    
    .hero-section {
        padding: 120px 0 60px;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .navbar {
        padding: 0.5rem 0;
    }
    
    .hero-section,
    .about-header,
    .services-header,
    .pricing-header,
    .contact-header,
    .terms-header {
        padding-top: 90px !important;
    }
    
    .hero-section {
        text-align: center;
    }
    
    .hero-image {
        margin-top: 3rem;
    }
    
    .about-section,
    .services-section,
    .contact-section {
        padding: 60px 0;
    }
    
    .footer {
        padding: 60px 0 20px;
    }
    
    .footer-section {
        margin-bottom: 2rem;
    }
}

/* Pricing Page Styles */
.pricing-header {
    background-color: var(--darker-bg);
    padding-bottom: 60px;
    text-align: center;
}

.pricing-header h1 {
    color: var(--light-text);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.pricing-header .lead {
    color: var(--muted-text);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-section {
    background-color: var(--darker-bg);
    padding: 60px 0;
}

.pricing-category {
    margin-bottom: 60px;
}

.pricing-category h2 {
    color: var(--light-text);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
}

/* Pricing Section Styles - Updated to match screenshot exactly */
.pricing-toggle-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 4px;
}

.pricing-toggle button {
    background: transparent;
    border: none;
    color: var(--light-text);
    padding: 8px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.pricing-toggle button.active {
    background: var(--primary-color);
}

.pricing-discount-badge {
    background: rgba(41, 98, 255, 0.1);
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pricing-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.pricing-card {
    background: var(--darker-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    position: relative;
    text-align: center;
}

.pricing-card .plan-name {
    color: var(--light-text);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    margin-top: 0;
}

.pricing-card .price {
    font-size: 32px;
    font-weight: 700;
    color: var(--light-text);
    display: flex;
    align-items: flex-start;
    line-height: 1;
    margin: 0 0 4px;
    justify-content: center;
}

.pricing-card .price .currency {
    font-size: 18px;
    margin-right: 2px;
    margin-top: 2px;
}

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

.pricing-features li {
    color: var(--light-text);
    padding: 4px 0;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    margin: 0;
}

.pricing-features li:first-child {
    margin-top: 0;
    padding-top: 0;
}

.pricing-features li i {
    color: var(--primary-color);
    font-size: 12px;
    min-width: 12px;
}

.pricing-card .btn {
    width: 100%;
    background: var(--primary-color);
    color: var(--light-text);
    border: none;
    padding: 8px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
}

.pricing-card .btn:hover {
    background: var(--secondary-color);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .pricing-container {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .pricing-card {
        margin-bottom: 24px;
    }
}

/* Combo Services Section */
.combo-services {
    background-color: var(--dark-bg);
    padding: 80px 0;
}

.combo-services h2 {
    color: var(--light-text);
    text-align: center;
    margin-bottom: 40px;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .pricing-card {
        margin-bottom: 2rem;
    }
    
    .pricing-header h1 {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .pricing-header {
        padding: 100px 0 40px;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    .pricing-card .price {
        font-size: 3rem;
    }
    
    .pricing-card .plan-name {
        font-size: 1.5rem;
    }
}

/* Contact Page Styles */
.contact-header {
    background-color: var(--darker-bg);
    padding-bottom: 60px;
}

.contact-header h1 {
    color: var(--light-text);
}

.contact-header .lead {
    color: var(--muted-text);
}

.contact-info-card {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
}

.contact-info-card h3 {
    color: var(--light-text);
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.contact-info-card .info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-info-card .info-item:last-child {
    margin-bottom: 0;
}

.contact-info-card .info-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.contact-info-card .info-item h4 {
    color: var(--light-text);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contact-info-card .info-item p {
    color: var(--muted-text);
    margin: 0;
}

.contact-form-card {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
}

.contact-form-card h3 {
    color: var(--light-text);
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.contact-form label {
    color: var(--light-text);
    margin-bottom: 0.5rem;
}

.contact-form .form-control {
    background-color: var(--darker-bg);
    border: 1px solid var(--border-color);
    color: var(--light-text);
    padding: 0.75rem 1rem;
}

.contact-form .form-control:focus {
    background-color: var(--darker-bg);
    border-color: var(--primary-color);
    color: var(--light-text);
    box-shadow: none;
}

.contact-form .form-control::placeholder {
    color: var(--muted-text);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.map-container iframe {
    display: block;
}

@media (max-width: 991.98px) {
    .contact-info-card {
        margin-bottom: 2rem;
    }
}

/* Services Page Styles */
.services-header {
    background-color: var(--darker-bg);
    padding-bottom: 60px;
}

.services-header h1 {
    color: var(--light-text);
}

.services-header .lead {
    color: var(--muted-text);
}

.service-block {
    padding: 4rem 0;
    border-bottom: 1px solid var(--card-bg);
}

.service-block:last-child {
    border-bottom: none;
}

.service-content h2 {
    color: var(--light-text);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.service-content .lead {
    color: var(--muted-text);
    margin-bottom: 2rem;
}

.service-content .features-list {
    margin-bottom: 2rem;
}

.service-content .feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.service-content .feature-item:last-child {
    margin-bottom: 0;
}

.service-content .feature-item i {
    color: var(--primary-color);
    font-size: 2rem;
    margin-right: 1.5rem;
    margin-top: 0.25rem;
}

.service-content .feature-item h4 {
    color: var(--light-text);
    margin-bottom: 0.5rem;
}

.service-content .feature-item p {
    color: var(--muted-text);
    margin: 0;
}

.service-image {
    text-align: center;
}

.service-image img {
    max-width: 80%;
    height: auto;
}

.additional-services {
    background-color: var(--darker-bg);
}

.service-card {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    color: var(--light-text);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--muted-text);
    margin-bottom: 1.5rem;
}

.why-choose-us {
    background-color: var(--dark-bg);
}

.feature-card {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.feature-card h4 {
    color: var(--light-text);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--muted-text);
    margin: 0;
}

@media (max-width: 991.98px) {
    .service-block {
        padding: 3rem 0;
    }

    .service-content {
        text-align: center;
        margin-bottom: 2rem;
    }

    .service-content .feature-item {
        text-align: left;
    }

    .service-image img {
        max-width: 100%;
    }
}

/* About Page Styles - Updated to match pricing theme */
.about-header {
    background: var(--darker-bg);
    padding: 120px 0 60px;
    position: relative;
}

.about-header .container {
    position: relative;
    z-index: 2;
}

.about-header h1 {
    color: var(--light-text);
    margin-bottom: 1rem;
}

.about-header .lead {
    color: var(--light-text);
    opacity: 0.9;
}

/* Our Story Section */
.our-story {
    background: var(--darker-bg);
    padding: 80px 0;
}

.achievement-item {
    padding: 20px;
    border-radius: 8px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.achievement-item:hover {
    transform: translateY(-5px);
}

.achievement-item h3 {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.achievement-item p {
    color: var(--light-text);
    margin: 0;
}

/* Mission Section */
.our-mission {
    background: var(--darker-bg);
    padding: 80px 0;
}

.mission-item {
    margin-bottom: 2rem;
    padding: 20px;
    border-radius: 8px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.mission-item:hover {
    transform: translateY(-5px);
}

.mission-item i {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.mission-item h4 {
    color: var(--light-text);
    margin-bottom: 0.5rem;
}

.mission-item p {
    color: var(--light-text);
    opacity: 0.9;
    margin: 0;
}

.section-title {
    color: var(--light-text);
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.lead {
    color: var(--light-text);
    opacity: 0.9;
}

@media (max-width: 991.98px) {
    .about-header {
        padding: 100px 0 50px;
    }

    .our-story,
    .our-mission {
        padding: 60px 0;
    }

    .achievement-item h3 {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .about-header {
        padding: 80px 0 40px;
    }

    .achievement-item {
        margin-bottom: 1rem;
    }
}

/* Team Section */
.team-card {
    background: var(--darker-bg);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.team-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-info {
    padding: 20px;
    text-align: center;
}

.team-info h4 {
    color: var(--light-text);
    margin-bottom: 0.5rem;
}

.team-info p {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.team-info .social-links a {
    color: var(--light-text);
    margin: 0 10px;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.team-info .social-links a:hover {
    color: var(--primary-color);
}

/* Testimonials Section */
.testimonial-card {
    background: var(--darker-bg);
    border-radius: 8px;
    padding: 30px;
    height: 100%;
    transition: transform 0.3s ease;
}

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

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

.testimonial-content p {
    color: var(--light-text);
    font-style: italic;
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
}

.testimonial-author h5 {
    color: var(--light-text);
    margin: 0;
}

.testimonial-author p {
    color: var(--primary-color);
    margin: 0;
}

@media (max-width: 991.98px) {
    .about-header {
        padding: 100px 0 50px;
    }

    .our-story {
        padding: 60px 0;
    }

    .achievement-item h3 {
        font-size: 2rem;
    }

    .team-card img {
        height: 250px;
    }
}

@media (max-width: 767.98px) {
    .about-header {
        padding: 80px 0 40px;
    }

    .achievement-item {
        margin-bottom: 1rem;
    }

    .team-card {
        margin-bottom: 2rem;
    }

    .testimonial-card {
        margin-bottom: 1.5rem;
    }
}

/* Terms & Conditions Page Styles */
.terms-header {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../images/terms-bg.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding-bottom: 60px;
    margin-bottom: 40px;
}

.terms-content {
    background-color: #f8f9fa;
}

.terms-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    padding: 40px;
    margin-bottom: 30px;
}

.terms-section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.terms-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.terms-section h2 {
    color: #333;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
}

.terms-section p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.terms-section ul {
    list-style-type: none;
    padding-left: 0;
}

.terms-section ul li {
    color: #666;
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.terms-section ul li:before {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .terms-header {
        padding: 100px 0 40px;
    }

    .terms-card {
        padding: 20px;
    }

    .terms-section h2 {
        font-size: 20px;
    }
}

/* Charts and Data Display */
.chart-container {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 1rem;
}

.chart-grid {
    stroke: var(--chart-grid);
}

/* Tables */
table {
    background-color: var(--card-bg);
    color: var(--light-text);
    border-radius: 4px;
}

th {
    background-color: var(--dark-bg);
    color: var(--muted-text);
    font-weight: 500;
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--light-text);
}

/* Forms */
.form-control {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    color: var(--light-text);
    border-radius: 4px;
}

.form-control:focus {
    background-color: var(--card-bg);
    border-color: var(--primary-color);
    color: var(--light-text);
}

.form-control::placeholder {
    color: var(--muted-text);
}

/* Mid-Page Slider */
.mid-page-slider {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: midSlideShow 15s infinite;
}

.slider-slide:nth-child(1) {
    animation-delay: 0s;
}

.slider-slide:nth-child(2) {
    animation-delay: 5s;
}

.slider-slide:nth-child(3) {
    animation-delay: 10s;
}

@keyframes midSlideShow {
    0%, 33%, 100% {
        opacity: 0;
        transform: scale(1.05);
    }
    3%, 30% {
        opacity: 1;
        transform: scale(1);
    }
}

.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(19, 23, 34, 0.7), rgba(19, 23, 34, 0.8));
    z-index: 1;
}

.slider-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.slider-tagline {
    color: var(--light-text);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.slider-subtext {
    color: var(--light-text);
    font-size: 1.5rem;
    opacity: 0.9;
    font-weight: 300;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

@media (max-width: 991.98px) {
    .slider-tagline {
        font-size: 2.5rem;
    }
    
    .slider-subtext {
        font-size: 1.25rem;
    }
}

@media (max-width: 767.98px) {
    .mid-page-slider {
        height: 300px;
    }
    
    .slider-tagline {
        font-size: 2rem;
    }
    
    .slider-subtext {
        font-size: 1rem;
    }
}

/* Call to Action Section */
.cta-section {
    background: linear-gradient(45deg, var(--darker-bg), var(--dark-bg));
    padding: 60px 0;
}

.cta-container {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-section h2 {
    color: var(--light-text);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.cta-section p {
    color: var(--muted-text);
    font-size: 1.1rem;
    margin-bottom: 0;
}

.cta-section .btn-primary {
    background-color: var(--primary-color);
    border: none;
    padding: 12px 24px;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
    transition: all 0.3s ease;
}

.cta-section .btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.4);
}

@media (max-width: 991.98px) {
    .cta-section {
        padding: 40px 0;
    }
    
    .cta-container {
        padding: 30px;
    }
    
    .cta-section h2 {
        font-size: 1.75rem;
    }
    
    .cta-section p {
        font-size: 1rem;
    }
    
    .cta-section .text-lg-end {
        text-align: left !important;
        margin-top: 20px;
    }
}

@media (max-width: 767.98px) {
    .cta-section {
        padding: 30px 0;
    }
    
    .cta-container {
        padding: 20px;
    }
    
    .cta-section h2 {
        font-size: 1.5rem;
    }
} 