/* =========================================
   RESET
========================================= */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
    font-family: Poppins, sans-serif;
}

.overlay {
    display: none;
    background: #000000ad;
    width: 100%;
    height: 100%;
    position: fixed;   /* better than absolute */
    top: 0;
    left: 0;
    z-index: -1;
}

.menu-toggle:checked ~ .overlay {
    display: block;
}


/* =========================================
   HEADER
========================================= */
.head {
    background-color: #710e11;
    padding: 10px 20px;
    position: fixed;
    width: 100%;
    z-index: 1;
}

/* NAVBAR */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.navbar .logo {
    width: 95px;
}

/* NAV MENU */
.navlist {
    display: flex;
    gap: 30px;
    list-style: none;
}

.navlist li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s;
    font-family: Oswald, sans-serif;
    letter-spacing: 1px;
    
}

.navlist li a {
    position: relative;
    color: white;
    text-decoration: none;
}

/* Underline (initial hidden) */
.navlist li a::before {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    height: 2px;
    width: 0;
    background-color: #f0a500;
    transition: width 0.3s ease;
}

/* Hover underline expands */
.navlist li a:hover::before {
    width: 100%;
}

/* Text color hover */
.navlist li a:hover {
    color: #f0a500;
}


/* ============================
   HAMBURGER MENU (TABLET/MOBILE)
   ============================ */

.menu-toggle {
    display: none;
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: white;
    transition: 0.3s;
}
/* =========================================
   HERO SECTION
========================================= */
.hero-bg {
    /* background-image: url("../IMG/building.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;  */
}

.side-buld {
    width: 450px;
    height: 350px;
    /* background: red; */
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
}

.side-buld img {
    width: 400px;
}

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    animation: fade 12s infinite;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Animation timing for each slide */
.hero-bg:nth-child(1) {
    animation-delay: 0s;
}
.hero-bg:nth-child(2) {
    animation-delay: 4s;
}
.hero-bg:nth-child(3) {
    animation-delay: 8s;
}

/* Fade animation keyframes */
@keyframes fade {
    0%   { opacity: 0; }
    10%  { opacity: 1; }
    33%  { opacity: 1; }
    43%  { opacity: 0; }
    100% { opacity: 0; }
}

/* =========================================
   PROPERTY SECTION
========================================= */

.side-buld {
    width: 626px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
}

.side-buld img {
    /* width: 100%; */
    max-width: 1010px;
    height: auto;
    border-radius: 7px;
}


.about-main {
    display: flex;
    justify-content: center;
    align-items: center;
        margin: 0 190px;
}
.property-section {
    width: 100%;
  display: flex;
  justify-content: center;
  padding: 50px 0;
  background: #fff;
    background-repeat: repeat;
    background-image: none;
    background-size: auto;
  margin: auto;
  flex-direction: column;
  /* background-image: url('../IMG/freepik__background__98545.png');
  background-size: cover;
  background-repeat: no-repeat; */
}

.container-box {
    width:95%;
  background: #710e11;
  color: #fff;
  display: flex;
  padding: 46px 10px;
  gap: 2px;
  /* margin: auto; */
    
}

/* LEFT BOX */
.left-box {
    width: 99%;
    line-height: 1.6;
    margin: 0 60px;
}

.left-box h1 {
    font-size: 40px;
    margin-bottom: 10px;
    font-family: Oswald, sans-serif;
    font-weight: 300;
}

.location {
    color: #fff;
    margin-bottom: 0px;
    font-weight: 300;
}

.line {
    margin-bottom: 15px;
}

.line span {
    width: 34px;
    height: 1px;
    display: block;
    background: rgb(255 255 255 / 52%);
}

/* BROCHURE BUTTON */
.brochure-btn {
    background-color: transparent;
    text-transform: uppercase;
    border-radius: 4px;
    min-width: 200px;
    font-size: 12px;
    font-weight: 500;
    color: #ffffff;
    padding: 19px 20px;
    letter-spacing: 2px;
    display: inline-block;
    margin-top: 25px;
    border: 2px solid #f0a500;
    transition: 0.3s ease;
    text-decoration: none;
}

.brochure-btn em {
    height: 1px;
    background: #fff;
    width: 20px;
    transition: all .3s ease;
    display: inline-block;
    margin-left: 10px;
}

.brochure-btn:hover {
    background: #f0a500;
    color: #000;
}

.brochure-btn:hover em {
    width: 25px;
    background-color: black;
}

/* RIGHT BOX */
.right-box {
    width: 68%;
    padding: 0 60px;
    border-left: 2px solid rgb(201 201 201 / 17%);
}

.right-box h2 {
    font-size: 40px;
    margin-bottom: 25px;
    color: #f5c91b;
}

.right-box ul {
    list-style: none;
}

.right-box ul li {
    margin-bottom: 20px;
    font-size: 16px;
    padding-left: 50px;
    position: relative;
    line-height: 2;
    color: #cfcfcf;
}

.right-box ul li span {
    font-size: 30px;
    position: absolute;
    left: 0;
    top: 0;
    color: #cfcfcf;
}

.right-box strong { color: #fff; }

/* =========================================
   OVERVIEW SECTION + TABS
========================================= */
.overview-section {
    width: 100%;
    padding: 20px 0;
}

.tab-header {
    width: 70%;
    margin: 0 auto 40px auto;
    display: flex;
    justify-content: center;
    /* width: 100%; */
}

.tab {
    width: 100%;
    text-align: center;
    padding: 18px 0;
    font-weight: bold;
    cursor: pointer;
    background: #222;
    color: #fff;
    font-size: 15px;
}

.tab.active {
    background: #710e11;
}

/* CONTENT */
.content-wrapper {
    width: 50%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.left-content {
    width: 55%;
    line-height: 1.7;
}

.left-content ul { padding-left: 20px; }
.left-content ul li { margin-bottom: 12px;
list-style: none; }

.right-image {
    width: 40%;
}

.right-image img {
    width: 100%;
    border-radius: 4px;
    height: 420px;
    object-fit: cover;
}

#tab-one-cont, #tab-two-cont { display: none; }
#tab-one-cont.active, #tab-two-cont.active { display: block; }

/* =========================================
   FLOOR PLAN SECTION
========================================= */

.btn-unit.active {
    background: #710e11;
    color: white;
}
.floorplan-right img {
    width: 100%;
    display: none;
}

.floor-plan {
    background: rgb(113, 14, 17) ;
    padding-bottom: 44px;
}

.floorplan-section {
    width: 90%;        /* 🔥 pehle 53% tha */
    max-width:1018px; /* professional look */
    display: flex;
    gap: 0px;
    padding: 50px 0;
    margin: auto;
    align-items: stretch;
}


/* LEFT */
.floorplan-left {
    width: 100%;
    background: #59090b;
    color: #fff;
    padding: 48px 30px;
}

.floorplan-left h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
}



/* TABLE */
.unit-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.unit-table th,
.unit-table td {
    border: 1px solid #f0a500;
    padding: 12px 15px;
    font-size: 15px;
}

.unit-table th {
    background: #710e11;
    font-weight: 600;
}

/* BUTTONS */
.unit-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-unit {
    padding: 12px 20px;
    border: 2px solid #f0a500;
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.btn-unit:hover,
.btn-unit.active {
    background: #f0a500;
    color: #000;
}

/* RIGHT */
.floorplan-right {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 10px 0px;
    background-color: white;
}

.floorplan-right img {
    width: 100%;
    height:auto;
    object-fit: contain;
}

/* =========================================
   GALLERY SECTION
========================================= */
.gallery-section {
    text-align: center;
    padding: 60px 0;
    background: #ffffff;
    overflow: hidden;
}

.gallery-section h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 30px;
}

.gallery-slider {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

.gallery-slider .swiper-slide img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 4px;
}

/* CUSTOM ARROWS */
.custom-next,
.custom-prev {
    background: #710e11;
 
  
}


.custom-next::after,
.custom-prev::after {
    font-size: 18px;
    color: #fff;
}

.swiper-button-prev::after, .swiper-rtl .swiper-button-next::after {
  /* content: 'prev'; */
  font-size: 26px;
}


/* =============================
   LOCATION SECTION
============================= */

/* =============================
   LOCATION SECTION
============================= */
.location-section {
    background: #ffffff;
    padding: 0;
}

.location-container {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: space-between;
    width: 100%;
}

/* LEFT SIDE MAP */
.location-left {
    flex: 1;
    min-width: 300px;
}

.location-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* RIGHT SIDE BLACK BOX */
.location-right {
    flex: 1;
    min-width: 300px;
    background: #710e11;
    color: white;
    padding: 50px 40px;
}

.location-right h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
}

.location-right ul {
    list-style: none;
    padding-left: 0;
}

.location-right ul li {
    font-size: 18px;
    margin: 10px 0;
    position: relative;
    padding-left: 20px;
}

.location-right ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #f0a500;
    font-size: 22px;
}

/* =============================
   FEATURES SECTION
============================= */
.features-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    background-color: #710e11; /* dark background */
    padding: 60px 20px;
    width: 100%;
    max-width: 1340px;
    margin: auto;
}

.features-text {
    flex: 1;
    min-width: 280px;
    max-width: 600px;
    margin-right: 40px;
}

.features-text h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #fff;
}

.feature-item {
    margin-bottom: 25px;
}

.feature-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #f0a500; /* accent color */
    border-left: 3px solid #f0a500;
    padding-left: 10px;
}

.feature-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #ccc;
    width: 100%;
    max-width: 290px;
}

.features-image {
    flex: 1;
    min-width: 280px;
}

.features-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
}

/* ROWS FLEX */
.row-one, .row-two {
    display: flex;
    /* flex-wrap: wrap; */
    justify-content: space-between;
}







/* =========================================
   CONTACT FORM
========================================= */


.interested-section {
    padding: 80px 0;
    position: relative;
    color: rgb(44, 1, 1);
    background: linear-gradient(0deg, rgb(255, 255, 255) 45%, #710e11 40%);
  padding-bottom: 44px;
}

/* Title Area */
.heading-box {
    text-align: left;
    margin-left: 476px;
}

.heading-box h1 {
    font-size: 60px;
    font-weight: 800;
    margin: 0;
    letter-spacing: 2px;
    color: white;
}

.heading-box h3 {
   font-size: 22px;
  color: #f0a500;
  margin-bottom: 21px;
}

.divider {
    width: 100%;
    height: 1px;
    background: #00aaff;
    margin-top: 20px;
}

/* Content Wrapper */
#contact-form{
    
    display: flex;
    justify-content: space-between;
    padding: 60px 50px;
    background: #5e090b;
}

/* Form */



.form-box {
    width: 55%;
}

.form-box input,
.form-box textarea {
    width: 100%;
    padding: 20px;
    margin-bottom: 20px;
    background: #fff;
    border: none;
    font-size: 16px;
}

.form-box textarea {
    height: 150px;
    resize: none;
}

.submit-btn {
    background-color: transparent;
    text-transform: uppercase;
    border-radius: 4px;
    min-width: 200px;
    font-size: 12px;
    font-weight: 500;
    color: #ffffff;
    padding: 19px 20px;
    letter-spacing: 2px;
    display: inline-block;
    margin-top: 25px;
    border: 2px solid #f0a500;
    transition: 0.3s ease;
    text-decoration: none;
}

.submit-btn:hover{
background-color: #f0a500;
color: black;
}

.submit-btn span {
    margin-left: 10px;
}

/* Right Image */
.image-box {
    width: 40%;
}

.image-box img {
   width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  max-width: 390px;
  max-height: 465px;
  top: 150px;
}

.form-box textarea {
    height: 150px;
    resize: vertical;
}


.form-box-2{
  
  width: auto;

}
.content-wrapper-2 {
  width: auto;
  position: fixed;
  top: 100px;
  z-index: 5;
  left: 0;
  right: 0;
}


/* Background overlay */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: none;
    z-index: 998;
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Popup box */
.popup-box {
    position: fixed;
    /* top: 50%; */
    left: 50%;
    transform: translate(-50%, -50%) scale(0.7);
    /* background: white; */
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 0 25px rgba(0,0,0,0.3);
    display: none;
    z-index: 999;
    width: 90%;
    max-width: 450px;

    /* Animation */
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

/* Show class for animation */
.popup-overlay.show {
    opacity: 1;
}

.popup-box.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Close button */



/* Close button */
.close-btn {
  position: absolute;
  right: 15px;
  top: 10px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #5e090b;
  background: white;
  padding: 0px 5px;
  border-radius: 5px;
}







/* Social Media Bar */
.social-bar {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    z-index: 5;
}

.social-bar a {
    display: block;
    padding: 12px;
    background: #f0a500;
    border-bottom: 1px solid #a87404;
}


.social-bar a i {
    color: white;
    font-size: 18px;
}




@media(max-width: 1300px){
    .container-box {
  width: auto;}


  .about-main {
 
  gap: 30px;
}
}



/* ------------------------------- */
/*       RESPONSIVE STYLES         */
/* ------------------------------- */

/* Large Tablets & Small Laptops */
@media (max-width: 992px) {
    .heading-box {
        margin-left: 200px;
    }

    .heading-box h1 {
        font-size: 45px;
    }

    .content-wrapper {
        padding: 40px 30px;
    }

    .image-box img {
        position: static;
        max-width: 100%;
        max-height: 380px;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .heading-box {
        text-align: center;
        margin-left: 0;
    }

    .heading-box h1 {
        font-size: 40px;
    }

    .content-wrapper {
        flex-direction: column;
        padding: 30px 20px;
        text-align: center;
    }

    .form-box {
        width: 100%;
    }

    .image-box {
        width: 100%;
        margin-top: 40px;
    }

    .image-box img {
        width: 80%;
        margin: auto;
        display: block;
        position: static;
        height: auto;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .heading-box h1 {
        font-size: 32px;
    }

    .heading-box h3 {
        font-size: 18px;
    }

    .content-wrapper {
        padding: 20px;
    }

    .submit-btn {
        width: 100%;
        min-width: auto;
    }

    .image-box img {
        width: 100%;
    }
}






/* =============================
   RESPONSIVE QUERIES
============================= */

/* Tablets */
@media (max-width: 1024px) {
    .features-section, .location-container {
        padding: 40px 20px;
    }

    .features-text, .features-image,
    .location-left, .location-right {
        flex: 1 1 100%;
        max-width: 100%;
        margin: 0;
    }

    .features-text {
        margin-bottom: 30px;
    }

    .location-right {
        padding: 30px 20px;
    }

    .features-text h2 {
        font-size: 32px;
    }

    .feature-item h3 {
        font-size: 18px;
    }

    .feature-item p {
        font-size: 15px;
        max-width: 100%;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    .features-section, .location-container {
        flex-direction: column;
        padding: 30px 15px;
    }

    .features-text h2 {
        font-size: 28px;
    }

    .feature-item h3 {
        font-size: 16px;
    }

    .feature-item p {
        font-size: 14px;
    }

    .location-right h2 {
        font-size: 28px;
    }

    .location-right ul li {
        font-size: 16px;
    }
    .row-one, .row-two {
  
    flex-wrap: wrap;
    
}

.container-box {
  width: 100%;}
.hero{
    height: 50vh;
}
}

/* Small Phones */
@media (max-width: 480px) {
    .features-section, .location-container {
        padding: 20px 10px;
    }

    .features-text h2,
    .location-right h2 {
        font-size: 24px;
    }

    .feature-item h3 {
        font-size: 14px;
    }

    .feature-item p {
        font-size: 13px;
    }

    .location-right ul li {
        font-size: 14px;
    }
}

/* =============================
   RESPONSIVE
============================= */

@media (max-width: 992px) {
    .location-container {
        flex-direction: column;
    }

    .location-left,
    .location-right {
        width: 100%;
    }

    .location-right {
        padding: 40px 25px;
    }

    .location-right h2 {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .location-right ul li {
        font-size: 16px;
    }

    .location-right h2 {
        font-size: 24px;
    }
}





/* =========================================
   FOOTER
========================================= */
.footer {
    background: #710e11;
    padding: 97px 0 20px 0;
    color: #fff;
}

.footer-container {
    width: 58%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.footer-about {
    width: 30%;
}

.footer-logo {
    width: 140px;
    margin-bottom: 20px;
}

.footer-about p {
    font-size: 14px;
    color: #ccc;
    line-height: 1.7;
}

.footer h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #f5c91b;
}

.footer-links ul,
.footer-social ul {
    list-style: none;
}

.footer-links ul li,
.footer-social ul li {
    margin-bottom: 10px;
}

.footer-links a,
.footer-social a {
    color: #ccc;
    font-size: 14px;
    text-decoration: none;
}

.footer-links a:hover,
.footer-social a:hover {
    color: #f5c91b;
}

.footer-contact p {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 12px;
}

.footer-contact i,
.footer-social i {
    margin-right: 8px;
    color: #f5c91b;
}

.footer-bottom {
    width: 58%;
    margin: 40px auto 0 auto;
    border-top: 1px solid #610508;
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.footer-bottom a {
    color: #fff;
}

.footer-bottom a:hover { text-decoration: underline; }

/* =========================================
   RESPONSIVE SECTION
========================================= */

/* LARGE TABLETS (max-width: 1200px) */
@media (max-width: 1200px) {
    .property-section,
    .footer-container,
    .footer-bottom {
        width: 80%;
    }
}

/* TABLETS (max-width: 992px) */
@media (max-width: 992px) {

    .container-box {
        flex-direction: column;
        text-align: center;
    }

    .left-box {
        width: 100%;
        margin: 0;
        padding: 0 20px;
    }

    .right-box {
        width: 100%;
        padding: 40px 20px;
        border-left: none;
        border-top: 1px solid rgb(201 201 201 / 20%);
        text-align: center;
    }

    .right-box ul li { padding-left: 20px; }

    .property-section { width: 90%; }

    .content-wrapper {
        width: 80%;
        flex-direction: column;
        text-align: center;
    }

    .left-content,
    .right-image { width: 100%; }

    .right-image img { height: auto; }

    .tab-header {
        width: 90%;
        flex-direction: column;
        gap: 10px;
    }

    .tab { width: 100%; }

    /* floor plan */
    .floorplan-section {
        flex-direction: column;
        text-align: center;
        width: auto;
    }

    .floorplan-left { padding: 40px 20px; }
    .floorplan-left h1 { font-size: 30px; }
    .floorplan-right img { max-height: 450px; }
}

/* MOBILE (max-width: 768px) */
@media (max-width: 768px) {

    .navbar {
        flex-direction: column;
        text-align: center;
    }

    .navlist {
        flex-direction: column;
        gap: 12px;
        margin-top: 10px;
    }

    .hero-bg { height: 60vh; }

    .property-section {
        width: 100%;
        padding: 20px 10px;
    }

    .left-box h1 { font-size: 28px; }

    .right-box h2 {
        font-size: 28px;
        line-height: 35px;
    }

    .right-box ul li { font-size: 14px; }

    .content-wrapper { width: 95%; }

    .footer {
        padding: 60px 0 20px;
    }

    .footer-container {
        width: 90%;
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom {
        width: 90%;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    /* floor plan small devices */
    .floorplan-left h1 { font-size: 26px; }

    .unit-table th,
    .unit-table td {
        font-size: 14px;
        padding: 10px;
    }

    .btn-unit {
        font-size: 13px;
        padding: 10px 15px;
    }

    .floorplan-right img { max-height: 380px; }

    .gallery-slider .swiper-slide img { height: 250px; }

    .gallery-slider .swiper-slide {
    width: 120px !important;
    margin-right: 0px !important;
}
}

/* SMALL PHONES (max-width: 480px) */
@media (max-width: 480px) {

    .left-box h1,
    .right-box h2 {
        font-size: 24px;
    }

    .brochure-btn {
        font-size: 10px;
        padding: 15px 15px;
        min-width: 160px;
    }

    .tab {
        font-size: 13px;
        padding: 14px 0;
    }

    .left-content ul li { font-size: 14px; }

    .floorplan-left {
        padding: 30px 18px;
    }

    .floorplan-left h1 {
        font-size: 22px;
    }

    .unit-table th,
    .unit-table td {
        font-size: 12.5px;
        padding: 8px;
    }

    .btn-unit {
        font-size: 12px;
        padding: 9px 12px;
    }

    .floorplan-right img { max-height: 300px; }

    .gallery-section h2 { font-size: 28px; }

    .custom-next,
    .custom-prev {
        width: 32px;
        height: 32px;
    }
}

/* ─── Responsive ───────────────────── */
@media (max-width: 768px) {

    .hamburger {
            display: flex;
            display: flex;
            margin-top: 9px;
            position: absolute;
            left: 6px;
            top: 70px;
        }

    .navlist {
        position: fixed;
        top: 94px;
        right: -100%;
        width: 200px;
        height: 100vh;
        background: #710e11;
        flex-direction: column;
        padding: 40px 20px;
        gap: 20px;
        transition: 0.4s ease;
    }

    /* Open menu when checkbox checked */
    .menu-toggle:checked ~ .navlist {
        right: 0;
    }

     .overlay:checked ~ .navlist {
        right: 0;
    }
     

    /* BURGER ANIMATION */
  /* PERFECT CROSS */
.menu-toggle:checked + .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle:checked + .hamburger span:nth-child(2) {
    opacity: 0;
}

.menu-toggle:checked + .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}


}

/* =========================================
   RESPONSIVE GALLERY
========================================= */

/* Tablet (max-width: 992px) */
@media (max-width: 992px) {

    .gallery-section h2 {
        font-size: 32px;
        margin-bottom: 25px;
    }

    .gallery-slider {
        width: 95%;
    }

    .gallery-slider .swiper-slide img {
        height: 280px;   /* reduce height */
    }

    .custom-next,
    .custom-prev {
        width: 35px;
        height: 35px;
    }

    .custom-next::after,
    .custom-prev::after {
        font-size: 16px;
    }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {

    .gallery-section {
        padding: 40px 0;
    }

    .gallery-section h2 {
        font-size: 28px;
    }

    .gallery-slider {
        width: 100%;
    }

    .gallery-slider .swiper-slide img {
        height: 220px;
        border-radius: 6px;
    }

    /* Arrows - smaller for mobile */
    .custom-next,
    .custom-prev {
        width: 30px;
        height: 30px;
    }

    .custom-next::after,
    .custom-prev::after {
        font-size: 14px;
    }
    .footer-about {
  width: auto;
}
}

/* Extra Small Phones (max-width: 480px) */
@media (max-width: 480px) {

    .gallery-section h2 {
        font-size: 24px;
    }

    .gallery-slider .swiper-slide img {
        height: 180px;
    }

    .custom-next,
    .custom-prev {
        width: 28px;
        height: 28px;
    }

    .custom-next::after,
    .custom-prev::after {
        font-size: 12px;
    }
}


@media (max-width:1698px) {
    .heading-box {
  text-align: left;
  margin-left: 420px;
}
}


@media (max-width:1560px) {
    .heading-box {
  text-align: left;
  margin-left: 390px;
}
}


@media (max-width:1408px) {
    .heading-box {
  text-align: left;
  margin-left: 353px;
}
}



@media (max-width:1306px) {
    .heading-box {
  text-align: left;
  margin-left: 323px;
}
}


@media (max-width:1268px) {
    .heading-box {
  text-align: left;
  margin-left: 249px;
}
}


@media (max-width:1142px) {
    .heading-box {
 margin: auto;
  text-align: center;
}

.image-box  {
 
  display: none;
}

.form-box {
  width: auto;
}
}


@media (max-width:1703px) {
  .floorplan-right {
  
  padding: 21px 0px;
}
}
@media (max-width:1646px) {
  .floorplan-right {
  
  padding: 49px 0px;
}
}

@media (max-width:1527px) {
  .floorplan-right {
  
  padding: 76px 0px;
}
}

@media (max-width:1515px) {
  .floorplan-right {
  
  padding: 88px 0px;
}
}

@media (max-width:1506px) {
  .floorplan-right {
  
  padding: 99px 0px;
}
}




@media (max-width:993px) {
  .floorplan-right {
  
  padding: 0px 0px;
}
}

@media (max-width: 1024px) {
    .about-main {
        margin: 0 60px;
        flex-direction: column;
        gap: 0px;
    }

    .side-buld {
        width: 100%;
        max-width: 500px;
        margin: auto;
            margin-bottom: 70px;
    }
}


@media (max-width: 768px) {
    .about-main {
        margin: 0 20px;
    }

    .side-buld {
        width: 100%;
        max-width: 100%;
    }

    .side-buld img {
        width: 80%;
        border-radius: 12px;
    }
}


@media (max-width: 480px) {
    .side-buld {
        padding: 10px;
    }

    /* .side-buld img {
        width: 100%;
        border-radius: 10px;
    } */
}








