* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Montserrat', sans-serif;
}

/* Top Bar */
.top-bar {
    background: #E6E31B;
}

.contact-link {
    color: #000;
    text-decoration: none;
    font-size: 15px;
}

.contact-link:hover {
    color: #000;
}

.social-icon {
    width: 35px;
    height: 35px;
    background: #000;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-left: 8px;
    text-decoration: none;
}

.logo {
width: 100%;
height: 70px;

}

/* Navbar */
.nav-link {
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #000 !important;
    margin-left: 15px;
}

.nav-link:hover,
.nav-link.active {
    color: #E6E31B !important;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .15);
}

.dropdown-item:hover {
    background: #E6E31B !important;
    color: #000;
}


/* =========================
   HERO SECTION
========================= */

.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
}

/* Background Images */
.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: url('img/slide1.jpg') center center/cover no-repeat;

    animation: bgSlider 15s infinite ease-in-out;
    z-index: -2;
}

/* Dark Overlay */
.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

/* Content */
.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
    color: #fff;
    padding: 20px;
}

.hero-content h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-content p {
    font-size: 16px;
    margin-bottom: 35px;
}

/* =========================
   BUTTON
========================= */

.service-btn {
    position: relative;
    width: 360px;
    height: 75px;

    background: #fff;
    border-radius: 60px;

    display: flex;
    justify-content: center;
    align-items: center;

    text-decoration: none;
    overflow: hidden;

    color: #000;
    font-size: 16px;
    font-weight: 600;
}

/* Yellow Hover Layer */
.service-btn::before {
    content: "";
    position: absolute;
    inset: 0;

    background: #E6E31B;

    transform: translateY(100%);
    transition: 0.4s ease;
    z-index: 1;
}

.service-btn:hover::before {
    transform: translateY(0);
}

/* Text Animation */
.service-btn span {
    position: absolute;
    z-index: 2;
    transition: 0.4s ease;
    padding: 20px;
}

.text-default {
    transform: translateY(0);
}

.text-hover {
    transform: translateY(100px);
    font-weight: 700;
}

.service-btn:hover .text-default {
    transform: translateY(-100px);
}

.service-btn:hover .text-hover {
    transform: translateY(0);
}

/* =========================
   IMAGE SLIDER + ZOOM
========================= */

@keyframes bgSlider {

    0%,
    25% {
        background-image: url('../img/360_F_688856097_T2XAaCAjBD9sXA1uYQr9oP5M3haeKdgq.jpg');
        transform: scale(1.15);
    }

    25%,
    49% {
        background-image: url('../img/firefighter-ready-his-mission-2048x1365.jpg');
        transform: scale(1.15);
    }

    50%,
    74% {
        background-image: url('../img/person-near-alternative-energy-plant-2048x1366.jpg');
        transform: scale(1.15);
    }

        /* Image 4 */
        75%,
        100% {
            background-image: url('../img/modern-styled-entryway-2048x1365.jpg');
            transform: scale(1.15);
        }
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:768px) {

    .hero-content h1 {
        font-size: 25px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .service-btn {
        width: 280px;
        height: 65px;
        font-size: 16px;
    }
}




.image-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.slider-track {
    display: flex;
    width: max-content;
    animation: scroll 35s linear infinite;
}

.slider-track img {
    width: 240px;
    height: 160px;
    object-fit: cover;
    flex-shrink: 0;
    display: block;
}

/* Pause on Hover */
.image-slider:hover .slider-track {
    animation-play-state: paused;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}


.legacy-title {
    font-size: 34px;
    font-weight: 600;
    color: #E6E31B;
}

.legacy-subtitle {
    color: #555;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.divider {
    position: relative;
    width: 250px;
    text-align: center;
}

.divider::before,
.divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 80px;
    height: 2px;
    background: #d7d000;
}

.divider::before {
    left: 0;
}

.divider::after {
    right: 0;
}

.divider span {
    font-size: 16px;
    color: #666;
}

.olo-legacy p {
    font-size: 16px;
    line-height: 1.9;
    text-align: justify;
}

.main-img {
    height: 430px;
    object-fit: cover;
}

.thumb-img {
    width: 100%;
    height: 110px;
    object-fit: cover;
}

@media(max-width:768px) {

    .legacy-title {
        font-size: 38px;
    }

    .main-img {
        height: 300px;
    }

    .thumb-img {
        height: 80px;
    }
}

.know-more-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 200px;
    height: 65px;
    border: 1px solid #bdbdbd;
    border-radius: 50px;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    overflow: hidden;
    transition: all 0.4s ease;
}

.hover-text {
    display: none;
}

.know-more-btn:hover {
    background: #E6E31B;
    border-color: #000;
    color: #000;
}

.know-more-btn:hover .default-text {
    display: none;
}

.know-more-btn:hover .hover-text {
    display: inline;
}

.know-more-btn i {
    font-size: 24px;
    transition: 0.4s;
}

.know-more-btn:hover i {
    color: #fff;
}


/*================================================ Counter ================================*/

.counter-section {
    background: #5b5b5b;
    padding: 40px 0;
}

.counter-box {
    border-right: 1px solid rgba(255, 255, 255, 0.4);
}

.counter-box h2 {
    font-size: 60px;
    font-weight: 700;
    color: #E6E31B;
    margin-bottom: 10px;
}

.counter-box p {
    color: #fff;
    font-size: 20px;
    margin: 0;
}

@media(max-width:768px) {

    .counter-box {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
        padding: 30px 0;
    }

    .counter-box:last-child {
        border-bottom: none;
    }

    .counter-box h2 {
        font-size: 60px;
    }

    .counter-box p {
        font-size: 20px;
    }
}


/*=============================== Service ================================*/

.services-section {
    background: #f5f5f5;
}

.section-title {
    font-size: 34px;
    font-weight: 700;
    color: #d9d90f;
}

.section-subtitle {
    font-size: 16px;
    color: #555;
    letter-spacing: 1px;
    margin-top: 10px;
}

.divider {
    width: 100%;
    /* max-width: 350px; */
    margin: 25px auto;
    position: relative;
    text-align: center;
}

.divider::before,
.divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 42%;
    height: 1px;
    background: #d9d90f;
}

.divider::before {
    left: 0;
}

.divider::after {
    right: 0;
}

.divider span {
    font-size: 28px;
    color: #666;
}

.service-card {
    position: relative;
    background: #fff;
    transition: .4s;
}

.active-card {
    background: #ececec;
}

.service-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-icon {
 margin-top: -100px;
    width: 110px;
    height: 110px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 45px;

    position: absolute;
    left: 10px;
    top: 250px;
}

.service-icon:hover {
    width: 110px;
    height: 110px;
    background: #E6E31B;
    color: #000;

}

.service-content {
    padding: 70px 22px 22px;
}

.service-content h3 {
    color: #d9d90f;
    font-size: 24px;
    margin-bottom: 20px;
}

.service-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #222;
    /* min-height: 120px; */
}


@media(max-width:991px) {

    .section-title {
        font-size: 45px;
    }

    .service-content h3 {
        font-size: 28px;
    }

    .service-img img {
        height: 260px;
    }

}




.footer-section {
    background: #000;
    color: #fff;
    padding: 0 0 20px;
}

.footer-logo-box {
    background: #e6e600;
    padding: 60px 30px;
    text-align: center;
    /* margin-top: -0px;/ */
    min-height: 230px;
}

.footer-logo-box img {
    max-width: 220px;
    margin-bottom: 30px;
}

.footer-logo-box p {
    color: #000;
    font-size: 15px;
    line-height: 1.8;
}

.footer-section h3 {
    color: #e6e600;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 90px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    color: #fff;
    font-size: 16px;
    margin-bottom: 5px;
    position: relative;
    padding-left: 22px;
}

.footer-section ul li::before {
    content: "▣";
    color: #e6e600;
    position: absolute;
    left: 0;
}

.contact-info p {
    font-size: 18px;
    margin-bottom: 20px;
    margin-right: 10px;
}

.contact-info i {
    color: #e6e600;
    margin-right: 10px;
    width: 20px;
}

.social-icons {
    margin-top: 30px;
}

.social-icons a {
    width: 48px;
    height: 48px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin: 0 5px;
    text-decoration: none;
    color: #fff;
    font-size: 18px;
}

.social-icons a:nth-child(1) {
    background: #3b5998;
}

.social-icons a:nth-child(2) {
    background: #000;
}

.social-icons a:nth-child(3) {
    background: #ff0000;
}

.footer-section hr {
    border-color: #ffffff;
    margin-top: 40px;
    line-height: 2px;
}

.copyright {
    font-size: 15px;
    color: #fff;
}

ul li a {
    text-decoration: none;
    color: #fff;
    /* तुमच्या गरजेनुसार color बदला */
}

ul li a:hover {
    color:#E6E31B;
}

@media(max-width:991px) {

    .footer-logo-box {
        margin-top: 0;
        min-height: auto;
        padding: 40px 20px;
    }

    .footer-section h3 {
        margin-top: 40px;
    }
}

.cta-section {
    position: relative;
    background: url("../img/3d-rendering-loft-luxury-living-room-with-shelf-near-dining-table-scaled.jpg") center center/cover no-repeat;
    min-height: 400px;
    overflow: hidden;
    
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 400px;
}

.cta-content h2 {
    color: #f1ea18;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
}

.cta-content p {
    color: #fff;
    font-size: 16px;
    font-style: italic;
    line-height: 1.8;
    text-transform: uppercase;
}






@media(max-width:991px) {

    .cta-section {
        min-height: 550px;
    }

    .cta-content {
        text-align: center;
        padding: 50px 20px;
    }

    .cta-content h2 {
        font-size: 22px;
    }

    .cta-content p {
        font-size: 16px;
    }
}

.about-banner {
    background-image: url('../img/photorealistic-wooden-house-with-timber-structure-scaled.jpg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 300px;
    position: relative;
}

.banner-overlay {
    background: rgba(0, 0, 0, 0.45);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-banner h1 {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.about-banner p {
    color: #fff;
    font-size: 16px;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
}

/* Responsive */
@media (max-width: 768px) {
    .about-banner {
        height: 300px;
    }

    .about-banner h1 {
        font-size: 25px;
    }

    .about-banner p {
        font-size: 16px;
        padding: 0 15px;
    }
}



.vision-card {
    background: #fff;
    border: 1px solid #e6df00;
    padding: 30px 25px;
    display: flex;
    align-items: center;
    gap: 25px;
    height: 100%;
    transition: 0.3s ease;
}

.vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.vision-card .icon {
    font-size: 40px;
    color: #000;
    min-width: 65px;
}

.vision-card h3 {
    color: #d9cc00;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.vision-card p {
    color: #111;
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
}

/* Responsive */
@media (max-width:991px) {
    .vision-card {
        padding: 25px 20px;
    }

    .vision-card h3 {
        font-size: 24px;
    }
}

@media (max-width:576px) {
    .vision-card {
        flex-direction: column;
        text-align: center;
    }

    .vision-card .icon {
        font-size: 50px;
    }

    .vision-card h3 {
        font-size: 25px;
    }

    .vision-card p {
        font-size: 16px;
    }
}



.service-image-wrapper {
    position: relative;
}

.service-image-wrapper img {
    width: 100%;
    border-radius: 0 0 50px 0;
    display: block;
}

/* Yellow Corner Design */
.service-image-wrapper::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    width: 50%;
    height: 100px;
    border-top: 15px solid #d8d000;
    border-left: 15px solid #d8d000;
    border-radius: 60px 0 0 0;
}

.contact-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    border: 1px solid #000;
    border-radius: 50px;
    padding: 18px;
    text-decoration: none;
    color: #000;
    font-size: 20px;
    font-weight: 600;
    transition: .3s;
}

.contact-btn:hover {
    background: #d8d000;
    color: #000;
}

.service-title {
    color: #d8d000;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-subtitle {
    color: #555;
    font-size: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.service-details p {
    font-size: 16px;
    line-height: 2;
    color: #111;
    text-align: justify;
}

/* Responsive */
@media(max-width:991px) {

    .service-title {
        font-size: 22px;
    }

    .service-details p {
        font-size: 16px;
        line-height: 1.8;
    }
}

@media(max-width:576px) {

    .service-title {
        font-size: 24px;
    }

    .service-subtitle {
        font-size: 16px;
    }

    .contact-btn {
        font-size: 18px;
    }
}








.section-title {
    font-size: 34px;
    font-weight: 700;
    color: #d4cf12;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 16px;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.contact-box {
    text-align: center;
    padding: 40px 25px;
    transition: all .4s ease;
    border: 1px solid transparent;
    height: 100%;
}

.contact-box:hover {
    background: #fff;
    border: 1px solid #d4cf12;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.contact-icon {
    width: 100px;
    height: 100px;
    border: 4px solid #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    transition: all .4s ease;
}

.contact-icon i {
    font-size: 50px;
    color: #000;
    transition: all .4s ease;
}

.contact-box:hover .contact-icon {
    border-color: #E6E31B;
}

.contact-box:hover .contact-icon i {
    color: #E6E31B;
}

.contact-box h3 {
    font-size: 24px;
    font-weight: 600;
    color: #E6E31B;
    margin-bottom: 15px;
}

.contact-box p {
    margin: 0;
    font-size: 16px;
    color: #222;
}

.contact-box p a {
    color: #222;
    text-decoration: none;
}

.contact-box p a:hover {
    color: #E6E31B;
}

@media (max-width:991px) {

    .section-title {
        font-size: 25px;
    }

    .contact-box {
        margin-bottom: 30px;
    }
}

@media (max-width:767px) {

    .section-title {
        font-size: 26px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .contact-icon {
        width: 120px;
        height: 120px;
    }

    .contact-icon i {
        font-size: 40px;
    }

    .contact-box h3 {
        font-size: 20px;
    }

    .contact-box p {
        font-size: 16px;
    }
}


.client-tabs {
    gap: 15px;
}

.client-tabs .nav-link {
    min-width: 340px;
    height: 65px;
    border: none;
    border-radius: 0;
    background: #ececec;
    color: #4d5c73;
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
}

.client-tabs .nav-link.active {
    background: #E6E31B !important;
    color: #000 !important;
}

.client-tabs .nav-link:hover {
    background: #E6E31B !important;
    color: #000 !important;
}

.tab-content {
    margin-top: 40px;
}

@media(max-width:768px) {

    .client-tabs .nav-link {
        min-width: 100%;
        margin-bottom: 10px;
    }

    .client-tabs {
        flex-direction: column;
    }
}



.client-box {
    background: #fff;
    border: 1px solid #E6E31B;
    min-height: 200px;
    padding: 20px 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.4s;
}

.client-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.client-box img {
    max-width: 70%;
    height: 110px;
    object-fit: contain;
    margin-bottom: 25px;
}

.client-box h5 {
    font-size: 16px;
    line-height: 1.6;
    color: #4a4a4a;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0;
}

.no-image {
    justify-content: center;
}

@media(max-width:768px) {

    .client-box {
        min-height: 220px;
        padding: 20px;
    }

    .client-box img {
        height: 90px;
    }

    .client-box h5 {
        font-size: 16px;
    }

}