/* ========================================
   V Solve - Modern Professional Design
   Clean, Contemporary Layout
   ======================================== */

:root {
    --primary-red: #F00;
    --primary-dark: #CC0000;
    --dark-bg: #1a1a1a;
    --darker-bg: #0d0d0d;
    --light-gray: #f8f9fa;
    --text-dark: #212529;
    --text-gray: #6c757d;
    --text-light: #adb5bd;
    --border-light: #e9ecef;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', 'Segoe UI', Tahoma, sans-serif;
    font-weight: 400;
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Abel', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

h1 {
    font-size: 48px;
}

h2 {
    font-size: 40px;
}

h3 {
    font-size: 32px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 20px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    transition: all 0.3s ease;
}

/* ========================================
   TOP CONTACT BAR
   ======================================== */
.top-contact-bar {
    background: var(--dark-bg);
    color: var(--white);
    padding: 12px 0;
    font-size: 14px;
}

.top-contact-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-contact-info {
    display: flex;
    gap: 30px;
}

.top-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-contact-item i {
    color: var(--primary-red);
    font-size: 14px;
}

.top-contact-item a {
    color: var(--white);
    text-decoration: none;
}

.top-contact-item a:hover {
    color: var(--primary-red);
}

.top-social-links {
    display: flex;
    gap: 15px;
}

.top-social-links a {
    color: var(--white);
    font-size: 14px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.top-social-links a:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
    color: var(--white);
}

/* ========================================
   HEADER / NAVIGATION
   ======================================== */
.main-header {
    background: var(--white);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-section img {
    max-height: 70px;
    width: auto;
}

.navbar {
    background: transparent !important;
    padding: 0 !important;
}

.navbar-nav {
    gap: 5px;
}

.navbar-nav .nav-link {
    color: var(--text-dark) !important;
    font-family: 'Abel', sans-serif;
    font-weight: 600;
    font-size: 16px;
    padding: 25px 20px !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--primary-red);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-red) !important;
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
    width: 80%;
}

.dropdown-menu {
    background: var(--white);
    border: none;
    border-radius: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    margin-top: 0;
    padding: 15px 0;
    min-width: 250px;
}

.dropdown-item {
    color: var(--text-dark);
    padding: 12px 30px;
    font-family: 'Abel', sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-item:hover {
    background: var(--light-gray);
    color: var(--primary-red);
    border-left-color: var(--primary-red);
    padding-left: 35px;
}

/* ========================================
   HERO SLIDER
   ======================================== */
.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-slider .carousel-item {
    height: 600px;
    position: relative;
}

.hero-slider .carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
    z-index: 1;
}

.hero-slider .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slider .carousel-caption {
    z-index: 2;
    left: 10%;
    right: auto;
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
    text-align: left;
    max-width: 600px;
}

.hero-slider .carousel-caption h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-slider .carousel-caption p {
    font-size: 20px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(255, 0, 0, 0.8);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

.carousel-control-prev {
    left: 30px;
}

.carousel-control-next {
    right: 30px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--primary-red);
}

.carousel-indicators {
    bottom: 30px;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    margin: 0 5px;
}

.carousel-indicators .active {
    background: var(--primary-red);
}

/* ========================================
   SECTIONS
   ======================================== */
.section {
    padding: 80px 0;
}

.section-dark {
    background: var(--dark-bg);
    color: var(--white);
}

.section-light {
    background: var(--light-gray);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-red);
}

.section-title p {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 700px;
    margin: 20px auto 0;
}

.section-dark .section-title h2 {
    color: var(--white);
}

.section-dark .section-title p {
    color: var(--text-light);
}

/* ========================================
   SERVICE BOXES
   ======================================== */
.service-box {
    background: var(--white);
    padding: 40px 30px;
    text-align: center;
    border-radius: 0;
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.service-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: var(--primary-red);
    transition: left 0.4s ease;
}

.service-box:hover::before {
    left: 0;
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.service-box:hover .service-icon {
    background: var(--primary-red);
    transform: rotateY(360deg);
}

.service-icon img {
    max-width: 50px;
    max-height: 50px;
    transition: filter 0.4s ease;
}

.service-box:hover .service-icon img {
    filter: brightness(0) invert(1);
}

.service-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-box p {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.7;
}

/* ========================================
   FEATURE CARDS
   ======================================== */
.feature-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 0;
    height: 100%;
    border-left: 4px solid var(--primary-red);
    transition: all 0.3s ease;
}

.feature-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateX(10px);
}

.feature-card h4 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.feature-card ul {
    list-style: none;
    padding: 0;
}

.feature-card ul li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    color: var(--text-gray);
}

.feature-card ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 10px;
    color: var(--primary-red);
    font-size: 18px;
    font-weight: 700;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image {
    flex: 0 0 45%;
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 0;
}

.about-image::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 3px solid var(--primary-red);
    z-index: -1;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 38px;
    margin-bottom: 25px;
}

.about-text p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.about-text .btn-primary {
    margin-top: 20px;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn-primary {
    background: var(--primary-red);
    color: var(--white);
    padding: 15px 40px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-family: 'Abel', sans-serif;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-family: 'Abel', sans-serif;
    letter-spacing: 0.5px;
}

.btn-outline:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.3);
}

/* Button for dark backgrounds (red gradient sections) */
.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-family: 'Abel', sans-serif;
    letter-spacing: 0.5px;
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-red);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

/* Learn More button style */
.btn-learn-more {
    background: transparent;
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
    padding: 12px 30px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-family: 'Abel', sans-serif;
    letter-spacing: 0.5px;
}

.btn-learn-more:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateX(5px);
}

.btn-learn-more i {
    margin-left: 8px;
    transition: margin-left 0.3s ease;
}

.btn-learn-more:hover i {
    margin-left: 12px;
}

/* ========================================
   PAGE HEADER
   ======================================== */
.page-header {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    color: var(--white);
    padding: 100px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/mid-back.jpg') center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.breadcrumb-custom {
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.breadcrumb-custom a {
    color: var(--white);
    text-decoration: none;
}

.breadcrumb-custom a:hover {
    color: var(--primary-red);
}

.breadcrumb-custom span {
    color: var(--text-light);
}

/* ========================================
   CONTENT SECTIONS
   ======================================== */
.content-section {
    background: var(--white);
    padding: 0;
    margin-bottom: 30px;
}

.content-section h3 {
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.content-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-red);
}

.content-section h4 {
    font-size: 22px;
    color: var(--text-dark);
    margin-top: 30px;
    margin-bottom: 20px;
    font-weight: 700;
}

.content-section p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.content-section img {
    border-radius: 0;
    margin: 20px 0;
}

.content-section ul:not(.no-bullets) {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.content-section ul:not(.no-bullets) li {
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 17px;
}

.content-section ul:not(.no-bullets) li::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 12px;
    color: var(--primary-red);
    font-size: 18px;
    font-weight: 700;
}

.no-bullets {
    list-style: none !important;
    padding: 0 !important;
}

.no-bullets li {
    position: relative !important;
    padding-left: 0 !important;
}

.no-bullets li::before {
    display: none !important;
}

/* ========================================
   SIDEBAR
   ======================================== */
.sidebar-box {
    background: var(--white);
    padding: 35px 30px;
    margin-bottom: 30px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.sidebar-box:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.sidebar-box h3 {
    font-size: 22px;
    margin-bottom: 25px;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-red);
}

.sidebar-box .btn-primary {
    width: 100%;
    text-align: center;
}

.sidebar-services {
    list-style: none;
    padding: 0;
}

.sidebar-services li {
    margin-bottom: 0;
}

.sidebar-services li a {
    display: block;
    padding: 15px 20px;
    color: var(--text-dark);
    text-decoration: none;
    border-bottom: 1px solid var(--border-light);
    transition: all 0.3s ease;
    position: relative;
    padding-left: 50px;
    font-family: 'Abel', sans-serif;
    font-size: 16px;
}

.sidebar-services li a::before {
    content: '→';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-red);
    font-size: 18px;
    font-weight: 700;
}

.sidebar-services li a:hover {
    background: var(--light-gray);
    padding-left: 55px;
    color: var(--primary-red);
}

.contact-info-box {
    background: var(--dark-bg);
    padding: 35px 30px;
    text-align: center;
    color: var(--white);
}

.contact-info-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-info-icon i {
    font-size: 32px;
    color: var(--white);
}

.contact-info-box h5 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.contact-info-box p {
    margin-bottom: 0;
    font-size: 18px;
}

.contact-info-box a {
    color: var(--white);
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
}

.contact-info-box a:hover {
    color: var(--primary-red);
}

/* ========================================
   FORMS
   ======================================== */
.form-section {
    background: var(--white);
    padding: 50px;
    border: 1px solid var(--border-light);
}

.form-label {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.form-control,
.form-select {
    border: 1px solid var(--border-light);
    padding: 15px 20px;
    font-size: 16px;
    background: var(--white);
    border-radius: 0;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 0.2rem rgba(255, 0, 0, 0.1);
    background: var(--white);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* ========================================
   FOOTER
   ======================================== */
footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 60px 0 0;
}

.footer-column {
    margin-bottom: 40px;
}

.footer-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 30px;
    text-transform: uppercase;
    color: var(--white);
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-red);
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-contact-icon i {
    color: var(--primary-red);
    font-size: 18px;
}

.footer-contact-text {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.6;
}

.footer-contact-text a {
    color: var(--text-light);
    text-decoration: none;
}

.footer-contact-text a:hover {
    color: var(--primary-red);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-red);
    transform: translateY(-3px);
}

.footer-logo {
    background: var(--white);
    padding: 20px;
    border-radius: 0;
    text-align: center;
    margin-top: 20px;
}

.footer-logo img {
    max-width: 200px;
}

.footer-bottom {
    background: var(--darker-bg);
    padding: 25px 0;
    margin-top: 40px;
    text-align: center;
    color: var(--text-light);
    font-size: 15px;
}

.footer-bottom strong {
    color: var(--primary-red);
    font-weight: 600;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 991px) {
    h1 {
        font-size: 38px;
    }

    h2 {
        font-size: 32px;
    }

    h3 {
        font-size: 26px;
    }

    .section {
        padding: 60px 0;
    }

    .hero-slider,
    .hero-slider .carousel-item {
        height: 500px;
    }

    .hero-slider .carousel-caption h1 {
        font-size: 42px;
    }

    .about-content {
        flex-direction: column;
        gap: 40px;
    }

    .about-image {
        flex: 0 0 100%;
    }
}

@media (max-width: 768px) {
    .top-contact-bar .container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .top-contact-info {
        flex-direction: column;
        gap: 10px;
    }

    .hero-slider,
    .hero-slider .carousel-item {
        height: 400px;
    }

    .hero-slider .carousel-caption {
        left: 5%;
        right: 5%;
        max-width: 90%;
    }

    .hero-slider .carousel-caption h1 {
        font-size: 32px;
    }

    .hero-slider .carousel-caption p {
        font-size: 16px;
    }

    .page-header h1 {
        font-size: 36px;
    }

    .form-section {
        padding: 30px 20px;
    }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.bg-light {
    background: var(--light-gray) !important;
}

.bg-dark {
    background: var(--dark-bg) !important;
}

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

.mt-3 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mt-5 {
    margin-top: 3rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.pt-0 {
    padding-top: 0 !important;
}

.pb-0 {
    padding-bottom: 0 !important;
}