@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #f4f4f4;
    font-family: 'Montserrat', sans-serif;
}

html,
body {
    width: 100%;
    max-width: 100%;
    min-height: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #f5f4f2;
    color: #7b6a58;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
}

/* ── Preloader overlay ────────────────────────────────────────────────────
   Injected as a real DOM element by preloader.js.
   Avoids ::before/::after fixed-position bugs on iOS Safari & Android.    */
#mindwalk-preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;

    /* 100dvh = dynamic viewport height (shrinks as mobile browser chrome
       hides/shows). Falls back to 100vh for older engines. */
    height: 100vh;
    height: 100dvh;

    z-index: 99999;
    background: url('./images/preloader.jpeg') center center / cover no-repeat #ffffff;
    pointer-events: none;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0.5s ease;

    /* GPU layer — prevents flicker on fade-out on low-end mobile devices */
    will-change: opacity, visibility;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

/* Portrait mobile (phones in vertical orientation):
   Landscape images lose their focal centre — shift to top-center so the
   brand/logo area of the preloader image stays visible                   */
@media (max-width: 600px) and (orientation: portrait) {
    #mindwalk-preloader {
        background-position: center top;
        /* Ensure no horizontal overflow on very narrow screens */
        background-size: cover;
    }
}

/* iOS Safari: background-attachment:fixed is broken inside fixed elements */
@media (max-width: 768px) {
    #mindwalk-preloader {
        background-attachment: scroll;
    }
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 90px;
    background-color: #f5d0be;
    padding: 0 32px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    /* border-radius: 0 0 16px 16px; */
    flex-wrap: wrap;
    position: relative;
    z-index: 1000;
}

.logo {
    margin: 10px 0 0 0;
    display: flex;
    align-items: center;
    text-align: center;
}

.logo img {
    width: 170px;
    transform: scale(1.6);
    transform-origin: left center;
    max-width: 100%;
    height: auto;
}

.menubar {
    display: flex;
    align-items: center;
    gap: 26px;
    flex-wrap: wrap;
}

.menubar a,
.dropdown .btn {
    color: #6A6A6A;
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    background: transparent;
    border: none;
    box-shadow: none;
}

.dropdown .btn {
    padding: 0;
}

.dropdown .btn:hover,
.dropdown .btn:focus {
    background: transparent;
    color: #d1612d;
}

.dropdown-toggle::after {
    margin-left: 8px;
}

.dropdown-menu {
    border-radius: 12px;
    border: 1px solid #e7e2d6;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    position: absolute !important;
    z-index: 9999 !important;
    background: #ffffff;
}

.dropdown-item {
    color: #5d5344;
    font-size: 13px;
    padding: 10px 18px;
}

.dropdown-item:hover {
    background: #f7ece1;
    color: #ab5a26;
}

.contact-btn {
    display: inline-block;
    background: #d26032;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 28px;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 700;
    margin-right: 0;
    /* border-radius: 30px; */
    margin-right: 50px;
}

.contact-btn:hover {
    background: #ad5129;
    color: #ffffff;
}

.banner {
    position: relative;
    width: 100%;
}

.banner-img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 860px) {
    .navbar {
        justify-content: center;
        padding: 18px 22px;
        gap: 20px;
    }

    .menubar {
        gap: 18px;
        justify-content: center;
    }

    .about-section {
        flex-direction: column;
        padding: 24px 20px;
    }

    .divider {
        display: none;
    }

    .about-left,
    .about-right {
        width: 100%;
    }
}

.about-section {
    min-height: 300px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid #e4e4e4;
    padding: 40px 60px;
    display: flex;
    align-items: flex-start;
}

.about-left {
    width: 60%;
}

.about-left h2 {
    font-size: 26px;
    font-weight: 700;
    color: #8d6f47;
    margin-bottom: 18px;
    letter-spacing: 0.3px;
}

.about-left p {
    font-size: 14px;
    line-height: 1.55;
    color: #222222;
    margin-bottom: 28px;
    font-weight: 400;
}

.about-left .last-line {
    margin-bottom: 0;
}

.divider {
    width: 4px;
    height: 300px;
    background: #d4a558;
    margin: 0 40px;
}

.about-right {
    width: 40%;
    padding-top: 8px;
}

.item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 18px;
}

.item span {
    width: 3px;
    height: 34px;
    background: #cfcfcf;
    margin-right: 15px;
    flex-shrink: 0;
}

.item p {
    font-size: 11px;
    color: #7a6649;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.footer {
    background: #f7f5f3;
    color: #7b6a58;
    /* margin-top:60px; */
    font-family: 'Montserrat', sans-serif;
    border-top: 1px solid #e7e2d6;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.04);
}

.footer .container {
    padding: 45px 30px 0;
}

.footer .foot-part {
    row-gap: 28px;
}

.footer-logo img {
    width: 180px;
    height: auto;
    display: block;
    object-fit: contain;
    margin-bottom: 18px;
}

.footer h5 {
    color: #d26032;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.footer p {
    color: #7b6a58;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer li {
    margin-bottom: 10px;
}

.footer a {
    color: #6f6254;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s;
}

.footer a:hover {
    color: #d26032;
    text-decoration: none;
}

.footer .social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.footer .social a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #c99d53;
    border-radius: 50%;
    font-size: 16px;
}

.footer .social a:hover {
    background: #d26032;
    color: #ffffff;
    transform: translateY(-2px);
}

.subscribe-box {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.subscribe-box input {
    width: 100%;
    min-width: 0;
    border: 1px solid #e1d8cc;
    background: #ffffff;
    color: #7b6a58;
    border-radius: 24px;
    padding: 10px 14px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    outline: none;
}

.subscribe-box input:focus {
    border-color: #c99d53;
    box-shadow: 0 0 0 3px rgba(201, 157, 83, 0.15);
}

.subscribe-box button {
    border: 0;
    background: #d26032;
    color: #ffffff;
    border-radius: 24px;
    padding: 10px 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.8px;
}

.subscribe-box button:hover {
    background: #ad5129;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 45px 30px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.footer-left,
.footer-center,
.footer-right {
    flex: 1;
}

.footer-left h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #c79b45;
}

.footer-left p,
.footer-right p {
    font-size: 14px;
    line-height: 1.8;
    color: #d8d8d8;
}

.footer-center h4,
.footer-right h4 {
    font-size: 18px;
    margin-bottom: 18px;
    color: #c79b45;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.social-links a:hover {
    color: #c79b45;
}

.footer-bottom {
    border-top: 1px solid #e7e2d6;
    text-align: center;
    padding: 18px 15px;
    margin-top: 35px;
    color: #8b8177;
    font-size: 15px;
    letter-spacing: 0.4px;
}

.footer-bottom p {
    font-size: 15px;
    color: #8b8177;
    letter-spacing: 0.5px;
}

@media (max-width:768px) {
    .footer .container {
        padding: 35px 22px 0;
    }

    .subscribe-box {
        flex-direction: column;
    }

    .subscribe-box button {
        width: 100%;
    }

    .footer-container {
        flex-direction: column;
        gap: 30px;
    }

    .footer-left,
    .footer-center,
    .footer-right {
        width: 100%;
    }
}


/* 1 loading page css code */
.imge img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* service page banner */
.service1 img {
    width: 100%;
}

.services {
    padding: 50px 40px;
}

.container {
    max-width: 1400px;
    margin: auto;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.service-box {
    padding: 0 30px;
    border-right: 1px solid #d5a04c;
}

.service-box:last-child {
    border-right: none;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.service-header i {
    font-size: 52px;
    color: #b89b73;
}

.service-header h3 {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 3px;
    line-height: 1.6;
    color: #8c7459;
}

.service-box ul {
    list-style: disc outside;
    padding-left: 22px;
    margin-top: 10px;
}

.service-box ul li {
    font-size: 14px;
    line-height: 1.6;
    color: #6f6254;
    position: static;
    padding-left: 0;
}

.service-box ul li::before {
    content: none;
}

@media(max-width:992px) {

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .service-box {
        border-right: none;
        border-bottom: 1px solid #d5a04c;
        padding-bottom: 25px;
    }
}

@media(max-width:768px) {

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-box {
        padding: 0 0 30px;
    }
}

/* CASE STUDEIS PAGE */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #f7f6f4;
    color: #b29a7b;
}

.services {
    max-width: 100%;
    margin: 20px auto;
    padding: 10px 25px 40px;
}

.services h2 {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 25px;
    color: #8c7459;
}

.services-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.service-box {
    padding: 0 15px;
    border-right: 1px solid #dcb98a;
    min-height: 260px;
}

.service-box:last-child {
    border-right: none;
}

.service-heading {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.service-heading i {
    font-size: 52px;
    color: #b89b73;
}

.service-heading h3 {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 3px;
    line-height: 1.6;
    color: #8c7459;
}

.service-box ul {
    list-style: none;
}

.service-box ul li {
    position: relative;
    padding-left: 14px;
    margin-bottom: 22px;
    font-size: 16px;
    line-height: 1.9;
    letter-spacing: 1.5px;
    color: #8e806c;
    font-weight: 500;
}

.service-box ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #8e806c;
}

@media(max-width:900px) {

    .services-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-box {
        border-right: none;
        border-bottom: 2px solid #c99b46;
        padding-bottom: 30px;
    }

    .service-box:last-child {
        border-bottom: none;
    }
}

/* campions page css start */
.campions1 img {
    width: 100%;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #f7f6f4;
    font-family: 'Montserrat', sans-serif;
}

.campaign-section {
    max-width: 1400px;
    margin: 20px auto;
    padding: 10px 20px 40px;
}

.campaign-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
}

.campaign-box h2 {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #8e7558;
    margin-bottom: 25px;
}

.campaign-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.campaign-header i {
    font-size: 58px;
    color: #b59772;
}

.campaign-header h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 4px;
    color: #8c7459;
}

.campaign-box ul {
    list-style: none;
}

.campaign-box ul li {
    position: relative;
    padding-left: 14px;
    margin-bottom: 22px;
    font-size: 16px;
    line-height: 1.9;
    letter-spacing: 1.5px;
    color: #8e806c;
    font-weight: 600;
}

.campaign-box ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #8e806c;
}

.campaign-box strong {
    font-weight: 700;
    color: #866d52;
}

@media(max-width:900px) {

    .campaign-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

}

/* political campion start */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #f7f5f3;
}

.case-study {
    max-width: 1400px;
    margin: auto;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.content {
    width: 55%;
}

.content h3 {
    color: #8a7a69;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 700;
}

.content h1 {
    color: #ef5a32;
    font-size: 20px;
    margin-bottom: 25px;
    font-weight: 700;
}

.block {
    margin-bottom: 25px;
}

.block h2 {
    color: #7d6d5a;
    margin-bottom: 10px;
    font-size: 18px;
}

.block p {
    color: #8c8379;
    font-size: 13px;
    line-height: 2;
    margin-bottom: 10px;
}

.right-side {
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.right-side img {
    width: 100%;
    height: 600px;
    /* background-image: url("images/banner.jpg"); */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.result-box {
    position: absolute;
    left: 0;
    top: 70px;

    width: 290px;
    background: #aa9885;
    color: #fff;

    padding: 35px;
    border-radius: 50px;
    z-index: 2;
}

.result-box h2 {
    text-align: center;
    margin-bottom: 15px;
}

.result-box p {
    font-size: 12px;
    line-height: 1.9;
    text-align: center;
}

.result-box hr {
    border: none;
    border-top: 2px solid #d8bb78;
    margin: 15px 0;
}

@media(max-width:991px) {

    .case-study {
        flex-direction: column;
    }

    .content,
    .right-side {
        width: 100%;
    }

    .result-box {
        position: static;
        margin-bottom: 20px;
        width: 100%;
    }

    .right-side {
        flex-direction: column;
    }
}

/* rural page start */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #f8f6f3;
}

.case-study {
    max-width: 1470px;
    margin: auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.left-content {
    width: 55%;
}

.left-content h3 {
    color: #7f6d58;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 700;
}

.left-content h3 span {
    color: #86a267;
}

.left-content h1 {
    color: #ef5a2d;
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 700;
}

.content-block {
    margin-bottom: 18px;
}

.content-block h2 {
    color: #7f6d58;
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 700;
}

.content-block p {
    color: #8b8177;
    font-size: 13px;
    line-height: 2;
    margin-bottom: 2px;
}

.content-block strong {
    color: #6e6255;
}

.dividers {
    width: 100%;
    height: 2px;
    background: #c9a25a;
    margin: 20px 0;
}

.right-content {
    width: 45%;
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.right-content img {
    width: 720px;
    /* max-width:100%; */
    object-fit: contain;
}

.award-box {
    position: absolute;
    left: 0;
    top: 100px;

    width: 250px;

    background: #ab9a87;
    color: white;

    padding: 30px;

    border-radius: 60px;

    z-index: 2;
}

.award-box h2 {
    text-align: center;
    margin-bottom: 15px;
    font-size: 18px;
}

.award-box p {
    text-align: center;
    font-size: 12px;
    line-height: 1.8;
    font-weight: 600;
}

.award-box hr {
    border: none;
    border-top: 2px solid #d6b16d;
    margin: 12px 0;
}

@media(max-width:991px) {

    .case-study {
        flex-direction: column;
    }

    .left-content,
    .right-content {
        width: 100%;
    }

    .award-box {
        position: static;
        width: 100%;
        margin-bottom: 20px;
    }

    .right-content {
        flex-direction: column;
    }
}

/* marketing page css start here */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #f7f5f3;
    font-family: 'Montserrat', sans-serif;
}

.case-study {
    max-width: 1400px;
    margin: auto;
    padding: 10px 20px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.content {
    width: 38%;
}

.image-section {
    width: 62%;
}

.image-section img {
    width: 100%;
    height: 800px;
    display: block;
}

.content h3 {
    font-size: 17px;
    color: #7c6b57;
    margin-bottom: 10px;
    font-weight: 700;
}

.content h1 {
    font-size: 20px;
    color: #f15a35;
    margin-bottom: 12px;
    font-weight: 700;
}

.section-block {
    margin-bottom: 18px;
}

.section-block h2 {
    color: #7c6b57;
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 700;
}

.section-block p {
    font-size: 12px;
    line-height: 2;
    color: #8f8479;
    margin-bottom: 4px;
}

.line {
    width: 100%;
    height: 2px;
    background: #c99d53;
    margin: 18px 0;
}

@media(max-width:991px) {

    .case-study {
        flex-direction: column;
    }

    .content,
    .image-section {
        width: 100%;
    }

}

/* amritsar css start */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body.case-study-page {
    background: #fdf7ef;
    font-family: 'Poppins', sans-serif;
}

.case-study {
    max-width: 1450px;
    margin: auto;
    display: flex;
    gap: 35px;
    padding: 18px 22px;
}

.left {
    width: 40%;
}

.right {
    width: 60%;
}

.right img {
    margin-left: 20px;
    width: 100%;
    height: 500px;
    display: block;
}

.left h3 {
    color: #786758;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 12px;
}

.left h2 {
    color: #e55b3c;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 10px;
}

.left h1 {
    color: #786758;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 8px;
}

.left p {
    color: #8c7b6c;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.left strong {
    color: #786758;
    font-weight: 700;
}

.left .line {
    height: 1px;
    background: #c9a45e;
    margin: 25px 0 15px;
}

.left h4 {
    color: #786758;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 12px;
}

/* services page banner */
.hero-img img {
    width: 100%;
}

body.marketing-page {
    background: #ffffff;
}

body.marketing-page .right img {
    height: auto;
}

/* --- Global Responsive Polish --- */
@media (max-width: 991px) {

    /* Case study pages layout collapse */
    .case-study,
    .case-study-section {
        flex-direction: column !important;
        gap: 24px !important;
        padding: 20px 16px !important;
    }

    .left,
    .right,
    .content,
    .image-section,
    .left-content,
    .right-content,
    .right-side {
        width: 100% !important;
    }

    /* Responsive heights for case study and section images */
    .right img,
    .image-section img,
    .right-side img,
    .right-content img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        max-height: 400px !important;
        object-fit: cover !important;
        margin-left: 0 !important;
    }

    /* Award boxes and speech bubble relative centering on mobile */
    .result-box,
    .award-box {
        position: static !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 20px 0 !important;
        border-radius: 24px !important;
        padding: 20px !important;
    }

    .result-box::after,
    .award-box::after {
        display: none !important;
        /* Hide speech bubble pointers on collapsed layout */
    }

    .navbar {
        position: relative !important;
        padding: 15px 16px !important;
        min-height: auto !important;
    }

    .navbar>.container-fluid {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
        padding: 0 !important;
    }

    /* Ensure collapse shows properly when .show is added */
    .navbar-collapse.show {
        display: block !important;
        width: 100% !important;
    }

    .navbar-collapse:not(.show) {
        display: none !important;
    }

    .logo {
        margin: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
    }

    .logo img {
        width: 110px !important;
        transform: none !important;
        height: auto !important;
    }

    .menubar {
        width: 100% !important;
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 8px 16px !important;
        padding: 10px 0 !important;
        border-top: 1px solid rgba(0, 0, 0, 0.06) !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
        margin-top: 10px !important;
    }

    .menubar a,
    .menubar .dropdown .btn {
        font-size: 11px !important;
        padding: 6px 4px !important;
        letter-spacing: 1px !important;
    }

    .contact-btn {
        display: block !important;
        width: 100% !important;
        max-width: 280px !important;
        text-align: center !important;
        padding: 10px 20px !important;
        margin: 10px auto 0 !important;
    }

    .navbar .dropdown-menu {
        position: absolute !important;
        left: 16px !important;
        right: 16px !important;
        width: auto !important;
        transform: none !important;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12) !important;
        border: 1px solid #e7e2d6 !important;
        background: #ffffff !important;
        text-align: center !important;
        padding: 6px 0 !important;
        margin-top: 8px !important;
        z-index: 1000 !important;
    }

    .navbar .dropdown-item {
        text-align: center !important;
        padding: 10px 16px !important;
        font-size: 13px !important;
        white-space: normal !important;
    }

    .navbar .dropdown {
        position: static !important;
    }

    .about-section {
        flex-direction: column;
        padding: 30px 20px;
    }

    .divider {
        display: none;
    }

    .about-left,
    .about-right {
        width: 100%;
    }
}

/* Spacings */
.divider {
    display: none !important;
}

.hero-img img,
.service1 img,
.campions1 img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

@media (min-width: 992px) {
    .navbar {
        position: relative !important;
    }

    .menubar {
        position: absolute !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
    }

    .navbar .contact-btn {
        margin-left: auto !important;
        margin-right: 32px !important;
    }
}