:root {
    --primary: #3a86ff;
    --secondary: #8338ec;
    --dark: #212529;
    --light: #f8f9fa;
    --success: #38b000;
    --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    overflow-x: hidden;
    padding-top: 76px; /* Account for fixed navbar */
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

/* Navbar Styles */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.98);
}

.navbar-brand {
    margin-right: 0;
    font-weight: 700;
    font-size: 2.3rem;
    line-height: 22px;
    padding-bottom: 0;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.navbar-brand span {
    font-size: 17px;
    margin-top: 1px;
    font-weight: 600;
}

.navbar .nav-link {
    font-weight: 600;
    margin: 0 8px;
    color: var(--dark) !important;
    transition: all 0.3s ease;
    position: relative;
}

.navbar .nav-link:hover {
    color: var(--primary) !important;
}

.navbar .nav-link::before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--gradient);
    transition: width 0.3s ease;
}

.navbar .nav-link:hover::before {
    width: 100%;
}

.navbar .nav-link.active {
    color: var(--primary) !important;
}

.navbar .nav-link.active::before {
    width: 100%;
}

.navbar-toggler {
    border: none;
    padding: 4px 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.btn-primary {
    background: var(--gradient);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
    padding: 10px 28px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.btn-outline-primary-white {
    border: 1px solid #ffffff;
    color: #ffffff;
    background: transparent;
    padding: 10px 28px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline-primary-white:hover {
    color: white;
    transform: translateY(-3px);
    background: var(--gradient);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.primary-squre-btn {
    width: 48px;
    height: 48px;
    padding: 12px 14px;

    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 991px) {
    .navbar .offcanvas {
        height: 100vh;
    }

    .primary-squre-btn {
        width: 30px;
        height: 30px;
        padding: 10px;
        font-size: 14px;
    }
}

/* Section Styling */
.section {
    padding: 70px 0;
}

.section-title {
    margin-bottom: 55px;
    text-align: center;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-title p {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
}

@media (max-width: 991px) {
    .section {
        padding: 55px 0;
    }

    .section-title h2 {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .section-title {
        margin-bottom: 30px;
    }
}

@media (max-width: 575px) {
    .section-title h2 {
        font-size: 1.8rem;
    }
}

/* Hero Section */
.hero {
    background: var(--gradient);
    color: white;
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,202.7C672,203,768,181,864,170.7C960,160,1056,160,1152,170.7C1248,181,1344,203,1392,213.3L1440,224L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: center bottom;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.stats-box {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
}

.stats-box:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.2);
}

.stats-box h3 {
    font-size: 2rem;
    margin-bottom: 5px;
}

.stats-box p {
    margin: 0;
    font-size: 0.9rem;
}

@media (max-width: 1200px) {
    .hero h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 991px) {
    .hero {
        padding: 65px 0 65px;
    }
}

/* Partner Logos */
.partner-logo {
    height: 60px;
    max-width: 100%;
    object-fit: contain;
    opacity: 0.8;
    filter: grayscale(0);
    transition: all 0.3s ease;
}

.partner-logo:hover {
    filter: grayscale(100%);
    opacity: 1;
}

/* Features */
.feature-box {
    padding: 30px 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 15px;
    color: white;
    font-size: 30px;
}

@media (min-width: 768px) {
    .feature-box:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }
}

@media (max-width: 767px) {
    .feature-box {
        padding: 20px;
        border-radius: 8px;
        border: 1px solid #eaeaea;
    }
}

/* Why Choose Us */
.card-custom {
    color: #ffffff;
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;

    flex-direction: column;
    justify-content: flex-end;
    min-height: 66svh;
    text-decoration: none;
    display: flex;
    position: relative;
    overflow: hidden;

    background-size: cover;
    background-position: center;
}

.card-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.card-custom .card-body {
    background: linear-gradient(145deg, #3a86ff40, #000000);
    display: flex;
    align-items: end;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin-bottom: 20px;
}
/* Testimonial */
.testimonial-text {
    padding: 25px 12px;
    color: #212529;
    position: relative;
}

.testimonial-text p {
    font-size: 1.05rem;
    line-height: 1.6;
}

.quote-icon {
    font-size: 100px;
    color: #00bfa5;
    opacity: 0.4;
    position: absolute;
    top: -23px;
    left: -3px;
}

.testimonial-author {
    margin-top: 20px;
    font-weight: 500;
}

.testimonial-logo img {
    width: 150px;
    margin-top: 10px;
}

.testimonial-img img {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.testimonial .owl-dots {
    text-align: center;
    margin-top: 20px;
}

.testimonial .owl-dot span {
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    display: inline-block;
    margin: 3px;
}

.testimonial .owl-dot.active span {
    background: #00bfa5;
}

.testimonial .owl-nav {
    position: absolute;
    top: 38%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.testimonial .owl-nav button {
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    pointer-events: all;
    transition: 0.3s;
}

.testimonial .owl-nav span {
    color: #212529;
    font-size: 28px;
    line-height: 1;
}

.testimonial .owl-dots {
    text-align: center;
    margin-top: 20px;
}

.testimonial .owl-dot span {
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    display: inline-block;
    margin: 3px;
}

.testimonial .owl-dot.active span {
    background: #00bfa5;
}

.testimonial-logo img {
    height: 80px;
    object-fit: contain;
    width: auto !important;
}

.testimonial .owl-theme .owl-nav {
    margin-top: 0;
}

.testimonial .owl-prev,
.testimonial .owl-next {
    position: absolute;
    background: transparent !important;
}

.testimonial .owl-prev {
    left: -50px;
}

.testimonial .owl-next {
    right: -50px;
}

@media (max-width: 767px) {
    .testimonial .owl-nav {
        display: none;
    }
}

/* About Section */
.about .stats-box {
    padding: 15px;
    color: #ffffff;
    background: var(--gradient);
}

/* Growth Section */
.growth .card p {
    display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.growth .owl-nav {
    display: flex !important;
}

.growth .owl-carousel .owl-nav button.owl-next,
.growth .owl-carousel .owl-nav button.owl-prev {
    padding: 5px 8px 2px 8px !important;
    border: 1px solid #bdbdbd;
}

.growth .owl-theme .owl-dots {
    right: 0;
    bottom: 4px;
    position: absolute;
}

/* Final CTA */
.final-cta {
    background: var(--gradient);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.final-cta h2 {
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

@media (max-width: 991px) {
    .final-cta {
        padding: 80px 0;
    }
}

@media (max-width: 767px) {
    .final-cta {
        padding: 60px 0;
    }
}

@media (max-width: 575px) {
    .final-cta {
        padding: 50px 0;
    }
}

/* Book Demo Hero Section */
.book-demo-hero {
    background: var(--gradient);
    color: white;
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.book-demo-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,202.7C672,203,768,181,864,170.7C960,160,1056,160,1152,170.7C1248,181,1344,203,1392,213.3L1440,224L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: center bottom;
}

.book-demo-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.book-demo-hero p {
    font-size: 1.2rem;
    margin-bottom: 0;
    opacity: 0.9;
}

/* Form Section */
.form-section {
    padding: 80px 0;
}

.form-section .form-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    overflow: hidden;
}

.form-section .form-header {
    background: var(--gradient);
    color: white;
    padding: 30px;
    text-align: center;
}

.form-section .form-header h2 {
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.form-section .form-header p {
    opacity: 0.9;
    margin-bottom: 0;
}

.form-section .form-body {
    padding: 40px;
}

.form-section .form-group {
    margin-bottom: 25px;
}

.form-section .form-label {
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dark);
}

.form-section .form-control {
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.form-section .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(58, 134, 255, 0.25);
}

.form-section .submit-btn {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    margin-top: 10px;
}

/* Trust Badge */
.form-section .trust-badge {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #e9ecef;
    margin-top: 30px;
}

.form-section .trust-badge p {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Select2 */
.form-section .select2-container--default .select2-selection--single {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    height: 48px;
    padding: 8px 15px;
}

.form-section .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 30px;
    padding-left: 0;
    color: #495057;
}

.form-section .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 46px;
    right: 10px;
}

.form-section .select2-container--default.select2-container--focus .select2-selection--single {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(58, 134, 255, 0.25);
}

.form-section .select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: var(--primary);
}

.form-section .select2-container--default .select2-results__option[aria-selected=true] {
    background-color: #e9ecef;
}

.form-section .select2-dropdown {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

@media (max-width: 991px) {
    .book-demo-hero {
        padding: 80px 0 60px;
    }

    .book-demo-hero h1 {
        font-size: 2.5rem;
    }

    .form-section .form-section {
        padding: 60px 0;
    }

    .form-section .form-body {
        padding: 30px;
    }

    .form-section {
        padding: 65px 0;
    }
}

@media (max-width: 767px) {
    .book-demo-hero h1 {
        font-size: 2rem;
    }

    .book-demo-hero p {
        font-size: 1rem;
    }

    .form-section .form-body {
        padding: 20px;
    }

    .form-section .form-header h2 {
        font-size: 1.5rem;
    }

    .form-section {
        padding: 55px 0;
    }
}

/* Login Section */
.login-section {
    min-height: calc(100vh - 76px);
    display: flex;
    align-items: center;
    padding: 60px 0;
}

.login-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    overflow: hidden;
    max-width: 450px;
    width: 100%;
    margin: 0 auto;
}

.login-header {
    background: var(--gradient);
    color: white;
    padding: 40px 30px;
    text-align: center;
}

.login-header h1 {
    margin-bottom: 10px;
    font-size: 2rem;
}

.login-header p {
    opacity: 0.9;
    margin-bottom: 0;
}

.login-body {
    padding: 40px;
}

.login-section .form-group {
    margin-bottom: 25px;
}

.login-section .form-label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark);
}

.login-section .form-control {
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.login-section .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(58, 134, 255, 0.25);
}

.login-section .password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #6c757d;
    cursor: pointer;
}

.login-section .password-toggle:hover {
    color: var(--primary);
}

.login-section .password-input {
    position: relative;
}

.login-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.login-section .form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.login-section .forgot-password {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
}

.login-section .forgot-password:hover {
    text-decoration: underline;
}

.login-btn {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
}

/* Hero Section */
.contact-hero {
    background: var(--gradient);
    color: white;
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,202.7C672,203,768,181,864,170.7C960,160,1056,160,1152,170.7C1248,181,1344,203,1392,213.3L1440,224L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: center bottom;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.contact-hero p {
    font-size: 1.2rem;
    margin-bottom: 0;
    opacity: 0.9;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
}

.contact-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    padding: 40px;
    height: 100%;
}

.contact-info {
    /* margin-bottom: 40px; */
}

.contact-item {
    position: relative;
    margin-bottom: 30px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin-bottom: 15px;
}

.contact-item h4 {
    color: var(--dark);
    margin-bottom: 10px;
}

.contact-item p {
    color: #6c757d;
    margin-bottom: 5px;
}

.phone-number {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    transition: 0.3s all ease-in-out;
}

.contact-item:hover .phone-number {
    text-decoration: underline;
}

/* Hours Table */
.hours-table {
    width: 100%;
    border-collapse: separate;
}

.hours-table th {
    background: var(--primary);
    color: white;
    padding: 12px 15px;
    text-align: left;
    font-weight: 600;
}

.hours-table td {
    font-size: 16px;
    padding: 7px 10px;
    border-bottom: 1px solid #e9ecef;
}

.hours-table tr:last-child td {
    border-bottom: none;
}

.timezone-header {
    background: #f8f9fa !important;
    color: var(--dark) !important;
    font-weight: 700;
}

/* Form Styling */
.contact-section .form-group {
    margin-bottom: 25px;
}

.contact-section .form-label {
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dark);
}

.contact-section .form-control {
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-section .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(58, 134, 255, 0.25);
}

.contact-section textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.contact-section .submit-btn {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    margin-top: 10px;
}

/* Social Media */
.social-section {
    background: white;
    padding: 60px 0;
    border-top: 1px solid #e9ecef;
}

.social-section .social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.social-section .social-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-section .social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 991px) {
    .contact-hero {
        padding: 80px 0 60px;
    }

    .contact-hero h1 {
        font-size: 2.5rem;
    }

    .contact-section {
        padding: 60px 0;
    }

    .contact-card {
        padding: 30px;
        margin-bottom: 30px;
    }

    .hours-table td {
        white-space: nowrap;
    }

    .social-section .social-icon {
        width: 45px;
        height: 45px;
    }

    .social-section .social-icon i {
        font-size: 18px;
    }

    .social-section {
        padding: 30px 0;
    }
}

@media (max-width: 767px) {
    .contact-hero h1 {
        font-size: 2rem;
    }

    .contact-hero p {
        font-size: 1rem;
    }

    .contact-card {
        padding: 25px;
    }

    .hours-table {
        font-size: 0.9rem;
    }

    .hours-table th,
    .hours-table td {
        padding: 8px 10px;
    }

    .social-section .social-icons {
        gap: 10px;
        margin-top: 20px;
    }
}

@media (max-width: 575px) {
    .contact-hero {
        padding: 60px 0 40px;
    }

    .contact-section {
        padding: 40px 0;
    }

    .contact-card {
        padding: 20px;
        border-radius: 15px;
    }

    .social-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* Forgot Password Modal */
.forgot-pass-modal .modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

.forgot-pass-modal .modal-header {
    background: var(--gradient);
    color: white;
    border-radius: 20px 20px 0 0;
    border-bottom: none;
    padding: 25px 30px;
}

.forgot-pass-modal .modal-title {
    font-weight: 700;
    font-size: 1.5rem;
}

.forgot-pass-modal .btn-close {
    filter: invert(1);
}

.forgot-pass-modal .modal-body {
    padding: 30px;
}

.forgot-pass-modal .form-control {
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.forgot-pass-modal .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(58, 134, 255, 0.25);
}

.forgot-pass-modal .modal-footer {
    border-top: none;
    padding: 0 30px 30px;
}

.forgot-pass-modal .reset-instructions {
    color: #6c757d;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.forgot-pass-modal .success-message {
    display: none;
    text-align: center;
    padding: 20px;
}

.forgot-pass-modal .success-message i {
    font-size: 3rem;
    color: var(--success);
    margin-bottom: 15px;
}

/* About Section */
.about-header {
    background: white;
    padding: 60px 0 25px;
    position: relative;
}

.about-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-header p {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
}

/* Vision & Mission Section */
.vision-mission-section {
    padding: 55px 0;
    background: white;
}

.vision-card, .mission-card {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    transition: all 0.3s ease;
}

.vision-card:hover, .mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.vision-icon, .mission-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    margin-bottom: 25px;
}

/* Story Section */
.story-section {
    padding: 55px 0;
    background: #f8f9fa;
}

.story-content {
    padding-right: 40px;
}

.story-illustration {
    background: var(--gradient);
    border-radius: 20px;
    height: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.story-illustration::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,202.7C672,203,768,181,864,170.7C960,160,1056,160,1152,170.7C1248,181,1344,203,1392,213.3L1440,224L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: center bottom;
}

.bulb-icon {
    font-size: 120px;
    color: white;
    position: relative;
    z-index: 2;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Core Values Section */
.values-section {
    padding: 55px 0;
    background: #1a1a1a;
    color: white;
}

.values-section h2 {
    color: white;
    margin-bottom: 20px;
}

.value-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.value-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    margin: 0 auto 25px;
}

/* Testimonials Section */
.single-test-section {
    padding: 55px 0;
    background: white;
}

.single-test-section .test-card {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.single-test-section .test-card::before {
    content: "";
    font-size: 80px;
    color: var(--primary);
    opacity: 0.2;
    position: absolute;
    top: 20px;
    left: 30px;
    font-family: Georgia, serif;
}

.single-test-section .text {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.single-test-section .author {
    font-weight: 600;
    color: var(--primary);
}

/* Responsive */
@media (max-width: 991px) {
    .about-header {
        padding: 40px 0 20px;
    }

    .about-header h1 {
        font-size: 2.5rem;
    }

    .vision-mission-section,
    .story-section,
    .values-section,
    .single-test-section {
        padding: 40px 0;
    }

    .story-content {
        padding-right: 0;
        margin-bottom: 0;
    }

    .vision-card, .mission-card,
    .value-card {
        padding: 30px;
    }
}

@media (max-width: 767px) {
    .about-header h1 {
        font-size: 2rem;
    }

    .about-header p {
        font-size: 1rem;
    }

    .vision-card, .mission-card,
    .value-card,
    .testimonial-card {
        padding: 25px;
    }

    .bulb-icon {
        font-size: 80px;
    }
}

@media (max-width: 575px) {
    .about-header {
        padding: 45px 0 0;
    }

    .vision-card, .mission-card,
    .value-card,
    .testimonial-card {
        padding: 20px;
        border-radius: 15px;
    }
}

/* Header Section */
.blogs-header {
    background: white;
    padding: 70px 0 50px;
    position: relative;
}

.blogs-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.blogs-header p {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
}

/* Blogs Section */
.blogs-section {
    padding: 35px 0 55px 0;
    background: white;
}

.blogs-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.blogs-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.blogs-image {
    width: 100%;
    height: 225px;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background: var(--gradient);
    background-position: center;
    background-repeat: no-repeat;
}

.blogs-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,202.7C672,203,768,181,864,170.7C960,160,1056,160,1152,170.7C1248,181,1344,203,1392,213.3L1440,224L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: center bottom;
}

.blogs-number {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary);
    font-size: 1.1rem;
}

.blogs-content {
    padding: 30px;
}

.blogs-title {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--dark);
    line-height: 1.4;
}

.blogs-excerpt {
    color: #6c757d;
    margin-bottom: 15px;
    line-height: 1.6;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blogs-section .read-more {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.blogs-section .read-more:hover {
    gap: 12px;
    color: var(--secondary);
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    background: var(--gradient);
    color: white;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,202.7C672,203,768,181,864,170.7C960,160,1056,160,1152,170.7C1248,181,1344,203,1392,213.3L1440,224L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: center bottom;
}

.newsletter-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 50px;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.newsletter-title {
    margin-bottom: 15px;
    color: white;
}

.newsletter-subtitle {
    opacity: 0.9;
    margin-bottom: 20px;
}

.newsletter-form {
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-section .form-control {
    padding: 12px 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
}

.newsletter-section .form-control:focus {
    border-color: white;
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

.newsletter-section .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-section .btn-light {
    background: white;
    color: var(--primary);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.newsletter-section .btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 991px) {
    .blogs-header {
        padding: 55px 0 0;
    }

    .blogs-header h1 {
        font-size: 2.5rem;
    }

    .blogs-section,
    .newsletter-section {
        padding: 60px 0;
    }

    .newsletter-container {
        padding: 40px;
    }
}

@media (max-width: 767px) {
    .blogs-header h1 {
        font-size: 2rem;
    }

    .blogs-header p {
        font-size: 1rem;
    }

    .blogs-section,
    .newsletter-section {
        padding: 50px 0;
    }

    .blog-content {
        padding: 25px;
    }

    .newsletter-container {
        padding: 30px;
    }

    .newsletter-section .btn-light {
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .blogs-header {
        padding: 50px 0 0;
    }

    .blogs-section,
    .newsletter-section {
        padding: 40px 0;
    }

    .blog-content {
        padding: 20px;
    }

    .newsletter-container {
        padding: 25px;
    }
}

/* Blog Details Section */
.blog-detail-header {
    background: white;
    padding: 80px 0 0;
    position: relative;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
    color: #6c757d;
    font-size: 0.9rem;
}

.blog-category {
    background: var(--gradient);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
}

.blog-detail-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.blog-excerpt {
    font-size: 1.3rem;
    color: #6c757d;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Featured Image */
.featured-image {
    height: 500px;
    background: var(--gradient);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    margin: 40px 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.featured-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,202.7C672,203,768,181,864,170.7C960,160,1056,160,1152,170.7C1248,181,1344,203,1392,213.3L1440,224L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: center bottom;
}

/* Content Section */
.blog-content-section {
    margin-top: -150px;
    position: relative;
    z-index: 9;
}

.blog-content {
    padding: 30px;
    max-width: 90%;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 12px;
}

.content-block {
    margin-bottom: 40px;
}

.content-block h2 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 2rem;
}

.content-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 20px;
}

.content-image {
    height: 300px;
    background: #f8f9fa;
    border-radius: 15px;
    margin: 30px 0;
    position: relative;
    overflow: hidden;
}

.content-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0.1;
}

/* Key Points */
.key-points {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    margin: 40px 0;
}

.key-points h3 {
    color: var(--primary);
    margin-bottom: 20px;
}

.key-points ul {
    list-style: none;
    padding: 0;
}

.key-points li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.key-points li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

/* Author Section */
.author-section {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 20px;
    margin: 60px 0;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-avatar {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.author-details h4 {
    margin-bottom: 5px;
}

.author-details p {
    color: #6c757d;
    margin-bottom: 0;
}

/* Related Posts */
.related-posts-section {
    padding: 65px 0;
    background: white;
    border-top: 1px solid #e3e3e3;
}

.related-post-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.related-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.related-post-image {
    height: 200px;
    background: var(--gradient);
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.related-post-content {
    padding: 25px;
}

.related-post-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.read-more {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.read-more:hover {
    gap: 12px;
    color: var(--secondary);
}

/* Share Section */
.blog-share {
    padding: 40px 0;
    background: white;
    border-top: 1px solid #e9ecef;
}

.blog-share-buttons {
    display: flex;
    gap: 15px;
}

.blog-share-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-share-btn.facebook { background: #4267B2; }
.blog-share-btn.twitter { background: #1DA1F2; }
.blog-share-btn.linkedin { background: #0077B5; }
.blog-share-btn.link { background: var(--primary); }

.blog-share-btn:hover {
    transform: translateY(-3px);
    color: white;
}

/* Responsive */
@media (max-width: 991px) {
    .blog-detail-header {
        padding: 80px 0 40px;
    }

    .blog-detail-header h1 {
        font-size: 2.5rem;
    }

    .featured-image {
        height: 400px;
    }

    .related-posts-section {
        padding: 55px 0;
    }
}

@media (max-width: 767px) {
    .blog-detail-header h1 {
        font-size: 2rem;
    }

    .blog-excerpt {
        font-size: 1.1rem;
    }

    .featured-image {
        height: 300px;
    }

    .content-block h2 {
        font-size: 1.7rem;
    }

    .author-info {
        flex-direction: column;
        text-align: center;
    }

    .share-buttons {
        flex-wrap: wrap;
    }
}

@media (max-width: 575px) {
    .blog-detail-header {
        padding: 60px 0 0;
    }

    .related-posts-section {
        padding: 45px 0;
    }

    .featured-image {
        height: 250px;
    }
}

 /* Header Section */
.testimonials-header {
    background: white;
    padding: 65px 0 0;
    position: relative;
    text-align: center;
}

.testimonials-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.testimonials-header p {
    font-size: 1.2rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Testimonials Grid Section */
.testimonials-section {
    padding: 80px 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-section .testimonial-card {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 24px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: none;
}

.testimonials-section .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.testimonials-section .testimonial-text {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
    position: relative;
}

.testimonials-section .testimonial-text::before {
    content: "";
    font-size: 60px;
    color: var(--primary);
    opacity: 0.3;
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonials-section .testimonial-author {
    font-weight: 700;
    color: #333;
    font-size: 1rem;
    margin-bottom: 5px;
}

.testimonials-section .testimonial-company {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

.testimonials-section .quote-icon {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 15px;
    opacity: 0.7;
}

/* CTA Section */
.cta-section {
    text-align: center;
    background: white;
    padding: 0px 0 65px 0;
}

.cta-card {
    background: white;
    border-radius: 12px;
    padding: 60px 40px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 991px) {
    .testimonials-header {
        padding: 55px 0 0;
    }

    .testimonials-header h1 {
        font-size: 2.5rem;
    }

    .testimonials-section {
        padding: 55px 0;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .cta-section {
        padding: 55px 0;
    }

    .cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .testimonials-header h1 {
        font-size: 2rem;
    }

    .testimonials-header p {
        font-size: 1rem;
    }

    .testimonials-section {
        padding: 40px 0;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .testimonial-card {
        padding: 15px;
    }

    .cta-section {
        padding: 0 0 40px 0;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .cta-card {
        padding: 35px 25px;
    }

    .cta-title {
        font-size: 1.8rem;
    }
}

/* Header Section */
.legal-header {
    background: white;
    padding: 55px 0 20px;
    position: relative;
    text-align: center;
}

.legal-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.legal-header p {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

/* Tabs Navigation */
.legal-tabs {
    background: white;
    padding: 0;
    border-bottom: 1px solid #e9ecef;
}

.legal-tabs .nav-tabs {
    border: none;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.legal-tabs .nav-tabs .nav-link {
    border: none;
    padding: 20px 40px;
    font-weight: 600;
    color: #6c757d;
    background: transparent;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.legal-tabs .nav-tabs .nav-link:hover {
    color: var(--primary);
    background: rgba(58, 134, 255, 0.05);
}

.legal-tabs .nav-tabs .nav-link.active {
    color: var(--primary);
    background: transparent;
    border-bottom: 3px solid var(--primary);
}

/* Content Section */
.legal-content {
    padding: 55px 0;
    background: white;
}

.legal-container {
    max-width: 1000px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 50px;
}

.legal-section h2 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.8rem;
    border-bottom: 2px solid #f8f9fa;
    padding-bottom: 10px;
}

.legal-section h3 {
    color: var(--dark);
    margin: 25px 0 15px;
    font-size: 1.3rem;
}

.legal-section p {
    margin-bottom: 15px;
    color: #495057;
}

.legal-section ul, .legal-section ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.legal-section li {
    margin-bottom: 8px;
    color: #495057;
}

.highlight-box {
    background: #f8f9fa;
    border-left: 4px solid var(--primary);
    padding: 20px;
    margin: 25px 0;
    border-radius: 0 8px 8px 0;
}

.highlight-box p {
    margin-bottom: 0;
}

.contact_info {
    background: var(--gradient);
    color: white;
    padding: 40px;
    border-radius: 15px;
}

.contact_info h3 {
    color: white;
    margin-bottom: 20px;
}

.contact_info a {
    color: white;
    text-decoration: underline;
}

.last-updated {
    background: #e9ecef;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    font-weight: 600;
    color: #495057;
}

/* Responsive */
@media (max-width: 991px) {
    .legal-header h1 {
        font-size: 2.5rem;
    }

    .legal-tabs .nav-tabs .nav-link {
        padding: 15px 25px;
    }

    .legal-section {
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .legal-header h1 {
        font-size: 2rem;
    }

    .legal-header p {
        font-size: 1rem;
    }

    .legal-content {
        padding: 50px 0;
    }

    .legal-tabs .nav-tabs .nav-link {
        padding: 12px 15px;
        font-size: 0.9rem;
    }

    .legal-section h2 {
        font-size: 1.5rem;
    }

    .contact_info {
        padding: 30px;
    }

    .legal-section {
        margin-bottom: 30px;
    }
}

@media (max-width: 575px) {
    .legal-header {
        padding: 40px 0 20px;
    }

    .legal-content {
        padding: 20px 0;
    }

    .legal-tabs .nav-tabs .nav-link {
        padding: 10px 12px;
        font-size: 0.85rem;
    }

    .legal-section {
        margin-bottom: 20px;
    }
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 80px 0 30px;
}

.footer h5 {
    margin-bottom: 25px;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #adb5bd;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer .social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    color: white;
    transition: all 0.3s ease;
}

.footer .social-icons a:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

.footer .newsletter-form {
    /* display: flex; */
    margin-top: 20px;
}

.footer .newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 50px 0 0 50px;
    outline: none;
}

.footer .newsletter-form button {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0 25px;
    border-radius: 0 50px 50px 0;
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    margin-top: 50px;
    text-align: center;
    color: #adb5bd;
    font-size: 0.9rem;
}

.footer-bottom.footer-links a:hover {
    color: white;
    padding-left: 0;
}

@media (max-width: 767px) {
    .footer  {
        text-align: center;
        padding: 55px 0 20px;
    }

    .footer h5 {
        margin-bottom: 15px;
    }
}

/* Animations */
/* .fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
} */
