* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", sans-serif;
}

.hero-section {
    min-height: 100vh;
    background: center center / cover rgb(0, 0, 0);
    position: relative;
}

.agm-header {
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(12px);
    padding: 15px 0px;
    position: relative;
    z-index: 9999;
}

.agm-header-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.agm-logo img {
    width: 180px;
    margin-bottom: 5px;
}

.agm-nav-area {
    flex: 1 1 0%;
    padding-left: 40px;
}

.top-links {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-bottom: 15px;
}

.top-links a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-links span {
    display: block;
    font-size: 14px;
    font-weight: 600;
}

.top-links small {
    display: block;
    font-size: 11px;
}

.main-menu {
    display: flex;
    justify-content: flex-end;
    gap: 25px;
    list-style: none;
    margin: 0px;
    padding: 0px;
}

.main-menu a {
    color: rgb(255, 255, 255);
    text-decoration: none;
}

.login-btn {
    background: rgb(0, 0, 0) !important;
}

.main-menu li a {
    position: relative;
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 0px;
    transition: 0.3s;
}

.main-menu li:not(:last-child)::after {
    content: "|";
    color: rgba(255, 255, 255, 0.5);
    position: relative;
    left: 15px;
}

.main-menu li a:hover {
    color: rgb(39, 180, 99);
}

.main-menu li a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
    width: 0px;
    height: 2px;
    background: rgb(39, 180, 99);
    transition: 0.3s;
    transform: translateX(-50%);
}

.menu-close {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    color: rgb(255, 255, 255);
    font-size: 24px;
    cursor: pointer;
}

.main-menu li a:hover::after {
    width: 80%;
}

.login-btn {
    border: 1px solid rgb(255, 255, 255);
    background: rgb(0, 0, 0) !important;
}

.menu-toggle {
    display: none;
}

@media (max-width: 991px) {
    .agm-header-wrap {
        flex-wrap: wrap;
    }

    .menu-toggle {
        display: block;
        background: none;
        border-width: medium;
        border-style: none;
        border-color: currentcolor;
        border-image: initial;
        color: rgb(255, 255, 255);
        font-size: 28px;
    }

    .agm-nav-area {
        position: fixed;
        top: 0px;
        left: -320px;
        width: 300px;
        height: 100vh;
        background: rgb(11, 11, 11);
        z-index: 9999;
        padding: 80px 20px 30px;
        transition: 0.4s;
        overflow-y: auto;
    }

    .agm-nav-area.show {
        left: 0px;
        z-index: 99999;
    }

    .top-links {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 25px;
    }

    .main-menu {
        flex-direction: column;
        gap: 0px;
        align-items: flex-start;
    }

    .agm-logo img {
        width: 100px;
    }

    .main-menu li a {
        display: block;
        width: 100%;
        padding: 14px 0px !important;
    }

    .main-menu li:not(:last-child)::after {
        display: none;
    }

    .menu-overlay {
        position: fixed;
        inset: 0px;
        background: rgba(0, 0, 0, 0);
        opacity: 0;
        visibility: hidden;
        transition: 0.3s;
        z-index: 9998;
    }

    .menu-overlay.show {
        opacity: 1;
        visibility: visible;
    }

    .menu-close {
        position: absolute;
        top: 20px;
        right: 20px;
        color: rgb(255, 255, 255);
        font-size: 24px;
        cursor: pointer;
    }
}

.search-wrapper {
    padding-top: 160px;
}

.search-tabs .active {
    background: rgb(223, 243, 231);
    color: rgb(30, 166, 90);
}

.search-card {
    background: rgb(255, 255, 255);
    border-radius: 8px;
    overflow: hidden;
    width: 80%;
    margin: 0px auto;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 60px;
}

.search-top {
    padding: 16px;
}

.location-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.location-box {
    flex: 1 1 0%;
    position: relative;
}

.location-box i {
    position: absolute;
    top: 50%;
    left: 18px;
    transform: translateY(-50%);
    color: rgb(12, 123, 111);
}

.location-box input {
    width: 100%;
    height: 50px;
    border: 1px solid rgb(221, 221, 221);
    border-radius: 12px;
    padding-left: 50px;
    font-size: 18px;
    outline: none;
}

.search-btn {
    width: 220px;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    border-radius: 8px;
    background: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    font-size: 20px;
    font-weight: 600;
}

.search-btn:hover {
    background: rgb(0, 0, 0);
}

.filter-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.filter-row select {
    height: 53px;
    border-radius: 5px;
}

.ai-strip {
    background: rgb(238, 248, 244);
    padding: 18px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ai-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ai-left i {
    color: rgb(0, 0, 0);
    font-size: 22px;
}

.ai-strip a {
    text-decoration: none;
    font-weight: 700;
    color: rgb(0, 0, 0);
}

@media (max-width: 991px) {
    .hero-section {
        min-height: 90vh;
    }

    .search-card {
        width: 100%;
        margin-left: 0px;
    }

    .location-row {
        flex-direction: column;
    }

    .search-btn {
        width: 100%;
        height: 60px;
    }

    .filter-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .search-card {
        width: 100%;
        margin-left: 0px;
    }

    .top-navbar .container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .top-links {
        justify-content: center;
    }

    .search-tabs {
        flex-wrap: wrap;
        justify-content: center;
    }

    .filter-row {
        grid-template-columns: 1fr;
    }

    .ai-strip {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .location-box input {
        height: 60px;
        font-size: 16px;
    }

    .search-wrapper {
        padding-top: 70px;
    }
}

.tabs-scroll {
    overflow: hidden;
    cursor: grab;
}

.tabs-scroll.active-drag {
    cursor: grabbing;
}

.tabs-scroll {
    width: 60%;
    margin: 0px auto 30px;
}

.search-tabs {
    width: 100%;
    display: flex;
    align-items: center;
    background: rgb(255, 255, 255);
    border-radius: 8px;
    padding: 5px;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 10px 25px;
}

.tab-btn {
    flex: 1 1 0%;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    background: rgb(255, 255, 255);
    padding: 10px 6px;
    font-size: 18px;
    font-weight: 400;
    border-radius: 7px;
    transition: 0.3s;
    cursor: pointer;
    text-decoration: none;
    color: rgb(0, 0, 0);
}

.tab-btn.active {
    background: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
}

@media (max-width: 767px) {
    .tabs-scroll {
        width: 100%;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .tabs-scroll::-webkit-scrollbar {
        display: none;
    }

    .search-tabs {
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        width: max-content;
        min-width: 100%;
        padding: 8px;
    }

    .tab-btn {
        flex: 0 0 auto;
        min-width: 150px;
        white-space: nowrap;
    }
}

@media (max-width: 767px) {
    .menu-toggle {
        display: block;
    }

    .top-links {
        display: none;
        flex-direction: column;
        width: 100%;
        margin-top: 20px;
    }

    .top-links.show {
        display: flex;
    }

    .top-links a {
        width: 100%;
        text-align: center;
    }

    .search-tabs {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 8px;
    }

    .search-tabs button {
        flex: 0 0 auto;
        margin-right: 8px;
    }
}

.europe-slider-wrap {
    position: relative;
    max-width: 1320px;
    margin: auto;
}

.europe-slider {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.europe-slider::-webkit-scrollbar {
    display: none;
}

.visa-card {
    flex: 0 0 calc(25% - 18px);
    min-width: calc(25% - 18px);
    background: rgb(255, 255, 255);
    border: 1px solid rgb(229, 229, 229);
    border-radius: 5px;
    overflow: hidden;
    height: 180px;
    display: flex;
    flex-direction: column;
}

.visa-card-body {
    flex: 1 1 0%;
}

.visa-card-footer {
    border-top: 1px solid rgb(229, 229, 229);
    padding: 4px;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: rgb(34, 34, 34);
    background: rgb(255, 255, 255);
}

.slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    border-radius: 50%;
    background: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px;
    z-index: 10;
    cursor: pointer;
}

.europe-prev {
    left: -25px;
}

.europe-next {
    right: -25px;
}

.research-prev {
    left: -30px;
}

.research-next {
    right: -30px;
}

.europe-slider-wrap, .research-slider-wrap {
    overflow: visible;
}

@media (max-width: 991px) {
    .visa-card {
        flex: 0 0 calc(50% - 12px);
        min-width: calc(50% - 12px);
    }
}

@media (max-width: 576px) {
    .visa-card {
        flex: 0 0 50%;
        min-width: 50%;
    }

    .slide-btn {
        display: none;
    }
}

.research-tools {
    background: rgb(245, 247, 251);
}

.research-box {
    background: rgb(255, 255, 255);
    border-radius: 24px;
    padding: 10px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 10px 40px;
}

.research-head h2 {
    font-size: 32px;
    font-weight: 700;
    color: rgb(47, 47, 47);
    margin-bottom: 10px;
}

.research-head p {
    color: rgb(123, 123, 123);
    font-size: 18px;
}

.research-slider-wrap {
    position: relative;
    margin-top: 35px;
}

.research-slider {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.research-slider::-webkit-scrollbar {
    display: none;
}

.research-card {
    min-width: 250px;
    height: 300px;
    border: 1px solid rgb(236, 236, 236);
    border-radius: 22px;
    padding: 24px;
    background: rgb(255, 255, 255);
    flex-shrink: 0;
    transition: 0.3s;
}

.research-card:hover {
    transform: translateY(-8px);
    box-shadow: rgba(0, 0, 0, 0.08) 0px 15px 35px;
}

.research-card h4 {
    font-size: 22px;
    line-height: 1.1;
    font-weight: 700;
    color: rgb(139, 90, 29);
}

.research-card p {
    color: rgb(0, 0, 0);
    margin-top: 12px;
    font-size: 15px;
}

.card-bottom {
    margin-top: 45px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tool-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgb(255, 244, 223);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 52px;
    color: rgb(216, 157, 45);
}

.card-btn {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgb(216, 157, 45);
    color: rgb(255, 255, 255);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.research-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 65px;
    height: 65px;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    border-radius: 50%;
    background: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.15) 0px 10px 30px;
    z-index: 10;
}

@media (max-width: 991px) {
    .research-head h2 {
        font-size: 36px;
    }

    .research-card {
        min-width: 280px;
    }
}

@media (max-width: 767px) {
    .research-box {
        padding: 25px;
    }

    .research-head h2 {
        font-size: 28px;
    }

    .research-arrow {
        display: none;
    }
}

.search-location-box {
    flex: 1 1 0%;
    background: rgb(255, 255, 255);
    border: 2px solid rgb(229, 229, 229);
    border-radius: 8px;
    display: flex;
    overflow: hidden;
    height: 55px;
}

.location-select-box {
    width: 205px;
    display: flex;
    align-items: center;
    padding: 0px 16px;
    border-right: 1px solid rgb(229, 229, 229);
    position: relative;
}

.location-select-box i {
    color: rgb(156, 163, 175);
    font-size: 22px;
    margin-right: 12px;
}

.location-select-box select {
    width: 100%;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    outline: none;
    font-size: 16px;
    font-weight: 600;
    background: transparent;
    cursor: pointer;
}

.project-search-box {
    flex: 1 1 0%;
    display: flex;
    align-items: center;
    padding: 0px 25px;
}

.project-search-box i {
    color: rgb(156, 163, 175);
    font-size: 24px;
    margin-right: 15px;
}

.project-search-box input {
    width: 100%;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    outline: none;
    font-size: 18px;
}

.project-search-box input::placeholder {
    color: rgb(156, 163, 175);
}

@media (max-width: 991px) {
    .location-row {
        flex-direction: column;
    }

    .tabs-scroll {
        width: 90%;
        margin: 0px auto 30px;
    }

    .search-location-box {
        flex-direction: column;
        height: auto;
    }

    .location-select-box {
        width: 100%;
        height: 42px;
        border-right-width: medium;
        border-right-style: none;
        border-right-color: currentcolor;
        border-bottom: 1px solid rgb(229, 229, 229);
    }

    .project-search-box {
        height: 70px;
        padding: 10px;
    }
}

.mega-menu {
    position: absolute;
    top: 60px;
    left: -130px;
    transform: translateX(-50%);
    width: 850px;
    background: rgb(255, 255, 255);
    border-radius: 15px;
    display: none;
    padding: 20px;
    gap: 20px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 40px;
}

.mega-dropdown {
    position: relative;
}

.mega-dropdown.active .mega-menu {
    display: flex;
}

.mega-left {
    width: 260px;
}

.city-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    border-radius: 8px;
    background: rgb(244, 244, 244);
    padding: 12px 15px !important;
    color: rgb(51, 51, 51) !important;
}

.city-item.active {
    background: linear-gradient(90deg, rgb(0, 0, 0), rgb(68, 68, 68));
    padding: 8px 15px;
    color: rgb(255, 255, 255) !important;
}

.mega-right {
    flex: 1 1 0%;
}

.mega-right img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 10px;
}

@media (max-width: 991px) {
    .mega-menu {
        position: static;
        transform: none;
        width: 100%;
        display: none;
        flex-direction: column;
        margin-top: 15px;
        padding: 11px 13px;
    }

    .mega-dropdown.active .mega-menu {
        display: flex;
    }

    .mega-left {
        width: 100%;
    }

    .mega-right img {
        height: 220px;
    }
}

.enquiry-btn {
    padding: 12px 30px;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    background: rgb(13, 110, 253);
    color: rgb(255, 255, 255);
    border-radius: 30px;
    cursor: pointer;
}

.enquiry-modal {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
    z-index: 99999;
}

.enquiry-modal.show {
    opacity: 1;
    visibility: visible;
}

.enquiry-box {
    width: 950px;
    max-width: 95%;
    background: rgb(255, 255, 255);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    position: relative;
    transform: scale(0.9);
    transition: 0.4s;
}

.enquiry-modal.show .enquiry-box {
    transform: scale(1);
}

.left-panel {
    width: 40%;
    position: relative;
    background: url("https://images.unsplash.com/photo-1560518883-ce09059eeffa?w=1200") center center / cover;
    min-height: 600px;
}

.overlay {
    position: absolute;
    inset: 0px;
    background: rgba(0, 0, 0, 0.55);
}

.left-content {
    position: relative;
    z-index: 2;
    color: rgb(255, 255, 255);
    padding: 40px 35px;
}

.left-content h2 {
    margin-bottom: 40px;
    font-size: 34px;
}

.feature {
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 28px;
}

.right-panel {
    width: 60%;
    padding: 28px 15px 10px;
}

.right-panel h3 {
    font-size: 27px;
    margin-bottom: 15px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group input, .form-group select, .form-group textarea, .phone-box input, .phone-box select {
    width: 100%;
    height: 50px;
    border: 1px solid rgb(221, 221, 221);
    border-radius: 5px;
    padding: 0px 18px;
    font-size: 16px;
    outline: none;
}

.form-group textarea {
    height: 80px;
    padding-top: 18px;
}

.phone-box {
    display: flex;
    gap: 15px;
    margin-bottom: 18px;
}

.phone-box select {
    width: 120px;
}

.submit-btn {
    width: 100%;
    height: 55px;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    background: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    border-radius: 50%;
    background: rgb(255, 255, 255);
    font-size: 28px;
    cursor: pointer;
    z-index: 99;
}

body.modal-open {
    overflow: hidden;
}

@media (max-width: 768px) {
    .enquiry-box {
        flex-direction: column;
        width: 95%;
    }

    .left-panel, .right-panel {
        width: 100%;
    }

    .left-panel {
        min-height: 250px;
    }

    .right-panel {
        padding: 30px 20px;
    }

    .right-panel h3 {
        font-size: 26px;
    }
}

.phone-box select {
    width: 110px;
    height: 50px;
    border: 1px solid rgb(221, 221, 221);
    border-radius: 5px;
    padding: 0px 35px 0px 20px;
    appearance: none;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='black' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5.5L8 12l6.5-6.5' stroke='black' stroke-width='2' fill='none'/%3E%3C/svg%3E") right 12px center / 14px no-repeat rgb(255, 255, 255);
}

.form-group select {
    width: 260px;
    height: 50px;
    border: 1px solid rgb(221, 221, 221);
    border-radius: 5px;
    padding: 0px 35px 0px 20px;
    appearance: none;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='black' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5.5L8 12l6.5-6.5' stroke='black' stroke-width='2' fill='none'/%3E%3C/svg%3E") right 12px center / 14px no-repeat rgb(255, 255, 255);
}

.developer-section {
    background: rgb(255, 255, 255);
    padding: 30px;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 10px 40px;
}

.developer-head {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 25px;
}

.developer-head h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 0px;
}

.developer-tabs {
    display: flex;
    gap: 30px;
    flex: 1 1 0%;
    border-bottom: 1px solid rgb(221, 221, 221);
    padding-bottom: 0px;
}

.developer-tab {
    border-width: medium medium 3px;
    border-style: none none solid;
    border-color: currentcolor currentcolor transparent;
    border-image: initial;
    background: none;
    font-size: 16px;
    color: rgb(68, 68, 68);
    cursor: pointer;
    padding-bottom: 0px;
    white-space: nowrap;
}

.developer-tab.active {
    color: rgb(0, 0, 0);
    border-color: rgb(11, 12, 12);
}

.developer-view {
    text-decoration: none;
    color: rgb(0, 0, 0);
    font-weight: 700;
    font-size: 18px;
}

.developer-nav {
    display: flex;
    gap: 10px;
}

.developer-nav button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgb(221, 221, 221);
    background: rgb(255, 255, 255);
    cursor: pointer;
}

.developer-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding-bottom: 10px;
}

.developer-slider::-webkit-scrollbar {
    display: none;
}

.developer-card {
    min-width: 400px;
    background: rgb(255, 255, 255);
    border-radius: 10px;
    border: 1px solid rgb(238, 238, 238);
    padding: 15px;
    display: flex;
    gap: 25px;
    flex-shrink: 0;
    transition: 0.4s;
}

.developer-card:hover {
    transform: translateY(-10px);
}

.developer-card img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
}

.developer-content {
    flex: 1 1 0%;
}

.developer-content span {
    color: rgb(102, 102, 102);
    font-size: 12px;
}

.developer-content h3 {
    font-size: 18px;
    margin: 4px 0px;
    font-weight: 700;
}

.developer-content p {
    color: rgb(85, 85, 85);
    font-size: 12px;
    line-height: normal;
    margin-bottom: 5px;
}

.developer-content a {
    text-decoration: none;
    color: rgb(4, 3, 3);
    font-size: 16px;
    font-weight: 700;
    margin-top: 3px;
}

@media (max-width: 991px) {
    .developer-head {
        flex-wrap: wrap;
        gap: 20px;
    }

    .developer-tabs {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .developer-tabs::-webkit-scrollbar {
        display: none;
    }

    .developer-view {
        display: none;
    }

    .developer-card {
        min-width: 90%;
    }
}

@media (max-width: 767px) {
    .developer-section {
        padding: 15px;
        border-radius: 20px;
    }

    .developer-head h2 {
        font-size: 25px;
    }

    .developer-card {
        min-width: 100%;
        flex-direction: column;
    }

    .developer-card img {
        width: 100%;
        height: 230px;
    }

    .developer-content h3 {
        font-size: 24px;
    }

    .developer-content p {
        font-size: 15px;
        line-height: 24px;
    }

    .developer-content a {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .developer-head {
        display: grid;
        grid-template-columns: 1fr auto;
        grid-template-areas: "title view" "tabs tabs";
        gap: 15px 10px;
        align-items: center;
    }

    .developer-head h2 {
        grid-area: title;
        margin: 0px;
        font-size: 26px;
    }

    .developer-view {
        grid-area: view;
        align-items: center;
        justify-content: flex-end;
        margin: 0px;
        font-size: 14px;
        white-space: nowrap;
        display: flex !important;
    }

    .developer-tabs {
        grid-area: tabs;
        width: 100%;
        display: flex;
        overflow-x: auto;
        gap: 18px;
        white-space: nowrap;
        padding-bottom: 8px;
        scrollbar-width: none;
    }

    .developer-tabs::-webkit-scrollbar {
        display: none;
    }

    .developer-nav {
        display: none;
    }
}

.developer-bottom {
    display: flex;
    justify-content: flex-end;
    align-items: end;
    margin-bottom: 3px;
    border-top: 1px solid rgba(175, 175, 175, 0.33);
}

.location {
    font-size: 16px;
    color: rgb(85, 85, 85);
    margin-top: 3px;
    font-weight: 600;
}

.location i {
    color: rgb(13, 110, 253);
    margin-right: 5px;
}

.view-details {
    color: rgb(13, 110, 253);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
}

.view-details:hover {
    text-decoration: underline;
}

.project-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.project-head h2 {
    font-size: 24px;
    font-weight: 700;
}

.view-all-btn {
    background: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    padding: 7px 15px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
}

.project-slider {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.project-slider::-webkit-scrollbar {
    display: none;
}

.project-card {
    flex: 0 0 calc(20% - 19px);
    min-width: calc(22% - 19px);
    background: rgb(255, 255, 255);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgb(238, 238, 238);
}

.project-image {
    position: relative;
    height: 190px;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rera-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgb(255, 255, 255);
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
}

.wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    border-radius: 50%;
    background: rgb(255, 255, 255);
    font-size: 15px;
}

.project-content {
    padding: 10px 12px;
}

.project-content h3 {
    font-size: 17px;
    margin-bottom: 5px;
    font-weight: 700;
}

.price {
    color: rgb(244, 0, 0);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.project-content p {
    color: rgb(0 0 0);
    margin-bottom: 10px;
    font-size: 12px;
}

.whatsapp-btn {
    display: block;
    text-align: center;
    background: rgb(237, 245, 239);
    color: rgb(37, 211, 102);
    text-decoration: none;
    padding: 10px;
    border-radius: 5px;
    font-weight: 600;
}

@media (max-width: 1200px) {
    .project-card {
        min-width: 300px;
    }
}

@media (max-width: 767px) {
    .project-head {
        align-items: flex-start;
        gap: 10px;
    }

    .project-head h2 {
        font-size: 24px;
        /* margin-left: 0px; */
    }

    .project-image {
        height: 220px;
    }

    .project-content h3 {
        font-size: 20px;
    }

    .price {
        font-size: 23px;
    }
}

@media (max-width: 991px) {
    .project-card {
        flex: 0 0 calc(50% - 12px);
        min-width: calc(50% - 12px);
    }
}

@media (max-width: 576px) {
    .project-card {
        flex: 0 0 80%;
        min-width: 80%;
    }
}

.project-slider {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.project-slider::-webkit-scrollbar {
    display: none;
}

.trending-projects {
    background: rgb(255, 255, 255);
    padding: 24px;
    margin-bottom: 24px;
    margin-top: 24px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 10px 40px;
}

.property-nav {
    display: flex;
    align-items: center;
    gap: 12px;
}

.property-nav .developer-view {
    height: 45px;
    padding: 0px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    background: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.property-nav button {
    width: 35px;
    height: 35px;
    border: 1px solid rgb(229, 229, 229);
    background: rgb(255, 255, 255);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 3px 10px;
    transition: 0.3s;
}

.property-nav button:hover, .property-nav .developer-view:hover {
    background: rgb(247, 247, 247);
}

.testimonial-title {
    font-size: 30px;
    font-weight: 700;
    color: rgb(8, 8, 8);
}

.testimonial-title span {
    color: rgb(29, 25, 25);
}

.testimonial-subtitle {
    font-size: 14px;
    color: rgb(109, 114, 128);
    margin-bottom: 6px;
    margin-top: 8px;
}

.testimonial-bottom-text {
    font-size: 14px;
    color: rgb(109, 114, 128);
    border-bottom: 1px solid rgb(221, 221, 221);
    padding-bottom: 14px;
    margin-bottom: 30px !important;
}

.testimonial-bottom-text span {
    color: rgb(19, 17, 17);
    font-weight: 700;
}

.testimonial-slider {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.testimonial-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 calc(25% - 18px);
    min-width: calc(25% - 18px);
    background: rgb(255, 255, 255);
    border: 1px solid rgb(235, 235, 235);
    border-radius: 5px;
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 2px 15px;
    min-height: 230px;
    position: relative;
}

.testimonial-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 5px;
}

.customer-info {
    display: flex;
    gap: 15px;
    align-items: center;
}

.customer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: rgb(15, 40, 72);
}

.yellow {
    background: rgb(248, 188, 0);
}

.purple {
    background: rgb(234, 216, 242);
}

.gray {
    background: rgb(221, 213, 211);
}

.skin {
    background: rgb(245, 215, 168);
}

.customer-info h4 {
    font-size: 13px;
    font-weight: 700;
    color: rgb(19, 40, 75);
    margin-bottom: 0px;
}

.customer-info span {
    color: rgb(155, 155, 155);
    font-size: 12px;
}

.google-logo {
    width: 38px;
}

.rating {
    color: rgb(247, 181, 0);
    font-size: 22px;
    margin-bottom: 2px;
}

.review-text {
    font-size: 13px;
    color: rgb(80, 91, 107);
    line-height: normal;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    position: absolute;
    right: 25px;
    bottom: 14px;
    color: rgb(226, 83, 74);
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
}

@media (max-width: 991px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 12px);
        min-width: calc(50% - 12px);
    }

    .testimonial-title {
        font-size: 42px;
    }
}

@media (max-width: 767px) {
    .testimonial-card {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .testimonial-title {
        font-size: 29px;
    }

    .testimonial-subtitle, .testimonial-bottom-text {
        font-size: 15px;
    }

    .trending-projects {
        background: rgb(255, 255, 255);
        padding: 0px;
        margin-bottom: 30px;
        margin-top: 40px;
        border-radius: 10px;
        box-shadow: rgba(0, 0, 0, 0.08) 0px 10px 40px;
    }
}

.bhk-section {
    background: rgb(255, 255, 255);
}

.bhk-title {
    font-size: 42px;
    font-weight: 700;
    color: rgb(0, 0, 0);
    position: relative;
    display: inline-block;
}

.bhk-title span {
    position: relative;
}

.bhk-title span::after {
    content: "";
    width: 100%;
    height: 6px;
    background: rgb(80, 78, 78);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -15px;
    border-radius: 20px;
}

.bhk-card {
    border: 1.5px solid rgb(22, 15, 15);
    border-radius: 22px;
    background: rgb(255, 255, 255);
    padding: 17px 20px;
    text-align: center;
    transition: 0.3s;
}

.bhk-card:hover {
    transform: translateY(-5px);
}

.bhk-icon {
    width: 55px;
    height: 55px;
    background: rgb(225, 225, 225);
    border-radius: 15px;
    margin: 0px auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bhk-icon i {
    color: rgb(38, 36, 35);
    font-size: 24px;
}

.bhk-card h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
    color: rgb(17, 17, 17);
}

.bhk-card p {
    font-size: 16px;
    color: rgb(127, 143, 166);
    margin: 0px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .bhk-title {
        font-size: 28px;
    }

    .bhk-card {
        padding: 22px 15px;
    }

    .bhk-card h4 {
        font-size: 22px;
    }

    .bhk-card p {
        font-size: 14px;
    }
}

.locality-section {
    background: rgb(255, 255, 255);
}

.locality-head h2 {
    font-size: 24px;
    font-weight: 700;
    color: rgb(14, 15, 17);
    margin-bottom: 5px;
}

.locality-head p {
    color: rgb(119, 119, 119);
    font-size: 13px;
}

.locality-wrap {
    position: relative;
    margin-top: 30px;
}

.locality-slider {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.locality-slider::-webkit-scrollbar {
    display: none;
}

.locality-card {
    min-width: 300px;
    border: 1px solid rgb(232, 232, 232);
    border-radius: 14px;
    background: rgb(255, 255, 255);
    overflow: hidden;
    flex-shrink: 0;
}

.locality-top {
    padding: 10px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.locality-icon {
    width: 50px;
    height: 50px;
    background: rgb(8, 8, 7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(255, 255, 255);
    font-size: 18px;
}

.locality-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.locality-content h4 {
    font-size: 18px;
    margin-bottom: 5px;
    display: flex;
    gap: 8px;
    align-items: center;
}

.locality-content p {
    color: rgb(102, 102, 102);
    margin: 0px;
    font-size: 12px;
}

.locality-bottom {
    border-top: 1px solid rgb(238, 238, 238);
    display: flex;
}

.locality-bottom a {
    flex: 1 1 0%;
    text-align: center;
    padding: 8px;
    text-decoration: none;
    color: rgb(0, 0, 0);
    font-weight: 600;
}

.locality-bottom a:first-child {
    border-right: 1px solid rgb(238, 238, 238);
}

@media (max-width: 767px) {
    .locality-head h2 {
        font-size: 24px;
    }

    .locality-card {
        min-width: 230px;
    }

    .locality-head {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 30px;
    }

    .locality-nav {
        display: flex;
        gap: 12px;
    }

    .locality-nav button {
        width: 45px;
        height: 45px;
        border: 1px solid rgb(229, 229, 229);
        background: rgb(255, 255, 255);
        border-radius: 50%;
        cursor: pointer;
        box-shadow: rgba(0, 0, 0, 0.08) 0px 3px 12px;
        transition: 0.3s;
    }

    .locality-nav button:hover {
        background: rgb(247, 247, 247);
    }
}

.locality-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: -30px;
}

.locality-nav {
    display: flex;
    gap: 12px;
}

.locality-nav button {
    width: 45px;
    height: 45px;
    border: 1px solid rgb(229, 229, 229);
    background: rgb(255, 255, 255);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 3px 12px;
    transition: 0.3s;
}

.locality-nav button:hover {
    background: rgb(247, 247, 247);
}

.visa-card-body {
    height: 180px;
    overflow: hidden;
}

.visa-card-body img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.locality-nav .developer-view {
    height: 45px;
    padding: 0px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    background: rgb(255, 255, 255);
    color: rgb(1, 2, 2);
    text-decoration: none;
    font-weight: 700;
    white-space: nowrap;
}

.developer-banner-section {
    padding: 40px 0px;
}

.developer-banner-box {
    background: url("/assets/images/loan-banner.webp") center center / cover no-repeat;
    border: 1px solid rgb(240, 210, 138);
    border-radius: 25px;
    padding: 40px 50px;
    min-height: 480px;
    display: flex;
    align-items: center;
}

.developer-content {
    max-width: 800px;
}

.developer-logo {
    width: 130px;
    margin-bottom: 10px;
    filter: invert(1);
}

.developer-content h2 {
    font-size: 30px;
    line-height: 1.2;
    font-weight: 700;
    color: rgb(34, 34, 34);
    margin-bottom: 20px;
}

.developer-points {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.developer-points span {
    font-size: 18px;
    color: rgb(51, 51, 51);
}

.developer-points i {
    color: rgb(199, 146, 34);
    margin-right: 10px;
}

.developer-content h6 {
    color: rgb(199, 146, 34);
    font-size: 18px;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.developer-slider {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scrollbar-width: none;
    margin-bottom: 5px;
    scroll-behavior: smooth;
}

.developer-slider::-webkit-scrollbar {
    display: none;
}

.developer-logo-card {
    min-width: 170px;
    height: 90px;
    background: rgb(255, 255, 255);
    border: 1px solid rgb(236, 236, 236);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.developer-logo-card img {
    max-width: 120px;
    max-height: 45px;
    object-fit: contain;
}

.developer-btns {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

.explore-developer-btn {
    text-decoration: none;
    color: rgb(228, 31, 38);
    font-size: 26px;
    font-weight: 700;
}

.explore-developer-btn i {
    margin-left: 8px;
}

.view-project-btn {
    background: rgb(2, 2, 2);
    color: rgb(255, 255, 255);
    text-decoration: none;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
}

@media (max-width: 991px) {
    .developer-banner-box {
        padding: 30px 20px;
        min-height: auto;
    }

    .developer-content h2 {
        font-size: 34px;
    }

    .developer-points span {
        font-size: 18px;
    }

    .developer-logo {
        width: 170px;
    }

    .view-project-btn {
        font-size: 18px;
        padding: 15px 30px;
    }

    .explore-developer-btn {
        font-size: 20px;
    }

    .developer-logo-card {
        min-width: 140px;
        height: 80px;
    }
}

.explore-projects {
    background: rgb(255, 255, 255);
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
}

.project-tabs {
    display: flex;
    gap: 0px;
    margin-bottom: -23px;
    position: relative;
    z-index: 2;
}

.project-tab {
    width: 165px;
    background: rgb(255, 255, 255);
    padding: 24px 24px 10px;
    text-align: center;
    border-radius: 1px;
    cursor: pointer;
}

.project-tab.active {
    border: 1px solid rgb(204, 204, 204);
}

.tab-icon {
    width: 70px;
    height: 70px;
    background: rgb(255, 255, 255);
    border-radius: 50%;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 5px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto auto 5px;
    font-size: 30px;
}

.project-tab h5 {
    font-size: 20px;
    font-weight: 700;
    margin: 0px;
}

.tab-line {
    width: 35px;
    height: 4px;
    background: rgb(207, 36, 51);
    display: block;
    margin: 6px auto 0px;
    border-radius: 10px;
}

.project-sliding {
    border: 1px solid rgb(204, 204, 204);
    padding: 60px 25px 25px;
    display: flex;
    gap: 20px;
    overflow-x: auto;
    margin-top: 23px;
    scrollbar-width: none;
    scroll-behavior: smooth;
}

.project-sliding::-webkit-scrollbar {
    display: none;
}

.project-carded {
    min-width: 340px;
    background: rgb(255, 255, 255);
    border-radius: 8px;
    padding: 15px;
    display: flex;
    gap: 15px;
    flex-shrink: 0;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 5px 20px;
}

.project-carded img {
    width: 90px;
    height: 120px;
    border-radius: 12px;
    object-fit: cover;
}

.card-content h4 {
    font-size: 20px;
    font-weight: 700;
}

.location {
    color: rgb(119, 119, 119);
}

.card-content a {
    text-decoration: none;
    color: rgb(207, 36, 51);
    font-weight: 700;
}

@media (max-width: 991px) {
    .project-tabs {
        overflow-x: auto;
        gap: 15px;
        padding-bottom: 10px;
    }

    .project-tab {
        min-width: 150px;
    }

    .project-carded {
        min-width: 300px;
    }

    .section-title {
        font-size: 32px;
    }
}

.footer {
    background: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    padding-top: 0px;
}

.callback-box {
    background: rgb(17, 17, 17);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    margin-bottom: 0px;
}

.callback-title h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}

.callback-title p {
    color: rgb(170, 170, 170);
    margin: 0px;
    font-size: 14px;
}

.callback-form {
    flex: 1 1 0%;
    display: flex;
    gap: 15px;
}

.callback-form input {
    flex: 1 1 0%;
    height: 50px;
    border-radius: 10px;
    border: 1px solid rgb(51, 51, 51);
    background: rgb(27, 27, 27);
    color: rgb(255, 255, 255);
    padding: 0px 15px;
}

.callback-form input::placeholder {
    color: rgb(136, 136, 136);
}

.callback-form button {
    min-width: 150px;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: none;
    border-radius: 3px;
    background: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    font-weight: 700;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.3fr;
    gap: 50px;
    padding-bottom: 50px;
}

.footer-logo {
    height: 55px;
    margin-bottom: 20px;
}

.footer-text {
    color: rgb(189, 189, 189);
    line-height: 1.8;
}

.footer-grid h5 {
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-grid ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.footer-grid ul li {
    margin-bottom: 12px;
}

.footer-grid ul li a {
    color: rgb(189, 189, 189);
    text-decoration: none;
    transition: 0.3s;
}

.footer-grid ul li a:hover {
    color: rgb(255, 255, 255);
    padding-left: 6px;
}

.footer-grid p {
    color: rgb(189, 189, 189);
    margin-bottom: 15px;
}

.footer-grid p i {
    width: 24px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 15px 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 30px;
    height: 30px;
    border: 1px solid rgb(51, 51, 51);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgb(255, 255, 255);
    text-decoration: none;
    transition: 0.3s;
}

.social-icons a:hover {
    background: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
}

.footer-bottom p {
    margin: 0px;
    color: rgb(255, 255, 255);
}

@media (max-width: 991px) {
    .callback-box {
        flex-direction: column;
        text-align: center;
    }

    .callback-form {
        width: 100%;
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .callback-title h3 {
        font-size: 28px;
    }
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-links a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: rgb(255, 255, 255);
}

.footer-links span {
    color: rgb(102, 102, 102);
}

.mobile-country-switch {
    display: none;
}

@media (max-width: 991px) {
    .agm-header-wrap {
        display: flex;
        align-items: center;
    }

    .agm-logo {
        flex: 1 1 0%;
    }

    .mobile-country-switch {
        display: flex;
        align-items: center;
        background: rgb(255, 255, 255);
        border-radius: 12px;
        padding: 5px;
        margin-left: auto;
        margin-right: 12px;
        box-shadow: rgba(0, 0, 0, 0.12) 0px 5px 15px;
    }

    .mobile-country-switch .country-btn {
        width: 90px;
        height: 46px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: rgb(17, 17, 17);
        font-size: 17px;
        font-weight: 700;
        border-radius: 10px;
        transition: 0.3s;
    }

    .mobile-country-switch .country-btn.active {
        background: rgb(0, 0, 0);
        color: rgb(255, 255, 255);
    }

    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        color: rgb(255, 255, 255);
        font-size: 28px;
        margin-left: 0px;
    }
}

@media (max-width: 480px) {
    .mobile-country-switch .country-btn {
        width: 75px;
        height: 30px;
        font-size: 15px;
    }

    .mobile-country-switch {
        margin-right: 8px;
    }
}

.locality-view-mobile {
    display: none;
}

@media (max-width: 767px) {
    .locality-view-desktop {
        display: none !important;
    }

    .locality-view-mobile {
        display: flex;
        justify-content: center;
        margin-top: 25px;
    }

    .locality-view-mobile .developer-view {
        background: rgb(0, 0, 0);
        color: rgb(255, 255, 255);
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 14px 100px;
        border-radius: 10px;
        font-size: 15px;
        font-weight: 700;
        letter-spacing: 0.5px;
        transition: 0.35s;
        box-shadow: rgba(0, 0, 0, 0.18) 0px 10px 25px;
    }

    .locality-view-mobile .developer-view i {
        transition: 0.35s;
    }

    .locality-view-mobile .developer-view:hover {
        background: rgb(31, 31, 31);
        color: rgb(255, 255, 255);
        transform: translateY(-3px);
        box-shadow: rgba(0, 0, 0, 0.22) 0px 15px 35px;
    }

    .locality-view-mobile .developer-view:hover i {
        transform: translateX(6px);
    }
}
