@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&display=swap');
:root {
    --primary-color: #a3037b;
    --secondary-color: #6755ed;
    --body-color: #2c2c2c;
    --primary-light: #f9f7eb;
    --secondary-light: #e6e3ff;
    --lightgray: #f5f5f5;
    --lightgreen: #fafff9;
    --josefin: "Josefin Sans", sans-serif;
    --facebook: #4267B2;
    --twitter: #00acee;
    --linkedin: #0e76a8;
    --youtube: #FF0000;
    --whatsapp: #25D366;
    --instagram: #c92bb7;
    --cinzel: "Cinzel", serif;
}

/* ----------------------------------------------------
bg background
 ---------------------------------------------------- */

.bg-white {
    background-color: #fff;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-secondary {
    background-color: var(--secondary-color) !important;
}

.bg-primary-light {
    background-color: var(--primary-light) !important;
}

.bg-secondary-light {
    background-color: var(--secondary-light) !important;
}

/* ----------------------------------------------------
text color
 ---------------------------------------------------- */

.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.text-primary-light {
    color: var(--primary-light) !important;
}

.text-secondary-light {
    color: var(--secondary-light) !important;
}

/* ---------------------------------------------------
 hover animation
 --------------------------------------------------- */

.hoverEffect:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

/* ----------------------------------------------------
social icons
---------------------------------------------------- */

.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.social-links a i {
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    transition: all 300ms ease-in-out;
    text-align: center;
}

.social-links a i.sm {
    width: 32px;
    height: 32px;
}

.social-links a .bi-facebook {
    background-color: var(--facebook);
}

.social-links a .bi-linkedin {
    background-color: var(--linkedin);
}

.social-links a .bi-twitter-x {
    background-color: var(--twitter);
}

.social-links a .bi-youtube {
    background-color: var(--youtube);
}

.social-links a .bi-whatsapp {
    background-color: var(--whatsapp);
}

.social-links a .bi-instagram {
    background-color: var(--instagram);
}

.social-links a:hover i {
    background-color: #fff;
    box-shadow: 0 0 10px rgb(0 0 0 / 10%);
}

.social-links a:hover .bi-facebook {
    color: var(--facebook);
}

.social-links a:hover .bi-linkedin {
    color: var(--linkedin);
}

.social-links a:hover .bi-twitter-x {
    color: var(--twitter);
}

.social-links a:hover .bi-youtube {
    color: var(--youtube);
}

.social-links a:hover .bi-whatsapp {
    color: var(--whatsapp);
}

.social-links a:hover .bi-instagram {
    color: var(--instagram);
}

/* social icons */

/* -----------------------------------------------------
back to top button
----------------------------------------------------- */

#myBtn {
    display: none;
    position: fixed;
    bottom: 50px;
    right: 30px;
    width: 40px;
    height: 40px;
    font-size: 17px;
    border: none;
    outline: none;
    background-color: var(--primary-color);
    color: #fff5f5;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    z-index: 999;
}

#myBtn:hover {
    background-color: var(--body-color);
    color: #fff;
}

/* -----------------------------------------------------
swiper
----------------------------------------------------- */

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ------------------------------------------
swiper-pagination
------------------------------------------ */

.swiper-pagination {
    text-align: center;
    margin-top: 15px;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #ccc;
    opacity: 1;
    border-radius: 50%;
    margin: 0 5px;
    transition: background 0.3s, transform 0.3s;
}

.swiper-pagination-bullet-active {
    background: #ffb800;
    transform: scale(1.4);
}

/* ----------------------------------------------------
 swiper-button-next, 
 swiper-button-prev
 ---------------------------------------------------- */

.swiper-button-next,
.swiper-button-prev {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 184, 0, 0.9);
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: #ffb800;
    transform: scale(1.1);
}

.swiper-button-next {
    right: 10px;
}

.swiper-button-prev {
    left: 10px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 16px;
    font-weight: bold;
}

/* carousel-indicators */

.carousel-indicators {
    bottom: -10px;
}

.carousel-indicators button {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px;
    width: 15px !important;
    height: 15px !important;
    border-radius: 50%;
    background-color: #fff;
    opacity: 0.6;
}

.carousel-indicators .active {
    opacity: 1;
    background-color: var(--primary-color);
}

/* ----------------------------------------------------
Custom Scroll
---------------------------------------------------- */

.scroller {
    height: 240px;
    overflow: auto;
}

.scroller::-webkit-scrollbar {
    width: 5px;
}

/* Track */

.scroller::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px #adadad;
    border-radius: 10px;
}

/* Handle */

.scroller::-webkit-scrollbar-thumb {
    background: #2957a4;
    border-radius: 10px;
}

/* Handle on hover */

.scroller::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* Custom Scroll */

/* -------------------------------------------------
 General Styling
 ------------------------------------------------- */

body {
    font-family: "Poppins", sans-serif;
}

a {
    text-decoration: none;
}

.padding {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.borderRadius {
    border-radius: 10px;
    border-color: var(--primary-color) !important;
    border: 1px solid;
    border-bottom: 10px solid;
}

/* --------------------------------------------------
heading
--------------------------------------------------  */

.heading {
    margin-bottom: 30px;
}

.heading h2 {
    font-weight: 600;
    margin: 0;
    font-size: 2.3rem;
    font-family: var(--cinzel);
    /* text-transform: uppercase; */
}

/* -------------------------------------------------
button
------------------------------------------------- */

.readmore {
    gap: 5px;
}

.readmore .button {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: fit-content;
    font-weight: 500;
    font-size: 14px;
    border-radius: 50px;
    padding: 9px 1.6rem;
    text-transform: uppercase;
    color: #fff;
    overflow: hidden;
    transition: all ease-in-out 0.3s;
    gap: 5px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.readmore .button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 0%;
    width: 100%;
    background-color: #fff;
    z-index: -1;
    transition: height 0.4s ease;
    border-radius: 50px;
}

.readmore .button:hover::before {
    height: 100%;
}

.readmore .button:hover {
    border: 1px solid var(--body-color);
    color: var(--body-color);
}

/* ------------------------------------------------
form
------------------------------------------------ */

/* --------------------------------------------------
modal
-------------------------------------------------- */

.modal-backdrop.show {
    opacity: 1;
    background: rgb(0 10 12 / 95%);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: #fff;
    box-shadow: 0 8px 32px 0 rgba(0 0 0 / 20%);
    border-radius: 1rem;
}

button.close {
    position: absolute;
    right: -20px;
    top: -20px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background-color: #fff;
    opacity: 1;
    text-shadow: none;
}

.close:not(:disabled):not(.disabled):focus,
.close:not(:disabled):not(.disabled):hover {
    color: #fff;
    opacity: 1;
    background-color: var(--secondary-color);
}

.modal-content {
    background-color: #fff;
    color: var(--body-color);
    border: none;
}

.modal-dialog {
    max-width: 700px;
}

.modal-content .modal-header {
    padding: 0;
    border: none;
}

.modal-content button.close {
    position: absolute;
    top: -10px;
    right: -10px;
    padding: 0;
    margin: 0;
    width: 40px;
    height: 40px;
    z-index: 1;
    text-shadow: none;
    color: #fff;
    outline: none;
    border: none;
    background-color: var(--primary-color);
    opacity: 1;
}

.modal-content .freePickmodal {
    margin-top: 10px;
    display: block;
    font-size: 13px;
    text-align: center;
}

.modal-header .close {
    color: #fff;
}

.modal-header {
    background: none;
    border: none;
}

.modal-logo .inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.modal-logo .inner .logo {
    min-width: 230px;
}

.modal-logo .inner .logo img {
    width: 100%;
}

.modal-logo .bhk {
    font-size: 1rem;
}

.modal-logo .bhk span {
    font-size: 200%;
    display: block;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1;
    font-family: var(--cinzel);
}

.modal-logo .price {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 0;
    border: solid rgb(255 255 255 / 20%);
    border-width: 1px 0;
    font-size: 1rem;
}

.modal-logo .price span {
    font-weight: 700;
    color: var(--vibrant-color);
    font-size: 200%;
    line-height: 1;
}

.modal-body {
    padding: 1.5rem;
}

/* -------------------------------------------------
header
------------------------------------------------- */

.header {
    width: 100%;
    position: fixed;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 998;
    padding: 0 1rem;
    background-color: #fff;
    border-bottom: 1px solid var(--body-color);
    transition: all 300ms ease-in-out;
    background-size: 100% 0%;
    background-repeat: no-repeat;
}

.logo {
    width: 85px;
    z-index: 2;
    padding: 10px;
    transition: all 300ms ease-in-out;
}

.logo img {
    width: 100%;
}

.header .logo span {
    font-size: 2rem;
    color: var(--body-color);
}

.header .nav>ul {
    display: flex;
    align-items: center;
    position: relative;
    margin: 0;
}

.header .nav>ul>li>a {
    font-weight: 600;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    position: relative;
    transition: all 300ms ease-in-out;
    padding: 0.8rem;
    color: var(--body-color);
    z-index: 1;
}

.header .nav>ul>li:hover>a {
    color: var(--primary-color);
}

.header .nav ul li:hover>a::before {
    width: 100%;
}

.header .topCTC {
    display: flex;
    transition: all 300ms ease-in-out;
}

.header .topCTC a {
    display: flex;
    align-items: center;
    color: var(--body-color);
    padding: 0px 1rem;
    text-transform: uppercase;
    gap: 10px;
}

.header .topCTC a:first-child {
    border-right: 1px solid var(--body-color);
    color: var(--body-color);
    font-weight: 600;
}

.header .topCTC a i {
    display: flex;
    align-items: center;
    color: var(--body-color);
}

.header .topCTC a img {
    border-right: 1px solid var(--body-color);
    width: 33px;
    margin-right: 3px;
    padding-right: 11px;
}

.header.fixed .menuBtn span::before {
    background: var(--body-color);
}

.menuBtn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 300ms ease-in-out;
    position: relative;
    cursor: pointer;
}

.header.fixed .menuBtn {
    width: 40px;
    height: 40px;
}

.menuBtn div {
    position: relative;
    width: 50%;
    overflow: hidden;
    display: inline-block;
    vertical-align: middle;
    transition: all 300ms ease-in-out;
}

.menuBtn span {
    display: block;
    position: relative;
    width: 100%;
    height: 2px;
    margin: 3px 0;
    transition: all 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.menuBtn span::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--body-color);
    transform-origin: center center;
    transition: all 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.menuBtn.closeMenuBtn span#menuLine1 {
    -webkit-transform: rotate(45deg) translate(4px, 4px);
    transform: rotate(45deg) translate(4px, 4px);
}

.menuBtn.closeMenuBtn span#menuLine2 {
    right: 100px;
}

.menuBtn.closeMenuBtn span#menuLine3 {
    -webkit-transform: rotate(-45deg) translate(4px, -5px);
    transform: rotate(-45deg) translate(4px, -5px);
}

/* ----------------------------------------------------------
menuContainer 
---------------------------------------------------------- */

.menuContainer {
    position: fixed;
    inset: 0;
    padding-top: 64px;
    z-index: 996;
    background-color: rgb(0 123 255 / 13%);
    backdrop-filter: blur(5px);
    display: none;
}

.menuContainer .inner {
    padding: 5px 15px;
    width: 100%;
    visibility: hidden;
    background: white;
    box-shadow: 0 1rem 3rem rgb(0 0 0 / 16%);
    transition: all 300ms ease-in-out;
}

.header.fixed+.menuContainer {
    padding-top: calc(1rem + 80px);
}

.menuContainer.active .inner {
    visibility: visible;
}

.menuContainer a {
    color: var(--body-color);
    transition: all 300ms ease-in-out;
}

.mainMenu li:not(:last-child) a {
    border-bottom: 1px solid rgb(0 0 0 / 15%);
}

.mainMenu a {
    padding: 10px 0;
    font-weight: 500;
    display: block;
    position: relative;
}

.mainMenu a i {
    font-size: 75%;
    position: absolute;
    right: 0;
    top: 50%;
    line-height: 0;
    transition: all 300ms ease-in-out;
}

.mainMenu li.active>a i,
.mainMenu li:hover>a i {
    right: 10px;
}

.mainMenu li.active>a i {
    transform: rotate(540deg);
}

.menuDrop {
    padding: 5px 15px;
    margin-bottom: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    display: none;
}

.mainMenu ul ul li:last-child a {
    border-bottom: 0;
}

/*header*/

/* ---------------------------------------------------
 stickyForm
 ---------------------------------------------------  */

.stickyForm {
    background-color: #fff;
    color: var(--body-color);
    text-align: center;
    transition: all 300ms ease-in-out;
    z-index: 99;
    padding: 1rem;
}

.form-close {
    position: absolute;
    right: -2px;
    top: 0;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: all 300ms ease-in-out;
}

.form-close:hover {
    background: var(--secondary-color);
}

.stickyForm h6,
.stickyForm .form-bhk {
    text-transform: uppercase;
    font-weight: 700;
    color: var(--body-color);
    font-family: var(--cinzel);
}

.stickyForm .form-bhk {
    padding: 0.2rem 0 0.5rem 0;
    border-bottom: solid rgb(0 0 0 / 10%);
    border-width: 1px 0;
}

.stickyForm .form-group {
    margin-bottom: 10px;
}

.stickyForm .form-control,
.modal-body .form-control {
    border-bottom: 2px solid #eaeaea;
    background-color: #f1f1f1;
    color: var(--body-color);
    padding: 6.5px 10px;
    font-size: 14px;
}

.stickyForm span {
    margin-top: 10px;
    display: block;
    font-size: 13px;
}

.stickyForm .freePick {
    font-size: 11px;
}

/* -----------------------------------------------------------
 banner
 ----------------------------------------------------------- */

.banner {
    position: relative;
    background: var(--primary-light);
    z-index: 1;
    overflow: hidden;
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bannercontentbox {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.bannerText {
    z-index: 9;
    text-transform: uppercase;
    padding: 1rem;
    text-align: center;
    color: var(--body-color);
}

.bannerText .upperbox h1 {
    text-transform: uppercase;
    border-width: 1px 0;
    color: var(--body-color);
    font-size: 2rem;
    font-family: var(--cinzel);
}

.bannerText .upperbox p {
    font-family: var(--cinzel);
    margin-top: 7px;
    font-size: 16px;
}

.bannerText p {
    font-family: var(--cinzel);
    letter-spacing: 1px;
    font-size: 1.2rem;
    font-weight: 600;
}

.bannerText .upperbox i {
    color: var(--primary-color);
    margin-right: 5px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px;
}

.bannerText .configrutionMiddlebox {
    padding: 1.4rem 0;
    position: relative;
}

.bannerText .upperbox {
    margin-bottom: 1rem;
}

.bannerText .pricebtn {
    align-items: center;
}

.bannerText .pricebtn p {
    font-size: 1rem;
}

.bannerText .preLaunch {
    margin-top: 1.1rem;
    padding: 10px 0;
    background-color: var(--primary-color);
    color: #fff;
}

.bannerText .preLaunch p {
    font-size: 1rem;
    font-weight: 800;
}

.bannerText span {
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 1.2rem;
    padding: 0 10px;
}

.bannerText span.border-middle-span {
    margin-top: 2rem;
    display: block;
    width: 100%;
    height: 1px;
    background-color: #00000014;
}

.banner .bannerImg {
    width: 100%;
    height: 100vh;
}

.banner .bannerImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 480px) {
.banner .bannerImg img {
    width: 100%;
	margin-top: 50px;
    height: 100%;
    object-fit: cover;
}
}
/* -----------------------------------------
 configurationBtmbox
  ----------------------------------------- */

.configurationBtmbox {
    margin-top: 4rem;
    position: relative;
    padding: 30px;
    padding-top: 85px;
    padding-bottom: 20px;
    border: 1px solid var(--primary-color);
    border: 4px solid red;
}

.bannerHighlightBox {
    width: 80%;
    background-color: var(--primary-color);
    color: var(--body-color);
    position: absolute;
    top: 0;
    background-color: var(--primary-color);
    padding: 8px;
    margin-bottom: 0;
    transform: translate(-50%, -50%);
    left: 50%;
}

.bannerHighlightBox p {
    color: var(--body-color);
}

.configurationBtmbox ul.keyhighlight-ul {
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    justify-content: center;
    gap: 15px;
}

.configurationBtmbox ul.keyhighlight-ul li {
    border-right: 1px solid var(--body-color);
    padding-right: 10px;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
}

/*------------------------------------------------ 
overview
------------------------------------------------ */

.overview {
    position: relative;
}

.overview .overview-img {
    display: flex;
    position: absolute;
    content: '';
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: 400px;
    height: 100%;
    bottom: 0;
    align-items: center;
}

.overview .overview-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overview .contentboxInner {
    text-align: justify;
}

.overview .readmore img:nth-child(1) {
    filter: invert(0);
}

/* -----------------------------------------------
stateinnerbox
----------------------------------------------- */

.stateinnerbox .statesbox {
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.6rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 20px;
}

.stateinnerbox .statesbox p {
    font-size: 2.3rem;
    font-weight: 600;
    color: var(--body-color);
    font-family: var(--cinzel);
}

.stateinnerbox .statesbox span {
    font-size: 1.1rem;
    text-transform: uppercase;
}

/* -------------------------------------------
 amenities
 ------------------------------------------- */

.amenities .innerbox {
    padding: 1rem;
    transition: transform 0.3s ease;
    overflow: hidden;
    height: 100%;
}

.amenities .innerbox .icon {
    width: 45px;
}

.amenities .innerbox .icon img {
    width: 100%;
}

.amenities p {
    margin-top: 10px;
}

/* -------------------------------------------
 floorplans
 ------------------------------------------- */

.floorplans {
    position: relative;
    z-index: 1;
}

.floorplans::before {
    position: absolute;
    content: '';
    inset: 0;
    background-image: url('../images/bg.webp');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: cover;
    z-index: -1;
}

.floorplans .innerBox {
    background-color: var(--primary-light);
    padding: 1rem;
}

/* fpDetails */

.floorplans .fpDetails {
    display: flex;
    justify-content: space-around;
    margin-top: 1.3rem;
}

.floorplans .fpDetails .inner {
    display: flex;
    gap: 10px;
    align-items: center;
}

.floorplans .fpDetails .icon {
    width: 20px;
}

.floorplans .fpDetails .tyBox {
    width: 25px;
}

.floorplans .fptypes {
    color: var(--body-color);
    text-align: start;
}

.floorplans .fp-price {
    background-color: var(--secondary-color);
    padding: 1rem;
    margin-top: 20px;
    display: block;
    font-weight: 600;
}

.floorplans .pagibox {
    width: 100%;
    margin-top: 40px;
    height: 100px;
    border-top: 1px solid var(--body-color);
    border-bottom: 1px solid var(--body-color);
}

.floorplans .swiper-button-next {
    right: 2%;
}

.floorplans .swiper-button-prev {
    left: 2%;
}

.floorplans .swiper-button-next,
.floorplans .swiper-button-prev {
    display: none;
}

.floorplans .readmore img:nth-child(1) {
    filter: invert(0);
}

/* -------------------------------------------
Galllery
------------------------------------------ */

.gallBox {
    height: 100%;
    transition: transform 0.3s ease;
}

.gallBox img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
}

/* ------------------------------------------------
location
------------------------------------------------ */

.location-section {
    background: white;
    text-align: center;
	margin: 60px 0;
}

/* Map Container */
.map-container {
    position: relative;
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding-bottom: 37.88%; /* Aspect ratio: 500/1320 = 0.3788 */
    height: 0;
    overflow: hidden;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Tablet */
@media (max-width: 1024px) {
    .map-container {
        max-width: 100%;
        padding: 0 20px;
        padding-bottom: calc(37.88% + 40px); /* Add padding to maintain aspect ratio */
    }
}

/* Mobile */
@media (max-width: 768px) {
    .map-container {
        padding: 0 15px;
        padding-bottom: 56.25%; /* 16:9 aspect ratio for better mobile viewing */
    }
}

@media (max-width: 480px) {
    .map-container {
        padding: 0 10px;
        padding-bottom: 75%; /* Taller on small screens for better usability */
    }
}

/* --------------------------------------------------
 connectivityBox
 -------------------------------------------------- */

.connectivityBox {
    margin-top: 2rem;
    padding: 2rem;
    background-color: #fff;
}

.connectivityBox .connectbox {
    padding: 1rem;
    height: 100%;
    text-align: center;
    transition: transform 0.3s ease;
}

.connectivityBox .contentbox img {
    width: 45px;
    height: 45px;
    filter: brightness(0) saturate(100%) invert(9%) sepia(79%) saturate(7420%) hue-rotate(311deg) brightness(89%) contrast(98%);
}

.connectivityBox .contentbox p {
    font-size: 1rem;
    font-weight: 500;
    color: var(--body-color);
    margin-top: 10px;
    font-family: var(--cinzel);
}

.connectivityBox .dist {
    margin-top: 10px;
    font-size: 1.4rem;
    font-weight: bold;
    font-family: var(--cinzel);
    color: var(--primary-color);
}

.connectivityBox .dist small {
    margin-left: 4px;
    font-size: 0.8rem;
    color: var(--body-color);
}

/* ------------------------------------------------
 footer
 ------------------------------------------------ */

.footer {
    overflow: hidden;
}

.footer .reraBoxPara {
    padding: 1rem;
    justify-content: space-evenly;
    align-items: center;
    background-color: var(--primary-color);
}

.footer .reraBoxPara a {
    color: #fff;
    text-align: center;
    font-weight: 500;
    cursor: default;
}

.footer .reraBoxPara .imgbox {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.footer .reraBoxPara .img {
    width: 80px;
}

.footer .reraBoxPara .img img {
    width: 100%;
    object-fit: cover;
}

/* ---------------------------------------------------
footer-enquiryBtn
--------------------------------------------------- */

.footer-enquiryBtn {
    position: fixed;
    bottom: 0px;
    left: 0px;
    right: 0px;
    display: flex;
    justify-content: space-between;
    z-index: 99;
    background-color: var(--primary-color);
    box-shadow: 0 0 10px rgb(0 0 0 / 15%);
    text-align: center;
}

.footer-enquiryBtn a {
    color: #fff;
    text-align: center;
    display: block;
    width: calc(100% / 2);
    padding: 8px 5px;
    border: 1px solid rgb(0 0 0 / 15%);
    border-left: 0;
}

.footer-enquiryBtn a.whatsCall {
    background: linear-gradient(45deg, #0db634, #015c16);
    border: 0;
    color: #fff;
}