/* ==== WELCOME SECTION ====*/
/* Big laptop */
@media (min-width: 1025px) and (max-width: 1536px) {

  /* INTRO / WELCOME SCREEN */
  #intro {
    padding: 0 60px;
    /* slight inner spacing for laptops */
  }


  /* BACKGROUND IMAGE */
  .intro-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* LOGO WRAPPER */
  .logo-box {
    text-align: center;
  }
}





/* Small Laptop */
@media (max-width: 1024px) {

  /* INTRO / WELCOME SCREEN */
  #intro {
    padding: 0 40px;
  }

  /* BACKGROUND IMAGE */
  .intro-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  /* LOGO WRAPPER */
  .logo-box {
    text-align: center;
  }

  /* LOGO IMAGE */
  .logo-box img {
    width: 310px;
    max-width: 100%;
    height: auto;
  }

  /* TEXT */
  .logo-box h1 {
    font-size: 18px;
    letter-spacing: 2px;
  }
}

/* Tablet */
@media (max-width: 768px) {

  /* INTRO / WELCOME SCREEN */
  #intro {
    padding: 0 24px;
  }

  /* BACKGROUND IMAGE */
  .intro-bg {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: right center;
  }

  /* LOGO WRAPPER */
  .logo-box {
    text-align: center;
    margin-right: 50%;
  }

  /* LOGO IMAGE */
  .logo-box img {
    width: 300px;
    max-width: 100%;
    height: auto;
  }

  /* TEXT */
  .logo-box h1 {
    font-size: 16px;
    letter-spacing: 2px;
  }
}


/* Mobile */
@media (max-width: 425px) {

  /* INTRO / WELCOME SCREEN */
  #intro {
    padding: 0 16px;
  }

  /* BACKGROUND IMAGE – RIGHT ALIGNED */
  .intro-bg {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    object-position: 85% center;
    /* 👈 RIGHT focus */
  }

  /* LOGO POSITION */
  .logo-box {
    text-align: center;

  }

  /* LOGO SIZE */
  .logo-box img {
    width: 250px;
    max-width: 100%;
    height: auto;
  }

  /* TEXT */
  .logo-box h1 {
    font-size: 14px;
    letter-spacing: 1.5px;
  }
}





/*=============================
  Navebar Responsive Styles
  =============================*/

/* ================================
   Laptop view: 1025px – 1536px
================================ */
@media (min-width: 1025px) and (max-width: 1536px) {

  .main-navbar {
    width: 100%;
    top: 0;
    z-index: 1000;
    background-color: #ffffff;
  }

  .main-navbar .real-navbar {
    position: fixed;
    width: 100%;
  }

  .nav-container {
    width: 100%;
    /* ✅ IMPORTANT */
    max-width: 1360px;
    margin: 0 auto;
    padding: 18px 48px;
    /* 🔥 REDUCED from 100px */
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
  }

  /* Match filter panel padding to navbar on laptop */
  .result-filter-panel {
    padding: 18px 48px;
  }

  /* Logo */
  .logo img {
    width: 190px;
    /* slight optimization */
  }

  /* Right side */
  .nav-right {
    margin-left: 0;
    /* 🔥 remove conflict */
    display: flex;
    align-items: center;
    gap: 28px;
  }

  /* Menu */
  .menu {
    display: flex;
    align-items: center;
    gap: 22px;
  }

  .menu-link {
    font-size: 17px;
    font-weight: 500;
    white-space: nowrap;
  }

  /* Search */
  .search-box img {
    width: 17px;
    height: 17px;
  }

  /* Hamburger hidden */
  .hamburger {
    display: none;
  }
}


/* ==============================
   TABLET NAVBAR FIX (768–1024px)
================================ */
@media (min-width: 768px) and (max-width: 1024px) {

  html,
  body {
    overflow-x: hidden;
  }

  /* Navbar container */
  .nav-container {
    padding: 16px 32px !important;
    /* 🔥 reduce from 100px */
    width: 100%;
    justify-content: space-between;
  }

  /* Match filter panel padding to navbar on tablet */
  .result-filter-panel {
    padding: 16px 32px;
  }

  /* Logo */
  .logo img {
    width: 150px;
  }

  /* Right side */
  .nav-right {
    margin-left: 0 !important;
    /* 🔥 remove auto push */
    gap: 16px !important;
    width: auto;
  }

  /* Show hamburger on tablet */
  .hamburger {
    display: flex !important;
    z-index: 1101;
  }

  /* SEARCH */
  .search-box {
    width: 35px;
    height: 35px;
    border-radius: 8px;
  }

  .search-box img {
    width: 23px;
    height: auto;
  }

  /* Hide inline menu (important) */
  .menu {
    display: none !important;
  }

  /* Tablet dropdown menu */
  .nav-right .menu.active {
    display: flex !important;
  }

  .nav-right .menu {
    position: fixed;
    top: 76px;
    left: 50%;
    /* ✅ correct centering */
    transform: translateX(-50%) scale(0.95);

    width: calc(100% - 64px);
    max-width: 420px;

    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);

    flex-direction: column;
    align-items: center;
    gap: 10px;

    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;

    transition: 0.3s ease;
    z-index: 1100;
  }

  .menu-link {
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
  }

  .nav-right .menu.active {
    max-height: 360px;
    padding: 28px 24px;
    opacity: 1;
    transform: translateX(-50%) scale(1);
    pointer-events: auto;
  }
}






/* ============================
   MOBILE NAVBAR FIX (≤425px)
============================ */
@media (max-width: 425px) {

  /* Prevent horizontal overflow */
  html,
  body {
    overflow-x: hidden;
  }

  /* Navbar container */
  .nav-container {
    padding: 12px 16px !important;
    /* 🔥 remove 100px padding */
    width: 100%;
    justify-content: space-between !important;
  }

  /* Match filter panel padding to navbar on mobile */
  .result-filter-panel {
    padding: 12px 16px;
  }

  /* Logo */
  .logo img {
    width: 140px;
    /* smaller logo for mobile */
  }

  /* Right side (search + hamburger) */
  .nav-right {
    margin-left: 0 !important;
    /* 🔥 REMOVE auto push */
    gap: 12px !important;
    width: auto !important;
    flex-shrink: 0;
  }

  /* SEARCH */
  .search-box {
    width: 35px;
    height: 35px;
    border-radius: 8px;
  }

  .search-box img {
    width: 23px;
    height: auto;
  }


  /* Hamburger */
  .hamburger {
    display: flex !important;
    margin: 0 !important;
  }

  .hamburger span {
    width: 24px;
    height: 2px;
    background: #000;
    border-radius: 2px;

  }

  .nav-right .menu {
    position: fixed;
    top: 70px;
    left: 50%;
    /* ✅ center properly */
    transform: translateX(-50%) scale(0.95);

    width: calc(100% - 32px);
    max-width: 360px;

    background: #fff;
    border-radius: 14px;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.15);

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;

    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;

    transition: 0.3s ease;
    z-index: 1100;
  }

  .menu-link {
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
  }

  .nav-right .menu.active {
    max-height: 320px;
    padding: 22px 20px;
    opacity: 1;
    transform: translateX(-50%) scale(1);
    pointer-events: auto;
  }

}




/* =====================
   HERO – LAPTOP
===================== */
/* ===== BIG LAPTOP RESPONSIVE (1025px – 1536px) ===== */
@media (min-width: 1025px) and (max-width: 1536px) {

  .hero {
    height: 90vh;
    /* slightly shorter than desktop */
  }

  /* PANELS */
  .panel {
    transition: width 0.7s ease;
  }

  /* CONTENT */
  .content {
    max-width: 360px;
  }

  .tag {
    display: inline-block;
    padding: 0 20px;

  }

  .tag-img {
    width: 220px;
    /* adjust size as needed */
    height: auto;
    display: block;
  }

  .text h2 {
    max-width: 350px;
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 10px;
  }

  /* BUTTON */
  .hero .hero-btn {
    margin-top: 24px;
    padding: 10px 22px;
    font-size: 13px;
  }

}


/* ===== SMALL LAPTOP RESPONSIVE (max-width: 1024px) ===== */
@media (max-width: 1024px) {

  .hero {
    height: 85vh;
    /* reduce vertical pressure */
  }

  /* PANELS */
  .panel {
    transition: width 0.65s ease;
  }

  /* CONTENT */
  .content {
    max-width: 320px;
  }

  .tag {
    display: inline-block;
    padding: 0 20px;

  }

  .tag-img {
    width: 200px;
    /* adjust size as needed */
    height: auto;
    display: block;
  }

  .text h2 {
    max-width: 300px;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
  }

  /* BUTTON */
  .hero .hero-btn {
    margin-top: 24px;
    padding: 10px 22px;
    font-size: 12px;
  }


}

/* ===== TABLET RESPONSIVE – SIDE BY SIDE (max-width: 768px) ===== */
/* ===== MOBILE HERO FIX (MAX 425PX) ===== */
@media (max-width: 768px) {

  .hero {
    position: relative;
    margin-top: 50px !important;
    width: 100%;
    height: 90vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    touch-action: pan-y;
  }

  .panel {
    width: 100% !important;
    height: 50%;
    flex: none;
    position: relative;
    overflow: hidden;
    transition: height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }

  /* ACTIVE STATES */
  .hero.mobile-left-active .panel-left {
    height: 65%;
  }

  .hero.mobile-left-active .panel-right {
    height: 35%;
  }

  .hero.mobile-right-active .panel-right {
    height: 65%;
  }

  .hero.mobile-right-active .panel-left {
    height: 35%;
  }

  /* CONTENT */
  .panel {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .panel .content {
    position: relative;
    width: 90%;
    text-align: center;
    transform: none !important;
    left: auto;
    top: auto;
  }

  .tag {
    display: inline-block;
    padding: 0 20px;

  }

  .tag-img {
    width: 200px;
    /* adjust size as needed */
    height: auto;
    display: block;
  }

  .text h2 {
    max-width: 350px;
    font-size: 23px;
    font-weight: 600;
    margin-bottom: 10px;
  }

  /* BUTTON */
  .hero .hero-btn {
    margin-top: 24px;
    padding: 10px 22px;
    font-size: 12px;
  }


  .overlay {
    opacity: 1;
  }
}


/* ===== MOBILE HERO FIX (MAX 425PX) ===== */
@media (max-width: 425px) {

  .hero {
    position: relative;
    margin-top: 50px !important;
    width: 100%;
    height: 90vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    touch-action: pan-y;
  }

  .panel {
    width: 100% !important;
    height: 50%;
    flex: none;
    position: relative;
    overflow: hidden;
    transition: height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }

  /* ACTIVE STATES */
  .hero.mobile-left-active .panel-left {
    height: 65%;
  }

  .hero.mobile-left-active .panel-right {
    height: 35%;
  }

  .hero.mobile-right-active .panel-right {
    height: 65%;
  }

  .hero.mobile-right-active .panel-left {
    height: 35%;
  }

  /* CONTENT */
  .panel {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .panel .content {
    position: relative;
    width: 90%;
    text-align: center;
    transform: none !important;
    left: auto;
    top: auto;
  }


  /* BUTTON VISIBILITY */
  .tag {
    display: inline-block;
    padding: 0 20px;

  }

  .tag-img {
    width: 190px;
    /* adjust size as needed */
    height: auto;
    display: block;
  }

  .text h2 {
    max-width: 280px;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
  }

  /* BUTTON */
  .hero .hero-btn {
    margin-top: 24px;
    padding: 9px 22px;
    font-size: 12px;
  }



  .overlay {
    opacity: 1;
  }
}









/* ============================
   FOOTER – LAPTOP (1025–1536px)
============================ */
@media (min-width: 1025px) and (max-width: 1536px) {

  .footer .container {
    padding: 120px 100px 0;
    /* ✅ MATCH NAVBAR */
  }

  /* ROW 1 */
  .footer-row-top {
    margin-bottom: 90px;
  }

  .footer-social h4,
  .footer-subscribe-text h4 {
    font-size: 22px;
    /* 🔽 smaller than desktop (24px) */
  }

  .footer-subscribe-form input {
    width: 240px;
    font-size: 14px;
    padding: 10px 20px;
  }

  .footer-subscribe-form button {
    padding: 10px 20px;
    font-size: 14px;
  }

  /* ROW 2 */
  .footer-row-bottom {
    gap: 40px;
  }

  .footer-brand p {
    font-size: 22px;
    /* 🔽 smaller than desktop */
  }

  .footer-links h5,
  .footer-location h5 {
    font-size: 22px;
  }

  .footer-links li a,
  .footer-location p {
    font-size: 14px;
  }

  /* COPYRIGHT */
  .footer-copy {
    margin-top: 70px;
    font-size: 13px;
  }
}


/* ============================
   FOOTER – SMALL LAPTOP (1024px)
   Laptop-like, compact
============================ */
@media (max-width: 1024px) {

  .footer {
    padding: 60px 0 30px;
    min-height: auto;
    background-size: cover;
  }

  .footer .container {
    max-width: 100%;
    padding: 90px 100px 0;
    /* ✅ MATCH NAVBAR */
  }

  /* ===== ROW 1 (SAME STRUCTURE AS LAPTOP) ===== */
  .footer-row-top {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 28px;
    /* 🔽 tighter than laptop */
    margin-bottom: 70px;
  }

  .footer-social h4,
  .footer-subscribe-text h4 {
    font-size: 18px;
    /* 🔽 smaller than laptop (22px) */
    line-height: 1.25;
  }

  .social-icons img {
    width: 18px;
    height: 18px;
  }

  .footer-subscribe-form {
    gap: 8px;
  }

  .footer-subscribe-form input {
    width: 210px;
    padding: 8px 16px;
    font-size: 13px;
  }

  .footer-subscribe-form button {
    padding: 8px 16px;
    font-size: 13px;
  }

  /* ===== ROW 2 (SAME STRUCTURE AS LAPTOP) ===== */
  .footer-row-bottom {
    grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
    gap: 32px;
  }

  .footer-brand .footer-logo {
    width: 170px;
  }

  .footer-brand p {
    font-size: 20px;
  }

  .footer-links h5,
  .footer-location h5 {
    font-size: 20px;
    margin-bottom: 14px;
  }

  .footer-links li a,
  .footer-location p {
    font-size: 13px;
  }

  /* COPYRIGHT */
  .footer-copy {
    margin-top: 60px;
    font-size: 12.5px;
  }
}

/* ============================
   FOOTER – TABLET (≤768px)
============================ */
@media (max-width: 768px) {

  .footer {
    padding: 50px 0 25px;
    min-height: auto;
    background-size: cover;
  }

  .footer .container {
    max-width: 100%;
    padding: 40px 24px 0;
    /* 🔽 reduced from 1024px */
  }

  /* ===== ROW 1 ===== */
  .footer-row-top {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 22px;
    margin-bottom: 55px;
  }

  .footer-social h4,
  .footer-subscribe-text h4 {
    font-size: 13.6px;
    /* 🔽 smaller heading */
    line-height: 1.25;
  }

  .social-icons img {
    width: 16px;
    height: 16px;
  }

  .footer-subscribe-form {
    gap: 6px;
  }

  .footer-subscribe-form input {
    width: 190px;
    padding: 7px 14px;
    font-size: 12px;
  }

  .footer-subscribe-form button {
    padding: 7px 14px;
    margin-top: 20px;
    font-size: 12px;
  }

  /* ===== ROW 2 ===== */
  .footer-row-bottom {
    grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
    gap: 26px;
  }

  .footer-brand .footer-logo {
    width: 150px;
  }

  .footer-brand p {
    font-size: 14px;
    line-height: 1.5;
  }

  .footer-links h5,
  .footer-location h5 {
    font-size: 17px;
    margin-bottom: 12px;
  }

  .footer-links li a,
  .footer-location p {
    font-size: 13px;
    line-height: 1.4;
  }

  /* COPYRIGHT */
  .footer-copy {
    margin-top: 45px;
    font-size: 11.5px;
  }
}



/* ============================
   FOOTER – MOBILE (≤425px)
============================ */
@media (max-width: 425px) {

  .footer {
    padding: 60px 0 20px;
    min-height: auto;
    background-size: cover;
  }

  .footer .container {
    padding: 0 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* ROW 1 */
  .footer-row-top {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
    margin-bottom: 60px;
  }

  .footer-social {
    align-items: center;
    margin-top: 0;
  }

  .footer-social h4,
  .footer-subscribe-text h4 {
    font-size: 18px;
    line-height: 1.3;
  }

  .social-icons {
    justify-content: center;
  }

  .social-icons img {
    width: 18px;
    height: 18px;
  }

  .footer-subscribe-form {
    flex-direction: column;
    gap: 12px;
    padding: 10px 40px;
  }
  .footer-subscribe-form input,
  .footer-subscribe-form button {
    width: 100%;
    max-width: 380px;
    font-size: 15px;
    text-align: center;
    border-radius: 28px;
  }

  .footer-subscribe-form input {
    padding: 14px 22px;
    background: #ffffff;
    border: 1px solid #ffffff;
  }

  .footer-subscribe-form button {
    padding: 12px 22px;
    background: #ffffff;
    color: #0a0a0a;
    border: none;
    font-weight: 600;
  }



  /* ROW 2 */
  .footer-row-bottom {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-brand .footer-logo {
    width: 140px;
    height: auto;
  }

  .footer-brand p {
    font-size: 18px;
  }

  .footer-links h5,
  .footer-location h5 {
    font-size: 18px;
  }

  .footer-links li a,
  .footer-location p {
    font-size: 16px;
    line-height: 1.6;
  }

  .footer-copy {
    margin-top: 50px;
    font-size: 12px;
    line-height: 1.4;
    padding: 0 10px;
  }
}


/* ============================
   ABOUT SECTION – LAPTOP (≤1024px)
============================ */
@media (max-width: 1024px) {

  /* Match navbar padding */
  .about-section {
    padding: 80px 0;
  }

  .about-wrapper {
    max-width: 100%;
    padding: 0 50px;
    /* SAME AS NAVBAR */
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
  }

  /* LEFT SIDE */
  .about-slogan h2 {
    font-size: 28px;
    line-height: 1.25;
  }

  .about-slogan h2 span {
    font-size: 28px;
  }

  .about-label {
    font-size: 14px;
    letter-spacing: 1px;
  }

  .about-image img {
    width: 100%;
    max-width: 450px;
    height: auto;
  }

  /* RIGHT SIDE */
  .about-logo img {
    width: 240px;
  }

  .about-text {
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
  }

  .about-btn {
    font-size: 17px;
    padding: 0;
  }
}

/* ============================
   ABOUT SECTION – TABLET (≤768px)
============================ */
@media (max-width: 768px) {

  /* Match navbar padding */
  .about-section {
    padding: 80px 0;
  }

  .about-wrapper {
    max-width: 100%;
    padding: 0 40px;
    /* SAME AS NAVBAR */
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
  }

  /* LEFT SIDE */
  .about-slogan h2 {
    font-size: 22px;
    line-height: 1.25;
  }

  .about-slogan h2 span {
    font-size: 22px;
  }

  .about-slogan::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 160px;
    background: linear-gradient(to bottom, #888, #ddd);
  }

  .about-label {
    font-size: 13px;
    letter-spacing: 1px;
  }

  .about-image img {
    width: 100%;
    max-width: 450px;
    height: 280px;
  }

  /* RIGHT SIDE */

  .about-logo {
    padding-left: 30px;
    margin-bottom: 15px;

  }

  .about-logo img {
    width: 200px;
  }

  .about-text {
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
  }

  .about-btn {
    font-size: 16px;
    padding: 0;
    padding-bottom: 20px;
  }
}

/* ===============================
   ABOUT SECTION – MOBILE (≤425px)
================================ */
@media (max-width: 425px) {

  .about-section {
    padding: 40px 0;
  }

  .about-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 0 16px;
  }

  /* LEFT SIDE */
  .about-left {
    text-align: center;
  }

  .about-label {
    font-size: 14px;
    letter-spacing: 1px;
    text-align: left;
  }

  .about-slogan h2 {
    font-size: 22px;
    line-height: 1.3;
    text-align: left;
  }

  .about-slogan h2 span {
    font-size: 24px;
  }

  .about-slogan::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 140px;
    background: linear-gradient(to bottom, #888, #ddd);
  }

  /* Image fit */
  .about-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    margin-top: 15px;
  }

  /* RIGHT SIDE */
  .about-right {
    text-align: left;
  }

  /* Logo small */
  .about-logo img {
    width: 200px;
    height: auto;
    margin: 0 0 15px 50px;
  }

  .about-text {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0;
  }

  /* Button */
  .about-btn {
    font-size: 15px;
    padding: 0 10px;
  }

}

/* ===== Laptop Responsive (1025px to 1536px) ===== */
@media (min-width: 1025px) and (max-width: 1536px) {

  .about-card {
    padding: 100px 0;
    /* vertical spacing remains consistent */
  }

  .about-container {
    max-width: 1400px;
    /* matches common navbar/footer width */
    padding: 0 80px;
    /* side padding aligned with navbar/footer */
    margin: 0 auto;
  }

  .about-desc {
    font-size: 15px;
  }

}


/* ===== Small Laptop (1024px) ===== */
@media (max-width: 1024px) {

  .about-card {
    padding: 90px 0;
    /* slightly tighter vertical spacing */
  }

  .about-container {
    max-width: 1000px;
    /* safe content width for 1024 screens */
    padding: 0 60px;
    /* matches typical navbar/footer padding */
    margin: 0 auto;
  }

  .about-desc {
    font-size: 14px;
  }

}


/* ===== Tablet View (max-width: 768px) ===== */
@media (max-width: 768px) {

  /* Section spacing */
  .about-card {
    padding: 80px 0;
  }

  .about-container {
    max-width: 100%;
    padding: 40px 40px;
    /* tablet-safe side padding */
    margin: 0 auto;
  }

  /* Heading */
  .about-title {
    font-size: 36px;
    margin-bottom: 24px;
  }

  /* Logo */
  .about--first-logo img {
    max-width: 180px;
  }

  /* Subtitle */
  .about-subtitle {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
  }

  /* Description text */
  .about-desc {
    font-size: 13px;
    line-height: 1.7;
  }

  /* Stats */
  .about-stats {
    margin-top: 40px;
    gap: 30px;
  }

  .about-stats h3 {
    font-size: 28px;
  }

  .about-stats span {
    font-size: 14px;
  }

  .divider {
    height: 50px;
  }

  /* Buttons */
  .about-buttons {
    margin-top: 40px;
    gap: 300px;
  }

  .about-buttons .btn {
    font-size: 14px;
    padding: 12px 26px;
  }

}


/* ===== Mobile View (max-width: 425px) ===== */
@media (max-width: 425px) {

  /* Section spacing */
  .about-card {
    padding: 60px 0;
  }

  .about-container {
    max-width: 100%;
    padding: 30px 20px;
    /* mobile-safe padding */
    margin: 0 auto;
  }

  /* Heading */
  .about-title {
    font-size: 32px;
    margin-bottom: 20px;
  }

  /* Logo */
  .about--first-logo img {
    max-width: 150px;
  }

  /* Subtitle */
  .about-subtitle {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  /* Description */
  .about-desc {
    font-size: 13px;
    line-height: 1.7;
  }

  /* Stats */
  .about-stats {
    display: flex;
    flex-direction: row;
    /* inline */
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 28px;
    flex-wrap: wrap;
    /* safe for very small screens */
  }

  .divider {
    height: 40px;
  }

  .about-stats .stat {
    text-align: center;
    min-width: 120px !important;
    /* keeps stats balanced */
  }

  .about-stats h3 {
    font-size: 20px;
    /* compact but visible */
    line-height: 1.2;
  }

  .about-stats span {
    font-size: 14px;
  }

  .stat h3 .count {
    font-size: 35px;
  }

  /* Buttons */
  .about-buttons {
    display: flex;
    flex-direction: row;
    /* inline */
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 28px;
    flex-wrap: wrap;
    /* safe for very small screens */
  }

  .about-buttons .btn {
    width: auto;
    /* no full width */
    font-size: 13px;
    /* slightly smaller */
    padding: 8px 16px;
    /* compact buttons */
    white-space: nowrap;
    /* keep text on one line */
  }

}


/* ============================
   SERVICES SECTION – LAPTOP (1025px to 1536px)
============================ */
@media (min-width: 1025px) and (max-width: 1536px) {

  .services-section {
    padding: 100px 80px;
    /* MATCH NAVBAR/FOOTER PADDING */
  }

  .services-grid {
    padding: 20px 20px 0;
    gap: 40px;
  }


  .service-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
  }

  .service-card p {
    font-size: 15px;
    line-height: 1.6;
  }
}

/* ============================
   SERVICES SECTION – SMALL LAPTOP (max-width: 1024px)  
============================ */
@media (max-width: 1024px) {

  .services {
    padding: 30px 32px;
    /* MATCH NAVBAR PADDING */
  }

  .services-grid {
    padding: 16px 0 0;
    gap: 32px;
  }

  .services-intro h2 {
    font-size: 30px;
    margin-bottom: 16px;
  }

  .services-intro h2 span {
    font-size: 30px;
    font-weight: 700;
  }

  .services-intro p {
    font-size: 15px;
    line-height: 1.5;
    max-width: 500px;
    margin: 0 auto 24px;
  }

  .serv-logo img {
    width: 200px;
    height: auto;
  }


  .service-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .service-card p {
    font-size: 14px;
    line-height: 1.5;
  }


}

/* ============================
   SERVICES SECTION – TABLET (max-width: 768px)
============================ */
@media (max-width: 768px) {
  .services {
    padding: 30px 24px;
    /* MATCH NAVBAR PADDING */
  }

  .services-grid {
    padding: 16px 0 0;
    gap: 28px;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 1fr;
  }

  .services-intro h2 {
    font-size: 26px;
    margin-bottom: 14px;
  }

  .services-intro h2 span {
    font-size: 26px;
    font-weight: 700;
  }

  .services-intro p {
    font-size: 14px;
    line-height: 1.5;
    max-width: 100%;
    margin: 0 auto 20px;
  }

  .serv-logo img {
    width: 180px;
    height: auto;
  }

  .service-card.image-card.is-visible .service-overlay h3 {
    opacity: 1;
  }

  .service-card.image-card.is-visible .service-overlay p {
    opacity: 1;
  }

  .service-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .service-card p {
    font-size: 13px;
    line-height: 1.4;
  }

  .service-image .overlay {
    opacity: 1;
  }


}

/* ============================
   SERVICES SECTION – MOBILE (max-width: 425px)
============================ */
@media (max-width: 425px) {
  .services {
    padding: 20px 16px;
    /* MATCH NAVBAR PADDING */
  }

  .services-grid {
    padding: 12px 0 0;
    gap: 24px;
    grid-template-columns: 1fr;
    grid-auto-rows: 1fr;
  }

  .services-intro h2 {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .services-intro h2 span {
    font-size: 24px;
    font-weight: 700;
  }

  .services-intro p {
    font-size: 14px;
    line-height: 1.5;
    max-width: 100%;
    margin: 0 auto 16px;
  }

  .serv-logo img {
    width: 180px;
    height: auto;
  }

  .service-card.image-card.is-visible .service-overlay h3 {
    opacity: 1;
  }

  .service-card.image-card.is-visible .service-overlay p {
    opacity: 1;
  }

  .service-card h3 {
    font-size: 16px;
    margin-bottom: 6px;
  }

  .service-card p {
    font-size: 12px;
    line-height: 1.4;
  }

  .service-image .overlay {
    opacity: 1;
  }

  .service-card.image-card {
    display: block;
    height: 100%;
    min-height: 250px;
  }
}

/* ============================
   Contact Page(1025px to 1536px)
============================ */
@media (min-width: 1025px) and (max-width: 1536px) {

  .contact-section {
    padding: 15px 20px;
    /* MATCH NAVBAR/FOOTER PADDING */
  }

  .contact-container {
    max-width: 1400px;
    /* matches common navbar/footer width */
    padding: 0 80px;
    /* side padding aligned with navbar/footer */
    margin: 0 auto;
  }

  .contact-content h1 {
    font-size: 39px;
    margin-bottom: 15px;
  }

  .india-map {
    width: 100%;
    height: 78vh;
    display: block;
  }

}

/* ============================
   Contact Page(1024px)
============================ */
@media (max-width: 1024px) {

  .contact-section {
    padding: 10px 20px;
    /* MATCH NAVBAR PADDING */
  }

  .contact-content {
    padding: 60px 0;
  }

  .contact-content h1 {
    font-size: 36px;
    margin-bottom: 15px;
  }

  .contact-content h2 {
    font-size: 22px;
  }

  .contact-container {
    grid-template-columns: 1fr 1fr;
    gap: 10px !important;
    padding: 40px;
    max-width: 1200px;
    /* safe content width for 1024 screens */
    margin: 0 auto;
  }

  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    padding: 11px;
    font-size: 14px;
  }

  .contact-btn {
    padding: 12px 20px;
    font-size: 15px;
  }

  .india-map {
    width: 110%;
    height: 70vh;
  }

  /* Pune marker (adjust if needed) */
  .pune-marker {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #030303;
    border-radius: 50%;

    /* ✅ Correct Pune position */
    top: 56.5%;
    left: 30%;

    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 6px rgba(31, 31, 31, 0.25);
  }


  /* Info box */


  .location-box {
    position: absolute;
    top: 53%;
    left: 38%;
    background: #ffffff;
    padding: 14px 16px;
    border-radius: 8px;
    width: 200px;
    height: 165px;
    font-size: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);

    /* Animation */
    animation: fadeInRightbox 0.8s ease forwards;
    animation-delay: 0.4s;
  }


}

/* ============================
   Contact Page – TABLET (max-width: 768px)
============================ */
@media (max-width: 768px) {

  .contact-section {
    padding: 20px 24px;
    /* MATCH NAVBAR PADDING */
    min-height: auto;
  }

  .contact-content {
    padding: 50px 20px;
  }

  .contact-content h1 {
    font-size: 32px;
    margin-bottom: 12px;
  }

  .contact-content h2 {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 30px;
    max-width: 100%;
    margin: 0 auto;
    display: grid;
  }

  /* MAP UP, FORM DOWN */
  .contact-info {
    order: -1;
  }

  .contact-form {
    order: 1;
  }

  .contact-form .form-group {
    margin-bottom: 15px;
  }

  .contact-form label {
    font-size: 14px;
    margin-bottom: 5px;
  }

  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    padding: 10px;
    font-size: 13px;
    border-radius: 5px;
  }

  .form-row {
    gap: 12px;
  }

  .contact-btn {
    padding: 11px 18px;
    font-size: 14px;
    margin-top: 8px;
    width: auto;
  }

  .contact-info h3 {
    font-size: 18px;
    margin-top: 16px;
    margin-bottom: 12px;
  }

  .contact-info a {
    font-size: 14px;
  }

  .map-container {
    margin-top: 0;
    margin-bottom: 25px;
  }

  .india-map {
    width: 100%;
    height: 80vh;
    border-radius: 8px;
  }

  /* Pune marker (adjust if needed) */
  .pune-marker {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #030303;
    border-radius: 50%;

    /* ✅ Correct Pune position */
    top: 64%;
    left: 27%;

    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 6px rgba(31, 31, 31, 0.25);
  }


  /* Info box */


  .location-box {
    position: absolute;
    top: 60%;
    left: 31%;
    background: #ffffff;
    padding: 14px 16px;
    border-radius: 8px;
    width: 220px;
    font-size: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);

    /* Animation */
    animation: fadeInRightbox 0.8s ease forwards;
    animation-delay: 0.4s;
  }

}

/* ============================
   Contact Page – MOBILE (max-width: 425px)
============================ */
@media (max-width: 425px) {

  .contact-section {
    padding: 30px 0;
    /* MATCH NAVBAR PADDING */

  }

  .contact-content {
    padding: 40px 0;
    max-width: 100%;
  }

  .contact-content h1 {
    font-size: 24px;
    margin-bottom: 5px;
    font-weight: 600;
  }

  .contact-content h2 {
    font-size: 16px;
    margin-bottom: 6px;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 20px;
    max-width: 100%;
    margin: 0 auto;
    background: transparent;
    border-radius: 12px;
  }

  /* MAP UP, FORM DOWN */
  .contact-info {
    order: -1;
  }

  .contact-form {
    order: 1;
  }


  /* ===== FORM ===== */
  .contact-form .form-group {
    margin-bottom: 14px;
  }

  .contact-form label {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 5px;
    display: block;
  }

  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 13px;
  }

  .contact-form textarea {
    min-height: 100px;
    resize: vertical;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .contact-btn {
    padding: 12px 20px;
    border-radius: 40px;
    border: none;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    margin-top: 10px;
    background: #000000;
    font-weight: 500;
    width: 100%;
    transition: all 0.3s ease;
  }

  .contact-btn:active {
    transform: scale(0.98);
  }

  /* ===== CONTACT INFO ===== */
  .add-logo {
    margin-bottom: 20px;
    text-align: center;
  }

  .project-logo {
    height: 60px;
    width: 170px;
    object-fit: contain;
  }

  .contact-info {
    text-align: left;
  }

  .contact-info h3 {
    font-size: 16px;
    margin-top: 15px;
    margin-bottom: 10px;
    font-weight: 600;
  }

  .contact-info a {
    font-size: 13px;
    margin-bottom: 12px;
    color: #000000;
    text-decoration: none;
    display: block;
    line-height: 1.5;
  }

  /* ===== MAP ===== */
  .india-map-wrapper {
    position: relative;
    padding: 0;
  }

  .map-container {
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
  }

  .india-map {
    width: 100%;
    height: 420px;
    border: 0;
    border-radius: 8px;
  }



  /* Pune marker (adjust if needed) */
  .pune-marker {
    position: absolute;
    width: 5px;
    height: 5px;
    background: #030303;
    border-radius: 50%;

    /* ✅ Correct Pune position */
    top: 64%;
    left: 23%;

    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 4px rgba(31, 31, 31, 0.25);
  }


  /* Info box */


  .location-box {
    position: absolute;
    top: 50%;
    left: 35%;
    background: #ffffff;
    padding: 14px 16px;
    border-radius: 8px;
    width: 190px;
    font-size: 11px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);

    /* Animation */
    animation: fadeInRightbox 0.8s ease forwards;
    animation-delay: 0.4s;
  }


}

/* ==== LIST PROPERTY SECTION - SMALL LAPTOP (1024px) ====*/
/* Small Laptop */
@media (max-width: 1024px) {

  /* LIST HERO SECTION */
  .list-hero {
    height: 100vh;
    padding-top: 60px;
    /* Adjust for navbar */
  }

  /* HERO CONTENT */
  .hero-content {
    max-width: 900px;
    padding: 30px 20px;
    /* Reduce padding */
  }

  /* HERO BADGE */
  .hero-badge {
    padding: 5px 12px;
    font-size: 11px;
    letter-spacing: 0.8px;
    margin-bottom: 20px;
  }

  /* MAIN HEADING */
  .hero-content h1 {
    font-size: 39px;
    /* Reduced from 48px */
    font-weight: 600;
    margin-bottom: 18px;
    line-height: 1.3;
  }

  /* SUB HEADING */
  .hero-content h2 {
    font-size: 23px;
    /* Reduced from 28px */
    font-weight: 500;
    margin-bottom: 22px;
    letter-spacing: 0.5px;
  }

  /* PARAGRAPH TEXT */
  .hero-content p {
    font-size: 16px;
    /* Reduced from 17px */
    line-height: 1.6;
    max-width: 650px;
    margin: 0 auto 40px;
  }

  /* SCROLL ARROW */
  .scroll-down {
    width: 40px;
    height: 40px;
    border: 2px solid #fff;
    margin: auto;
  }

  .scroll-down span {
    width: 8px;
    height: 8px;
  }

}

/* ==== LIST PROPERTY SECTION - TABLET (768px) ====*/
/* Tablet */
@media (max-width: 768px) {

  /* LIST HERO SECTION */
  .list-hero {
    height: 100vh;
    padding-top: 50px;
    /* Adjust for navbar */
  }

  /* HERO CONTENT */
  .hero-content {
    max-width: 800px;
    padding: 25px 18px;
    /* Reduce padding */
  }

  /* HERO BADGE */
  .hero-badge {
    padding: 5px 11px;
    font-size: 10px;
    letter-spacing: 0.6px;
    margin-bottom: 15px;
  }

  /* MAIN HEADING */
  .hero-content h1 {
    font-size: 34px;
    /* Reduced from 48px */
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
  }

  /* SUB HEADING */
  .hero-content h2 {
    font-size: 20px;
    /* Reduced from 28px */
    font-weight: 500;
    margin-bottom: 18px;
    letter-spacing: 0.4px;
  }

  /* PARAGRAPH TEXT */
  .hero-content p {
    font-size: 14px;
    /* Reduced from 17px */
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto 35px;
  }

  /* SCROLL ARROW */
  .scroll-down {
    width: 36px;
    height: 36px;
    border: 2px solid #fff;
    margin: auto;
  }

  .scroll-down span {
    width: 7px;
    height: 7px;
  }

}

/* ==== LIST PROPERTY SECTION - MOBILE (425px) ====*/
/* Mobile */
@media (max-width: 425px) {

  /* LIST HERO SECTION */
  .list-hero {
    height: 100vh;
    padding-top: 45px;
    /* Adjust for navbar */
  }

  /* HERO CONTENT */
  .hero-content {
    max-width: 100%;
    padding: 20px 15px;
    /* Reduce padding */
  }

  /* HERO BADGE */
  .hero-badge {
    padding: 4px 9px;
    font-size: 9px;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
  }

  /* MAIN HEADING */
  .hero-content h1 {
    font-size: 26px;
    /* Reduced from 48px */
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.3;
  }

  /* SUB HEADING */
  .hero-content h2 {
    font-size: 17px;
    /* Reduced from 28px */
    font-weight: 500;
    margin-bottom: 14px;
    letter-spacing: 0.3px;
  }

  /* PARAGRAPH TEXT */
  .hero-content p {
    font-size: 13px;
    /* Reduced from 17px */
    line-height: 1.5;
    max-width: 100%;
    margin: 0 auto 30px;
  }

  /* SCROLL ARROW */
  .scroll-down {
    width: 32px;
    height: 32px;
    border: 2px solid #fff;
    margin: auto;
  }

  .scroll-down span {
    width: 6px;
    height: 6px;
  }

}

/* ==== LIST PROPERTY FORM SECTION - SMALL LAPTOP (1024px) ====*/
/* Small Laptop */
@media (max-width: 1024px) {

  /* LIST PROPERTY SECTION */
  .list-property-section {
    padding: 60px 20px;
    /* Reduced from 80px */
  }

  /* FORM CARD */
  .form-card {
    max-width: 800px;
    border-radius: 10px;
  }

  /* FORM HEADER */
  .form-header {
    padding: 20px 20px;
    /* Reduced from 25px 24px */
  }

  .form-header h2 {
    font-size: 20px;
    /* Reduced from 22px */
    font-weight: 600;
  }

  /* FORM CONTENT */
  form {
    padding: 25px;
    /* Reduced from 30px */
  }

  /* FORM GRID */
  .form-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 24px;
    /* Reduced from 22px 30px */
  }

  /* FORM GROUP LABEL */
  .form-group label {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 13px;
    color: #000000;

    /* Reduced from default */
  }

  /* FORM INPUTS AND SELECTS */
  .form-group input,
  .form-group select {
    height: 40px;
    /* Reduced from 44px */
    padding: 0 10px;
    font-size: 13px;
    /* Reduced from 14px */
    border-radius: 6px;
  }

  /* FORM GROUP Upload file */
  .form-group.file-upload input[type="file"] {
    flex: 1;
    min-height: 80px;
    padding: 15px 12px;
    border-radius: 8px;
    font-size: 13px;
    cursor: pointer;
  }

  .form-help {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.4;
  }


  /* CHECKBOX GROUP */
  .checkbox-group {
    gap: 15px;
    /* Reduced from 20px */
    margin-top: 8px;
  }

  .checkbox-group label {
    font-size: 13px;
    gap: 6px;
  }

  /* BUTTON */
  button {
    padding: 10px 28px;
    /* Reduced from 12px 34px */
    font-size: 14px;
    /* Reduced from 15px */
    margin-top: 15px;
    border-radius: 20px;
  }

  /* NOTE TEXT */
  .note {
    font-size: 12px;
    /* Reduced from 14px */
    margin-top: 15px;
  }

}

/* ==== LIST PROPERTY FORM SECTION - TABLET (768px) ====*/
/* Tablet */
@media (max-width: 768px) {

  /* LIST PROPERTY SECTION */
  .list-property-section {
    padding: 50px 16px;
    /* Reduced from 80px */
  }

  /* FORM CARD */
  .form-card {
    max-width: 93%;
    border-radius: 8px;
  }

  /* FORM HEADER */
  .form-header {
    padding: 18px 18px;
    /* Reduced from 25px 24px */
  }

  .form-header h2 {
    font-size: 18px;
    /* Reduced from 22px */
    font-weight: 600;
  }

  /* FORM CONTENT */
  form {
    padding: 20px;
    /* Reduced from 30px */
  }

  /* FORM GRID */
  .form-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 18px;
    /* Reduced from 22px 30px */
  }

  /* FORM GROUP LABEL */
  .form-group label {
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 12px;
    /* Reduced from default */
  }

  /* FORM INPUTS AND SELECTS */
  .form-group input,
  .form-group select {
    height: 38px;
    /* Reduced from 44px */
    padding: 0 10px;
    font-size: 12px;
    /* Reduced from 14px */
    border-radius: 6px;
  }

  /* FORM GROUP Upload file */
  .form-group.file-upload input[type="file"] {
    flex: 1;
    min-height: 80px;
    padding: 15px 12px;
    border-radius: 8px;
    font-size: 13px;
    cursor: pointer;
  }

  .form-help {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.4;
  }

  /* CHECKBOX GROUP */
  .checkbox-group {
    gap: 12px;
    /* Reduced from 20px */
    margin-top: 8px;
  }

  .checkbox-group label {
    font-size: 12px;
    gap: 5px;
  }

  /* BUTTON */
  button {
    padding: 9px 24px;
    /* Reduced from 12px 34px */
    font-size: 13px;
    /* Reduced from 15px */
    margin-top: 12px;
    border-radius: 18px;
  }

  /* NOTE TEXT */
  .note {
    font-size: 11px;
    /* Reduced from 14px */
    margin-top: 12px;
  }

}

/* ==== LIST PROPERTY FORM SECTION - MOBILE (425px) ====*/
/* Mobile */
@media (max-width: 425px) {

  /* LIST PROPERTY SECTION */
  .list-property-section {
    padding: 40px 15px;
    /* Reduced from 80px */
  }

  /* FORM CARD */
  .form-card {
    max-width: 100%;
    border-radius: 6px;
  }

  /* FORM HEADER */
  .form-header {
    padding: 16px 16px;
    /* Reduced from 25px 24px */
  }

  .form-header h2 {
    font-size: 16px;
    /* Reduced from 22px */
    font-weight: 600;
  }

  /* FORM CONTENT */
  form {
    padding: 16px;
    /* Reduced from 30px */
  }

  /* FORM GRID */
  .form-grid {
    grid-template-columns: 1fr;
    /* Single column for mobile */
    gap: 5px;
    /* Better spacing between fields */
  }

  /* FORM GROUP LABEL */
  .form-group label {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 12px;
    /* Increased for better readability */
    display: block;
  }

  /* FORM INPUTS AND SELECTS */
  .form-group input,
  .form-group select {
    height: 38px;
    /* Slightly increased for easier interaction */
    padding: 0 10px;
    font-size: 12px;
    /* Increased from 11px */
    border-radius: 4px;
    width: 100%;
    /* Ensure full width */
  }

  /* FORM GROUP FULL */
  .form-group.full {
    grid-column: span 1;
    /* Override desktop span */
  }

  /* FORM GROUP Upload file */
  .form-group.file-upload {
    grid-column: span 1;
    /* Full width on mobile */
    display: flex;
    flex-direction: column;
    margin-top: 0;
    padding-top: 0;
  }

  .form-group.file-upload label {
    font-weight: 500;
    margin-bottom: 6px;
    font-size: 12px;
    margin: 0 0 6px 0;
    color: #000000;
  }

  .form-group.file-upload input[type="file"] {
    flex: 1;
    min-height: 80px;
    padding: 12px 10px;
    border-radius: 4px;
    border: 1px solid #d0d0d0;
    background: #fafafa;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .form-group.file-upload input[type="file"]:hover {
    border-color: #000;
    background: #f0f0f0;
  }

  .form-group.file-upload input[type="file"]:focus {
    outline: none;
    border-color: #000;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.05);
  }

  .form-help {
    display: block;
    margin-top: 6px;
    font-size: 11px;
    color: #666;
    line-height: 1.3;
  }

  /* CHECKBOX BOX */
  .checkbox-box label {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
  }

  /* CHECKBOX GROUP */
  .checkbox-group {
    gap: 20px;
    /* Space between checkboxes */
    margin-top: 8px;
    flex-direction: row;
    /* Display checkboxes side by side */
  }

  .checkbox-group label {
    font-size: 12px;
    gap: 6px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
  }

  .checkbox-group input[type="checkbox"] {
    width: 14px;
    height: 14px;
    cursor: pointer;
    accent-color: #000;
  }

  /* SUBMIT BOX */
  .submit-box {
    margin-top: 8px;
  }

  /* BUTTON */
  button {
    padding: 10px 20px;
    /* Better padding for mobile */
    font-size: 13px;
    /* Increased from 12px */
    margin-top: 8px;
    border-radius: 30px;

    width: 100%;
    /* Full width button */
    height: 40px;
    /* Consistent button height */
  }

  /* NOTE TEXT */
  .note {
    font-size: 11px;
    /* Increased from 10px */
    margin-top: 12px;
    line-height: 1.4;
  }

}

/* ==== FORM CALL BUTTON SECTION - SMALL LAPTOP (1024px) ====*/
/* Small Laptop */
@media (max-width: 1024px) {

  /* FORM CALL BUTTON SECTION */
  .form-call-btn {
    margin-top: 25px;
    text-align: center;
  }

  /* HEADING */
  .form-call-btn h1 {
    font-size: 28px;
    /* Reduced from 32px */
    font-weight: 600;
    margin-bottom: 12px;
    color: #111;
  }

  /* CONTACT STRIP WRAPPER */
  .form-contact-strip {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    /* Reduced from 16px */
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
    padding: 16px;
    /* Reduced from 20px */
  }

  /* CONTACT BUTTON BASE */
  .form-contact-btn {
    width: 70%;
    display: flex;
    align-items: center;
    gap: 12px;
    /* Reduced from 14px */
    padding: 10px 30px;
    /* Reduced from 16px 18px */
    border-radius: 50px;
    text-decoration: none;
    color: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  }

  /* ICONS */
  .form-contact-btn .icon {
    font-size: 22px;
    /* Reduced from 26px */
    flex-shrink: 0;
  }

  /* TEXT */
  .form-contact-btn .text {
    text-align: left;
  }

  .form-contact-btn .text strong {
    display: block;
    font-size: 13px;
    /* Reduced from 15px */
    font-weight: 600;
  }

  .form-contact-btn .text small {
    font-size: 11px;
    /* Reduced from 12px */
    opacity: 0.85;
  }

}

/* ==== FORM CALL BUTTON SECTION - TABLET (768px) ====*/
/* Tablet */
@media (max-width: 768px) {

  /* FORM CALL BUTTON SECTION */
  .form-call-btn {
    margin-top: 20px;
    text-align: center;
  }

  /* HEADING */
  .form-call-btn h1 {
    font-size: 24px;
    /* Reduced from 32px */
    font-weight: 600;
    margin-bottom: 10px;
    color: #111;
  }

  /* CONTACT STRIP WRAPPER */
  .form-contact-strip {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    /* Reduced from 16px */
    max-width: 650px;
    width: 100%;
    margin: 0 auto;
    padding: 14px;
    /* Reduced from 20px */
  }

  /* CONTACT BUTTON BASE */
  .form-contact-btn {
    width: 70%;
    display: flex;
    align-items: center;
    gap: 10px;
    /* Reduced from 14px */
    padding: 10px 30px;
    /* Reduced from 16px 18px */
    border-radius: 40px;
    text-decoration: none;
    color: #fff;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  }

  /* ICONS */
  .form-contact-btn .icon {
    font-size: 20px;
    /* Reduced from 26px */
    flex-shrink: 0;
  }

  /* TEXT */
  .form-contact-btn .text {
    text-align: left;
  }

  .form-contact-btn .text strong {
    display: block;
    font-size: 12px;
    /* Reduced from 15px */
    font-weight: 600;
  }

  .form-contact-btn .text small {
    font-size: 10px;
    /* Reduced from 12px */
    opacity: 0.85;
  }

}

/* ==== FORM CALL BUTTON SECTION - MOBILE (425px) ====*/
/* Mobile */
@media (max-width: 425px) {

  /* FORM CALL BUTTON SECTION */
  .form-call-btn {
    margin-top: 18px;
    text-align: center;
  }

  /* HEADING */
  .form-call-btn h1 {
    font-size: 20px;
    /* Reduced from 32px */
    font-weight: 600;
    margin-bottom: 10px;
    color: #111;
  }

  /* CONTACT STRIP WRAPPER */
  .form-contact-strip {
    grid-template-columns: 1fr;
    /* Single column for mobile */
    gap: 10px;
    /* Reduced from 16px */
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 12px;
    /* Reduced from 20px */
    justify-items: center;
    /* Center items */
  }

  /* CONTACT BUTTON BASE */
  .form-contact-btn {
    width: 60%;
    /* Full width for mobile */
    display: flex;
    align-items: left;
    justify-content: left;
    gap: 10px;
    /* Reduced from 14px */
    padding: 10px 30px;
    /* Reduced from 16px 18px */
    border-radius: 36px;
    text-decoration: none;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  /* ICONS */
  .form-contact-btn .icon {
    font-size: 20px;
    /* Reduced from 26px */
    flex-shrink: 0;
  }

  /* TEXT */
  .form-contact-btn .text {
    text-align: left;
    /* Center align text */
  }

  .form-contact-btn .text strong {
    display: block;
    font-size: 11px;
    /* Reduced from 15px */
    font-weight: 600;
  }

  .form-contact-btn .text small {
    font-size: 9px;
    /* Reduced from 12px */
    opacity: 0.85;
  }

}



/* ===== BIG LAPTOP Find Property (1025px - 1536px) ===== */
@media (min-width: 1025px) and (max-width: 1536px) {

  /* Find Hero Section - Match navbar padding */
  .find-hero-content {
    padding: 50px 80px;
  }


  /* Featured Section - Match navbar padding */
  .featured-section {
    padding: 60px 110px;
  }

  /* Carousel wrapper proper sizing */
  .carousel-wrapper {
    max-width: 100%;
  }

  /* Ensure carousel buttons align properly */
  .feat-btn.left {
    left: 80px;
  }

  .feat-btn.right {
    right: 80px;
  }
}

/* ===== SMALL LAPTOP Find Property (max-width 1024px) ===== */
@media (max-width: 1024px) {



  .find-hero-content {
    padding: 30px 30px;
    margin-top: 60px;
  }

  /* Find Hero Heading */
  .find-hero h1 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
  }

  .find-hero h2 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 18px;
  }

  /* Hero Tagline */
  .hero-tagline {
    max-width: 600px;
    font-size: 15px;
    line-height: 1.5;
    padding-bottom: 8px;
  }



  .find-logo {
    height: auto;

    width: 230px;

  }

  /* Search Box */
  .find-search-wrapper {
    max-width: 900px;
    padding: 4px 14px;
    border-radius: 14px;
    gap: 10px;
  }

  .find-search-wrapper input {
    font-size: 14px;
    padding: 10px;
  }

  .find-search-btn {
    font-size: 13px;
    padding: 8px 16px;
  }

}

/* ===== TABLET Find Property (max-width 768px) ===== */
@media (max-width: 768px) {



  .find-hero-content {
    padding: 50px 24px;
    margin-top: 40px;
    max-width: 100%;
  }

  /* Find Hero Heading */
  .find-hero h1 {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.3;
  }

  .find-hero h2 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 12px;
  }

  /* Hero Tagline */
  .hero-tagline {
    max-width: 100%;
    font-size: 13px;
    line-height: 1.4;
    padding-bottom: 6px;
  }

  /* Badge */
  .find-logo {
    height: auto;

    width: 220px;

  }

  /* Search Box */
  .find-search-wrapper {
    max-width: 100%;
    display: flex;
    padding: 3px 12px;
    border-radius: 12px;
    gap: 8px;
  }

  .find-search-wrapper input {
    font-size: 12px;
    padding: 8px;
  }

  .find-search-btn {
    font-size: 12px;
    padding: 6px 14px;
  }

  /* Advanced Filter - Keep desktop layout but scaled */
  .advanced-filter {
    width: 100%;
    max-width: 100%;
    background: #fff;
    margin-top: 10px;
    padding: 14px;
    border-radius: 14px;
  }

  /* Filter Top - Keep side-by-side layout */
  .filter-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
  }

  .deal-type,
  .measure-type {
    display: flex;
    gap: 8px;
    flex: 1;
  }

  .deal-type button,
  .measure-type button {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    font-size: 12px;
    padding: 5px 11px;
    border-radius: 40px;
    cursor: pointer;
    color: #000000;
    transition: background 0.2s ease, color 0.2s ease;
    flex: 1;
    white-space: nowrap;
  }

  .deal-type button:hover,
  .measure-type button:hover {
    background: #e8e8e8;
  }

  .deal-type button.active,
  .measure-type button.active {
    background: #000;
    color: #ffffff;
    font-weight: 500;
    border-color: #000;
  }

  /* Divider */
  .advanced-filter hr {
    margin: 12px 0;
    border: none;
    border-top: 1px solid #e5e5e5;
  }

  /* Filter Bottom - Keep horizontal layout */
  .filter-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 14px;
    flex-wrap: wrap;
    pointer-events: auto;
  }

  /* Property Tabs - Keep horizontal but smaller */
  .property-tabs {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    pointer-events: auto;
    z-index: 10000;
    flex: 1;
  }

  .property-tabs button {
    background: #ffffff;
    color: #000;
    border: 1px solid #ddd;
    padding: 6px 10px;
    border-radius: 18px;
    font-size: 11px;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.2s ease;
    white-space: nowrap;
  }

  .property-tabs button:hover {
    background: #f5f5f5;
    border-color: #999;
  }

  .property-tabs button.active {
    background: #000000;
    color: #fff;
    border-color: #000;
  }

  /* Range Box */
  .range-box {
    display: flex;
    gap: 10px;
    flex: 1;
    min-width: 240px;
  }

  .range-group {
    display: none;
    flex-direction: row;
    gap: 8px;
    flex: 1;
  }

  .range-group.active {
    display: flex;
  }

  .range-group select {
    padding: 6px 8px;
    border-radius: 18px;
    font-size: 11px;
    border: 1px solid #ddd;
    flex: 1;
  }

  /* Filter Note */
  .filter-note {
    font-size: 11px;
    color: #1d1d1d;
    margin-top: 8px;
  }

  .filter-note p {
    margin: 0;
  }


}

/* ===== MOBILE Find Property (max-width 425px) ===== */
@media (max-width: 425px) {



  .find-hero-content {
    padding: 5px 12px;
    margin-top: 30px;
    max-width: 100%;
  }

  /* Find Hero Heading */
  .find-hero h1 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.15;
  }


  /* Hero Tagline */
  .hero-tagline {
    max-width: 100%;
    font-size: 12px;
    line-height: 1.3;
    padding-bottom: 3px;
    margin-bottom: 15px;
  }

  /* Badge */
  .find-logo {
    height: auto;
    width: 200px;


  }

  /* Search Box - Full Width Mobile Friendly */
  .find-search-wrapper {
    max-width: 100%;
    display: flex;
    flex-direction: row;
    gap: 0px;
    padding: 0px;
    border-radius: 15px;
    background: #fff;
    border: 1px solid #ddd;
    overflow: hidden;
    margin-bottom: 8px;
  }

  .find-search-wrapper input {
    font-size: 12px;
    padding: 5px 10px;
    border: none;
    border-radius: 0px;
    flex: 1;
    box-sizing: border-box;
    background: #fff;
  }

  .find-search-btn {
    font-size: 11px;
    padding: 5px 12px;
    width: auto;
    border-radius: 30px;
    border: none;
    background: #000;
    color: #fff;
    white-space: nowrap;
    flex-shrink: 0;
    cursor: pointer;
  }

  /* Advanced Filter - Full Mobile Layout */
  .advanced-filter {
    width: 100%;
    max-width: 100%;
    background: #fff;
    margin-top: 0px;
    padding: 5px;
    border-radius: 10px;
  }

  /* FILTER TOP SECTION - Deal Type & Measure Type */
  .filter-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 5px;
  }

  /* LEFT - Deal Type (Lease/Sell) */
  .deal-type {
    display: flex;
    flex-direction: column;
    gap: 3px;
    width: 100%;
  }

  .deal-type::before {
    content: "Deal";
    font-size: 11px;
    font-weight: 600;
    color: #333;
    margin-bottom: 2px;
  }

  .deal-type button {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    font-size: 10px;
    padding: 5px 8px;
    border-radius: 30px;
    cursor: pointer;
    color: #000000;
    transition: background 0.2s ease, color 0.2s ease;
    font-weight: 500;
  }

  .deal-type button:hover {
    background: #e8e8e8;
  }

  .deal-type button.active {
    background: #000;
    color: #ffffff;
    font-weight: 600;
    border-color: #000;
  }

  /* RIGHT - Measure Type (Sqft/Workstations) */
  .measure-type {
    display: flex;
    flex-direction: column;
    gap: 3px;
    width: 100%;
  }

  .measure-type::before {
    content: "Measure";
    font-size: 11px;
    font-weight: 600;
    color: #333;
    margin-bottom: 2px;
  }

  .measure-type button {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    font-size: 10px;
    padding: 5px 8px;
    border-radius: 30px;
    cursor: pointer;
    color: #000000;
    transition: background 0.2s ease, color 0.2s ease;
    font-weight: 500;
  }

  .measure-type button:hover {
    background: #e8e8e8;
  }

  .measure-type button.active {
    background: #000;
    color: #ffffff;
    font-weight: 600;
    border-color: #000;
  }

  /* Divider */
  .advanced-filter hr {
    margin: 8px 0;
    border: none;
    border-top: 1px solid #e5e5e5;
  }

  /* FILTER BOTTOM SECTION */
  .filter-bottom {
    display: flex;
    flex-direction: column;
    gap: 8px;
    pointer-events: auto;
  }

  /* Property Type Section */
  .property-tabs {
    display: flex;
    flex-direction: column;
    gap: 3px;
    pointer-events: auto;
    z-index: 10000;
    width: 100%;
  }

  .property-tabs::before {
    content: "Property Type";
    font-size: 11px;
    font-weight: 600;
    color: #333;
  }

  .property-tabs-buttons {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    width: 100%;
  }

  .property-tabs button {
    background: #ffffff;
    color: #000;
    border: 1px solid #ddd;
    padding: 3px 7px;
    border-radius: 30px;
    font-size: 10px;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.2s ease;
    white-space: nowrap;
    flex: 0 1 auto;
    font-weight: 500;
  }

  .property-tabs button:hover {
    background: #f5f5f5;
    border-color: #999;
  }

  .property-tabs button.active {
    background: #000000;
    color: #fff;
    border-color: #000;
  }

  /* Range/Size Section */
  .range-box {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
  }

  .range-box::before {
    content: "Size Range";
    font-size: 11px;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
  }

  .range-group {
    display: none;
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }

  .range-group.active {
    display: flex;
  }

  .range-group select {
    padding: 6px 8px;
    border-radius: 14px;
    font-size: 11px;
    border: 1px solid #ddd;
    width: 100%;
    box-sizing: border-box;
    background: #fff;
    cursor: pointer;
  }

  /* Filter Note */
  .filter-note {
    font-size: 10px;
    color: #666;
    margin-top: 8px;
    padding-top: 10px;
    border-top: 1px solid #e5e5e5;
  }

  .filter-note p {
    margin: 0;
  }

}

/* ===== SMALL LAPTOP Featured Section (max-width 1024px) ===== */
@media (max-width: 1024px) {

  /* Featured Section - Match navbar padding */
  .featured-section {
    padding: 60px 50px;
  }

  .featured-section h2 {
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #000000;
  }

  /* Carousel wrapper */
  .carousel-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
  }

  /* Carousel */
  .carousel {
    display: flex;
    gap: 20px;
    width: max-content;
    padding: 15px 0;
    transform: translateX(0);
    will-change: transform;
    transition: none;
  }

  /* Card sizing */
  .card {
    max-width: 350px;
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    cursor: pointer;
  }

  .card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
  }

  .card:hover img {
    transform: scale(1.08);
  }



  .card-title {
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    z-index: 2;
    text-align: center;
    padding: 12px;
    background: linear-gradient(to top, rgb(0, 0, 0), transparent);
  }

  /* Navigation Buttons */
  .feat-btn {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 28px;
    z-index: 10;
    color: #000;
    transition: all 0.2s ease;
  }

  .feat-btn.left {
    left: 15px;
  }

  .feat-btn.right {
    right: 15px;
  }

  .feat-btn:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #000;
  }

}

/* ===== TABLET Featured Section (max-width 768px) ===== */
@media (max-width: 768px) {

  /* Featured Section - Tablet padding */
  .featured-section {
    padding: 50px 40px;
  }

  .featured-section h2 {
    text-align: center;
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #000000;
  }

  /* Carousel wrapper */
  .carousel-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
  }

  /* Carousel */
  .carousel {
    display: flex;
    gap: 16px;
    width: max-content;
    padding: 12px 0;
    transform: translateX(0);
    will-change: transform;
    transition: none;
  }

  /* Card sizing */
  .card {
    max-width: 330px;
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    cursor: pointer;
  }

  .card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
  }

  .card:hover img {
    transform: scale(1.08);
  }



  .card-title {
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    z-index: 2;
    text-align: center;
    padding: 10px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  }

  /* Navigation Buttons */
  .feat-btn {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 24px;
    z-index: 10;
    color: #000;
    transition: all 0.2s ease;
  }

  .feat-btn.left {
    left: 10px;
  }

  .feat-btn.right {
    right: 10px;
  }

  .feat-btn:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #000;
  }

}

/* ===== MOBILE Featured Section (max-width 425px) ===== */
@media (max-width: 425px) {

  /* Featured Section - Mobile padding */
  .featured-section {
    padding: 40px 16px;
  }

  .featured-section h2 {
    text-align: center;
    font-size: 23px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #000000;
  }

  /* Carousel wrapper */
  .carousel-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
  }

  /* Carousel */
  .carousel {
    display: flex;
    gap: 12px;
    width: max-content;
    padding: 10px 0;
    transform: translateX(0);
    will-change: transform;
    transition: none;
  }

  /* Card sizing */
  .card {
    max-width: 280px;
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    cursor: pointer;
  }

  .card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
  }

  .card:hover img {
    transform: scale(1.08);
  }



  .card-title {
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    z-index: 2;
    text-align: center;
    padding: 8px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
  }

  /* Navigation Buttons */
  .feat-btn {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 20px;
    z-index: 10;
    color: #000;
    transition: all 0.2s ease;
  }

  .feat-btn.left {
    left: 5px;
  }

  .feat-btn.right {
    right: 5px;
  }

  .feat-btn:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #000;
  }

}




/* ==============================
   BRAND NETWORK — BIG LAPTOP
   1025px — 1536px
   Keep desktop layout but scaled down
================================ */
@media (min-width: 1025px) and (max-width: 1536px) {

  .brand-network {
    padding: 60px 0;
    background: #ffffff;
    box-sizing: border-box;
  }

  .brand-network .brand-container {
    /* reserve space for fixed navbar if present */
    padding: 0 80px;
    max-width: 1400px;
    margin: 0 auto;
    box-sizing: border-box;
    text-align: center;
  }

  .brand-network .brand-tagline {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 0.06em;
    color: #383838;
    margin-bottom: 8px;
  }

  .brand-network .brand-heading {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 32px;
  }

  /* Force 5 cards per row to match desktop appearance (scaled down) */
  .brand-network .brand-grid {

    grid-template-columns: repeat(5, 1fr);
    gap: 20px 24px;

  }

  .brand-network .brand-card {

    width: 100%;
    max-width: 220px;
  }

  .brand-network .brand-card img {
    max-width: 140px;
    width: 100%;
    height: auto;

  }

}

/* ==============================
   BRAND NETWORK — EXACT 1024px
   Devices with width: 1024px should match large-laptop look
================================ */
@media (width: 1024px) {

  .brand-network {
    padding: 50px 0;

  }

  .brand-network .brand-container {
    /* reserve space for fixed navbar if present */
    padding: 0 45px;
    max-width: 1400px;
    margin: 0 auto;

  }

  .brand-network .brand-tagline {
    display: inline-block;
    font-size: 14px;
    margin-bottom: 8px;
  }

  .brand-network .brand-heading {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 32px;
  }

  /* Force 5 cards per row to match desktop appearance (scaled down) */
  .brand-network .brand-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px 24px;

  }

  .brand-network .brand-card {
    width: 100%;
    max-width: 220px;

  }

  .brand-network .brand-card img {
    max-width: 110px;
    width: 100%;
    height: auto;

  }

}

/* ==============================
   BRAND NETWORK — TABLET
   max-width: 768px
   Smaller cards and padding, 5 cards per row
================================ */
@media (max-width: 768px) {

  .brand-network {
    padding: 40px 0;

  }

  .brand-network .brand-container {
    padding: 0 30px;
    max-width: 900px;
    margin: 0 auto;

  }

  .brand-network .brand-tagline {

    font-size: 13px;

  }

  .brand-network .brand-heading {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
  }

  /* Force 5 cards per row, compact for tablet */
  .brand-network .brand-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px 16px;

  }

  .brand-network .brand-card {

    padding: 4px;

    width: 100%;
    max-width: 160px;
  }

  .brand-network .brand-card img {
    max-width: 100px;
    width: 100%;
    height: auto;

  }

}

/* ==============================
   BRAND NETWORK — MOBILE
   max-width: 425px
   2 cards per row, mobile padding
================================ */
@media (max-width: 425px) {

  .brand-network {
    padding: 32px 0;

  }

  .brand-network .brand-container {
    padding: 0 16px;
    max-width: 100%;
    margin: 0 auto;

  }

  .brand-network .brand-tagline {
    font-size: 12px;
    margin-bottom: 4px;
  }

  .brand-network .brand-heading {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
  }

  /* Mobile: auto-fit more cards per row and compact card sizing */
  .brand-network .brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 8px;
  }

  .brand-network .brand-card {
    padding: 6px;
    width: 100%;
    max-width: none;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .brand-network .brand-card img {
    max-width: 72px;
    max-height: 40px;
    width: auto;
    height: auto;
    object-fit: contain;
  }

}




/* ==============================
   CAREER SECTION — BIG LAPTOP
   min-width: 1025px and max-width: 1536px
================================ */
@media (min-width: 1025px) and (max-width: 1536px) {

  /* CAREER SECTION */
  .career-section {
    padding: 20px 80px;
    background: rgb(255, 255, 255);
  }

  .container {
    max-width: 1400px;
    margin: 0 auto;
  }

  /* INTRO WRAP - Grid Layout */
  .career-intro-wrap {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 20px;
    margin-bottom: 80px;
  }

  /* INTRO CONTENT */
  .career-content {
    max-width: 1100px;
    margin-bottom: 0;
  }

  .career-content h2 {
    font-size: 36px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 20px;
    line-height: 1.3;
  }

  .career-content p {
    font-size: 18px;
    color: #202020;
    line-height: 1.8;
    margin-bottom: 24px;
  }

  .career-points {
    list-style: none;
    margin: 0;
    padding: 20px;
  }

  .career-points li {
    margin-bottom: 16px;
    padding-left: 30px;
    position: relative;
    color: #202020;
    font-size: 16px;
    line-height: 1.6;
  }

  .career-points li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #000;
    font-weight: 600;
  }

  /* CAREER IMAGE */
  .career-image img {
    width: 100%;
    height: 340px;
    border-radius: 18px;
    object-fit: cover;
  }

  /* CAREER RIGHT - POSITIONS */
  .career-right {
    margin-top: 12px;
    text-align: left;
    padding: 40px 20px;
  }

  .career-right h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #111;
    line-height: 1.4;
  }

  /* CAREER CARDS LIST */
  .career-cards {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 30px;
  }

  /* JOB CARD - Horizontal Row */
  .job-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: transparent;
    padding: 20px 10px;
    border-bottom: 1px solid #e5e5e5;
    position: relative;
    transition: background 0.2s ease;
  }

  .job-card:first-child {
    border-top: 1px solid #e5e5e5;
  }

  .job-card:hover {
    background: #f9f9f9;
  }

  /* JOB NUMBER */
  .job-num {
    font-size: 14px;
    font-weight: 600;
    color: #575757;
    min-width: 32px;
    flex-shrink: 0;
  }

  /* JOB INFO - grows to fill space */
  .job-info {
    flex: 1;
  }

  /* JOB TITLE */
  .job-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #111;
    line-height: 1.3;
  }

  /* JOB META */
  .job-meta {
    font-size: 13px;
    color: #555;
    margin: 0;
    font-weight: 500;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
  }

  /* APPLY BUTTON */
  .apply-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: 50px;
    background: #111111;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all 0.3s ease;
    cursor: pointer;
  }

  .apply-btn:hover {
    background: #383838;
    transform: translateX(4px);
  }

  /* CAREER FORM SECTION */
  .career-form-section {
    padding: 40px 60px;
    background: #ffffff;
  }

  .career-form-section .container {
    max-width: 1100px;
    margin: auto;
  }

  /* FORM WRAPPER */
  .career-form-wrapper {
    background: #ffffff;
    padding: 50px 70px;
    border-radius: 22px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.151);
  }

  /* FORM HEADER */
  .career-form-header {
    text-align: center;
    margin-bottom: 45px;
    background: #dfdfdf7c;
    border-radius: 10px;
    padding: 20px 30px;
  }

  .career-form-header h2 {
    font-size: 32px;
    font-weight: 600;
    color: #111;
    padding-top: 8px;
    margin-bottom: 10px;
  }

  .career-form-header p {
    font-size: 16px;
    color: #555;
  }

}


/* ==============================
   CAREER SECTION — SMALL LAPTOP
   max-width: 1024px
================================ */
@media (max-width: 1024px) {

  /* CAREER SECTION */
  .career-section {
    padding: 20px 32px;
    background: rgb(255, 255, 255);
  }

  .container {
    max-width: 1200px;
    margin: 0 auto;
  }

  /* INTRO WRAP - Grid Layout */
  .career-intro-wrap {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 30px;
    margin-bottom: 60px;
  }

  /* INTRO CONTENT */
  .career-content {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .career-content h2 {
    font-size: 28px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 16px;
    line-height: 1.3;
  }

  .career-content p {
    font-size: 15px;
    color: #202020;
    line-height: 1.6;
    margin-bottom: 16px;
  }

  .career-points {
    list-style: none;
    margin: 0;
    padding: 20px;
  }

  .career-points li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    color: #202020;
    font-size: 14px;
    line-height: 1.5;
  }

  .career-points li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #000;
    font-weight: 600;
  }

  /* CAREER IMAGE */
  .career-image img {
    width: 100%;
    height: 280px;
    border-radius: 16px;
    object-fit: cover;
  }

  /* CAREER RIGHT - POSITIONS */
  .career-right {
    margin-top: 25px;
    text-align: left;
    padding: 35px 20px;
  }

  .career-right h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #111;
    line-height: 1.3;
  }

  /* CAREER CARDS LIST */
  .career-cards {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 20px;
  }

  /* JOB CARD - Horizontal Row */
  .job-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: transparent;
    padding: 16px 8px;
    border-bottom: 1px solid #e5e5e5;
    position: relative;
    transition: background 0.2s ease;
  }

  .job-card:first-child {
    border-top: 1px solid #e5e5e5;
  }

  .job-card:hover {
    background: #f9f9f9;
  }

  /* JOB NUMBER */
  .job-num {
    font-size: 13px;
    font-weight: 600;
    color: #575757;
    min-width: 28px;
    flex-shrink: 0;
  }

  /* JOB INFO - grows to fill space */
  .job-info {
    flex: 1;
  }

  /* JOB TITLE */
  .job-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #111;
    line-height: 1.2;
  }

  /* JOB META */
  .job-meta {
    font-size: 12px;
    color: #555;
    margin: 0;
    font-weight: 500;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
  }

  /* APPLY BUTTON */
  .apply-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 20px;
    border-radius: 50px;
    background: #111111;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all 0.3s ease;
    cursor: pointer;
  }

  .apply-btn:hover {
    background: #383838;
    transform: translateX(3px);
  }

  /* CAREER FORM SECTION */
  .career-form-section {
    padding: 60px 32px;
    background: #ffffff;
  }

  .career-form-section .container {
    max-width: 900px;
    margin: auto;
  }

  /* FORM WRAPPER */
  .career-form-wrapper {
    background: #ffffff;
    padding: 40px 32px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  }

  /* FORM HEADER */
  .career-form-header {
    text-align: center;
    margin-bottom: 30px;
    background: #dfdfdf7c;
    border-radius: 8px;
    padding: 16px 20px;
  }

  .career-form-header h2 {
    font-size: 24px;
    font-weight: 600;
    color: #111;
    padding-top: 6px;
    margin-bottom: 8px;
  }

  .career-form-header p {
    font-size: 14px;
    color: #555;
  }

  .career-submit-btn {
    padding: 12px 28px;
    font-size: 14px;
  }

}


/* ==============================
   CAREER SECTION — TABLET
   max-width: 768px
================================ */
@media (max-width: 768px) {

  /* CAREER SECTION */
  .career-section {
    padding: 20px 24px;
    background: rgb(255, 255, 255);
  }

  .container {
    max-width: 100%;
    margin: 0 auto;
  }

  /* INTRO WRAP - Single Column (Text then Image) */
  .career-intro-wrap {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
  }

  /* INTRO CONTENT */
  .career-content {
    max-width: 100%;
    margin-bottom: 0;
  }

  .career-content h2 {
    font-size: 22px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 12px;
    line-height: 1.3;
  }

  .career-content p {
    font-size: 14px;
    color: #202020;
    line-height: 1.5;
    margin-bottom: 12px;
  }

  .career-points {
    list-style: none;
    margin: 0;
    padding: 16px;
  }

  .career-points li {
    margin-bottom: 10px;
    padding-left: 22px;
    position: relative;
    color: #202020;
    font-size: 13px;
    line-height: 1.4;
  }

  .career-points li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #000;
    font-weight: 600;
  }

  /* CAREER IMAGE */
  .career-image {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .career-image img {
    width: 96%;
    height: 280px;
    border-radius: 12px;
    object-fit: cover;
  }

  /* CAREER RIGHT - POSITIONS */
  .career-right {
    margin-top: 20px;
    text-align: left;
    padding: 30px 18px;
  }

  .career-right h2 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #111;
    line-height: 1.3;
  }

  /* CAREER CARDS LIST */
  .career-cards {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 15px;
  }

  /* JOB CARD - Horizontal Row */
  .job-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: transparent;
    padding: 14px 6px;
    border-bottom: 1px solid #e5e5e5;
    position: relative;
    transition: background 0.2s ease;
  }

  .job-card:first-child {
    border-top: 1px solid #e5e5e5;
  }

  .job-card:hover {
    background: #f9f9f9;
  }

  /* JOB NUMBER */
  .job-num {
    font-size: 12px;
    font-weight: 600;
    color: #575757;
    min-width: 24px;
    flex-shrink: 0;
  }

  /* JOB INFO - grows to fill space */
  .job-info {
    flex: 1;
  }

  /* JOB TITLE */
  .job-card h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 3px;
    color: #111;
    line-height: 1.2;
  }

  /* JOB META */
  .job-meta {
    font-size: 11px;
    color: #555;
    margin: 0;
    font-weight: 500;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
  }

  /* APPLY BUTTON */
  .apply-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 50px;
    background: #111111;
    color: #fff;
    text-decoration: none;
    font-size: 11px;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all 0.3s ease;
    cursor: pointer;
  }

  .apply-btn:hover {
    background: #383838;
    transform: translateX(2px);
  }

  /* CAREER FORM SECTION */
  .career-form-section {
    padding: 20px 24px;
    background: #ffffff;
  }

  .career-form-section .container {
    max-width: 100%;
    margin: auto;
  }

  /* FORM WRAPPER */
  .career-form-wrapper {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  }

  /* FORM HEADER */
  .career-form-header {
    text-align: center;
    margin-bottom: 25px;
    background: #dfdfdf7c;
    border-radius: 6px;
    padding: 13px 16px;
    padding-top: 20px;
  }

  .career-form-header h2 {
    font-size: 20px;
    font-weight: 600;
    color: #111;
    padding-top: 4px;
    margin-bottom: 6px;
  }

  .career-form-header p {
    font-size: 12px;
    color: #555;
  }

  .career-submit-btn {
    padding: 10px 20px;
    font-size: 12px;
  }

}


/* ==============================
   CAREER SECTION — MOBILE
   max-width: 425px
================================ */
@media (max-width: 425px) {

  /* CAREER SECTION */
  .career-section {
    padding: 15px 16px;
    background: rgb(255, 255, 255);
  }

  .container {
    max-width: 100%;
    margin: 0 auto;
  }

  /* INTRO WRAP - Single Column */
  .career-intro-wrap {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
  }

  /* INTRO CONTENT */
  .career-content {
    max-width: 100%;
    margin-bottom: 0;
  }

  .career-content h2 {
    font-size: 22px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 12px;
    line-height: 1.2;
  }

  .career-content p {
    font-size: 13px;
    color: #202020;
    line-height: 1.4;
    margin-bottom: 10px;
  }

  .career-points {
    list-style: none;
    margin: 0;
    padding: 12px;
  }

  .career-points li {
    margin-bottom: 8px;
    padding-left: 18px;
    position: relative;
    color: #202020;
    font-size: 12px;
    line-height: 1.3;
  }

  .career-points li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #000;
    font-weight: 600;
  }

  /* CAREER IMAGE */
  .career-image {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .career-image img {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    object-fit: cover;
  }

  /* CAREER RIGHT - POSITIONS */
  .career-right {
    margin-top: 15px;
    text-align: left;
    padding: 20px 2px;
  }

  .career-right h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #111;
    line-height: 1.2;
  }

  /* CAREER CARDS LIST */
  .career-cards {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 12px;
  }

  /* JOB CARD - Horizontal Row */
  .job-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    padding: 12px 4px;
    border-bottom: 1px solid #e5e5e5;
    position: relative;
    transition: background 0.2s ease;
  }

  .job-card:first-child {
    border-top: 1px solid #e5e5e5;
  }

  .job-card:hover {
    background: #f9f9f9;
  }

  /* JOB NUMBER */
  .job-num {
    font-size: 11px;
    font-weight: 600;
    color: #575757;
    min-width: 20px;
    flex-shrink: 0;
  }

  /* JOB INFO - grows to fill space */
  .job-info {
    flex: 1;
  }

  /* JOB TITLE */
  .job-card h3 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 2px;
    color: #111;
    line-height: 1.1;
  }

  /* JOB META */
  .job-meta {
    font-size: 10px;
    color: #555;
    margin: 0;
    font-weight: 500;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 3px;
  }

  /* APPLY BUTTON */
  .apply-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 12px;
    border-radius: 50px;
    background: #111111;
    color: #fff;
    text-decoration: none;
    font-size: 9px;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all 0.3s ease;
    cursor: pointer;
  }

  .apply-btn:hover {
    background: #383838;
    transform: translateX(2px);
  }

  /* CAREER FORM SECTION */
  .career-form-section {
    padding: 20px 16px;
    background: #ffffff;
  }

  .career-form-section .container {
    max-width: 100%;
    margin: auto;
  }

  /* FORM WRAPPER */
  .career-form-wrapper {
    background: #ffffff;
    padding: 24px 14px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  }

  /* FORM HEADER */
  .career-form-header {
    text-align: left;
    margin-bottom: 20px;
    background: #dfdfdf7c;
    border-radius: 5px;
    padding: 4px 12px;
    padding-top: 20px;
  }

  .career-form-header h2 {
    font-size: 18px;
    font-weight: 600;
    color: #111;
    padding-top: 3px;
    margin-bottom: 4px;
  }

  .career-form-header p {
    font-size: 12px;
    color: #555;
  }

  .career-submit-btn {
    padding: 8px 16px;
    font-size: 11px;
  }

  .career-form-group label {
    font-size: 12px;
  }

  .career-form-group input,
  .career-form-group select,
  .career-form-group textarea {
    font-size: 11px;
  }

  .status-label {
    font-size: 12px;
  }

  .file-input-label span {
    font-size: 12px;

  }

}


/* ==============================
   HEAD SECTION — BIG LAPTOP
   1025px — 1536px
================================ */
@media (min-width: 1025px) and (max-width: 1536px) {
  .head {

    padding-top: 115px;

  }

  .head .head-content {
    margin-top: 80px;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    text-align: center;
  }

  .head .head-content h1 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #000000;
  }

}

/* ==============================
   HEAD SECTION — small LAPTOP
   max-width: 1024px
================================ */
@media (max-width: 1024px) {
  .head {

    padding-top: 115px;

  }

  .head .head-content {
    margin-top: 80px;
    max-width: 1000px;
    margin: auto;
    padding: 0 16px;
    text-align: center;
  }

  .head .head-content h1 {
    font-size: 45px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #000000;
  }

}

/* ==============================
   HEAD SECTION — TABLET
   max-width: 768px
================================ */
@media (max-width: 768px) {
  .head {

    padding-top: 115px;

  }

  .head .head-content {
    margin-top: 60px;
    max-width: 100%;
    margin: auto;
    padding: 0 12px;
    text-align: center;
  }

  .head .head-content h1 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #000000;
  }

}

/* ==============================
   HEAD SECTION — MOBILE
   max-width: 425px
================================ */
@media (max-width: 425px) {
  .head {
    padding-top: 100px;
  }

  .head .head-content {
    margin-top: 40px;
    max-width: 100%;
    margin: auto;
    padding: 0 8px;
    text-align: center;
  }

  .head .head-content h1 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #000000;
  }

}


/* ===== Responsive: LIST PROPERTY HEADING (Big Laptop) ===== */
@media (min-width: 1025px) and (max-width: 1536px) {
  .services-heading {
    /* Match navbar side padding */
    padding: 80px 80px;
    box-sizing: border-box;
  }

  .services-container {
    max-width: 1360px;
    margin: 0 auto;
  }

}


/* ===== Small Laptop (1024px) Responsive: Services Heading ===== */
@media (max-width: 1024px) {

  .services-heading {
    padding: 40px 20px;
    padding-bottom: 100px;
  }

  .services-container {
    max-width: 100%;
    padding: 0 40px;
  }

  .services-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 32px;
  }

  /* TEXT SIDE – 50% */
  .services-heading-content {
    flex: 1;
    padding: 0;
  }

  .services-heading-content h1 {
    font-size: 22px;
    line-height: 1.2;
  }

  .services-heading-content h2 {
    font-size: 16px;
    margin-bottom: 16px;
  }

  .services-heading-content p {
    font-size: 13px;
    margin-bottom: 12px;
  }

  .services-heading-content .tagline {
    font-size: 12px;
    letter-spacing: 1px;
  }

  .services-primary-btn {
    font-size: 12px;
    padding: 10px 24px;
  }

  /* IMAGE SIDE – 50% */
  .services-image {
    flex: 1;
    display: flex;
    justify-content: center;
    /* center image */
    align-items: center;
  }

  .services-image img {
    width: 100%;
    max-width: 500px;
    /* fill its half */
    height: auto;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  }
}


/* ===== Tablet (768px) Responsive: Services Heading ===== */
@media (max-width: 768px) {

  .services-heading {
    padding: 20px 25px;
  }

  .services-container {
    max-width: 100%;
    padding: 0 12px;
  }

  .services-wrapper {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 0 60px;
  }

  /* 🔑 Flatten content so children can reorder */
  .services-heading-content {
    display: contents;
  }

  /* TEXT CONTENT */
  .services-heading-content .tagline,
  .services-heading-content h1,
  .services-heading-content h2,
  .services-heading-content p {
    order: 1;
    text-align: left;
    margin: -5px;
  }

  .services-heading-content .tagline {
    font-size: 12px;

  }

  .services-heading-content h1 {
    font-size: 25px;

  }

  .services-heading-content h2 {
    font-size: 20px;

  }

  .services-heading-content p {
    font-size: 14px;

  }

  /* IMAGE */
  .services-image {
    order: 2;
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 12px 0 8px;
  }

  .services-image img {
    width: 100%;
    max-width: 550px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
  }

  /* BUTTON — AFTER IMAGE */
  .services-heading-content .services-primary-btn {
    order: 3;
    display: block;
    width: 100%;
    max-width: 200px;
    margin: 5px auto 50px;
    font-size: 14px;
    padding: 12px 0;
    text-align: center;
  }
}




/* ===== Mobile (425px) Responsive: Services Heading ===== */
@media (max-width: 425px) {
  .services-heading {
    padding: 14px 15px;
  }

  .services-container {
    max-width: 100%;
    padding: 0 4px;
  }

  .services-wrapper {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 0;
  }

  .services-heading-content {
    display: contents;
  }

  .services-heading-content .tagline,
  .services-heading-content h1,
  .services-heading-content h2,
  .services-heading-content p {
    order: 1;
    text-align: left;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    margin-top: -15px;
  }

  .services-heading-content .tagline {
    font-size: 11px;
    padding-left: 35px;


  }

  .services-heading-content h1 {
    font-size: 22px;


  }

  .services-heading-content h2 {
    font-size: 16px;


  }

  .services-heading-content p {
    font-size: 12px;


  }

  .services-image {
    order: 2;
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 8px 0 6px;
  }

  .services-image img {
    width: 100%;
    max-width: 380px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  }

  .services-heading-content .services-primary-btn {
    order: 3;
    display: block;
    width: 100%;
    max-width: 160px;
    margin: 4px auto 30px;
    font-size: 12px;
    padding: 10px 0;
    text-align: center;
  }
}


/* ===== RESPONSIVE: BIG LAPTOP (1025px - 1536px) ===== */
@media (min-width: 1025px) and (max-width: 1536px) {
  .find-brand-network {
    padding: 20px 50px;
    background: #fff;
  }

  .find-brand-tagline {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #464646;
  }

  .find-brand-heading {
    font-size: 34px;
    font-weight: 600;
    margin: 8px 0 20px;
  }

  .find-brand-location {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #111;
  }

  /* Grid - reduce to 5 columns for better spacing */
  .find-brand-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    opacity: 0;
    transform: translateY(30px);
    pointer-events: none;
    transition: all 0.6s ease;
    position: absolute;
    width: 100%;
    left: 0;
    padding: 0 20px;
    box-sizing: border-box;
  }

  .find-brand-grid.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    position: relative;
  }

  /* Card styling - smaller and with fixed heights */
  .find-brand-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    width: 100%;
    max-width: 210px;
    margin: 0 auto;
  }

  .find-brand-card img {
    max-width: 120px;
    max-height: 50px;
    object-fit: contain;
  }

}


/* ===== RESPONSIVE: SMALL LAPTOP (max-width: 1024px) ===== */
@media (max-width: 1024px) {
  .find-brand-network {
    padding: 20px 20px;
    background: #fff;
  }

  .find-brand-tagline {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #464646;
  }

  .find-brand-heading {
    font-size: 34px;
    font-weight: 600;
    margin: 6px 0 18px;
  }

  .find-brand-location {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #111;
  }

  /* Grid - reduce to 3 columns for smaller screens */
  .find-brand-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    opacity: 0;
    transform: translateY(30px);
    pointer-events: none;
    transition: all 0.6s ease;
    position: absolute;
    width: 100%;
    left: 0;
    padding: 0 15px;
    box-sizing: border-box;
  }

  .find-brand-grid.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    position: relative;
  }

  /* Card styling - more compact for small laptops */
  .find-brand-card {
    background: #ffffff;
    padding: 16px;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90px;
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
  }

  .find-brand-card img {
    max-width: 140px;
    max-height: 45px;
    object-fit: contain;
  }

  .find-brand-card.animate {
    animation: slideFromBottom 380ms cubic-bezier(0.2, 0.9, 0.3, 1) both;
    animation-delay: var(--delay);
    will-change: transform, opacity;
  }
}


/* ===== RESPONSIVE: TABLET (768px) ===== */
@media (min-width: 768px) and (max-width: 1023px) {
  .find-brand-network {
    padding: 20px 30px;
    background: #fff;
  }

  .find-brand-tagline {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #464646;
  }

  .find-brand-heading {
    font-size: 28px;
    font-weight: 600;
    margin: 5px 0 15px;
  }

  .find-brand-location {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 18px;
    color: #111;
  }

  /* Grid - 2 columns for tablet screens */
  .find-brand-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    opacity: 0;
    transform: translateY(30px);
    pointer-events: none;
    transition: all 0.6s ease;
    position: absolute;
    width: 100%;
    left: 0;
    padding: 0 10px;
    box-sizing: border-box;
  }

  .find-brand-grid.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    position: relative;
  }

  /* Card styling - optimized for tablets */
  .find-brand-card {
    background: #ffffff;
    padding: 14px;
    border-radius: 8px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
    width: 100%;
    max-width: 180px;
    margin: 0 auto;
  }

  .find-brand-card img {
    max-width: 100px;
    max-height: 40px;
    object-fit: contain;
  }

  .find-brand-card.animate {
    animation: slideFromBottom 360ms cubic-bezier(0.2, 0.9, 0.3, 1) both;
    animation-delay: var(--delay);
    will-change: transform, opacity;
  }
}


/* ===== RESPONSIVE: MOBILE (<=425px) ===== */
@media (max-width: 425px) {
  .find-brand-network {
    padding: 16px 14px;
    background: #fff;
    text-align: center;
  }

  /* ensure container can act as positioning context */
  .find-brand-container {
    position: relative;
  }

  .find-brand-tagline {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #464646;
  }

  .find-brand-heading {
    font-size: 22px;
    font-weight: 600;
    margin: 6px 0 12px;
  }

  .find-brand-location {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 14px;
    color: #111;
  }

  /* Grid - mobile: show only the active grid in flow, keep inactive grids absolutely positioned
     so they don't add vertical space when swapped (preserves desktop-like animation). */
  .find-brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 8px;
    transition: all 0.35s ease;
    width: 100%;
    left: 0;
    padding: 0 6px;
    box-sizing: border-box;
  }

  /* inactive grids are taken out of normal flow and visually hidden */
  .find-brand-grid:not(.active) {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(16px);
    pointer-events: none;
    z-index: 1;
  }

  /* the active grid stays in flow and determines the container height */
  .find-brand-grid.active {
    position: relative;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    z-index: 2;
  }

  /* Card styling - full width, small and compact */
  .find-brand-card {
    background: #ffffff;
    padding: 8px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    width: 100%;
    max-width: none;
    margin: 0 auto;
  }

  .find-brand-card img {
    max-width: 72px;
    max-height: 34px;
    object-fit: contain;
  }

  .find-brand-card.animate {
    animation: slideFromBottom 300ms cubic-bezier(0.2, 0.9, 0.3, 1) both;
    animation-delay: var(--delay);
    will-change: transform, opacity;
  }

}


/* ==============================
   RESULTS SECTION — BIG LAPTOP
   min-width: 1025px and max-width: 1536px
   Match navbar padding and reduce sizes
================================ */
@media (min-width: 1025px) and (max-width: 1536px) {

  #resultsSection {
    padding: 5px 100px;
    margin-top: -10px;
  }

  /* Search wrapper styling */
  .result-search-wrapper {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
  }

  .properties-section-demo h3 {
    font-size: 22px;

  }


}

/* ==============================
   RESULTS SECTION — SMALL LAPTOP
   max-width: 1024px
   Match navbar padding and reduce sizes
================================ */
@media (max-width: 1024px) {

  #resultsSection {
    padding: 5px 30px;
    margin-top: -10px;
  }

  /* Search wrapper styling */
  .result-search-wrapper {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
  }

  .properties-section-demo h3 {
    font-size: 20px;

  }

  .proceed-form-wrapper h3 {
    font-size: 18px;
    width: 100%;
    padding: 18px 0 18px 0;

    text-align: center;

  }
}

/* ==============================
   RESULTS SECTION — TABLET
   max-width: 768px
   Match navbar padding and reduce sizes, stack search input and button
================================ */
@media (max-width: 768px) {

  #resultsSection {
    padding: 5px 20px;
    margin-top: -10px;
  }

  /* Search wrapper styling - keep input and button side-by-side on small screens */
  .result-search-wrapper {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
    margin-bottom: 10px;
  }

  .result-search-wrapper input {
    font-size: 13px;
    padding: 10px 10px;
    flex: 1 1 auto;
    min-width: 0;
    /* allow shrinking inside flex */
  }

  .result-search-btn {
    font-size: 14px;
    padding: 8px 14px;
    flex: 0 0 auto;
    min-width: 84px;
  }


  .properties-section-demo h3 {
    font-size: 18px;

  }

  .property-table thead th {
    font-size: 13px;
    padding: 8px 6px;
  }

  .property-table tbody td {
    font-size: 13px;
    padding: 8px 6px;
  }

  .table-img {
    width: 90px;
    height: 60px;
    object-fit: cover;
    flex: 0 0 64px;
    border-radius: 6px;
  }

  /* Compact properties list for small screens */
  .properties-section-demo {
    padding: 8px 12px;
  }

  .properties-section-demo .property-card {
    display: flex;
    gap: 8px;
    align-items: center;
    padding: 8px;
  }

  .properties-section-demo .property-card img,
  .properties-section-demo .property-thumb {
    width: 64px;
    height: 48px;
    object-fit: cover;
    flex: 0 0 64px;
    border-radius: 6px;
  }

  .properties-section-demo .property-meta {
    font-size: 13px;
    line-height: 1.2;
  }

  .properties-section-demo .property-title {
    font-size: 14px;
    margin-bottom: 4px;
  }

  .properties-section-demo .property-sub {
    font-size: 12px;
    color: #666;
  }

  /* Pagination - compact on small screens */
  .pagination-controls {
    padding: 6px 12px;
    gap: 8px;
    max-width: 90%;
    margin: 8px auto;
  }

  .pagination-btn {
    padding: 8px 12px;
    min-width: 84px;
    max-width: 110px;
    font-size: 13px;
    border-radius: 28px;
  }

  .pagination-info {
    gap: 8px;
    min-width: 120px;
    padding-top: 8px;
  }

  #pageIndicator {
    font-size: 13px;
  }

  #resultIndicator {
    font-size: 12px;
  }

  /* Proceed bar responsive adjustments for small screens */
  .proceed-bar {
    padding: 6px 12px;
  }

  .proceed-bar .btn,
  .proceed-bar .btn-primary {
    padding: 6px 10px;
    font-size: 13px;
    min-width: 110px;
    width: 100%;
    max-width: 290px;
    box-sizing: border-box;
  }


  /* ===== PROCEED SECTION – TABLET (768px) ===== */


  /* Proceed Left - Button and summary cards */
  .proceed-left {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .proceed-left .btn {
    padding: 12px 16px;
    font-size: 14px;
    width: 100%;
    border-radius: 6px;
  }

  /* Selected Summary Cards - Make smaller and compact */
  .selected-summaries {
    display: flex !important;
    flex-direction: column;
    gap: 10px;
    padding: 0 !important;
    background: transparent;
    margin-top: 0 !important;
    max-height: 300px;
    overflow-y: auto;
  }

  .selected-card {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 10px;
    border: none;
    border-radius: 15px;
    background: #fff;
  }

  .selected-card .card-image-fixed {
    width: 150px;
    height: 120px;
    object-fit: cover;
    flex: 0 0 150px;
    border-radius: 8px;
    padding-top: 10px;
  }

  .selected-card .card-image-fixed img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
  }

  .selected-card .card-text-content {
    font-size: 11px;
    line-height: 1.1;
    flex: 1;
  }

  .selected-card .card-text-content p {
    margin: 4px 0;
    font-size: 11px;
  }

  /* Proceed Form Wrapper - Make smaller */
  .proceed-form-wrapper {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 8px;
    background: #fff;
  }

  .proceed-form-wrapper h3 {
    font-size: 16px;
    margin: 0 0 12px 0;
    font-weight: 600;
    color: #1d1d1d;
  }

  /* Form Groups - Compact */
  .proceed-form-wrapper .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 10px;
  }

  .proceed-form-wrapper .form-group {
    margin-bottom: 10px;
  }

  .proceed-form-wrapper .form-group label {
    display: block;
    font-size: 12px;
    margin-bottom: 4px;
    font-weight: 500;
    color: #333;
  }

  .proceed-form-wrapper .form-group input {
    width: 100%;
    padding: 8px 10px;
    font-size: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-sizing: border-box;
  }

  .proceed-form-wrapper .btn.btn-success {
    width: 100%;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 6px;
    margin-top: 8px;
  }

  /* Success Message - Make smaller */
  #successMessage.success-message {
    padding: 20px 16px;
    border-radius: 12px;
    max-width: 100%;
  }

  #successMessage.success-message h4 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: #333;
  }

  #successMessage.success-message p {
    font-size: 13px;
    color: #555;
    line-height: 1.5;
    margin: 0 0 12px 0;
  }

  .success-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 12px;
  }

  .success-actions .btn {
    width: 100%;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 6px;
    white-space: nowrap;
    text-align: center;
  }



}

/* =====================================
Final mobile override: make result filter visually match the first filter (mobile-friendly pills) 
========================================*/
@media (max-width: 425px) {


  #resultsSection {
    padding: 5px 0;
    margin-top: -20px;
  }

  /* Search wrapper styling - keep input and button side-by-side on small screens */
  .result-search-wrapper {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
    margin-bottom: 0 !important;
    padding: 0 5px;
  }

  .result-search-wrapper input {
    font-size: 12px;
    padding: 10px 10px;
    flex: 1 1 auto;
    min-width: 0;
    /* allow shrinking inside flex */
  }

  .result-search-btn {
    font-size: 12px;
    padding: 8px 10px;
    flex: 0 0 auto;

    max-width: 80px;
  }

  .result-filter-panel.show {
    width: 100%;
    max-width: 100%;
    padding: 6px 10px !important;
    margin: 0 !important;
    border-radius: 12px;
    background: #fff;
    box-sizing: border-box;
  }

  .result-filter-top {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    align-items: start;
  }

  .result-deal-type,
  .result-measure-type {
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
    width: 100%;
  }

  .result-deal-type button,
  .result-measure-type button {
    width: 100% !important;
    padding: 12px 10px !important;
    font-size: 12px !important;
    border-radius: 40px !important;
    text-align: center;
  }

  /* Property type buttons as big pills (full width) */
  .result-property-tabs {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    width: 100%;
  }

  .result-property-tabs button {
    width: 100% !important;
    padding: 12px 10px !important;
    font-size: 12px !important;
    border-radius: 28px !important;
    text-align: center !important;
  }

  /* Compact selects for min/max but keep side-by-side */
  .result-range-group {
    display: flex !important;
    gap: 8px !important;
    width: 100%;
    align-items: center;
  }

  .result-range-group select {
    flex: 1 1 48% !important;
    min-width: 0 !important;
    padding: 8px 10px !important;
    font-size: 12px !important;
  }

  .result-filter-note {
    margin: 0 !important;
  }

  .result-filter-note p {
    font-size: 11px !important;
    margin: 0 !important;
  }

  /* Mobile: show only the active range group (sqft OR workstation) */
  .result-range-box {
    display: flex !important;
    padding-right: 10px !important;
    padding-top: 0 !important;
    margin: 0 !important;
    /* add some right padding to prevent select from touching edge */
  }

  .result-range-group {
    display: none !important;
  }

  .result-range-group.active {
    display: flex !important;
    gap: 8px !important;
    width: 80% !important;
    align-items: center !important;
  }

  .result-range-group.active select {
    flex: 1 1 48% !important;
    min-width: 0 !important;
  }

  /* Compact properties list for small screens */
  .properties-section-demo {
    padding: 8px 0;
  }

  .properties-section-demo h3 {
    font-size: 18px;
    padding-left: 10px;

  }

  .table-responsive {
    padding: 0 0 !important;
  }



  .properties-section-demo .property-card {
    display: flex;
    gap: 8px;
    align-items: center;
    padding: 8px;
  }

  .property-table thead th {
    font-size: 12px;
    padding: 8px 6px;
  }

  .property-table tbody td {
    font-size: 12px;
    padding: 8px 6px;
  }

  .table-img {
    width: 70px;
    height: 45px;
    object-fit: cover;
    flex: 0 0 64px;
    border-radius: 6px;
  }

  .properties-section-demo .property-card img,
  .properties-section-demo .property-thumb {
    width: 64px;
    height: 48px;
    object-fit: cover;
    flex: 0 0 64px;
    border-radius: 6px;
  }

  .properties-section-demo .property-meta {
    font-size: 13px;
    line-height: 1.2;
  }

  .properties-section-demo .property-title {
    font-size: 14px;
    margin-bottom: 4px;
  }

  .properties-section-demo .property-sub {
    font-size: 12px;
    color: #666;
  }

  /* Pagination - mobile-friendly compact layout: buttons left/right, info stacked center */
  .pagination-controls {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 8px;
    padding: 6px 8px;
    padding-top: 30px;
    max-width: 100%;
    margin: 0 !important;
    box-sizing: border-box;
    width: 100%;
  }

  .pagination-btn {
    padding: 8px 10px;
    min-width: 56px;
    max-width: 100px;
    font-size: 12px;
    border-radius: 22px;
    flex: 0 0 auto;
    white-space: nowrap;
  }

  /* Info sits between buttons and stacks its spans vertically */
  .pagination-info {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 3px;
    flex: 1 1 auto;
    justify-content: center;
    padding: 0 6px;
    text-align: center;
  }

  .pagination-info span {
    display: block;
    line-height: 1;
  }

  #pageIndicator {
    font-size: 12px;
    white-space: nowrap;
  }

  #resultIndicator {
    font-size: 11px;
    white-space: nowrap;
    color: #666;
  }

  .selected-summaries {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px;
    padding: 12px 0 !important;

    background: transparent;
    margin-top: 12px;
    max-height: 200px;
  }

  .selected-card {
    display: flex;
    gap: 8px;
    align-items: center;
    padding: 8px 5px;
    border-bottom: 1px solid #bebebe;

  }

  .selected-card .card-image-fixed {
    width: 200px;
    height: 130px;
    object-fit: cover;
    flex: 0 0 200px;
    border-radius: 6px;
    padding-left: 10px;
  }

  .selected-card .card-image-fixed img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
  }

  .selected-card .card-text-content {
    font-size: 12px;
    line-height: 1.2;
  }

  .proceed-form-wrapper h3 {
    font-size: 15px;
  }

  .proceed-form-wrapper .btn.btn-success {

    font-size: 12px;
    font-weight: 600;
    padding: 6px 0;
  }

  #successMessage.success-message h4 {
    font-size: 20px;
    font-weight: 700;

    letter-spacing: 0.3px;
  }

  #successMessage.success-message p {
    font-size: 14px;
    color: #333333;

    letter-spacing: 0.2px;
  }

  .success-actions .btn {
    width: 100%;
    max-width: 200px;
    padding: 12px 22px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    text-align: center;
    cursor: pointer;
    border: none;
  }

}



/* ===== SERVICES SECTION - BIG LAPTOP (1025px to 1536px) ===== */
@media (min-width: 1025px) and (max-width: 1536px) {

  .services-main-section {
    padding: 70px 0;
    margin-top: -15px;
    height: 85vh;
    background: url('image/Property Consultancy.jpg') center / cover no-repeat;
  }

  .services-main-container {
    padding: 5px 20px;
  }

  .services-main-container h1 {
    font-size: 32px;
    margin-bottom: 60px;
  }

  /* ICON TABS */
  .services-tabs {
    gap: 15px;
    margin: 0 auto 60px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .service-tab {
    width: 130px;
    height: 115px;
    padding: 12px 16px;
    border-radius: 12px;
    gap: 8px;
    font-size: 12px;
  }

  .service-tab img {
    width: 45px;
  }

  .service-tab span {
    font-size: 12px;
  }

  /* CONTENT - SERVICE BOX */
  .service-box {
    gap: 45px;
  }

  .service-main-image img {
    max-width: 380px;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  }

  .service-text h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .service-text p {
    font-size: 13px;
    line-height: 1.5;
    max-width: 400px;
  }

}


/* SERVICES MAIN SECTION */
@media (max-width: 1024px) {
  .services-main-section {
    padding: 60px 0;
    margin-top: -15px;
    height: 80vh;
    background: url('image/Property Consultancy.jpg') center / cover no-repeat;
  }

  .services-main-container {
    padding: 5px 16px;
  }

  .services-main-container h1 {
    font-size: 28px;
    margin-bottom: 50px;
  }

  .services-tabs {
    gap: 12px;
    margin: 0 auto 50px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .service-tab {
    width: 110px;
    height: 100px;
    padding: 10px 14px;
    border-radius: 10px;
    gap: 6px;
    font-size: 11px;
  }

  .service-tab img {
    width: 40px;
  }

  .service-tab span {
    font-size: 11px;
  }

  .service-box {
    gap: 35px;
    align-items: center;
  }

  .service-main-image img {
    max-width: 320px;
    border-radius: 16px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
  }

  .service-text h2 {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .service-text p {
    font-size: 12px;
    line-height: 1.4;
    max-width: 350px;
  }
}

/* ===== SERVICES SECTION - TABLET (max-width: 768px) ===== */
@media (max-width: 768px) {

  .services-main-section {
    padding: 50px 0;
    margin-top: -18px;
    height: 75vh;
    background: url('image/Property Consultancy.jpg') center / cover no-repeat;
  }

  .services-main-container {
    padding: 5px 14px;
  }

  .services-main-container h1 {
    font-size: 24px;
    margin-bottom: 40px;
  }

  .services-tabs {
    display: flex;
    gap: 10px;
    margin: 0 auto 40px;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .service-tab {
    flex: 0 0 calc(25% - 8px);
    max-width: 160px;
    height: 90px;
    padding: 8px 12px;
    border-radius: 10px;
    gap: 6px;
    font-size: 10px;
    text-align: center;
    box-sizing: border-box;
  }

  .service-tab img {
    width: 36px;
  }

  .service-tab span {
    font-size: 10px;
  }

  /* Ensure image and text sit side-by-side on tablets */
  .service-box {
    gap: 35px;
    align-items: center;
  }

  .service-main-image img {
    max-width: 260px;
    border-radius: 14px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  }

  .service-text h2 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .service-text p {
    font-size: 12px;
    line-height: 1.4;
    max-width: 300px;
  }

}



/* ===== SERVICES SECTION - MOBILE (max-width: 425px) ===== */
@media (max-width: 425px) {

  .services-main-section {
    padding: 40px 0;
    margin-top: -20px;
    height: 75vh;
    background: url('image/Property Consultancy.jpg') center / cover no-repeat;
  }

  .services-main-container {
    padding: 5px 12px;
  }

  .services-main-container h1 {
    font-size: 20px;
    margin-bottom: 30px;
  }

  .services-tabs {
    display: flex;
    gap: 8px;
    margin: 0 auto 30px;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .service-tab {
    flex: 0 0 calc(25% - 6px);
    max-width: 120px;
    height: 80px;
    padding: 6px 8px;
    border-radius: 8px;
    gap: 6px;
    font-size: 9px;
    text-align: center;
    box-sizing: border-box;
  }

  .service-tab img {
    width: 28px;
  }

  .service-tab span {
    font-size: 9px;
  }

  /* Keep service image + text side-by-side but compact */
  .service-box {
    gap: 15px;
    align-items: center;
  }

  .service-main-image img {
    max-width: 230px;
    height: 120px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
  }

  .service-text h2 {
    font-size: 15px;
    margin-bottom: 8px;
    padding-top: 10px;
  }

  .service-text p {
    font-size: 11px;
    line-height: 1;
    max-width: 200px;
    font-weight: 400;
  }

}