/* Why Choose Us Section Styles */


.why-choose-us {
    background-color: #cccccc;
}

.custom-card {
    border: 1px solid #ebebeb;
    border-radius: 15px;
    overflow: hidden;
}

.transition-card {
    transition: all 0.3s ease;
}

.transition-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.icon-container {
    color: #1a76d1;
    transition: all 0.3s ease;
}

.custom-card:hover .icon-container {
    transform: scale(1.1);
}

.card-title {
    color: #2c4964;
    font-weight: 600;
}

.card-text {
    color: #6c757d;
}

.section-title h2 {
    color: #2c4964;
    font-size: 2.5rem;
    font-weight: 700;
}

.section-title p.lead {
    color: #6c757d;
    font-size: 1.25rem;
}

/* Footer Styles */
.footer {
    background-color: #1f2937;
    color: #fff;
}

.footer h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #fff;
}

.footer h4 {
    font-size: 1.25rem;
    font-weight: 500;
    color: #fff;
}

.footer p {
    color: #d1d5db;
    line-height: 1.6;
}

.social-links .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: all 0.3s ease;
}

.social-links .social-link:hover {
    background-color: #3b82f6;
    transform: translateY(-3px);
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #3b82f6;
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-contact li {
    color: #d1d5db;
}
.footer-contact li span {
    text-align: left;
}

.footer-contact i {
    color: #3b82f6;
    font-size: 1.25rem;
}

hr {
    border-color: rgba(255, 255, 255, 0.1);
}

.copyright {
    color: #9ca3af;
    font-size: 0.9rem;
}

.copyright strong {
    color: #fff;
}

/* Contact Section Styles */
.contact-section {
    background-color: #cccccc;
}

.contact-section .subtitle {
    color: #1a76d1;
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 1rem;
}

.contact-section .title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c4964;
    margin-bottom: 1rem;
}
.contact-form-wrapper{
    border: none;
    border-radius: 10px;
}
.section-title p {
    font-size: 14px;
    font-weight: 500;
}

.contact-info {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.contact-info-header h3 {
    color: #2c4964;
    font-size: 1.5rem;
    font-weight: 600;
}

.icon-box {
    width: 45px;
    height: 45px;
    background-color: #1a76d1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box i {
    color: #ffffff;
    font-size: 1.25rem;
}

.info-content h5 {
    color: #2c4964;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.info-content p {
    color: #6c757d;
    margin-bottom: 0;
}

.contact-form-wrapper {
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.form-label {
    color: #2c4964;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-control {
    border: 1px solid #dee2e6;
    padding: 0.75rem 1.25rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #1a76d1;
    box-shadow: 0 0 0 0.2rem rgba(26, 118, 209, 0.25);
}

.btn-primary {
    background-color: #1a76d1;
    border: none;
    padding: 1rem 2rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #1557a0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 118, 209, 0.3);
}

@media (max-width: 768px) {
    .contact-section .title {
        font-size: 2rem;
    }

    .contact-info,
    .contact-form-wrapper {
        padding: 1.5rem !important;
    }
}
/* Services Section Styles */
.services {
    background-color: #cccccc;
    padding: 80px 0;
}

.service-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-img {
    position: relative;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.05);
}

.service-content {
    padding: 1rem;
}

.service-content h3 {
    color: #2c4964;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.service-content p {
    color: #6c757d;
    /* margin-bottom: 1rem; */
    font-size: 0.95rem;
    line-height: 1.5;
}

.service-btn {
    color: #1a76d1;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.service-btn:hover {
    color: #1557a0;
    gap: 0.75rem;
}

@media (max-width: 991px) {
    .service-card {
        margin-bottom: 1rem;
    }
}
/* About Section Image Styles */
#about{
    padding: 80px 0px;
}
.about-img-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.about-img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-img-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, rgba(26, 118, 209, 0.1), rgba(0, 0, 0, 0));
    pointer-events: none;
}

.about-img-wrapper:hover .about-img {
    transform: scale(1.05);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .about-img {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .about-img-wrapper {
        margin-top: 2rem;
    }
    .about-img {
        min-height: 250px;
    }
}