:root {
    --primary-color: #e30613; /* Red */
    --secondary-color: #000000; /* Black */
    --accent-color: #ffffff; /* White */
    --light-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --dark-gray: #343a40;
}

/* General styles */
body {
    padding-top: 70px;
    font-family: 'Montserrat', sans-serif;
    color: #333;
    line-height: 1.6;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

    a:hover {
        color: #b1050f;
        text-decoration: none;
    }

.btn {
    border-radius: 4px;
    font-weight: 500;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

    .btn-primary:hover {
        background-color: #b1050f;
        border-color: #b1050f;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

.btn-outline-light {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

    .btn-outline-light:hover {
        background-color: var(--accent-color);
        color: var(--primary-color);
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

    .btn-outline-primary:hover {
        background-color: var(--primary-color);
        border-color: var(--primary-color);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

.text-primary {
    color: var(--primary-color) !important;
}

.bg-custom {
    background-color: white;
}

.container {
    max-width: 1200px;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

/* Navigation */
.navbar {
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 0px 0;
}

.navbar-brand {
    font-weight: 700;
    color: var(--accent-color);
    font-size: 24px;
}

    .navbar-brand img {
        height: 65px;
        transition: all 0.3s ease;
    }

    .navbar-brand:hover img {
        transform: scale(1.05);
    }

.navbar-nav .nav-link {
    color: black;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    position: relative;
}

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

    .navbar-nav .nav-link:hover {
        color: black;
    }

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

.navbar-nav .dropdown-menu {
    min-width: 200px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.navbar-nav .dropdown-item {
    padding: 10px 15px;
    font-size: 14px;
}

.navbar-nav .dropdown-item:hover {
    background-color: #f8f9fa;
}

/* Hero Banner section / Image slider - Enhanced */
.hero-banner {
    position: relative;
    margin-top: -16px;
    height: 650px;
    overflow: hidden;
}

    .hero-banner .slide {
        position: relative;
        height: 650px;
        background-size: cover;
        background-position: center;
        position: relative;
    }

        .hero-banner .slide:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
        }

.slide-content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 10%;
    max-width: 650px;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

    .slide-content h2 {
        font-size: 52px;
        font-weight: 700;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .slide-content p {
        font-size: 22px;
        margin-bottom: 30px;
        line-height: 1.6;
    }

.slide-buttons {
    display: flex;
    gap: 15px;
}

/* Custom banner navigation */
.banner-nav {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
}

    .banner-nav button {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        border: 2px solid white;
        color: white;
        font-size: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
    }

        .banner-nav button:hover {
            background: var(--primary-color);
            border-color: var(--primary-color);
            transform: scale(1.1);
        }

/* Section padding */
.section-padding {
    padding: 100px 0;
}

/* Who We Are Section - Enhanced */
.who-we-are .section-title {
    position: relative;
    margin-bottom: 40px;
    font-weight: 700;
    font-size: 36px;
    color: var(--secondary-color);
}

    .who-we-are .section-title:after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 0;
        width: 70px;
        height: 3px;
        background-color: var(--primary-color);
    }

.who-we-are .lead {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.7;
}

/* Partners card */
.partners-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

    .partners-card .card-title {
        color: var(--secondary-color);
        font-weight: 600;
        position: relative;
        padding-bottom: 15px;
    }

        .partners-card .card-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: var(--primary-color);
        }

/* Partners Section - Enhanced */
.partners {
    position: relative;
}

    .partners:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('/Content/images/pattern.png');
        opacity: 0.05;
        z-index: 0;
    }

.section-title.text-center {
    position: relative;
    margin-bottom: 50px;
    font-weight: 700;
    font-size: 36px;
    color: var(--secondary-color);
}

    .section-title.text-center:after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 70px;
        height: 3px;
        background-color: var(--primary-color);
    }

.partner-logo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 140px;
    margin-bottom: 30px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .partner-logo:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .partner-logo img {
        max-width: 100%;
        max-height: 80px;
        filter: grayscale(100%);
        opacity: 0.7;
        transition: all 0.3s ease;
    }

    .partner-logo:hover img {
        filter: grayscale(0%);
        opacity: 1;
    }

.partner-name {
    position: absolute;
    bottom: -50px;
    width: 100%;
    padding: 10px;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    font-size: 14px;
    transition: all 0.3s ease;
}

.partner-logo:hover .partner-name {
    bottom: 0;
}

/* Services Section - Enhanced */
.services {
    background-color: white;
}

.service-item {
    text-align: center;
    margin-bottom: 30px;
    padding: 40px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    border-bottom: 3px solid transparent;
}

    .service-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        border-bottom: 3px solid var(--primary-color);
    }

.service-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 90px;
    height: 90px;
    margin-bottom: 30px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    font-size: 36px;
    transition: all 0.3s ease;
}

.service-item:hover .service-icon {
    transform: rotateY(180deg);
    background-color: var(--secondary-color);
}

.service-item h4 {
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 22px;
    color: var(--secondary-color);
}

.service-item p {
    color: #666;
    line-height: 1.6;
}

/* Testimonials - Enhanced */
.testimonials {
    padding: 100px 0;
    background-color: var(--light-gray);
    position: relative;
}

    .testimonials:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('/Content/images/pattern.png');
        opacity: 0.05;
    }

.testimonial-item {
    background-color: white;
    border-radius: 10px;
    padding: 40px;
    margin: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    border-top: 3px solid transparent;
}

    .testimonial-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        border-top: 3px solid var(--primary-color);
    }

.testimonial-content {
    position: relative;
    padding-left: 30px;
    margin-bottom: 30px;
}

    .testimonial-content:before {
        content: '\201C';
        position: absolute;
        left: 0;
        top: -15px;
        font-size: 80px;
        color: var(--primary-color);
        opacity: 0.3;
        line-height: 1;
        font-family: serif;
    }

    .testimonial-content p {
        font-style: italic;
        line-height: 1.8;
        color: #555;
    }

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

.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 3px solid var(--light-gray);
}

    .testimonial-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.testimonial-info h5 {
    margin-bottom: 5px;
    font-weight: 600;
    color: var(--secondary-color);
}

.testimonial-info p {
    margin-bottom: 0;
    color: #6c757d;
    font-size: 14px;
}

/* Our Customers - Enhanced */
.our-customers {
    padding: 80px 0;
    background-color: var(--light-gray);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.fadeInDown {
    animation-name: fadeInDown;
}

.fadeInUp {
    animation-name: fadeInUp;
}

.fadeIn {
    animation-name: fadeIn;
}

.delay-1s {
    animation-delay: 0.5s;
}

.delay-2s {
    animation-delay: 1s;
}

/* Custom carousel controls */
.owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9) !important;
    color: var(--secondary-color) !important;
    width: 50px;
    height: 50px;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 24px !important;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

    .owl-nav button:hover {
        background-color: var(--primary-color) !important;
        color: white !important;
        transform: translateY(-50%) scale(1.1);
    }

.owl-prev {
    left: 20px;
}

.owl-next {
    right: 20px;
}

.owl-dots {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
}

.owl-dot {
    display: inline-block;
    margin: 0 5px;
}

    .owl-dot span {
        display: block;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.5) !important;
        transition: all 0.3s ease;
    }

    .owl-dot.active span {
        background-color: var(--primary-color) !important;
        transform: scale(1.3);
    }

/* Responsive adjustments */
@media (max-width: 1200px) {
    .slide-content h2 {
        font-size: 42px;
    }
}

@media (max-width: 992px) {
    .hero-banner, .hero-banner .slide {
        height: 550px;
    }

    .slide-content {
        left: 5%;
        max-width: 90%;
    }

        .slide-content h2 {
            font-size: 36px;
        }

        .slide-content p {
            font-size: 18px;
        }

    .section-title {
        font-size: 32px;
    }

    .section-padding {
        padding: 70px 0;
    }

    .service-item {
        padding: 30px 15px;
    }

    .testimonial-item {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .hero-banner, .hero-banner .slide {
        height: 450px;
    }

    .slide-content {
        top: 50%;
        max-width: 90%;
    }

        .slide-content h2 {
            font-size: 28px;
            margin-bottom: 10px;
        }

        .slide-content p {
            font-size: 16px;
            margin-bottom: 20px;
        }

    .banner-nav button {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .section-padding {
        padding: 60px 0;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .hero-banner, .hero-banner .slide {
        height: 400px;
    }

    .slide-content h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .slide-content p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .slide-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .btn {
        padding: 8px 15px;
        font-size: 14px;
        width: 100%;
    }

    .banner-nav {
        padding: 0 10px;
    }

        .banner-nav button {
            width: 35px;
            height: 35px;
            font-size: 14px;
        }

    .section-padding {
        padding: 40px 0;
    }

    .partner-logo {
        height: 120px;
    }
}

/* Footer styling */
.footer {
    background-color: #000;
    color: white;
}

    .footer h5 {
        font-weight: 600;
        margin-bottom: 20px;
        position: relative;
        padding-bottom: 10px;
    }

        .footer h5:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 2px;
            background-color: var(--primary-color);
        }

    .footer p {
        font-size: 14px;
        line-height: 1.6;
    }

    .footer a {
        color: #e30613;
        transition: all 0.3s ease;
    }

        .footer a:hover {
            color: #fff;
            text-decoration: none;
        }

.contact-info p {
    margin-bottom: 8px;
}

.social-icons a {
    display: inline-block;
    width: 32px;
    height: 32px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 32px;
    color: white;
    margin-right: 5px;
    transition: all 0.3s ease;
}

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

.bottom-footer {
    background-color: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
}
