/* Services Section Styles */
.services-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

/* Feature Cards */
.feature-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    background-color: #4a90e2;
    color: #fff;
    font-size: 30px;
    display: inline-block;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background-color: #FF0000;
    transform: scale(1.1);
}

.feature-image {
    margin-top: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-image img {
    transform: scale(1.05);
}

/* Service Cards */
.service-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    background-color: #4a90e2;
    color: #fff;
    font-size: 30px;
    display: inline-block;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background-color: #FF0000;
    transform: scale(1.1);
}

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.service-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.service-content li {
    margin-bottom: 10px;
    color: #666;
    display: flex;
    align-items: center;
}

.service-content .fa-check {
    color: #FF0000;
    margin-right: 10px;
}

.service-image {
    margin-top: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

/* Benefit Cards */
.single-benefit {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.single-benefit:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.benefit-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.benefit-caption h3 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.benefit-caption p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Section Titles */
.section-tittle {
    margin-bottom: 60px;
}

.section-tittle .subtitle {
    color: #FF0000;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
    display: block;
}

.section-tittle .title {
    color: #333;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(45deg, #4a90e2, #FF0000);
    padding: 80px 0;
}

.cta-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 0;
}

.cta-section .btn-light {
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.cta-section .btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .hero-section {
        min-height: 60vh;
    }

    .section-tittle .title {
        font-size: 30px;
    }

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

    .cta-section .btn-light {
        margin-top: 20px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        min-height: 50vh;
    }

    .section-tittle .title {
        font-size: 26px;
    }

    .feature-card,
    .service-card,
    .benefit-card {
        margin-bottom: 20px;
    }
}

/* Animation Classes */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* Custom Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.aos-animate {
    animation: fadeInUp 0.5s ease forwards;
}

/* Why Choose Us Section */
.why-choose-content {
    padding-right: 30px;
}

.why-choose-content .feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.why-choose-content .feature-item i {
    font-size: 24px;
    margin-right: 20px;
    margin-top: 5px;
}

.why-choose-content .feature-text h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.why-choose-content .feature-text p {
    color: #666;
    margin-bottom: 0;
    line-height: 1.6;
}

.why-choose-image {
    position: relative;
    padding: 20px;
}

.why-choose-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.why-choose-image:hover img {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

@media (max-width: 991px) {
    .why-choose-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .why-choose-image {
        text-align: center;
    }
}

/* Custom Card Styles */
.card {
    padding: 20px;
    max-width: 100%;
    border-radius: 20px;
    background: #e8e8e8;
    box-shadow: 5px 5px 6px #dadada,
        -5px -5px 6px #f6f6f6;
    transition: 0.4s;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-10px);
}

.card-image {
    background-color: #c9c9c9;
    border-radius: 15px;
    box-shadow: inset 8px 8px 10px #c3c3c3,
        inset -8px -8px 10px #cfcfcf;
    height: 150px;
    margin-bottom: 20px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    display: block;
}

.card-title {
    font-size: 18px;
    font-weight: 800;
    color: #0739a6;
    margin: 20px 0 10px 0;
    line-height: 1.2;
}

.card-body {
    margin: 0;
    color: rgb(31, 31, 31);
    font-size: 15px;
}