:root {
    --primary-red: #c62828;
    --dark-red: #8e0000;
    --light-red: #ff5f52;
    --primary-blue: #1565c0;
    --dark-blue: #003c8f;
    --light-blue: #5e92f3;
    --neutral-gray: #f5f5f5;
    --dark-gray: #424242;
    --white: #ffffff;

    --bs-navbar-toggler-border-color: rgba(255,255,255, 1) !important;
}


#detach-button-host {
    display: none !important;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    overflow-x: hidden;
}

.hide {
    display:none;
}

/* Top sticky nav */
.navbar {
    background-color: rgba(174 51 47);
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.5) !important;
    transition: all 0.3s ease;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary-red) !important;
    font-size: 1.8rem;
}

.navbar-nav .nav-link {
    color: var(--white) !important;
    font-weight: 500;
    margin: 0 5px;
    transition: all 0.3s ease-in-out;
    transform: translateY(0px);    
    
    /* Override flex behavior */
    flex: 0 0 auto;
    
    
}

.navbar-nav .nav-link:hover {
    color: var(--white) !important;
    transform: translateY(-3px);
    text-shadow: 2px 2px 2px black;
    transition: transform 0.2s ease-in-out;
}

.navbar-nav .nav-link.active {
    color: var(--primary-red) !important;
    border-bottom: 2px solid var(--primary-red);
}

.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='white' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;    
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}

.navbar-toggler  {
    border-color: #fff !important;
    transition: all 0.3s ease-in-out;
    transform: translateY(0px);    
}

.navbar-toggler:hover {
    text-decoration: none;
    outline: 0;
    box-shadow: none !important;
    text-shadow: 2px 2px 2px black;
    transition: all 0.3s ease-in-out;
    transform: translateY(-3px);    
}
.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    /*box-shadow: none !important;*/
    box-shadow: 2px 2px 2px black !important;
    transition: all 0.3s ease-in-out;
    transform: translateY(-3px);    
}

/* Hero Banner with 50vh height */
.hero-section {
    height: 50vh;
    min-height: 400px;
    overflow: hidden;
    position: relative;
    background-color: #000;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

/* Background image with Ken Burns effect */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

/* Ken Burns effect classes - Now only on .hero-bg */
.ken-burns-zoom {
    animation: kenBurnsZoom 20s ease-out forwards;
}

.ken-burns-pan {
    animation: kenBurnsPan 25s ease-in-out forwards;
}

@keyframes kenBurnsZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

@keyframes kenBurnsPan {
    0% { transform: scale(1) translateX(0); }
    50% { transform: scale(1.04) translateX(-1%); }
    100% { transform: scale(1.06) translateX(1%); }
}

/* Hero Overlay - Static, no animation */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(21, 101, 192, 0.85), rgba(198, 40, 40, 0.7));
    display: flex;
    align-items: center;
}

.hero-content {
    color: white;
    max-width: 700px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    padding-top: 20px;
    /* Mobile padding */
    padding-left: 15px;
    padding-right: 15px;
}

.hero-content h1 {
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-content .lead {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

/* Hero Buttons - Adjusted for smaller hero */
.hero-buttons {
    margin-top: 0.5rem;
}

.hero-buttons a {
    cursor: pointer;
    position: relative;
    z-index: 10;
    padding: 8px 20px;
    font-size: 1rem;
}

.hero-buttons .btn-lg {
    padding: 10px 24px;
    font-size: 1.1rem;
}

/* Micro animations for elements coming into view */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Section styling */
.section-title {
    color: var(--dark-blue);
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 40px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: var(--primary-red);
}

.section-title.text-center:after {
    left: 50%;
    transform: translateX(-50%);
}

.services-section, .about-section, .reviews-section {
    padding: 80px 0;
}

.services-section {
    background-color: var(--neutral-gray);
}

.service-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    background: white;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

/* Reviews Carousel */
.review-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
    height: 100%;
    background: white;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-text {
    font-style: italic;
    line-height: 1.7;
}

.review-author {
    color: var(--primary-blue);
    font-weight: 600;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--primary-blue);
}

.carousel-control-prev, .carousel-control-next {
    width: 45px;
    height: 45px;
    background-color: var(--primary-red);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.9;
}

.carousel-control-prev {
    left: -20px;
}

.carousel-control-next {
    right: -20px;
}

/* Enhanced Footer Styles */
.footer {
    background: linear-gradient(135deg, var(--dark-gray) 0%, #2c2c2c 100%);
    color: white;
    padding-top: 60px;
    position: relative;
    overflow: hidden;
}

.footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--primary-red), var(--primary-blue));
}

.footer-brand {
    display: flex;
    align-items: center;
}

.footer-heading {
    font-weight: 600;
    position: relative;
    padding-bottom: 12px;
    font-size: 1.1rem;
}

.footer-heading:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-red);
}

.footer-links li a {
    transition: all 0.3s ease;
    padding: 5px 0;
    display: block;
    font-size: 0.95rem;
    opacity: 0.9;
}

.footer-links li a:hover {
    color: var(--light-blue) !important;
    opacity: 1;
    transform: translateX(5px);
}

.footer-links li a i {
    transition: transform 0.3s ease;
}

.footer-links li a:hover i {
    transform: translateX(3px);
}

.footer-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background-color: rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease;
}

.footer-contact .d-flex:hover .footer-icon {
    background-color: var(--primary-red);
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary-red);
    transform: translateY(-3px);
    color: white;
}

.newsletter-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-form .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-right: none;
}

.newsletter-form .form-control:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-blue);
    color: white;
    box-shadow: 0 0 0 0.25rem rgba(21, 101, 192, 0.25);
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form .btn-primary {
    border-left: none;
    padding-left: 15px;
    padding-right: 15px;
}

.footer-bottom {
    border-color: rgba(255, 255, 255, 0.1) !important;
    padding: 15px 0;
    margin-top: 40px;
}

.footer-bottom-links a {
    transition: color 0.3s ease;
    opacity: 0.8;
}

.footer-bottom-links a:hover {
    color: var(--light-blue) !important;
    opacity: 1;
}

.bg-primary-blue {
    background-color: var(--primary-blue) !important;
}

.bg-dark-blue {
    background-color: rgba(21, 101, 192, 0.2) !important;
}

.border-dark-gray {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.btn-primary {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    padding: 10px 25px;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: var(--dark-red);
    border-color: var(--dark-red);
}

.btn-outline-primary {
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.btn-outline-primary:hover {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
}

/* Service Links Styling */
.service-links {
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 1rem;
}

.service-link {
    color: var(--dark-blue);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.service-link:hover {
    background-color: rgba(21, 101, 192, 0.1);
    color: var(--primary-red);
    padding-left: 15px;
    transform: translateX(3px);
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(3px);
    color: var(--primary-red);
}

/* Responsive adjustments for 50vh hero */
@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 2.3rem;
    }
    
    .hero-content .lead {
        font-size: 1.05rem;
    }
}

@media (max-width: 992px) {
    .hero-section {
        height: 45vh;
        min-height: 350px;
    }
    
    .navbar-nav .nav-link {
        border-bottom: 1px solid transparent;
        border-image: linear-gradient(to right, rgba(255, 255, 255, 0.5), transparent) 1;
    }

    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content .lead {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }
    
    .hero-buttons .btn-lg {
        padding: 8px 20px;
        font-size: 1rem;
    }
    
    .carousel-control-prev {
        left: 10px;
    }
    
    .carousel-control-next {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 40vh;
        min-height: 300px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-content .lead {
        font-size: 0.95rem;
        margin-bottom: 1rem;
        line-height: 1.4;
    }
    
    .hero-content {
        padding-top: 10px;
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .hero-buttons {
        gap: 10px !important;
    }
    
    .hero-buttons .btn-lg {
        padding: 7px 16px;
        font-size: 0.95rem;
    }
    
    .services-section, .about-section, .reviews-section {
        padding: 60px 0;
    }
    
    .service-icon {
        font-size: 2.2rem;
    }
    
    .footer {
        padding-top: 50px;
    }
    
    .footer-brand span {
        font-size: 1.5rem;
    }
    
    .footer-heading {
        font-size: 1rem;
    }
    
    .section-title {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        height: 35vh;
        min-height: 250px;
    }
    
    .hero-content h1 {
        font-size: 1.5rem;
    }
    
    .hero-content .lead {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-content {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hero-buttons .btn-lg {
        width: 100%;
        text-align: center;
        margin-bottom: 8px;
    }
    
    .services-section, .about-section, .reviews-section {
        padding: 50px 0;
    }
}

/* Extra small devices (phones, 361px and below) */
@media (max-width: 400px) {
    .hero-section {
        height: 45vh;
        min-height: 220px;
    }
    
    .hero-content h1 {
        font-size: 1.4rem;
        margin-bottom: 0.6rem;
    }
    
    .hero-content .lead {
        font-size: 0.85rem;
        margin-bottom: 0.7rem;
        line-height: 1.3;
    }
    
    .hero-content {
        padding-left: 15px;
        padding-right: 15px;
        padding-top: 5px;
    }
    
    .hero-buttons .btn-lg {
        padding: 6px 14px;
        font-size: 0.9rem;
    }
    
    .navbar-brand {
        font-size: 1.5rem;
    }
    
    .services-section, .about-section, .reviews-section {
        padding: 40px 15px;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }
    
    .footer {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* Extra extra small devices (very small phones) */
@media (max-width: 361px) {
    .hero-content {
        padding-left: 12px;
        padding-right: 12px;
    }
    
    .hero-content h1 {
        font-size: 1.3rem;
    }
    
    .hero-content .lead {
        font-size: 0.82rem;
    }
    
    .hero-buttons .btn-lg {
        padding: 5px 12px;
        font-size: 0.85rem;
    }
    
    /* Ensure container has padding on very small screens */
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }
    
    /* Add padding to other sections */
    .about-section .container,
    .services-section .container,
    .reviews-section .container {
        padding-left: 12px;
        padding-right: 12px;
    }
}

/* Impactful CTA Styles */
.cta-impact {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 100%);
    border-radius: 15px;
    padding: 40px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(21, 101, 192, 0.3);
    border-left: 5px solid var(--primary-red);
}

.cta-impact:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, rgba(198, 40, 40, 0.2), transparent);
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.cta-impact:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 50%;
    transform: translate(-30%, 50%);
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-badge {
    display: inline-block;
    background: linear-gradient(to right, var(--primary-red), var(--light-red));
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(198, 40, 40, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-title {
    color: white;
    font-weight: 700;
    font-size: 2.2rem;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    line-height: 1.3;
}

.cta-text {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.cta-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 25px;
}

.cta-feature {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 18px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.cta-feature:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.cta-feature i {
    color: var(--light-blue);
    font-size: 1.3rem;
    margin-right: 10px;
}

.cta-feature span {
    color: white;
    font-weight: 500;
    font-size: 0.95rem;
}

.cta-action {
    position: relative;
    z-index: 2;
}

.cta-highlight {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-stat {
    display: block;
    color: white;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-stat-label {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
    margin-top: 5px;
}

.btn-cta-primary {
    background: linear-gradient(to right, var(--primary-red), var(--dark-red));
    color: white;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(198, 40, 40, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-cta-primary:hover {
    background: linear-gradient(to right, var(--dark-red), var(--primary-red));
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(198, 40, 40, 0.5);
}

.btn-cta-primary:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.btn-cta-primary:focus:not(:active)::after {
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: scale(20, 20);
        opacity: 0;
    }
}

.cta-note {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-style: italic;
    margin-top: 15px;
}

/* Responsive CTA */
@media (max-width: 992px) {
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-stat {
        font-size: 2.5rem;
    }
    
    .btn-cta-primary {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .cta-features {
        gap: 15px;
    }
    
    .cta-feature {
        padding: 8px 15px;
    }
}

@media (max-width: 768px) {
    .cta-impact {
        padding: 30px 0;
        margin-left: 15px;
        margin-right: 15px;
    }
    
    .cta-title {
        font-size: 1.6rem;
    }
    
    .cta-text {
        font-size: 1rem;
    }
    
    .cta-stat {
        font-size: 2.2rem;
    }
    
    .btn-cta-primary {
        width: 100%;
        padding: 15px;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 10px;
    }
    
    .cta-action {
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    .cta-impact {
        border-radius: 10px;
        margin-left: 10px;
        margin-right: 10px;
    }
    
    .cta-title {
        font-size: 1.4rem;
    }
    
    .cta-badge {
        font-size: 0.8rem;
        padding: 6px 15px;
    }
    
    .cta-stat {
        font-size: 2rem;
    }
}

/* SERVICES */
/* Enhanced Service Hero with Consistent Gradient Overlay */
        .service-hero {
            position: relative;
            overflow: hidden;
            color: white;
            padding: 100px 0 70px;
            min-height: 50vh;
            display: flex;
            align-items: center;
        }

        /* Video Hero Container */
        .video-hero-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1;
        }

        .video-hero-container video {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            transform: translate(-50%, -50%);
            object-fit: cover;
        }

        /* Image Background Container */
        .image-hero-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1;
        }

        .image-hero-container .hero-bg-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        /* Gradient Overlay Container - For ALL hero types */
        .gradient-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, rgba(21, 101, 192, 0.85), rgba(198, 40, 40, 0.7));
            z-index: 2;
        }

        /* Gradient Background Container */
        .gradient-hero-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1;
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
        }

        /* Hero Content */
        .hero-content-wrapper {
            position: relative;
            z-index: 3; /* Above gradient overlay */
        }

        .service-icon-large {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            color: var(--light-blue);
        }

        .service-hero h1 {
            font-weight: 700;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
        }

        .service-hero .lead {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
        }
        
        /* Service Content */
        .service-content {
            padding: 80px 0;
        }
        
        .section-title {
            color: var(--dark-blue);
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 30px;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background-color: var(--primary-red);
        }
        
        .benefit-card {
            border-left: 4px solid var(--primary-blue);
            padding-left: 20px;
            margin-bottom: 30px;
            transition: transform 0.3s;
        }
        
        .benefit-card:hover {
            transform: translateX(5px);
        }
        
        .benefit-icon {
            color: var(--primary-red);
            font-size: 1.5rem;
            margin-right: 10px;
        }
        
        /* Service Features */
        .features-section {
            background-color: var(--neutral-gray);
            padding: 80px 0;
        }
        
        .feature-box {
            background: white;
            border-radius: 10px;
            padding: 30px;
            height: 100%;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s;
        }
        
        .feature-box:hover {
            transform: translateY(-10px);
        }
        
        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary-blue);
            margin-bottom: 1rem;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(to right, var(--primary-red), var(--dark-red));
            color: white;
            padding: 80px 0;
            text-align: center;
        }
        
        .cta-section h2 {
            margin-bottom: 1.5rem;
        }
        
        .btn-light {
            background-color: white;
            color: var(--primary-red);
            font-weight: 600;
            padding: 12px 30px;
        }
        
        .btn-light:hover {
            background-color: #f8f9fa;
        }
        
        /* Related Services */
        .related-services {
            padding: 80px 0;
        }
        
        .service-card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
            background: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .service-card-icon {
            font-size: 2.5rem;
            color: var(--primary-red);
            margin-bottom: 1rem;
        }
        
        
        /* Responsive adjustments */
        @media (max-width: 992px) {
            .service-hero {
                min-height: 40vh;
                padding: 80px 0 50px;
            }
        }

        @media (max-width: 768px) {
            .service-hero {
                min-height: 35vh;
                padding: 60px 0 40px;
                top: -10px !important;
            }
            
            .service-hero h1 {
                font-size: 2.2rem;
            }
            
            .service-hero .lead {
                font-size: 1.1rem;
            }
            
            .service-content, .features-section, .cta-section, .related-services {
                padding: 60px 0;
            }
            
            body {
                padding-top: 70px;
            }
            
            
        }

        @media (max-width: 576px) {
            .service-hero {
                min-height: 30vh;
                padding: 50px 0 30px;
            }
            
            .service-hero h1 {
                font-size: 1.8rem;
            }
            
            .service-hero .lead {
                font-size: 1rem;
            }
        }

/* CONTACT FORM TAB */
/* Contact Tabs Styles */
.contact-tabs-container {
    background: var(--bs-white);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.contact-tabs-container .nav-tabs {
    border-bottom: 2px solid #f0f0f0;
    padding: 1rem 0;
    background: #f8f9fa;
}

.contact-tabs-container .nav-tabs .nav-link {
    border: none;
    color: var(--bs-secondary);
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    margin: 0 0.25rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 1rem;
    white-space: nowrap;
}

.contact-tabs-container .nav-tabs .nav-link:hover {
    color: var(--bs-primary);
    background: rgba(13, 110, 253, 0.05);
}

.contact-tabs-container .nav-tabs .nav-link.active {
    color: var(--bs-white);
    background: var(--bs-primary);
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
    transform: translateY(-2px);
}

.contact-tabs-container .tab-content {
    padding: 2.5rem;
}

.contact-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #e9ecef;
}

.contact-form .form-label {
    font-weight: 500;
    color: var(--bs-dark);
    margin-bottom: 0.5rem;
}

.contact-form .form-control,
.contact-form .form-select {
    padding: 0.75rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.15);
}

.contact-form .btn {
    padding: 0.75rem 2rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.contact-section .alert {
    border-radius: 8px;
    border: none;
    padding: 1rem 1.25rem;
}

/* Mobile Responsive Styles */
@media (max-width: 992px) {
    .contact-tabs-container .tab-content {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .contact-tabs-container .nav-tabs {
        flex-wrap: wrap;
    }
    
    .contact-tabs-container .nav-tabs .nav-link {
        margin: 0.25rem;
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
        flex: 1;
        min-width: 120px;
        text-align: center;
    }
    
    .contact-tabs-container .tab-content {
        padding: 1rem;
    }
    
    .contact-form {
        padding: 1.25rem;
    }
    
    .contact-section h3 {
        font-size: 1.5rem;
    }
    
    .contact-section .lead {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .contact-tabs-container .nav-tabs .nav-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
        min-width: 100px;
    }
    
    .contact-form {
        padding: 1rem;
    }
    
    .contact-form .form-control,
    .contact-form .form-select {
        padding: 0.625rem 0.875rem;
        font-size: 0.95rem;
    }
    
    .contact-form .btn {
        padding: 0.625rem 1.5rem;
        width: 100%;
    }
    
    .contact-section .d-flex {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .contact-section .d-flex .flex-shrink-0 {
        margin-bottom: 0.5rem;
    }
    
    .contact-section .d-flex .flex-grow-1 {
        margin-left: 0 !important;
    }
}

/* Small mobile devices */
@media (max-width: 375px) {
    .contact-tabs-container .nav-tabs .nav-link {
        font-size: 0.8rem;
        padding: 0.4rem 0.5rem;
        min-width: 90px;
    }
    
    .contact-tabs-container .tab-content {
        padding: 0.75rem;
    }
    
    .contact-form {
        padding: 0.75rem;
    }
    
    .contact-section h2.section-title {
        font-size: 1.75rem;
    }
    
    .contact-section .lead {
        font-size: 1rem;
    }
}

/* Animation for tab content */
.tab-pane {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form validation styles */
.contact-form .form-control:invalid:focus {
    border-color: var(--bs-danger);
}

.contact-form .form-control:valid:focus {
    border-color: var(--bs-success);
}    