/* Global Styles */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@100;300;400;500;700&display=swap');
:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --text-color: #1f2937;
    --light-bg: #f3f4f6;
    --transition: all 0.3s ease;
}

body {
    font-family: 'raleway', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    padding: 0.2rem 0;
    transition: var(--transition);
}

.navbar-brand img {
    transition: var(--transition);
}

.nav-link {
    color: var(--text-color) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: var(--transition);
}

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

/* Hero Section */
.hero-slide {
    height: 100vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    color: white;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.about {
    background-image: url('../images/banner-one-bg.png');
}

.about-image {
    position: relative;
}

.about-image-shape {
    position: absolute;
}

.about-image .shape-1 {
    width: 350px;
    height: 350px;
    background-color: #ccdbf8;
    border-radius: 50%;
    border: 10px solid var(--white);
    outline: 20px solid #ccdbf8;
    bottom: -55px;
    right: 75px;
    z-index: -1;
    animation-duration: 13s;
}

.about-content h2 {
    text-transform: none;
    margin-bottom: 25px;
}

.about-content p {
    margin-bottom: 25px;
}

.about-content-service {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    gap: 20px;
}

.about-content-service-single {
    border: 1px solid var(--border-color-3);
    padding: 16px 22px;
    border-radius: 15px;
    width: 50%;
    box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.07);
    transition: 0.4s;
}

.about-content-service-single:hover {
    transform: translateY(-3px);
}

.about-content-service .service-top {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.about-content-service .service-top i {
    color: var(--primary-color-2);
    margin-right: 12px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--color-4);
    font-size: 25px;
}

.about-content-service p {
    margin: 0;
}

.about-bottom {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.about-bottom a {
    padding: 15px 30px 15px 15px;
    border-radius: 50px;
    background-color: #ccdbf8;
    font-size: 14px;
    text-decoration: none;
}

.about-bottom a:hover {
    background-color: var(--primary-color);
    color: white !important;
    transition: 0.4s;
    transition: all 0.4s;
}

.about-bottom-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.about-bottom-right img {
    width: 60px;
    height: 60px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 50%;
}

.about-bottom-right span {
    font-size: 14px;
    color: var(--p-color);
}

.about-subtitle {
    color: blue;
    margin-bottom: 20px;
    background-color: #ccdbf8;
    padding: 5px 10px;
    border-radius: 50px;
    display: inline-block;
}

.btn-two {
    padding: 10px 15px 10px 15px;
    border-radius: 50px;
    background-color: #ccdbf8;
    font-size: 14px;
    text-decoration: none;
}
.btn-two:hover {
    background-color: var(--primary-color);
    color: white;
    transition: 0.4s;
    transition: all 0.4s;
}


@media (max-width: 1399px) {
    .about-image .shape-1 {
        right: 80px;
    }
}

@media (max-width: 1199px) {
    .about-image .shape-1 {
        right: 0;
    }
}
@media (max-width: 767px) {
    .about-content {
        text-align: center;
    }

    .about-content-service {
        flex-direction: column;
        align-items: center;
    }

    .about-content-service-single {
        width: 100%;
    }
    .about-content-service .service-top {
        justify-content: center;
    }

    .contact-form {
        padding: 1.5rem !important;
       
    }
}


@media (max-width: 370px) {
    .about-content-service-single {
        width: 100%;
    }

    .contact-form {
        padding: 1.5rem !important;
       
    }
    
}

@media (max-width: 480px) {
    .about-image-shape {
        display: none;
    }

    .about-content p {
        font-size: 15px;
    }

    .about-image .image-2 {
        display: none;
    }

    .about-image .image-1 {
        width: 100%;
    }

    .about-image .experience-bar {
        right: 0;
        top: 32px;
    }
    
    .contact-form {
        padding: 1.5rem !important;
       
    }
}


/*About
.about-section {
    background-image : url('../images/banner-one-bg.png');
}
.about-section-image {
    position: relative;
  }
  .about-section-image-shape {
    position: absolute;
  }
  .about-section-image .shape-1 {
    width: 350px;
    height: 350px;
    background-color: #ccdbf8;
    border-radius: 50%;
    border: 10px solid var(--white);
    outline: 20px solid #ccdbf8;
    bottom: -55px;
    right: 75px;
    z-index: -1;
    animation-duration: 13s;
  }
*/
/* Services Section */
.service-card {
    transition: all 0.4s;
    border: none;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 3;
    position: relative;
    overflow: hidden;
    background-color: #fff;
    border: 2px solid transparent;
    text-align: center;         /* Center text */
    /* Default background */
}
.service-card:hover {
    border: 2px solid var(--primary-color);
}

.service-card.hover-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover .hover-accent {
    transform: scaleX(1);
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    z-index: -1;
}

/* Assign different background images */
.col-md-6.col-lg-4:nth-of-type(1) .service-card::before {
    background-image: url('../images/about.png');
}

.col-md-6.col-lg-4:nth-of-type(2) .service-card::before {
    background-image: url('../images/banner-three-1.jpg');
}

.col-md-6.col-lg-4:nth-of-type(3) .service-card::before {
    background-image: url('../images/about.png');
}

.col-md-6.col-lg-4:nth-of-type(4) .service-card::before {
    background-image: url('../images/banner-three-1.jpg');
}

.col-md-6.col-lg-4:nth-of-type(5) .service-card::before {
    background-image: url('../images/banner-three-1.jpg');
}

.col-md-6.col-lg-4:nth-of-type(6) .service-card::before {
    background-image: url('../images/banner-three-1.jpg');
}

/* Overlay color */
.service-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(6, 42, 38, 0.7803921569);
    /* Adjust the overlay color and opacity */
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    z-index: -1;
}

/* Show the image and overlay on hover */
.service-card:hover::before {
    opacity: 0.5;
}

.service-card:hover::after {
    opacity: 1;
}

/* Lift the card slightly when hovered */
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}

/* Change text color to white on hover */
.service-card:hover h3,
.service-card:hover p {
    color: white;
    transition: color 0.4s ease-in-out;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-card:hover p {
    font-size: 1rem;
    color: #fff;
}

/*
.service-card:hover a {
    font-size: .9rem;
}
*/

.service-card a:hover {
    /* color: var(--primary-color); */
    transition: 0.4s;
    transition: all 0.4s;
}

.service-card a {
    font-size: .9rem;
    color: var(--primary-color);
    transition: 0.4s;
    transition: all 0.4s;
    text-decoration: none;
}

.service-card .icon-wrapper {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    top: -20px;
}

.service-card:hover .icon-wrapper {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(var(--primary-color-rgb), 0.2);
}

.service-icon {
    color: white;
    font-size: 1.75rem;
    transition: transform 0.3s ease;
}

/* Counter Section */
/* Why Us Section */
.counter-box{
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#why-us .section-title {
    color: #2c3e50;
    padding-bottom: 1rem;
}

.title-underline {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.section-title:hover .title-underline {
    width: 120px;
}

.counter-box {
    background: white;
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    background: linear-gradient(45deg, #ffffff, #f8f9fa);
}

.counter-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

.counter-box:hover .icon-wrapper {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(var(--primary-color-rgb), 0.2);
}

.counter-box:hover .hover-accent {
    transform: scaleX(1);
}

.counter {
    color: #2c3e50;
    position: relative;
    display: inline-block;
}

/* Animation */
@keyframes counterPop {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.counter-animate {
    animation: counterPop 0.4s ease;
}


/* FAQ Section */
#faq{
    background-image: url('../images/banner-one-bg.png');
}
.faq-image-wrapper {
    overflow: hidden;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.faq-image-wrapper:hover {
    transform: translateY(-5px);
}

.faq-image-wrapper img {
    width: 80%;
    height: 80%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.faq-cta {
    width: 80%;
    transform: translateY(50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
}

.custom-accordion .accordion-button {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.125);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    padding: 1.25rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.custom-accordion .accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.custom-accordion .accordion-button:not(.collapsed) i {
    color: white !important;
}

.custom-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232c3e50'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    transition: transform 0.3s ease;
}

.custom-accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

.custom-accordion .accordion-body {
    background: rgba(248, 249, 250, 0.5);
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
}

/* Animation */
@keyframes accordionEntrance {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.custom-accordion .accordion-item {
    animation: accordionEntrance 0.6s ease forwards;
    opacity: 0;
}

.custom-accordion .accordion-item:nth-child(1) { animation-delay: 0.2s; }
.custom-accordion .accordion-item:nth-child(2) { animation-delay: 0.3s; }
.custom-accordion .accordion-item:nth-child(3) { animation-delay: 0.4s; }
.custom-accordion .accordion-item:nth-child(4) { animation-delay: 0.5s; }




/* CTA Section */

#cta .section-title {
    color: #2c3e50;
    padding-bottom: 1rem;
}

.contact-form {
    background: white;
    padding: 2.0rem;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.form-control {
    padding: 0.75rem;
    border-radius: 5px;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}


.hover-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-form:hover .hover-accent {
    transform: scaleX(1);
}



/* Client Scroll Animation */
.client-scroll-container {
    overflow: hidden;
    position: relative;
    white-space: nowrap;
}

.client-logo-track {
    display: inline-flex;
    transition: transform 0s linear; /* Remove animation */
}

.client-logo-track img {
    margin-right: 20px;
}

.client-logos img {
    height: 40px;
    margin: 0 2rem;
    filter: grayscale(1);
    transition: all 0.3s ease;
}

.client-logos img:hover {
    filter: grayscale(0);
    transform: scale(1.1);
}

/* Testimonial Card */
.testimonial-card {
    
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    background: white;
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    background: linear-gradient(45deg, #ffffff, #f8f9fa);
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.testimonial-card.hover-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.testimonial-card:hover .hover-accent {
    transform: scaleX(1);
}





/* Blog Card */
.blog-card {
    border: none;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 2px solid transparent;
    overflow: hidden;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}
.blog-card:hover .hover-accent {
    transform: scaleX(1);
}

.blog-card a {
    padding: 15px 30px 15px 15px;
    border-radius: 50px;
    background-color: #ccdbf8;
    font-size: 14px;
    text-decoration: none;
}

.blog-card a:hover {
    background-color: var(--primary-color);
    color: white;
    transition: 0.4s;
    transition: all 0.4s;
}



/* Team Card */
.team-card img {
    border-radius: 50% !important;
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin: 1rem auto 0;
}

.team-card .card-title {
    transition: color 0.3s ease;
}

.team-card:hover .card-title {
    color: #0d6efd;
}

/*social-links*/
.social-links a {
    filter: grayscale(100%); /* Start with grayscale */
    transition: filter 0.3s ease; /* Smooth transition */
}

.social-links a:hover {
    filter: grayscale(0%); /* Remove grayscale on hover */
}


.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    text-decoration: none;
}

.whatsapp-float i {
    font-size: 28px;
}

.whatsapp-float:hover {
    background-color: #1ebe57;
}

/* Footer */
footer {
    background-color: #1f2937;
    line-height: 2.3;
}

footer a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

footer a:hover {
    color: var(--primary-color);
}

.social-icons a {
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-icons a:hover {
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .service-card {
        margin-bottom: 1.5rem;
    }
}

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

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

.fade-in {
    animation: fadeIn 1s ease-out;
}

/* Service Carousel */
.service-carousel {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.service-carousel .carousel-item {
    padding: 2rem;
    text-align: center;
}

/* Success Stories */
.success-story {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.success-story-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    color: white;
    text-align: center;
}

.success-story:hover .success-story-overlay {
    opacity: 1;
}