body {
    padding: 0px;
    margin: 0px;
    overflow-x: hidden;
}

.active {
    color: red;
    border-bottom: 2px solid black;
}

/* marquee css */

.hero-wrap {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    padding: 10px 0;
    position: relative;
    white-space: nowrap;
    margin-top: -15%;
}

.marquee-content {
    display: inline-block;
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    text-transform: uppercase;
    animation: marquee 15s linear infinite;
}

@keyframes marquee {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(-100%);
    }
}

/* services page css */

.tabs {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.tab {
    padding: 10px 20px;
    cursor: pointer;
    border-bottom: 1px solid transparent;
}

.tab.active {
    border-bottom: 1px solid black;
    font-weight: bold;
}

.content {
    display: none;
    margin-top: 20px;
    color: rgba(0, 0, 0, 0.598);
}

.content.active {
    display: block;
}

.highlight-section {
    background-color: rgb(220, 53, 69);
    color: white;
    padding: 40px 30px;
    margin-top: 20px;
}

.highlight-box {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    border: 2px solid white;
    padding: 10px;
    margin-bottom: 10px;
    height: 140px;
    width: 160px;
}

/* About us section css */
.about-us-container {
    padding: 40px 20px;
}

.about-us-container h1 {
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: bold;
}

.about-us-container h2 {
    font-size: 20px;
    color: gray;
    margin-bottom: 20px;
}

.image-container {
    text-align: center;
    margin-top: 20px;
}

.reg_img {
    max-width: 100%;
    height: auto;
    animation: zoomAnimation 1s infinite alternate ease-in-out;
}

@keyframes zoomAnimation {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

@media (max-width: 768px) {
    .about-us-container {
        padding: 20px 10px;
    }

    .about-us-container h1 {
        font-size: 24px;
    }

    .about-us-container h2 {
        font-size: 18px;
    }
}

/* media coverage section css*/
.slider-container {
    width: 90%;
    margin: auto;
    overflow: hidden;
    position: relative;
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    flex: 0 0 25%;
    box-sizing: border-box;
    text-align: center;
    padding: 10px;
}

.slide img {
    width: 100%;
    max-width: 250px;
    padding: 10px;
}

/* Controls */
.controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.controls button {
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    transition: 0.3s;
}

.controls button:hover {
    background-color: rgba(255, 255, 255, 1);
}

/* Responsive Design */
@media (max-width: 992px) {
    .slide {
        flex: 0 0 33.33%;
        /* Show 3 slides */
    }
}

@media (max-width: 768px) {
    .slide {
        flex: 0 0 50%;
        /* Show 2 slides */
    }
}

@media (max-width: 576px) {
    .slide {
        flex: 0 0 100%;
        /* Show 1 slide */
    }
}

/* CURRENT OFFERS section css */
.offers-section {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.offer-box {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    border-radius: 10px;
}

.offer-box:hover {
    transform: scale(1.05);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-outline-dark {
    transition: background-color 0.3s ease, transform 0.2s ease-in-out;
}

.btn-outline-dark:hover {
    background-color: #343a40;
    color: white;
    transform: scale(1.1);
}

.offer-box:hover h5 {
    animation: shake 0.3s ease-in-out;
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-3px);
    }

    50% {
        transform: translateX(3px);
    }

    75% {
        transform: translateX(-3px);
    }
}

/* Responsive Tweaks */
@media (max-width: 768px) {
    .offer-box {
        margin-left: auto;
        margin-right: auto;
        width: 90%;
    }

    .offers-section h2 {
        font-size: 24px;
    }
}


/* WHAT'S NEW? section css */
.service_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 50px;
    background-color: rgb(220, 53, 69);
}

.service {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    width: 100%;
    max-width: 320px;
    transition: transform 0.3s ease-in-out;
    text-align: center;
}

.service:hover {
    transform: translateY(-10px);
}

.service img {
    width: 100%;
    max-width: 250px;
}

.button {
    background: white;
    color: #ff5733;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    margin-top: 10px;
    border-radius: 5px;
}

.button:hover {
    background: #ddd;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .service_container {
        padding: 30px;
    }

    .service img {
        max-width: 200px;
    }
}

@media (max-width: 768px) {
    .service_container {
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }

    .service {
        width: 90%;
        max-width: 400px;
    }

    .service img {
        max-width: 180px;
    }

}

@media (max-width: 480px) {
    .service_container {
        padding: 15px;
    }

    .service {
        width: 100%;
    }

    .service img {
        max-width: 300px;
    }

    /* sound_easy_right */
    .sound_easy_right h1 {
        font-size: 24px;
    }

    /* rent_agreement */

    .rent_agreement h2 {
        font-size: 24px;
    }

    /* technology_innovation */
    .technology_innovation h1 {
        font-size: 24px;
    }

    .Smart h3 {
        font-size: 22px;
    }

    .WHAT_CLIENTS h2 {
        font-size: 26px;
    }
}



/* Register section auto_increment css */
.counter-section {
    background-color: rgb(220, 53, 69);
    color: white;
    padding: 50px 0;
    text-align: center;
}

.counter-box {
    font-size: 2rem;
    font-weight: bold;
}



/* footer page css */
.address_icon {
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    padding: 26px;
    font-size: 26px;
    margin-bottom: 20px;
    background-color: rgb(220, 53, 69);
}

/*  */

.info-content {
    display: none;
}

.column_box {
    cursor: pointer;
    padding: 20px;
    text-align: center;
    border: 1px solid #ddd;
    transition: background 0.3s;
}

.column_box:hover {
    background: #f8f9fa;
}

/*  */

.blog-slider {
    max-width: 90%;
    margin: auto;
}

.blog-card {
    background: white;
    color: #333;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease-in-out, box-shadow 0.3s ease-in-out;
    height: 280px;
    margin-bottom: 20px;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.blog-card h6 {
    font-weight: bold;
    color: #dc3545;
    margin-bottom: 10px;
}

.blog-card p {
    font-size: 14px;
    color: #555;
}

.owl-prev {
    display: none;
}

.owl-next {
    display: none;
}

/*  */

.testimonial {
    text-align: center;
    padding: 20px;
}

.testimonial img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.testimonial h5 {
    margin-top: 10px;
    font-weight: bold;
}

.testimonial p {
    font-size: 14px;
    color: #555;
}

/*  */

.faq-section {
    max-width: 1100px;
    margin: 50px auto;
    background: white;
}

.accordion-button {
    font-size: 1.1rem;
    background: none;
    color: #333;
    border: none;
    display: flex;
    padding: 12px;
    justify-content: space-between;
    align-items: center;
}

.accordion-button::after {
    content: "\002B";
    /* "+" */
    font-size: 28px;
    font-weight: bold;
    color: #007bff;
    transition: transform 0.2s;
    margin-left: 10px;
    border: none;
}

.accordion-button[aria-expanded="true"]::after {
    content: "\2212";
    /* "-" */
    color: #dc3545;
}

.accordion-body {
    background: #f1f1f1;
    padding: 15px;
    border-left: 3px solid #007bff;
    border-radius: 5px;
}

.faq-header {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
}

.faq-category {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    color: rgb(220, 53, 69);
}

.faq-category i {
    margin-right: 8px;
}

@media(max-width:667px) {
    .faq-category {
        font-size: 17px;
    }
}

/* Webkit-based browsers (Chrome, Edge, Safari) */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: rgb(220, 53, 69);
    border-radius: 10px;
    transition: background 0.3s ease-in-out;
}

/* Animated gradient effect on hover */
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, rgb(220, 53, 69), rgb(255, 87, 51));
    box-shadow: 0 0 8px rgba(220, 53, 69, 0.8);
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: rgb(220, 53, 69) #f1f1f1;
}
