﻿:root {
    --brand-600: #0D5F6D;
    --brand-700: #0D5F6D;
    --brand-500: #29b7d0;
    --brand-50: #e6f7fb;
    --accent: #2ec4b6;
    --dark: #0D5F6D;
    --neutral-light: #f8f9fa;
}

html, body {
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: #24324a;
    scroll-behavior: smooth;
}

.navbar {
    --bs-navbar-brand-color: var(--brand-700);
    --bs-navbar-active-color: var(--brand-700);
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--brand-600);
}

.navbar-logo {
    height: 40px; /* Adjust based on your logo's aspect ratio */
    width: auto;
    object-fit: contain;
}

/* For smaller screens */
@media (max-width: 991.98px) {
    .navbar-logo {
        height: 35px;
    }
}

/* Optional: Add hover effect */
.navbar-brand:hover .navbar-logo {
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.btn-brand {
    --bs-btn-bg: var(--brand-600);
    --bs-btn-border-color: var(--brand-600);
    --bs-btn-hover-bg: var(--brand-700);
    --bs-btn-hover-border-color: var(--brand-700);
    --bs-btn-active-bg: var(--brand-700);
    --bs-btn-color: #fff;
    transition: all 0.3s ease;
}

.btn-ghost {
    --bs-btn-color: var(--brand-700);
    --bs-btn-bg: transparent;
    --bs-btn-border-color: var(--brand-600);
    --bs-btn-hover-bg: var(--brand-700);
    --bs-btn-hover-color: white;
    transition: all 0.3s ease;
}

.text-brand {
    color: #0D5F6D;
    font-size: 15px;
}

.navbar-strip {
    color: white;
    font-weight: bold;
}
.bg-brand {
    background: var(--brand-600) !important;
}

.bg-gradient-brand {
    background: linear-gradient(135deg, var(--brand-600), #2185bf 60%, #1f4d8f);
}

.topbar {
    /*background: var(--brand-50);*/
    background: #0D5F6D;
    font-size: .875rem;
}

    .topbar i {
        color: var(--brand-700);
    }

.hero {
    position: relative;
    color: #fff;
    overflow: hidden;
}

    .hero .carousel-item {
        min-height: 72vh;
    }

    .hero .overlay {
        position: absolute;
        inset: 0;
        /*background: linear-gradient(90deg, rgba(14,162,189,.75), rgba(27,42,78,.65));*/
        /*background: url('../HR_Images/FieldProPlusSlider.png');*/
        border-bottom: 1px solid var(--brand-600);
    }

    .hero h1 {
        font-weight: 800;
        letter-spacing: -.02em;
    }

section {
    scroll-margin-top: 90px;
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
}

    .section-title h2 {
        font-weight: 800;
        color: var(--dark);
    }

    .section-title .divider {
        width: 60px;
        height: 4px;
        background: var(--brand-600);
        margin: auto;
        border-radius: 2px;
    }

    .section-title p {
        color: #6c757d;
        max-width: 600px;
        margin: 1rem auto 0;
    }

/* Updated Services Section Styles */
.service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    min-height: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--brand-50);
}

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 24px rgba(14, 162, 189, 0.15);
    }

    .service-card .service-image {
        height: 150px;
        background-size: cover;
        background-position: center;
        position: relative;
    }

        .service-card .service-image::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
        }

    .service-card .service-content {
        padding: 1.5rem;
        text-align: left;
    }

    .service-card h4 {
        font-weight: 700;
        color: var(--dark);
        margin-bottom: 1rem;
    }

    .service-card p {
        font-size: 0.95rem;
        color: #6c757d;
        margin-bottom: 1.5rem;
    }

    .service-card .btn {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }

.owl-carousel .owl-item .service-card {
    margin: 0 15px;
}

.owl-nav button {
    font-size: 2rem !important;
    color: var(--brand-600) !important;
    background: var(--brand-50) !important;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

    .owl-nav button:hover {
        background: var(--brand-600) !important;
        color: #fff !important;
    }

.feature-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    overflow: hidden;
    height: 100%;
}

    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 16px 32px rgba(14, 162, 189, 0.2);
    }

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--brand-50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto -40px auto;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: var(--brand-600);
}

.feature-icon span {
    font-size: 2rem;
    color: var(--brand-600);
}

.feature-card:hover .feature-icon span {
    color: white;
}

.feature-content {
    padding: 3rem 2rem 2rem;
    text-align: center;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

    .feature-list li {
        display: flex;
        align-items: flex-start;
        margin-bottom: 0.75rem;
        font-size: 0.95rem;
    }

        .feature-list li span {
            color: var(--brand-600);
            margin-right: 0.75rem;
        }

/* Testimonial Carousel Styles */
.testimonial-carousel-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 0px;
    box-shadow: 0 10px 30px rgba(0, 0, 0,0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.testimonial-content {
    position: relative;
    height: 100%;
}

.quote-icon {
    font-size: 1.8rem;
    color: var(--brand-color);
    opacity: 0.2;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    font-style: italic;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-author {
    margin-top: auto;
}

    .testimonial-author img {
        width: 60px !important;
        height: 60px !important;
        object-fit: cover;
    }

.rating {
    color: #FFC107;
    font-size: 1rem;
    margin-top: 10px;
}

/* Navigation */
.testimonial-nav {
    margin-top: 10px;
}

.testimonial-prev,
.testimonial-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-color);
    color: white;
    border: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

    .testimonial-prev:hover,
    .testimonial-next:hover {
        background: var(--brand-color-dark);
        transform: scale(1.1);
    }

.testimonial-dots {
    display: flex;
    gap: 8px;
    margin: 0 15px;
}

    .testimonial-dots .owl-dot {
        width: 8px; /* Smaller dots */
        height: 8px; /* Smaller dots */
        border-radius: 50%;
        background: #ddd !important;
        transition: all 0.3s ease;
    }

        .testimonial-dots .owl-dot.active {
            background: var(--brand-color) !important;
            transform: scale(1.2);
        }

/* Responsive adjustments */
@media (max-width: 768px) {
    .testimonial-card {
        padding: 25px 20px;
        margin: 10px;
        height: 400px; /* Slightly taller on mobile to accommodate content */
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }

    .testimonial-prev,
    .testimonial-next {
        width: 35px;
        height: 35px;
    }

    .testimonial-dots .owl-dot {
        width: 6px; /* Even smaller dots on mobile */
        height: 6px; /* Even smaller dots on mobile */
    }
}

@media (max-width: 576px) {
    .testimonial-card {
        height: 420px; /* Adjust height for very small screens */
    }

    .testimonial-text {
        font-size: 0.95rem;
    }
}

.cta-section {
    background: linear-gradient(135deg, var(--brand-600), var(--brand-700));
    color: white;
    
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
}

    .cta-section::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
        transform: rotate(45deg);
    }

.contact-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 2rem;
}

.form-control {
    border-radius: 8px;
    padding: 0.75rem 1rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

    .form-control:focus {
        border-color: var(--brand-600);
        box-shadow: 0 0 0 0.25rem rgba(14, 162, 189, 0.25);
    }

.footer {
    background: var(--dark);
    color: white;
    font-weight:bold;
}

    .footer a {
        color: white;
        text-decoration: none;
        transition: color 0.3s ease;
        font-weight: bold;
    }

        .footer a:hover {
            color: white;
        }

#backToTop {
    position: fixed;
    right: 1rem;
    bottom: 2.2rem;
    z-index: 1050;
    display: none;
    background: var(--brand-600);
    color: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-cta {
    margin-top: 1rem;
}

#backToTop:hover {
    background: var(--brand-700);
    transform: translateY(-5px);
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }

@media (max-width: 768px) {
    .hero .carousel-item {
        min-height: 60vh;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    section {
        padding: 3rem 0;
    }

    .topbar {
        display: none !important;
    }

    .navbar-brand {
        font-size: 1.2rem;
    }

    .feature-content {
        padding: 2.5rem 1.5rem 1.5rem;
    }

    .service-card .service-image {
        height: 120px;
    }
}

@media (min-width: 992px) {
    .hero .carousel-item {
        min-height: 80vh;
    }
}
/* Why Choose Us Section - Redesign */
#why-choose-us {
    background: linear-gradient(to bottom, var(--brand-50) 0%, #fff 100%);
}

.feature-card-3 {
    perspective: 1000px;
}

.flip-card {
    background-color: transparent;
    height: 300px; /* Slightly increased height for better spacing */
    perspective: 1000px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    box-shadow: 0 8px 24px rgba(14, 162, 189, 0.15);
    border-radius: 16px;
}

.feature-card-3:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.flip-card-front {
    background-color: #fff;
    color: var(--dark);
}

.flip-card-back {
    background: linear-gradient(135deg, var(--brand-600), var(--brand-700));
    color: white;
    transform: rotateY(180deg);
}

/* Consistent icon styling with fixed positioning */
.feature-icon-3 {
    width: 80px;
    height: 80px;
    background: var(--brand-50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--brand-600);
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
    flex-shrink: 0; /* Prevent icon from shrinking */
}

/* Force all headings to have the same height */
.flip-card-front h4 {
    font-weight: 700;
    margin: 0 0 0.8rem;
    color: var(--dark);
    font-size: 1.2rem;
    min-height: 2.8rem; /* Fixed height for all headings */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    line-height: 1.3;
}

.flip-card-back h4 {
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    min-height: 2.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    line-height: 1.3;
}

/* Consistent paragraph styling */
.flip-card-front p {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0;
    text-align: center;
    min-height: 2.7rem; /* Fixed height for paragraphs */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.flip-card-back p {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: center;
    min-height: 4.5rem; /* Fixed height for back text */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.flip-stats {
    margin-top: auto;
    width: 100%;
}

.flip-stat {
    font-size: 1.8rem;
    font-weight: 700;
    display: block;
}

.flip-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Icon-specific adjustments for visual consistency */
.feature-icon-3 .bi-shield-check {
    font-size: 1.9rem;
}

.feature-icon-3 .bi-headset {
    font-size: 1.8rem;
}

.feature-icon-3 .bi-arrow-left-right {
    font-size: 1.9rem;
}

.feature-icon-3 .bi-graph-up-arrow {
    font-size: 1.9rem;
}

.feature-card-3:hover .feature-icon-3 {
    background: var(--brand-600);
    color: white;
    transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .flip-card {
        height: 280px;
    }

    .flip-card-front, .flip-card-back {
        padding: 1.5rem 1rem;
    }

    .feature-icon-3 {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .flip-card-front h4,
    .flip-card-back h4 {
        font-size: 1.1rem;
        min-height: 2.4rem;
    }

    .flip-card-front p {
        min-height: 2.4rem;
        font-size: 0.85rem;
    }

    .flip-card-back p {
        min-height: 4rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .flip-card {
        height: 260px;
    }

    .flip-card-front h4,
    .flip-card-back h4 {
        min-height: 2.2rem;
        font-size: 1rem;
    }

    .flip-card-front p {
        min-height: 2.2rem;
    }

    .flip-card-back p {
        min-height: 3.5rem;
    }
}
/* Stats Section */
.stats-heading {
    color: var(--brand-700);
    font-weight: 700;
    margin-bottom: 1rem;
}

.stats-subheading {
    color: #6c757d;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.stats-container {
    background: linear-gradient(135deg, var(--brand-50) 0%, rgba(14, 162, 189, 0.1) 100%);
    border: 1px solid var(--brand-50);
}

.stat-item-2 {
    padding: 1rem;
}

.stat-icon-2 {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: var(--brand-600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.stat-number-2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--brand-700);
    margin-bottom: 0.5rem;
}

.stat-label-2 {
    font-size: 0.9rem;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Trusted Logos */
.trusted-logos .item {
    padding: 0 15px;
}

.logo-item {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .logo-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(14, 162, 189, 0.15);
    }

    .logo-item i {
        font-size: 2.5rem;
        color: var(--brand-600);
        margin-bottom: 1rem;
    }

    .logo-item span {
        font-weight: 600;
        color: var(--dark);
    }

/* Responsive adjustments */
@media (max-width: 768px) {
    .flip-card {
        height: 240px;
    }

    .flip-card-front, .flip-card-back {
        padding: 1.5rem;
    }

    .feature-icon-3 {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .stat-number-2 {
        font-size: 1.8rem;
    }

    .stat-icon-2 {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

.trusted-logos.owl-carousel .owl-stage {
    display: flex;
    align-items: stretch;
}

.trusted-logos.owl-carousel .item {
    display: flex;
    height: 100%;
}
/* Initialize carousel for trusted logos */

.modal-content {
    border-radius: 16px;
    overflow: hidden;
    border: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.modal-header {
    border-bottom: none;
    padding: 1.25rem 1.5rem 0;
    position: relative;
}

.modal-body {
    padding: 1.25rem 1.5rem;
}

.modal-footer {
    border-top: none;
    padding: 0 1.5rem 1.25rem;
}

.btn-close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    z-index: 10;
    font-size: 0.75rem;
    padding: 0.5rem;
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23676a6d'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center/0.75rem auto no-repeat;
}

.modal-brand-header {
    text-align: center;
    margin-bottom: 1.25rem;
}

.modal-brand-logo {
    width: 60px;
    height: 60px;
    background: var(--brand-50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
}

    .modal-brand-logo img {
        width: 35px;
        height: auto;
    }

.modal-title {
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.35rem;
}

.modal-subtitle {
    color: #6c757d;
    font-size: 0.85rem;
    margin-bottom: 0;
}

.form-control {
    border-radius: 8px;
    padding: 0.6rem 0.9rem;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

    .form-control:focus {
        border-color: var(--brand-600);
        box-shadow: 0 0 0 0.2rem rgba(14, 162, 189, 0.15);
    }

.form-label {
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
}

.btn-brand {
    background: var(--brand-600);
    border-color: var(--brand-600);
    color: white;
    border-radius: 8px;
    padding: 0.65rem 1.25rem;
    font-weight: 500;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

    .btn-brand:hover {
        background: var(--brand-700);
        border-color: var(--brand-700);
        transform: translateY(-1px);
    }

.modal-link {
    color: var(--brand-600);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    font-size: 0.85rem;
}

    .modal-link:hover {
        color: var(--brand-700);
        text-decoration: underline;
    }

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 1.25rem 0;
    color: #6c757d;
    font-size: 0.8rem;
}

    .divider::before,
    .divider::after {
        content: '';
        flex: 1;
    }

    .divider::before {
        margin-right: 0.5rem;
    }

    .divider::after {
        margin-left: 0.5rem;
    }

.modal-tab {
    display: flex;
    border-radius: 8px;
    background: var(--brand-50);
    padding: 0.2rem;
    margin-bottom: 1.25rem;
}

.modal-tab-item {
    flex: 1;
    text-align: center;
    padding: 0.5rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
    font-size: 0.9rem;
}

    .modal-tab-item.active {
        background: white;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
        color: var(--brand-600);
    }

/* Animation for modal appearance */
@keyframes modalAppear {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal.show .modal-content {
    animation: modalAppear 0.25s ease-out;
}

/* Adjust modal size */
.modal-md {
    max-width: 450px;
}

/* Reduce spacing in forms */
.mb-3, .mb-4 {
    margin-bottom: 1rem !important;
}

.btn-outline-secondary {
    font-size: 0.9rem;
    padding: 0.6rem;
    border-radius: 8px;
}




.navbar-nav .nav-link.active {
    color: #0D5F6D;
}

.impactdivider {
    width: 60px;
    height: 4px;
    background-color: var(--brand-600);
    border-radius: 2px;
}
.imapact-section {
    font-weight: 800;
    color: var(--dark);
}

.custom-hover:hover {
    background-color: var(--brand-50) !important; 
    color: black !important;
    border-color: var(--brand-600) !important;
}
.privacy-container {
    max-width: 900px;
    margin: 2rem auto;
    padding: 1rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.privacy-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--brand-50);
}

    .privacy-header h1 {
        color: var(--brand-600);
        font-weight: 800;
        margin-bottom: 1rem;
    }

    .privacy-header p {
        color: #6c757d;
        font-size: 1.1rem;
        max-width: 700px;
        margin: 0 auto;
    }

.privacy-section {
    margin-bottom: 2.5rem;
}

    .privacy-section h2 {
        color: var(--brand-600);
        font-weight: 700;
        margin-bottom: 1rem;
        padding-bottom: 0.5rem;
        border-bottom: 2px solid var(--brand-50);
    }

    .privacy-section p, .privacy-section ul {
        line-height: 1.7;
        color: #495057;
    }

    .privacy-section ul {
        padding-left: 1.5rem;
    }

    .privacy-section li {
        margin-bottom: 0.5rem;
        position: relative;
    }

        .privacy-section li:before {
            content: "•";
            color: var(--brand-600);
            font-weight: bold;
            display: inline-block;
            width: 1em;
            margin-left: -1em;
        }

.back-to-home {
    display: inline-flex;
    align-items: center;
    color: var(--brand-600);
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

    .back-to-home:hover {
        color: var(--brand-700);
        transform: translateX(-5px);
    }


@media (max-width: 768px) {
    .privacy-container {
        margin: 1rem;
        padding: 1.5rem;
    }

    .privacy-header h1 {
        font-size: 1.8rem;
    }
}

/* Privacy Policy Styling */
.privacy-hero {
    background: linear-gradient(135deg, var(--brand-600) 0%, var(--brand-700) 100%);
    color: white;
    padding: 4rem 0;
    margin-bottom: 3rem;
}

.privacy-container {
    max-width: 900px;
    margin: -80px auto 3rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.privacy-header {
    background: var(--brand-10);
    padding: 2.5rem;
    text-align: center;
    border-bottom: 1px solid var(--brand-50);
}

    .privacy-header h1 {
        color: var(--brand-600);
        font-weight: 800;
        margin-bottom: 1rem;
        font-size: 2.2rem;
    }

    .privacy-header p {
        color: #6c757d;
        font-size: 1.1rem;
        max-width: 700px;
        margin: 0 auto;
    }



.privacy-section {
    margin-bottom: 2.5rem;
    position: relative;
}

    .privacy-section:last-child {
        margin-bottom: 0;
    }

    .privacy-section h4 {
        color: var(--brand-600);
        font-weight: 700;
        border-bottom: 2px solid var(--brand-50);
        display: flex;
        align-items: center;
    }

.section-icon {
    background: var(--brand-50);
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--brand-600);
}

.privacy-section p, .privacy-section ul {
    line-height: 1.2;
    color: #495057;
    margin-left: 55px;
}

.privacy-section ul {
    padding-left: 1.5rem;
}

.privacy-section li {
   position: relative;
}

    .privacy-section li:before {
        content: "•";
        color: var(--brand-600);
        font-weight: bold;
        display: inline-block;
        width: 1em;
        margin-left: -1em;
    }

.last-updated {
    background: var(--brand-10);
    padding: 1.5rem 2.5rem;
    border-top: 1px solid var(--brand-50);
    text-align: center;
    color: #6c757d;
}

@media (max-width: 768px) {
    .privacy-container {
        margin: -70px 1rem 2rem;
    }

    .privacy-header, .privacy-content {
        padding: 1.5rem;
    }

        .privacy-header h1 {
            font-size: 1.8rem;
        }

    .privacy-section h2 {
        flex-direction: column;
        align-items: flex-start;
    }

    .section-icon {
        margin-bottom: 10px;
    }

    .privacy-section p, .privacy-section ul {
        margin-left: 0;
    }
}


.navbar-nav .nav-link {
    font-weight: bold;
    color: #000 !important;
    transition: color 0.3s ease;
}

    .navbar-nav .nav-link:hover {
        color: #0D5F6D !important;
    }