/* Reset and variables */
:root {
    --primary-color: #1a5b8e;
    --secondary-color: #3c95c4;
    --accent-color: #9bd0cc;
    --text-color: #333;
    --light-color: #f8f9fa;
    --dark-color: #2b3152;
    --border-color: #dee2e6;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
    overflow-x: hidden;
}

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

a:hover {
    color: var(--secondary-color);
}

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Section */
.header-section {
    background-color: var(--light-color);
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-widget ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.header-widget li {
    margin-right: 25px;
    font-size: 14px;
    color: var(--dark-color);
    display: flex;
    align-items: center;
}

.header-widget i {
    margin-right: 8px;
    color: var(--primary-color);
}

.header-widget a {
    color: var(--dark-color);
    text-decoration: none;
}

.header-widget a:hover {
    color: var(--primary-color);
}

.header-social ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: flex-end;
}

.header-social li {
    margin-left: 15px;
}

.header-social a {
    color: var(--dark-color);
    font-size: 14px;
    transition: var(--transition);
}

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

/* Navbar Section */
.navbar-area {
    position: sticky;
    top: 0;
    z-index: 999;
    padding: 15px 0;
    box-shadow: var(--shadow);
}

.navbar-area .navbar-brand h2 {
    color: white;
    font-size: 24px;
    margin: 0;
}

.navbar-area .navbar-nav .nav-link {
    color: white;
    margin: 0 15px;
    transition: color 0.3s ease;
}

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

.navbar-button a {
    background: var(--gradient);
    color: white;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: var(--transition);
}

.navbar-button a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    color: white;
}

.navbar-area .navbar-toggler {
    margin-left: auto;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.7)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Home Section */
.home-section {
    background-color: transparent;
    color: white;
    padding: 0;
}

.home-slider-item {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
    background-blend-mode: normal;
}

.home-slider-item:before {
    display: none;
}

.d-table {
    display: table;
    width: 100%;
    height: 100%;
}

.d-table-cell {
    display: table-cell;
    vertical-align: middle;
}

.home-text {
    max-width: 800px;
    position: relative;
    z-index: 1;
    color: white;
    text-align: left;
}

.home-text h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.home-text h1 span {
    color: var(--primary-color);
}

.home-text p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.7;
}

.theme-button {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.default-btn {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

.active-btn {
    background: var(--gradient);
    border-color: transparent;
}

.default-btn:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.active-btn:hover {
    background: white;
    color: var(--primary-color);
}

.home-counters {
    margin: 30px 0;
}

.counter-item h3 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.counter-item p {
    color: white;
    opacity: 0.7;
}

.home-image img {
    max-width: 500px;
    border-radius: var(--border-radius);
}

/* Service Section */
.service-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0 70px;
}

.section-head {
    text-align: center;
    margin-bottom: 50px;
}

.section-head h2 {
    font-size: 36px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-head h2 span {
    color: var(--primary-color);
}

.section-head p {
    max-width: 700px;
    margin: 0 auto;
}

.service-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    background-color: white;
    transition: var(--transition);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card i {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    transition: var(--transition);
}

.service-card p {
    margin-bottom: 25px;
}

.service-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    z-index: -1;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.5s ease;
}

.service-card:hover:before,
.service-card.active-service:before {
    transform: scaleY(1);
}

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

.service-card:hover i,
.service-card.active-service i,
.service-card:hover h3,
.service-card.active-service h3,
.service-card:hover p,
.service-card.active-service p {
    color: white;
}

.service-card .default-btn {
    background: var(--gradient);
    border: none;
    color: white;
    display: block;
    margin: 0 auto;
    width: fit-content;
}

.service-card:hover .default-btn,
.service-card.active-service .default-btn {
    background: white;
    color: var(--primary-color);
}

.service-shapes svg {
    position: absolute;
    z-index: -1;
    opacity: 0.1;
}

.service-shapes .shape-1 {
    top: 20%;
    left: 5%;
    width: 100px;
    height: 100px;
}

.service-shapes .shape-2 {
    bottom: 10%;
    right: 5%;
    width: 150px;
    height: 150px;
}

/* Why Choose Section */
.why-choose-section {
    position: relative;
    background-color: var(--light-color);
    padding: 100px 0;
}

.why-choose-bg {
    position: relative;
}

.why-choose-img {
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background-image: url('/images (6).jpg');
    background-size: cover;
    background-position: center;
}

@media (max-width: 992px) {
    .why-choose-img {
        display: none;
    }
}

.why-choose-text {
    margin-bottom: 30px;
}

.why-choose-accordian .card {
    border: none;
    margin-bottom: 15px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.why-choose-accordian .card-header {
    padding: 0;
    border: none;
    background-color: transparent;
}

.why-choose-accordian .btn {
    display: block;
    width: 100%;
    text-align: left;
    padding: 15px 20px;
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-color);
    position: relative;
    background-color: white;
    border-radius: var(--border-radius) !important;
    transition: var(--transition);
}

.why-choose-accordian .btn:hover,
.why-choose-accordian .btn:not(.collapsed) {
    color: white;
    background: var(--gradient);
}

.why-choose-accordian .card-body {
    padding: 20px;
    background-color: white;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
}

.why-choose-contact {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background: white;
    padding: 20px;
    border-radius: var(--border-radius);
}

.why-choose-contact form {
    flex: 1;
    display: flex;
    gap: 15px;
}

.why-choose-contact .form-group {
    flex: 1;
    margin: 0;
}

.why-choose-contact .form-control {
    height: 50px;
    border-radius: var(--border-radius);
}

.why-choose-contact button {
    background: var(--gradient);
    border: none;
    height: 50px;
    padding: 0 25px;
    border-radius: var(--border-radius);
}

.why-choose-contact p {
    margin: 0 0 0 20px;
    color: var(--primary-color);
    font-weight: 500;
}

@media (min-width: 992px) {
    /* Why Choose Section Centering */
    .why-choose-section .why-choose-text {
        text-align: center;
    }

    .why-choose-section .why-choose-accordian {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .why-choose-accordian .card {
        width: 80%; /* Adjust width as needed */
    }

    .why-choose-contact {
        width: 80%; /* Match accordion width */
        margin: 30px auto;
        justify-content: center;
    }

    /* Contact Section Centering */
    .contact-section .contact-text {
        text-align: center;
        font-size: 1.1em;
    }

    .contact-section .contact-form {
        display: flex;
        justify-content: center;
    }

    .contact-section .contact-form form {
        width: 80%; /* Adjust width as needed */
    }
}

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

.process-card {
    text-align: center;
    padding: 40px 30px;
    background-color: white;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    margin-bottom: 30px;
    transition: var(--transition);
    position: relative;
}

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

.process-card i {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.process-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.process-card img {
    width: 100px;
    margin: 20px auto 0;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0 70px;
    background-color: var(--light-color);
}

.price-card-area {
    background-color: white;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: var(--transition);
}

.price-card-area:hover,
.price-card-area.active-price {
    transform: translateY(-10px);
}

.price-card-area.active-price {
    background: var(--gradient);
    color: white;
}

.price-head-text h4 {
    font-size: 24px;
    margin-bottom: 15px;
}

.price-head-text h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.price-head-text h2 span {
    font-size: 48px;
    font-weight: 700;
}

.plan-features {
    margin-bottom: 30px;
}

.plan-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
}

.plan-features i {
    margin-right: 10px;
    color: var(--primary-color);
    min-width: 20px;
    text-align: center;
}

.price-card-area.active-price .plan-features li {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.price-card-area.active-price .plan-features i {
    color: white;
}

.price-card-area:hover .plan-features i {
    color: white;
}

.plan-features li {
    color: var(--text-color);
}

.price-card-area.active-price .plan-features li {
    color: white;
}

.price-card-area:hover .plan-features li {
    color: white;
}

.plan-btn a {
    display: inline-block;
    padding: 12px 30px;
    background: var(--gradient);
    color: white;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
}

.price-card-area.active-price .plan-btn a {
    background: white;
    color: var(--primary-color);
}

.price-card-area:hover .plan-btn a {
    background: white;
    color: var(--primary-color);
}

.plan-btn a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.price-card-area:hover .price-head-text h4 {
    color: white;
}

.price-card-area:hover .price-head-text h2 {
    color: white;
}

/* Counter Section */
.counter-section {
    background: var(--gradient);
    padding: 100px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.offer-text h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.offer-text span {
    font-weight: 700;
}

.counter-area {
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
}

.counter-text {
    text-align: center;
    margin-bottom: 30px;
}

.counter-text h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.counter-text p {
    font-size: 18px;
}

/* Testimonial Section */
.testimonial-section {
    padding: 0px 0;
    background-color: #f9f9f9;
}

.srv2-feedback-area {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.srv2-feedback-area::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f9f9f9;
    opacity: 0.9;
    z-index: -1;
}

.srv2-feedback-top {
    margin-bottom: 50px;
}

.bixol-title-area {
    margin-bottom: 30px;
}

.bixol-subtitle {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.bixol-title-area h3 {
    font-size: 32px;
    margin-bottom: 0;
    line-height: 1.3;
}

.bixol-title-area h3 span {
    color: var(--primary-color);
}

.bf-desc p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-color);
}

.feedback-single {
    background-color: #fff;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
}

.feedback-single p {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-color);
}

.srv2-clients-info {
    display: flex;
    align-items: center;
}

.clients-thumb {
    margin-right: 20px;
}

.clients-thumb span {
    display: block;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
}

.clients-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.clients-info h5 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.clients-info span {
    display: block;
    font-size: 14px;
    color: var(--primary-color);
}

.slick-dots {
    text-align: center;
    margin-top: 30px;
}

.slick-dots li {
    display: inline-block;
    margin: 0 5px;
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 15px;
    height: 15px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    transition: var(--transition);
}

.slick-dots li.slick-active button {
    background-color: var(--primary-color);
}

.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    opacity: 0;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}
/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}

.slick-prev:before,
.slick-next:before
{
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;

    opacity: .75;
    color: white;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev
{
    left: 10px;
}
[dir='rtl'] .slick-prev
{
    right: 10px;
    left: auto;
}
.slick-prev:before
{
    content: '‹';
}
[dir='rtl'] .slick-prev:before
{
    content: '›';
}

.slick-next
{
    right: 10px;
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: 10px;
}
.slick-next:before
{
    content: '›';
}
[dir='rtl'] .slick-next:before
{
    content: '‹';
}

/* Dots */
.slick-dotted.slick-slider
{
    margin-bottom: 30px;
}

.slick-dots
{
    position: absolute;
    bottom: -25px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: '•';
    text-align: center;

    opacity: .25;
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: .75;
    color: black;
}

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

.contact-area {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

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

.contact-text {
    padding: 40px;
}

.contact-form {
    margin-top: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    height: 50px;
    border-radius: var(--border-radius);
    padding: 10px 15px;
    border: 1px solid var(--border-color);
}

textarea.form-control {
    height: auto;
}

.page-btn {
    background: var(--gradient);
    border: none;
    color: white;
    width: 100%;
    transition: var(--transition);
}

.page-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.form-success {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    text-align: center;
    padding: 20px;
}

.form-success.active {
    opacity: 1;
    visibility: visible;
}

.form-success i {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

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

.faq-section .accordion-item {
    border: 1px solid var(--border-color);
    margin-bottom: 10px;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
}

.faq-section .accordion-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.faq-section .accordion-button {
    background-color: white;
    color: var(--text-color);
    padding: 15px 20px;
    font-size: 18px;
    font-weight: 500;
    border-radius: 0;
    box-shadow: none;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.faq-section .accordion-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    z-index: -1;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.5s ease;
}

.faq-section .accordion-button:hover:before,
.faq-section .accordion-button:not(.collapsed):before {
    transform: scaleY(1);
}

.faq-section .accordion-button:hover,
.faq-section .accordion-button:not(.collapsed) {
    color: white;
}

.faq-section .accordion-button:hover i,
.faq-section .accordion-button:not(.collapsed) i {
    color: white;
}

.faq-section .accordion-button:focus {
    border-color: transparent;
    box-shadow: none;
}

.faq-section .accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-plus' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
    transition: transform 0.3s ease-in-out;
    filter: invert(1);
}

.faq-section .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-dash' viewBox='0 0 16 16'%3E%3Cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E");
    transform: rotate(180deg);
    filter: invert(1);
}

.faq-section .accordion-body {
    padding: 20px;
    background-color: white;
}

.faq-section .accordion-item:hover .accordion-body {
    background-color: rgba(26, 91, 142, 0.05); /* Subtle background change */
}

/* Work With Us Section */
.work-with-us-section .looking-for-list li,
.work-with-us-section .work-benefits li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    position: relative; 
}

.work-with-us-section .looking-for-list i,
.work-with-us-section .work-benefits i {
    margin-right: 10px;
    color: var(--primary-color);
    width: 25px; 
    text-align: center;
    position: relative;
    z-index: 1;
}

.work-with-us-section .looking-for-list .looking-text,
.work-with-us-section .work-benefits .benefit-text {
    position: relative;
    left: 0.4mm; 
    transition: color 0.3s ease;
}

.work-with-us-section .looking-for-list li:hover .looking-text,
.work-with-us-section .work-benefits li:hover .benefit-text {
    color: white;
}

.looking-for-list, 
.work-benefits {
    list-style-type: none;
    padding: 0;
}

.work-with-us-section .who-we-want ul,
.work-with-us-section .why-join-us ul {
    margin-top: 15px;
}

/* Footer Section */
.footer-area {
    background-color: var(--dark-color);
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 0;
}

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

.footer-widget h2 {
    color: white;
    font-size: 24px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.footer-widget h2 i {
    margin-right: 10px;
}

.footer-widget h3 {
    color: white;
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--gradient);
}

.footer-widget p {
    margin-bottom: 20px;
}

.footer-widget.pl-40 {
    padding-left: 40px;
}

.footer-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-widget li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer-widget li i {
    margin-right: 10px;
    color: var(--primary-color);
}

.footer-widget a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    text-decoration: none;
}

.footer-widget a:hover {
    color: white;
    margin-left: 5px;
    text-decoration: none;
}

.find-us li {
    display: flex;
    margin-bottom: 15px;
}

.bottom-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    margin-top: 40px;
}

.footer-social ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-social li {
    margin-right: 15px;
}

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

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

.copyright-text p {
    margin: 0;
}

/* Back to top */
.top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.top-btn.active {
    opacity: 1;
    visibility: visible;
}

.top-btn:hover {
    transform: translateY(-5px);
}

/* Quick action bar */
.quick-action-bar {
    background-color: #1976D2;
    padding: 10px 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.action-buttons {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.action-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1976D2;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.action-btn:hover {
    transform: scale(1.1);
    color: white;
}

/* Bubble Animation */
.bubble-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    background: linear-gradient(to bottom, rgba(220, 230, 240, 0.3), rgba(255, 255, 255, 0.1));
    z-index: -1;
}

.home-section .bubble-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

#cleaningBubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.bubble {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    animation: float 4s infinite, move 4s infinite;
    opacity: 0;
    animation-fill-mode: forwards;
    animation-delay: calc(var(--animation-delay) * 1s);
    z-index: -1;
    opacity: 0.6;
    filter: blur(1px);
}

.bubble.x1 {
    left: 10%;
    width: 30px;
    height: 30px;
    --animation-delay: 0;
}

.bubble.x2 {
    left: 30%;
    width: 40px;
    height: 40px;
    --animation-delay: 1;
}

.bubble.x3 {
    left: 50%;
    width: 25px;
    height: 25px;
    --animation-delay: 2;
}

.bubble.x4 {
    left: 70%;
    width: 35px;
    height: 35px;
    --animation-delay: 1.5;
}

.bubble.x5 {
    left: 90%;
    width: 20px;
    height: 20px;
    --animation-delay: 2.5;
}

@keyframes float {
    0% {
        transform: translateY(100vh) scale(1);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        transform: translateY(-10vh) scale(1.2);
        opacity: 0;
    }
}

@keyframes move {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(50px);
    }
    100% {
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .container {
        width: 95%;
    }

    .navbar-area .navbar-nav {
        text-align: center;
    }

    .navbar-area .navbar-nav .nav-item {
        margin: 5px 0;
    }

    .home-section {
        padding: 0;
    }

    .home-text h1 {
        font-size: 3rem;
    }

    .home-text p {
        font-size: 1.2rem;
    }

    .home-image img {
        max-width: 100%;
    }

    .service-section {
        padding: 80px 0 50px;
    }

    .section-head h2 {
        font-size: 2.5rem;
    }

    .why-choose-section {
        padding: 80px 0;
    }

    .why-choose-img {
        height: 350px;
    }

    .process-section {
        padding: 80px 0 50px;
    }

    .pricing-section {
        padding: 80px 0 50px;
    }

    .offer-text h2 {
        font-size: 2.5rem;
    }

    .counter-section {
        padding: 80px 0;
    }

    .testimonial-section {
        padding: 80px 0;
    }

    .contact-section {
        padding: 80px 0;
    }

    .footer-area {
        padding: 60px 0 0;
    }

    .navbar-area .navbar-brand-container {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .navbar-area .navbar-brand {
        margin: 0 auto;
    }

    .white-toggler {
        position: absolute;
        right: 15px;
        top: 15px;
    }

    .white-toggler .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    }
}

@media (max-width: 768px) {
    .header-widget ul {
        flex-direction: column;
        align-items: center;
    }

    .header-widget li {
        margin: 5px 0;
    }

    .header-social {
        text-align: center !important;
        margin-top: 10px;
    }
    .header-social ul {
        justify-content: center;
    }

    .navbar-area .navbar-brand {
        margin-right: 0;
    }

    .navbar-area .navbar-toggler {
        margin-left: auto;
    }

    .home-text h1 {
        font-size: 2.5rem;
    }

    .home-text p {
        font-size: 1.1rem;
    }

    .why-choose-img {
        height: 300px;
    }

    .why-choose-contact {
        flex-direction: column;
    }

    .why-choose-contact form {
        margin-bottom: 20px;
    }

    .why-choose-contact p {
        margin: 0;
    }

    .contact-img {
        display: none;
    }

    .footer-widget.pl-40 {
        padding-left: 0;
    }

    body {
        padding-bottom: 60px;
    }
}

@media (max-width: 576px) {
    .home-text h1 {
        font-size: 2rem;
    }

    .home-text p {
        font-size: 1rem;
    }

    .counter-text h2 {
        font-size: 2.5rem;
    }

    .offer-text h2 {
        font-size: 2rem;
    }

    .footer-social {
        text-align: center !important;
    }

    .copyright-text {
        text-align: center !important;
    }
}

@media (max-width: 480px) {
    .home-section {
        padding: 0;
    }

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

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

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

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

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

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

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