﻿/* =============================
    NEW: style.css (responsive rebuild)
    - Rebuilt from original without design changes
    - Keep backup before replacing
    - Performance optimizations added
    ============================= */

/* =============================
    GLOBAL RESETS & BASE STYLES
============================= */

/* Note: Font is loaded from Google Fonts with display=swap for optimal performance */

* {
  margin: 0;
  padding: 0;
  text-decoration: none !important;
  outline: none !important;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
  background-color: #f1f1f1;
  font-family: "Montserrat", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Performance: reduce paint */
  text-rendering: optimizeSpeed;
}

a {
  color: black;
  text-decoration: none;
  cursor: pointer;
  font-size: 15px;
  touch-action: manipulation;
  /* Faster tap response on mobile */
}

button {
  cursor: pointer;
  touch-action: manipulation;
  /* Faster tap response on mobile */
  border: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0.55vw 0;
  line-height: 140%;
  font-weight: 500;
}

p {
  margin: 0;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.4;
  font-family: Montserrat, sans-serif;
  color: #fff;
}

/* =============================
    UTILITY CLASSES
============================= */

/* Screen reader only - visually hidden but accessible */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Accessibility: Focus styles for keyboard navigation */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid #4a90d9;
}

/* View All Developers Button */
.view-all-dev-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 32px;
  background: #1a1a1a;
  color: #fff !important;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-decoration: none !important;
  border: 1px solid transparent;
}

.view-all-dev-btn:hover {
  background: #d4af37;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
  border-color: #fff;
}

.view-all-dev-btn svg {
  transition: transform 0.3s ease;
}

.view-all-dev-btn:hover svg {
  transform: translateX(5px);
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Screen reader only - visually hidden but accessible */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Phone number box styling */
.phone-number-box {
  border: 2px solid black;
  padding: 10px;
}

/* Banner quote styling */
.banner-quote {
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  color: #ffffff;
  margin-top: 15px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-shadow:
    1px 1px 6px rgba(0, 0, 0, 0.8),
    0 0 20px rgba(0, 0, 0, 0.4);
}

/* Navigation social links container */
.nav-social-links {
  margin-top: 50%;
  text-align: center;
}

/* Title border with bold weight */
.title-border {
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}

.title-border::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 3px;
  background: #d4a574;
}

.title-border-bold {
  font-weight: 500 !important;
}

/* Full width banner image */
.banner-img-full {
  width: 100%;
}

/* Form logo styling */
.form-logo {
  align-self: center;
  width: 60%;
  margin-bottom: 30px;
}

/* Form input styling */
.form-input {
  font-size: large;
}

/* Form error message */
.form-error {
  color: red;
  font-size: 12px;
  display: none;
}

/* Flex row with gap */
.flex-row-gap {
  display: flex;
  gap: 10px;
}

/* Phone input styling */
.phone-input-styled {
  font-size: medium;
}

/* Submit button styling */
.btn-submit {
  margin-left: -4px;
  border-radius: 10px;
  width: 100%;
  height: 50px;
  border: none;
  background-color: #333;
  color: white;
  margin-top: 20px;
}

/* Dots container */
.dots-container {
  text-align: center;
}

/* Video thumbnail link */
.video-thumb-link {
  position: relative;
  display: inline-block;
}

/* Brand logo with invert filter */
.brand-logo-invert {
  filter: invert(1);
}

/* Footer title underline */
.footer-title-underline {
  border-bottom: 2px solid white;
}

/* Footer links wrapper - extends base .footer-links */
.footer-links-styled {
  padding: 60px;
}

/* Copyright bar */
.copyright-bar {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  align-items: center;
  background: #333;
  border-top: 2px solid white;
}

/* White text color */
.text-white {
  color: white;
}

/* Flex gap container */
.flex-gap-20 {
  display: flex;
  gap: 20px;
}

/* HR auto margin */
.hr-auto {
  margin: auto;
}

/* ===== FOOTER COPYRIGHT BAR ===== */
.footer-copyright-bar {
  @apply flex items-center justify-between gap-4 bg-[#333] px-4 py-3 border-t border-white flex-col md:flex-row opacity-100 transition-opacity duration-300;
}

.footer-copyright-bar:hover {
  @apply opacity-100;
}
.mySlides.fade {
  width: 100%;
  background-color: white;
  height: 90vh;
}
.footer-copyright-text {
  @apply text-white text-sm;
}

/* .footer-links-right {
  @apply flex gap-5 items-center;
} */

/* OTP Section Styles */
.otp-heading {
  font-size: xx-large;
  margin-top: -30px;
}

.otp-input-container {
  margin-top: 20px;
}

.otp-input {
  font-size: larger;
}

.otp-verify-btn {
  width: 50%;
  font-size: larger;
  border-radius: 10px;
  height: 50px;
  background: linear-gradient(45deg, #1cb5e0, #000851);
  color: white;
  border: none;
}

.timer-display {
  color: red;
}

.otp-error-msg {
  color: red;
  margin-top: 10px;
  display: none;
}

/* Thank You Popup Styles */
.thankyou-heading {
  font-size: x-large;
  margin-top: 150px;
}

.thankyou-icon {
  color: gray;
  font-size: x-large;
  padding: 2px;
}

.thankyou-text {
  font-size: 16px;
  color: gray;
}

.text-center {
  text-align: center;
  padding: 10px 15px;
  color: grey;
}

/* Utility */
.container {
  width: 100%;
  margin: 0 auto;
}

/* =============================
    HEADER & NAVBAR
============================= */

header {
  display: flex;
  flex-direction: row;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  position: fixed;
  width: 100%;
  background: white !important;
  transition: background 0.35s ease-in-out;
}

header.scrolled {
  background: white !important;
}

.navbar {
  width: 100%;
  position: sticky;
  flex: 1;
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  padding: 6px 20px;
}

.logo {
  display: flex;
  justify-content: flex-start;
  padding-left: 10px;
}

#mainNav {
  display: flex;
  justify-content: flex-end;
}

.hamburger {
  justify-self: end;
}

header .navbar ul {
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  padding: 10px 20px;
  margin: 0;
}

.nav-links {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.nav-links li a {
  /* color: #9c6d41; */
  color: #000;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: var(--m3m-green);
}

.logo img {
  filter: none;
  width: auto;
  height: 60px;
}

/* Hamburger button (hidden on desktop) */
.hamburger {
  font-size: 26px;
  cursor: pointer;
  display: none;
  background: transparent;
  border: none;
  padding: 8px 12px;
}

.hamburger-icon {
  display: inline-block;
  line-height: 1;
  color: #bc6c21;
}

body.menu-open {
  color: white;
}

/* Desktop: Show primary nav inline, hamburger always visible */
@media (min-width: 1200px) {
  /* Show primary nav on desktop */
  .nav-links-primary {
    display: flex !important;
  }

  /* Phone number in navbar for desktop */
  .phone-number {
    display: none;
  }

  /* Hide location on desktop */
  #location-header {
    display: none !important;
  }
}

/* =============================
    LOCALITIES DROPDOWN (CLICK - ACCORDION STYLE)
============================= */

.localities-dropdown {
  position: static;
  cursor: pointer;
}

.localities-dropdown > a {
  display: flex;
  align-items: center;
  gap: 5px;
}

.icon-dropdown {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid white;
  margin-left: 5px;
  vertical-align: middle;
  transition: transform 0.3s ease;
}

.localities-dropdown.active .icon-dropdown {
  transform: rotate(180deg);
}

.localities-submenu {
  display: none !important;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background: #ffffff;
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: none;
  border-top: 3px solid #1c1c1c;
  padding: 10px 0 20px 0;
  list-style: none;
  z-index: 9999;
  margin-top: 10px;
}

/* Show on click (active class) */
.localities-dropdown.active .localities-submenu {
  display: block !important;
  animation: dropdownSlideIn 0.3s ease-out;
}

@keyframes dropdownSlideIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.localities-submenu .city-heading {
  color: #111 !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 20px 25px 10px 25px !important;
  display: block;
  width: 100%;
  box-sizing: border-box;
  opacity: 1;
  white-space: nowrap;
}

.localities-submenu li {
  display: block !important;
  width: 100%;
}

.localities-submenu li a {
  display: block;
  padding: 12px 25px;
  color: #444 !important;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.25s ease;
  border-left: 3px solid transparent;
}

.localities-submenu li a:hover {
  background: #fcfcfc;
  color: #daa520 !important;
  border-left: 3px solid #daa520;
  padding-left: 30px;
}

/* =============================
    BANNER / SLIDER
============================= */

/* Simple Slider Styles */
.simple-slider {
  position: relative;
  width: 100%;
  padding: 10px 0 30px;
  /* Space at bottom for dots */
  overflow: visible !important;
  /* Extremely important: let dots be seen */
}

.slider-track-container {
  width: 100%;
  overflow: hidden;
  /* Only clip the track horizontally */
  padding: 10px 5px;
}

.slider-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  gap: 15px;
  margin-left: 0;
}

.slide {
  flex: 0 0 calc((100% - 30px) / 3);
  min-width: calc((100% - 30px) / 3);
  max-width: calc((100% - 30px) / 3);
}

@media (max-width: 992px) {
  .slide {
    flex: 0 0 calc(50% - 10px);
    min-width: calc(50% - 10px);
  }
}

@media (max-width: 768px) {
  .slide {
    flex: 0 0 100%;
    min-width: 100%;
  }
}

.slide .project {
  display: block;
  background: var(--smartworld-blue);
  border: 2px solid var(--smartworld-blue);
  overflow: hidden;
  text-decoration: none;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.slide .project:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Slider Dots */
.simple-slider .dots {
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 25px;
  padding: 10px 0;
  width: 100%;
  min-height: 20px;
  position: relative;
  z-index: 100;
}

.simple-slider .dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #999;
  /* Darker gray for better visibility */
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
}

.simple-slider .dots span:hover {
  background: #666;
  transform: scale(1.2);
}

.simple-slider .dots span.active {
  background: var(--smartworld-blue);
  transform: scale(1.3);
  box-shadow: 0 0 10px rgba(0, 102, 179, 0.3);
}

/* Slider Navigation Arrows */
.simple-slider {
  position: relative;
}

.slider-prev,
.slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 102, 179, 0.8);
  color: #fff;
  border: none;
  padding: 15px 18px;
  font-size: 20px;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s ease;
  border-radius: 5px;
}

.slider-prev {
  left: -15px;
}

.slider-next {
  right: -15px;
}

.slider-prev:hover,
.slider-next:hover {
  background: rgba(0, 102, 179, 1);
}

/* Tablet/Medium view - 2 cards (600px - 1024px) */
@media (max-width: 1024px) {
  .slide {
    flex: 0 0 calc(50% - 10px);
    min-width: calc(50% - 10px);
    max-width: calc(50% - 10px);
  }
}

.banner img,
.slideshow-container img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

/* Desktop Banner - visible on large screens */
.banner .banner-desktop,
.slideshow-container .banner-desktop {
  display: block;
  width: 100%;
  background-color: white;
}

/* Mobile Banner - HIDDEN on large screens (desktop) */
.banner .banner-mobile,
.slideshow-container .banner-mobile {
  display: none !important;
}

/* Mobile: swap banners */
@media (max-width: 768px) {
  .banner .banner-desktop,
  .slideshow-container .banner-desktop {
    display: none !important;
  }

  .banner .banner-mobile,
  .slideshow-container .banner-mobile {
    display: block !important;
    height: 90vh;
    object-fit: cover;
    /*object-position: left;*/
  }
}

.slideshow-container {
  position: relative;
  margin: auto;
  width: 100%;
}

.mySlides {
  display: table-cell;
  width: 100%;
}

.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  z-index: 10;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
  z-index: 5;
}

.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
  z-index: 5;
}

.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.dot.active,
.dot:hover {
  background-color: #333;
}

.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {
    opacity: 0.4;
  }

  to {
    opacity: 1;
  }
}

/* =============================
    BANNER CONTENT OVERLAY
============================= */

.banner {
  position: relative;
}

.banner-content-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  max-width: 700px;
  padding: 40px 50px;
  text-align: center;
  background: transparent;
  border-radius: 20px;
}

.banner-heading {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
  margin-bottom: 15px;
  line-height: 1.2;
  font-family: "Montserrat", sans-serif;
  text-align: center;
  opacity: 0;
  animation: heroTextReveal 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
  animation-delay: 0.5s;
}

@keyframes heroTextReveal {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.banner-subtitle {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: #ffffff;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
  font-weight: 400;
  line-height: 1.5;
  font-family: "Montserrat", sans-serif;
  opacity: 0;
  animation: heroTextReveal 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
  animation-delay: 0.8s;
}

.banner-subtitle .highlight-text {
  color: #f5a623;
  font-weight: 600;
}

/* Mobile responsive adjustments for banner overlay */
@media (max-width: 768px) {
  .banner-content-overlay {
    left: 50%;
    max-width: 95%;
    padding: 20px 15px;
    top: 50%; /* Center vertically instead of 35% */
    transform: translate(-50%, -50%);
    background: transparent; /* Removed black shadow/gradient */
  }

  .banner-heading {
    margin-bottom: 15px;
    font-size: 2rem;
    line-height: 1.1;
  }

  .banner-static-text {
    font-size: 1.4rem;
    display: block;
    margin-bottom: 5px;
  }

  .banner-dynamic-text {
    font-size: 1.8rem;
  }

  .banner-seo-subheading {
    font-size: 1rem !important;
    margin-top: 10px !important;
    line-height: 1.4;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5) !important;
  }
}

@media (max-width: 480px) {
  .banner-content-overlay {
    top: 48%;
    padding: 15px 10px;
  }

  .banner-heading {
    font-size: 1.6rem;
  }

  .banner-static-text {
    font-size: 1.1rem;
  }

  .banner-dynamic-text {
    font-size: 1.4rem;
  }

  .banner-seo-subheading {
    font-size: 0.9rem !important;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5) !important;
  }
}

/* =============================
    PROJECTS GRID
============================= */

.outer-container {
  border-radius: 20px;
  background-color: white;
  padding: 40px;
  margin: 20px;
}

.container-box {
  padding: 0px 150px;
}

.container-box h2 {
  margin-bottom: 20px;
  font-family: Montserrat;
  text-align: center;
  color: whitesmoke;
}

.title-border {
  text-transform: uppercase;
  margin: 0;
  padding: 0;
  padding-bottom: 15px;
  position: relative;
  display: inline-block;
  font-size: 30px;
  font-family: "Libre Caslon Display", serif;
  color: #1b1b1b;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
}

.title-border::after {
  content: "";
  width: 30%;
  height: 3px;
  background: grey;
  position: absolute;
  bottom: 0;
  transform: translateX(-50%);
  left: 50%;
}

.project-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 20px;
}

.project-container p {
  margin-top: 5px;
  margin-bottom: 10px;
  font-size: 14px;
  color: white;
  text-align: left;
  padding: 0 10px;
}

.inner-content {
  border: 2px solid goldenrod;
  text-align: center;
  background-color: black;
}

.inner-content a {
  text-decoration: none !important;
  color: #000 !important;
  padding: 10px 0px;
}

.inner-content-head {
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  /* margin-bottom: 10px; */
  font-size: 1rem;
  font: bold 1.1em Montserrat !important;
  padding: 10px 10px;
}

.inner-content-head h3 {
  border-bottom: 2px solid white;
  font-size: 16px;
  text-transform: uppercase;
}

.second-h3 {
  border-bottom: 2px solid white;
  font-size: 12px;
  text-transform: uppercase;
  /*color: black;*/
  padding: 10px 0;
  margin: 10px;
}

.img-section {
  height: 400px;
  overflow: hidden;
  position: relative;
  /* Performance optimizations */
  contain: layout style;
  aspect-ratio: 16 / 10;
  width: 100%;
}

.img-section img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s ease-in-out;
  /* Performance: hint for transform animation */
  will-change: transform;
}

.img-section:hover img {
  transform: scale(1.1);
}

/* =============================
    (OPTIONAL) STATS SECTION
============================= */

.stats {
  padding: 50px 0;
  margin: 0 100px;
}

.stats-container {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.stats-container-list {
  flex: 1;
  text-align: center;
  border-right: 1px solid #bebec6;
  padding: 15px;
}

.stats-container-list h4 {
  color: darkblue;
  font-size: 50px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
}

.stats-container-list p {
  margin-top: 10px;
  color: #555;
}

/* =============================
    ABOUT US SECTION
============================= */

.about-us {
  padding: 0;
  background-color: #f1f1f1;
  color: #1b1b1b;
}

.about-us-inner {
  border-radius: 20px;
  background-color: white;
  padding: 40px;
  margin: 20px;
}

.about-container {
  display: flex;
  margin: 0 auto;
  padding: 20px;
  max-width: 1400px;
  align-items: flex-start;
  gap: 30px;
}

.about-container-headings {
  flex: 1;
  margin-top: 10px;
}

.about-container-headings h2 {
  font-size: 30px;
  font-family: "Libre Caslon Display", serif;
  color: #1b1b1b;
  /* margin-bottom: 28px; */
  font-weight: 500;
  line-height: 1.2;
  padding: 0px;
  text-align: center;
}

.section-subtitle {
  padding: 0;
  color: grey;
  font-size: 13px;
  font-family: "Montserrat-Medium", sans-serif;
  text-align: center;
}

.about-container-headings p {
  color: grey;
  text-align: left;
  font-weight: 500;
}

.about-container-headings a {
  background: transparent !important;
  border: 1px solid #333 !important;
  color: #333 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: 500;
  transition: all 0.3s ease;
  margin: auto;
}

.about-container-headings a:hover {
  background-color: rgb(37, 37, 157);
  transition: 0.3s;
}

/* About Feature Items */
.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.about-feature-item:last-child {
  border-bottom: none;
}

.about-feature-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about-feature-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.about-feature-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1b1b1b;
  margin: 0;
  padding: 0;
}

.about-feature-content p {
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.5;
  text-align: left;
}

/* About Features Two-Column Layout */
.all-about-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
  margin-top: 25px;
  margin-bottom: 10px;
}

.all-about-feature > div {
  display: flex;
  flex-direction: column;
}

/* Left column - add right border for divider */
.all-about-feature > div:first-child {
  border-right: 1px solid rgba(128, 128, 128, 0.3);
  padding-right: 40px;
}

/* Right column */
.all-about-feature > div:last-child {
  padding-left: 0;
}

.about-container-image {
  flex: 1;
}

.about-container-image img {
  margin-bottom: 30px;
  width: 100%;
  /* height: 600px; */
  object-fit: contain;
  border-radius: 6px;
}

.about-service-item {
  display: flex;
  align-items: center;
  padding: 20px 0;
  gap: 10px;
  justify-content: space-around;
}

.border-item {
  border-right: 1px solid #8080806e;
  border-left: 1px solid #8080806e;
  padding: 0 33px;
}

@keyframes btnAnimate {
  0% {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }

  40% {
    transform: perspective(400px) rotateY(-10deg);
  }

  70% {
    transform: perspective(400px) rotateY(10deg);
  }

  100% {
    transform: perspective(400px) rotateY(0);
    opacity: 1;
  }
}

/* =============================
    PRIVÃƒâ€° SECTION STYLES
============================= */

.prive-headings img {
  width: 100%;
  max-width: 800px;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 10px;
  margin: 20px auto;
  display: block;
}

.prive-description {
  color: grey !important;
  font-size: 15px;
  line-height: 1.7;
  text-align: justify;
  margin: 15px 0;
}

.prive-description a {
  border: none !important;
  padding: 0px !important;
}

.prive-more-content {
  animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Primary Button - Schedule a Call */
.btn-primary {
  color: #fff !important;
  background-color: goldenrod !important;
  display: inline-block;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  font-family: "Montserrat-Bold", sans-serif;
  font-size: 14px;
  padding: 15px 25px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  width: auto !important;
  margin: 0 !important;
}

.btn-primary:hover {
  background-color: rgb(37, 37, 157) !important;
}

/* Secondary Button - Read More */
.btn-secondary {
  color: #333 !important;
  background-color: transparent !important;
  display: inline-block;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  padding: 15px 25px;
  border: 2px solid #333;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  width: auto !important;
  margin: 0 !important;
}

.btn-secondary:hover {
  background-color: #333 !important;
  color: #fff !important;
}

/* Responsive for PrivÃƒÂ© Section */
@media (max-width: 992px) {
  .prive-section {
    padding: 40px 15px;
  }

  .prive-container {
    padding: 0 15px;
  }

  .prive-headings h2 {
    font-size: 1.8rem;
  }

  .prive-headings h3 {
    font-size: 1.3rem;
    margin-top: 25px !important;
  }
}

@media (max-width: 768px) {
  .prive-section {
    padding: 30px 10px;
  }

  .prive-btn-container {
    flex-direction: column !important;
    align-items: center !important;
  }

  .btn-primary,
  .btn-secondary {
    width: 100% !important;
    max-width: 280px;
    padding: 12px 20px;
    font-size: 13px;
  }

  .prive-headings img {
    max-height: 250px;
    border-radius: 10px;
  }

  .prive-headings h2 {
    font-size: 1.5rem;
  }

  .prive-headings h3 {
    font-size: 1.2rem;
    margin-top: 20px !important;
    margin-bottom: 12px !important;
  }

  .prive-description {
    font-size: 14px;
    text-align: left;
    line-height: 1.7;
  }
}

@media (max-width: 480px) {
  .prive-section {
    padding: 20px 8px;
  }

  .prive-headings h2 {
    font-size: 1.3rem;
  }

  .prive-headings h3 {
    font-size: 1.1rem;
    margin-top: 18px !important;
    margin-bottom: 10px !important;
  }

  .prive-description {
    font-size: 13px;
    line-height: 1.6;
  }

  .prive-headings img {
    max-height: 200px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 10px 18px;
    font-size: 12px;
  }
}

/* =============================
    OUR SERVICES SECTION
============================= */
.services-section {
  /* background: #f8f9fa; */
  padding: 60px 20px;
}

.services-intro {
  text-align: center;
  color: #555;
  font-size: 1rem;
  line-height: 1.8;
  max-width: 1000px;
  margin: 0 auto 40px;
}

.services-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: #d4a574;
}

.service-icon {
  margin-bottom: 20px;
}

.service-icon svg {
  width: 48px;
  height: 48px;
}

.service-card h3 {
  color: #1a1a2e;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.service-card .service-description {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 15px;
  min-height: 60px;
}

.service-card .view-more {
  color: #2c5282;
  text-decoration: underline;
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.service-card .view-more:hover {
  color: #d4a574;
}

/* Responsive for Services - Tablet (2 cards) */
@media (max-width: 992px) {
  .services-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .services-intro {
    font-size: 0.95rem;
    padding: 0 15px;
  }
}

/* Responsive for Services - Mobile (1 card) */
@media (max-width: 600px) {
  .services-section {
    padding: 40px 15px;
  }

  .services-cards {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 350px;
  }

  .services-intro {
    font-size: 0.9rem;
    text-align: left;
  }

  .service-card {
    padding: 25px 20px;
  }

  .service-card .service-description {
    min-height: auto;
  }
}

/* =============================
    LEADERSHIP SECTION
============================= */
.leadership-section {
  /* background: #f8f9fa; */
  padding: 60px 20px;
}

.leadership-section .about-container-headings h2 {
  margin-bottom: 10px;
}

.leadership-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 40px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 15px;
}

.leader-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  position: relative;
}

.leader-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  border-color: goldenrod;
}

.leader-image {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 4px solid #f0f0f0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: border-color 0.3s ease;
}

.leader-card:hover .leader-image {
  border-color: goldenrod;
}

.leader-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.leader-card h3 {
  color: #1a1a2e;
  margin-bottom: 8px;
  font-size: 1.25rem;
  font-weight: 600;
}

.leader-card .leader-role {
  color: #4a5568;
  margin-bottom: 18px;
  font-weight: 500;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.leader-card .leader-bio {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 15px;
  min-height: 85px;
}

.leader-card .view-more {
  color: #2c5282;
  text-decoration: underline;
  font-weight: 500;
  font-size: 0.9rem;
  display: inline-block;
  transition: color 0.3s ease;
}

.leader-card .view-more:hover {
  color: goldenrod;
}

.leader-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
}

.linkedin-link {
  color: #0077b5;
  transition:
    transform 0.3s ease,
    color 0.3s ease;
  display: flex;
  align-items: center;
}

.linkedin-link:hover {
  transform: scale(1.1);
  color: #004182;
}

.linkedin-link svg {
  width: 20px;
  height: 20px;
}

.view-more-bio {
  color: #2c5282;
  text-decoration: underline;
  font-weight: 500;
  font-size: 0.9rem;
  display: inline-block;
  transition: color 0.3s ease;
}

.view-more-bio:hover {
  color: goldenrod;
}

/* Scrollable Bio Styles */
.leader-bio-container {
  max-height: 100px;
  overflow: hidden;
  transition: all 0.3s ease;
  margin-bottom: 15px;
  position: relative;
}

.leader-bio-container::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30px;
  background: linear-gradient(transparent, #fff);
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.leader-bio-container.expanded {
  max-height: 200px;
  overflow-y: auto;
  padding-right: 5px;
}

.leader-bio-container.expanded::after {
  opacity: 0;
}

/* Custom Scrollbar for Bio */
.leader-bio-container::-webkit-scrollbar {
  width: 4px;
}

.leader-bio-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.leader-bio-container::-webkit-scrollbar-thumb {
  background: #d4a574;
  border-radius: 4px;
}

.leader-bio-container::-webkit-scrollbar-thumb:hover {
  background: #b8956a;
}

.leader-card .leader-bio-more {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 10px;
}

.view-more-bio {
  color: #2c5282;
  text-decoration: underline;
  font-weight: 500;
  font-size: 0.9rem;
  display: inline-block;
  transition: color 0.3s ease;
  cursor: pointer;
}

.view-more-bio:hover {
  color: goldenrod;
}

.company-history {
  max-width: 1100px;
  margin: 50px auto 0;
  padding: 30px 25px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.company-history p {
  color: #444;
  font-size: 1rem;
  line-height: 1.9;
  text-align: justify;
}

/* Responsive for Leadership - Tablet (2 cards) */
@media (max-width: 992px) {
  .leadership-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 700px;
  }
}

/* Responsive for Leadership - Mobile (1 card) */
@media (max-width: 600px) {
  .leadership-cards {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 350px;
  }

  .leader-card {
    padding: 20px;
  }

  .leader-image {
    width: 100px;
    height: 100px;
  }

  .leader-card h3 {
    font-size: 1.1rem;
  }

  .company-history p {
    font-size: 0.9rem;
    text-align: justify;
  }
}

/* =============================
    TESTIMONIALS
============================= */

.testimonial {
  padding: 60px;
  background-color: #f5ecec;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 30px 100px;
}

.testimonial-item {
  height: 100%;
  width: 100%;
  text-align: center;
  padding: 5px;
  background-color: #e3c49b;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.testimonial-item img {
  width: inherit;
  height: inherit;
  object-fit: cover;
}

.testimonial-item a {
  text-decoration: none !important;
  color: #000 !important;
  font-weight: bold;
  font-size: 1.2rem;
  display: block;
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.testimonial-item .video-wrapper {
  position: relative;
  padding-top: 65.5%;
}

.testimonial-item .video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.testimonial-item .play-overlay {
  cursor: pointer;
  display: block;
  width: 100%;
  height: auto;
  margin: 0px;
}

.yt-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 65px;
  height: 65px;
  background: rgba(255, 0, 0, 0.9);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.yt-play-btn::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 22px solid white;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  margin-left: 4px;
}

.thumb-link:hover .yt-play-btn {
  background: red;
  transform: translate(-50%, -50%) scale(1.1);
  transition: 0.2s ease;
}

/* =============================
    AWARDS
============================= */

.awards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 30px 100px;
  text-align: center;
}

.awards-item {
  border: 2px solid goldenrod;
  background: transparent;
}

.awards-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.awards-item p {
  text-align: center;
  font-weight: 400;
  color: #ccb497;
  padding: 5px 40px;
}

.awards-item p span {
  display: block;
  margin-top: 10px;
  font-weight: 400;
  font-size: 0.8em;
  color: white;
}

/* =============================
    FOOTER
============================= */
footer {
  background: #0f3464;
}
.footer-links {
  background-color: #333;
  padding: 40px;
}

.footer-links a {
  color: white;
}

.footer-content {
  display: none;
  flex-direction: column;
  gap: 8px;
  padding-left: 10px;
}

.footer-content span {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: left;
}

.footer-content span img {
  height: 20px;
  width: 20px;
  vertical-align: middle;
  filter: invert(29%) sepia(98%) saturate(1500%) hue-rotate(190deg)
    brightness(95%) contrast(101%);
}

.footer-content span a {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-section {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.footer-title {
  font-size: 12px;
  font-weight: 700;
  color: white;
  padding: 10px 0;
  cursor: pointer;
  position: relative;
}

.footer-title::after {
  content: "+";
  position: absolute;
  right: 10px;
  font-size: 20px;
}

.footer-section.active .footer-title::after {
  content: "-";
}

.footer-section.active .footer-content {
  display: flex;
}

@media (min-width: 767px) {
  .footer-content {
    display: flex !important;
    flex-direction: column;
    gap: 10px;
  }

  .footer-title::after {
    display: none;
  }

  .footer-links {
    display: flex;
    justify-content: space-evenly;
    gap: 40px;
    margin: 0 auto;
  }

  .footer-title {
    color: white;
    margin-bottom: 10px;
    border-bottom: 2px solid white;
    padding-bottom: 10px;
  }

  .footer-content a {
    font-size: 13px;
  }

  .footer-section {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 10px;
    margin-bottom: 10px;
    max-width: 250px;
  }
}

/* =============================
    FOOTER TOP SECTION (Projects, Developers, Links)
============================= */

.footer-top-section {
  background: #333;
  padding: 0 60px 40px 60px;
  display: none;
}

.footer-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-top-category {
  margin-bottom: 20px;
}

.sector-63-aside {
  margin-right: 0;
}

.footer-top-category:last-child {
  margin-bottom: 0;
}

.footer-top-title {
  font-size: 14px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
  padding-left: 10px;
  border-left: 3px solid white;
  font-family: "Montserrat", sans-serif;
}

.footer-top-links {
  display: flex;
  font-size: 13px;
  line-height: 1.8;
  color: white;
  gap: 30px;
  margin-left: 2%;
  flex-wrap: wrap;
}

.footer-top-links a {
  color: white;
  text-decoration: none !important;
  transition: color 0.2s ease;
}

.footer-top-links a:hover {
  text-decoration: underline !important;
}

/* Footer Toggle Button */
.footer-toggle-container {
  background: #333;
  text-align: center;
  padding: 15px 0;
}

.footer-toggle-btn {
  display: inline-block;
  color: white;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  padding: 5px 20px;
  letter-spacing: 3px;
  transition: all 0.3s ease;
  user-select: none;
}

.footer-toggle-btn:hover {
  color: rgb(230, 16, 16);
  transform: scale(1.2);
}

.footer-toggle-btn.active {
  color: white;
  transform: rotate(90deg);
}

.footer-top-links li {
  list-style: inside;
}

/* Footer Top Section Responsive */
@media (max-width: 992px) {
  .footer-top-section {
    padding: 30px 40px !important;
  }

  .footer-top-links {
    flex-wrap: wrap;
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .footer-top-section {
    padding: 25px 20px !important;
  }

  .footer-toggle-container {
    padding: 10px 0 !important;
  }

  .footer-toggle-btn {
    font-size: 20px;
    padding: 3px 15px;
  }

  .footer-top-category {
    margin-bottom: 25px;
  }

  .footer-top-title {
    font-size: 13px;
    margin-bottom: 10px;
  }

  .footer-top-links {
    flex-direction: column;
    gap: 8px;
    font-size: 12px;
    line-height: 1.6;
    margin-left: 0;
  }

  .category-right {
    border-left: none !important;
    padding-left: 0 !important;
  }

  .footer-grid-container {
    gap: 0 !important;
  }

  .footer-top-links li {
    margin-left: 5px;
  }
}

@media (max-width: 480px) {
  .footer-top-section {
    padding: 20px 15px !important;
  }

  .footer-toggle-btn {
    font-size: 18px;
  }

  .footer-top-category {
    margin-bottom: 20px;
  }

  .footer-top-title {
    font-size: 12px;
    padding-left: 8px;
  }

  .footer-top-links {
    font-size: 11px;
    gap: 6px;
  }

  .footer-top-links li {
    margin-left: 3px;
  }
}

/* =============================
    SIMPLE SLIDER STYLES
============================= */

.simple-slider {
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
}

.slider-track {
  display: flex;
  transition: 0.4s ease;
  will-change: transform;
}

.slide {
  min-width: calc(100% / 3);
  padding: 10px;
}

.slide a {
  display: block;
  background: #333;
  text-align: left;
  box-shadow: 0 4px 12px #0001;
  border: 2px solid #1c1c1c;
  height: auto;
  color: white;
}

.slide p {
  color: white;
  padding: 0 10px;
  margin-top: 8px;
  font-size: 12px;
}

.slide img {
  margin-top: 20px;
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.dots {
  text-align: center;
  margin-top: 12px;
}

.dots span {
  height: 10px;
  width: 10px;
  background: #999;
  display: inline-block;
  margin: 5px;
  border-radius: 50%;
  cursor: pointer;
}

.dots .active {
  background: #000;
}

/* =============================
    HOT LOCALITY CARDS - Modern Design
============================= */

.hot-locality-card {
  padding: 10px !important;
}

.hot-locality-card .locality-card-link {
  display: block !important;
  position: relative;
  /* border-radius: 16px; */
  overflow: hidden;
  height: 550px;
  text-decoration: none !important;
  background: transparent !important;
  border: none !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hot-locality-card .locality-card-link:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3) !important;
  transform: translateY(-6px);
}

/* Background Image */
.hot-locality-card .locality-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hot-locality-card .locality-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0 !important;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hot-locality-card .locality-card-link:hover .locality-card-bg img {
  transform: scale(1.08);
}

/* Gradient Overlay */
.hot-locality-card .locality-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.05) 30%,
    rgba(0, 0, 0, 0.45) 65%,
    rgba(0, 0, 0, 0.85) 100%
  );
  transition: background 0.4s ease;
}

.hot-locality-card .locality-card-link:hover .locality-card-overlay {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.1) 30%,
    rgba(0, 0, 0, 0.55) 65%,
    rgba(0, 0, 0, 0.9) 100%
  );
}

/* Content Area */
.hot-locality-card .locality-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Location Tag */
.hot-locality-card .locality-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  padding: 5px 14px;
  width: fit-content;
  transition: background 0.3s ease;
}

.hot-locality-card .locality-card-link:hover .locality-tag {
  background: rgba(255, 255, 255, 0.28);
}

.hot-locality-card .locality-tag svg {
  fill: #ffd700 !important;
  flex-shrink: 0;
}

.hot-locality-card .locality-tag span {
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Title */
.hot-locality-card .locality-title {
  color: #fff !important;
  font-size: 26px !important;
  font-weight: 700 !important;
  font-family: "Montserrat", sans-serif !important;
  margin: 4px 0 0 0 !important;
  padding: 0 !important;
  border: none !important;
  text-transform: none !important;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Subtitle */
.hot-locality-card .locality-subtitle {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  font-family: "Montserrat", sans-serif !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1.4;
  letter-spacing: 0.2px;
}

/* CTA Button */
.hot-locality-card .locality-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #c8a23c, #e0c068);
  border-radius: 8px;
  width: fit-content;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(200, 162, 60, 0.3);
}

.hot-locality-card .locality-card-link:hover .locality-cta {
  background: linear-gradient(135deg, #d4af37, #f0d878);
  box-shadow: 0 4px 16px rgba(200, 162, 60, 0.5);
  transform: translateX(4px);
}

.hot-locality-card .locality-cta span {
  color: #1a1a1a;
  font-size: 13px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.3px;
}

.hot-locality-card .locality-cta svg {
  color: #1a1a1a;
  stroke: #1a1a1a;
  fill: none !important;
  transition: transform 0.3s ease;
}

.hot-locality-card .locality-card-link:hover .locality-cta svg {
  transform: translateX(4px);
}

/* =============================
    PREMIUM PROJECT TILES - New Design
============================= */

/* Premium Project Card Container */
.slide.premium-tile a {
  background: #ffffff;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  height: auto;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  overflow: hidden;
}

.slide.premium-tile a:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Premium Image Section - Top Position */
.slide.premium-tile .premium-img-section {
  position: relative;
  height: 220px;
  overflow: hidden;
  border-radius: 6px;
  margin: 0;
}

.slide.premium-tile .premium-img-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
  transition: transform 0.5s ease;
}

.slide.premium-tile a:hover .premium-img-section img {
  transform: scale(1.05);
}

/* Premium Content Section */
.slide.premium-tile .premium-content {
  padding: 20px 0;
  background: #fff;
}

/* Project Title */
.slide.premium-tile .premium-title {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
  font-family: "Montserrat", sans-serif;
  line-height: 1.3;
}

/* Location with Pin Icon */
.slide.premium-tile .premium-location {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #666;
  font-size: 13px;
  margin-bottom: 18px;
  font-family: "Montserrat", sans-serif;
}

.slide.premium-tile .premium-location svg {
  width: 16px;
  height: 16px;
  fill: #b8860b;
  flex-shrink: 0;
}

/* Property Details Table */
.slide.premium-tile .premium-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
  border-top: 1px solid #eee;
  padding-top: 18px;
}

.slide.premium-tile .premium-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.slide.premium-tile .premium-detail-label {
  font-size: 14px;
  color: #888;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

.slide.premium-tile .premium-detail-value {
  font-size: 14px;
  color: #1a1a1a;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  text-align: right;
}

/* Price Section */
.slide.premium-tile .premium-price-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #eee;
  padding-top: 18px;
  margin-top: 5px;
}

.slide.premium-tile .premium-price-label {
  font-size: 11px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 4px;
}

.slide.premium-tile .premium-price {
  font-size: 22px;
  font-weight: 600;
  color: #b8860b;
  font-family: "Montserrat", sans-serif;
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.slide.premium-tile .premium-price .rupee-symbol {
  font-size: 16px;
  font-weight: 500;
}

.slide.premium-tile .premium-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.slide.premium-tile .premium-arrow svg {
  width: 24px;
  height: 24px;
  fill: #666;
  transition: all 0.3s ease;
}

.slide.premium-tile a:hover .premium-arrow {
  background: #b8860b;
}

.slide.premium-tile a:hover .premium-arrow svg {
  fill: #fff;
}

/* Premium Tiles Responsive */
@media (max-width: 1200px) {
  .slide.premium-tile .premium-img-section {
    height: 200px;
  }

  .slide.premium-tile .premium-title {
    font-size: 18px;
  }

  .slide.premium-tile .premium-price {
    font-size: 20px;
  }
}

@media (max-width: 992px) {
  .slide.premium-tile .premium-img-section {
    height: 180px;
  }

  .slide.premium-tile .premium-title {
    font-size: 17px;
  }

  .slide.premium-tile .premium-content {
    padding: 15px 0;
  }

  .slide.premium-tile .premium-detail-label,
  .slide.premium-tile .premium-detail-value {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .slide.premium-tile .premium-img-section {
    height: 220px;
  }

  .slide.premium-tile .premium-title {
    font-size: 18px;
  }

  .slide.premium-tile .premium-content {
    padding: 18px 0;
  }

  .slide.premium-tile .premium-price {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .slide.premium-tile .premium-img-section {
    height: 200px;
  }

  .slide.premium-tile .premium-title {
    font-size: 16px;
  }

  .slide.premium-tile .premium-location {
    font-size: 12px;
  }

  .slide.premium-tile .premium-detail-label,
  .slide.premium-tile .premium-detail-value {
    font-size: 12px;
  }

  .slide.premium-tile .premium-price {
    font-size: 20px;
  }

  .slide.premium-tile .premium-arrow {
    width: 36px;
    height: 36px;
  }
}

/* =============================
    TOI HOMES STYLE PROJECT CARDS
============================= */

/* TOI Section Container - Light background like toihomes.com */
.outer-container.toi-section {
  background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
  padding: 50px 30px;
  border-radius: 16px;
}

.outer-container.toi-section h2 {
  margin-bottom: 30px;
}

/* TOI Card Base Container */
.slide.toi-card {
  min-width: calc(100% / 3);
  padding: 12px;
}

.slide.toi-card a {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  /* border-radius: 12px; */
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
  text-decoration: none;
  height: 100%;
  transition: all 0.35s ease;
}

.slide.toi-card a:hover {
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

/* TOI Card Image Section */
.slide.toi-card .toi-img-section {
  position: relative;
  height: 350px;
  overflow: hidden;
}

.slide.toi-card .toi-img-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
  transition: transform 0.6s ease;
}

.slide.toi-card a:hover .toi-img-section img {
  transform: scale(1.08);
}

/* Video Play Button Overlay */
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  opacity: 0.9;
}

.video-play-btn:hover {
  background: #c53030;
  border-color: #c53030;
  transform: translate(-50%, -50%) scale(1.1);
  opacity: 1;
}

.video-play-btn svg {
  width: 30px;
  height: 30px;
  margin-left: 4px;
}

/* Badge for special tags */
.slide.toi-card .toi-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg, #2c5282 0%, #1a365d 100%);
  color: #fff;
  padding: 6px 14px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  font-family: "Montserrat", sans-serif;
}

.slide.toi-card .toi-badge.new-launch {
  background: linear-gradient(135deg, #c53030 0%, #9b2c2c 100%);
}

.slide.toi-card .toi-badge.special-plan {
  background: linear-gradient(135deg, #b8860b 0%, #8b6914 100%);
}

/* TOI Card Content Section */
.slide.toi-card .toi-content {
  padding: 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #fff;
}

/* Project Title */
.slide.toi-card .toi-title {
  font-size: 20px;
  font-weight: 600;
  color: #1a202c;
  margin: 0 0 16px 0;
  font-family: "Montserrat", sans-serif;
  line-height: 1.3;
  letter-spacing: -0.3px;
}

/* Property Info Grid - 2 columns layout */
.slide.toi-card .toi-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
  margin-bottom: 20px;
}

/* Info Item with Icon */
.slide.toi-card .toi-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #4a5568;
  font-size: 11px;
  font-family: "Montserrat", sans-serif;
}

.slide.toi-card .toi-info-item svg {
  width: 16px;
  height: 16px;
  fill: #718096;
  flex-shrink: 0;
}

.slide.toi-card .toi-info-item.highlight {
  color: #2c5282;
  font-weight: 500;
}

.slide.toi-card .toi-info-item.highlight svg {
  fill: #2c5282;
}

/* Price Section */
.slide.toi-card .toi-price-section {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid #e2e8f0;
}

.slide.toi-card .toi-price-label {
  font-size: 12px;
  color: #718096;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin-bottom: 4px;
  display: block;
}

.slide.toi-card .toi-price {
  font-size: 26px;
  font-weight: 700;
  color: #2c5282;
  font-family: "Montserrat", sans-serif;
  display: flex;
  align-items: baseline;
  gap: 1px;
  line-height: 1;
}

.slide.toi-card .toi-price .rupee-symbol {
  font-size: 18px;
  font-weight: 600;
}

.slide.toi-card .toi-price .price-note {
  font-size: 22px;
  font-weight: 400;
  color: #718096;
  margin-left: 2px;
}

/* Arrow Button */
.slide.toi-card .toi-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
  flex-shrink: 0;
}

.slide.toi-card .toi-arrow svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #718096;
  stroke-width: 2;
  transition: all 0.35s ease;
}

.slide.toi-card a:hover .toi-arrow {
  background: #b8860b;
  border-color: #b8860b;
}

.slide.toi-card a:hover .toi-arrow svg {
  stroke: #fff;
}

/* TOI Card Responsive Styles */
@media (max-width: 1200px) {
  .slide.toi-card {
    min-width: calc(100% / 2);
  }

  .slide.toi-card .toi-img-section {
    height: 300px;
  }

  .slide.toi-card .toi-title {
    font-size: 17px;
  }

  .slide.toi-card .toi-price {
    font-size: 22px;
  }
}

@media (max-width: 992px) {
  .slide.toi-card {
    min-width: calc(100% / 2);
  }

  .slide.toi-card .toi-img-section {
    height: 180px;
  }

  .slide.toi-card .toi-content {
    padding: 16px 18px;
  }

  .slide.toi-card .toi-title {
    font-size: 16px;
  }

  .slide.toi-card .toi-detail-label,
  .slide.toi-card .toi-detail-value {
    font-size: 12px;
  }

  .slide.toi-card .toi-price {
    font-size: 20px;
  }

  .slide.toi-card .toi-arrow {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 768px) {
  .slide.toi-card {
    min-width: 100%;
    padding: 10px 5px;
  }

  .slide.toi-card .toi-img-section {
    height: 300px;
  }

  .slide.toi-card .toi-content {
    padding: 20px;
  }

  .slide.toi-card .toi-title {
    font-size: 18px;
  }

  .slide.toi-card .toi-location {
    font-size: 13px;
  }

  .slide.toi-card .toi-detail-label,
  .slide.toi-card .toi-detail-value {
    font-size: 13px;
  }

  .slide.toi-card .toi-price {
    font-size: 24px;
  }

  .slide.toi-card .toi-arrow {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 480px) {
  .slide.toi-card {
    padding: 8px 3px;
  }

  .slide.toi-card .toi-img-section {
    height: 300px;
  }

  .slide.toi-card .toi-content {
    padding: 16px;
  }

  .slide.toi-card .toi-title {
    font-size: 16px;
  }

  .slide.toi-card .toi-location {
    font-size: 12px;
    margin-bottom: 14px;
  }

  .slide.toi-card .toi-details {
    gap: 8px;
    padding: 14px 0;
  }

  .slide.toi-card .toi-detail-label,
  .slide.toi-card .toi-detail-value {
    font-size: 12px;
  }

  .slide.toi-card .toi-price {
    font-size: 22px;
  }

  .slide.toi-card .toi-price .rupee-symbol {
    font-size: 14px;
  }

  .slide.toi-card .toi-arrow {
    width: 40px;
    height: 40px;
  }
}

/* =============================
    PROJECTS SECTION RESPONSIVE
============================= */

@media (max-width: 1200px) {
  .container-box {
    padding: 0 80px;
  }

  .slide {
    min-width: calc(100% / 2);
  }
}

@media (max-width: 992px) {
  .container-box {
    padding: 0 40px;
  }

  .outer-container {
    padding: 30px 25px;
    margin: 15px;
  }

  .slide {
    min-width: calc(100% / 2);
  }

  .inner-content-head h3 {
    font-size: 15px;
  }

  .title-border {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .container-box {
    padding: 0 20px;
  }

  .outer-container {
    padding: 25px 15px;
    margin: 10px;
    border-radius: 15px;
  }

  .slide {
    min-width: 100%;
  }

  .slide a {
    height: auto;
  }

  .inner-content-head {
    padding: 8px 10px;
  }

  .inner-content-head h3 {
    font-size: 14px;
  }

  .img-section {
    height: 400px;
  }

  .slide p {
    font-size: 12px;
    padding: 0 10px;
  }

  .title-border {
    font-size: 14px;
  }

  .dots span {
    height: 8px;
    width: 8px;
    margin: 3px;
  }

  .project-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 15px;
  }

  .hot-locality-card .locality-card-link {
    height: 450px;
  }

  .hot-locality-card .locality-title {
    font-size: 22px !important;
  }

  .hot-locality-card .locality-subtitle {
    font-size: 12px !important;
  }

  .hot-locality-card .locality-card-content {
    padding: 22px 18px;
  }
}

@media (max-width: 480px) {
  .container-box {
    padding: 0 10px;
  }

  .outer-container {
    padding: 20px 10px;
    margin: 8px 5px;
    border-radius: 12px;
  }

  .slide {
    min-width: 100%;
    padding: 5px;
  }

  .inner-content-head {
    padding: 6px 8px;
    gap: 5px;
  }

  .inner-content-head h3 {
    font-size: 13px;
  }

  .inner-content-head svg {
    width: 25px;
    height: 25px;
  }

  .img-section {
    height: 400px;
  }

  .slide p {
    font-size: 11px;
    padding: 0 8px;
    margin-bottom: 5px;
  }

  .hot-locality-card .locality-card-link {
    height: 450px;
  }

  .hot-locality-card .locality-title {
    font-size: 20px !important;
  }

  .hot-locality-card .locality-subtitle {
    font-size: 11px !important;
  }

  .hot-locality-card .locality-card-content {
    padding: 18px 14px;
    gap: 5px;
  }

  .hot-locality-card .locality-cta {
    padding: 8px 16px;
  }

  .hot-locality-card .locality-cta span {
    font-size: 12px;
  }

  .hot-locality-card .locality-tag {
    padding: 4px 10px;
  }

  .hot-locality-card .locality-tag span {
    font-size: 10px;
  }

  .title-border {
    font-size: 13px;
    padding-bottom: 10px;
  }

  .dots span {
    height: 7px;
    width: 7px;
    margin: 2px;
  }

  .project-container {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 10px;
  }

  .first-project p {
    font-size: 12px !important;
  }
}

/* =============================
    NEWS SECTION (Image on Top)
============================= */

#news .slide img {
  margin-top: 0;
  margin-bottom: 10px;
  height: 270px;
}

#news .img-section {
  margin-top: 0;
  margin-bottom: 10px;
  height: 270px;
}

#news .inner-content-head {
  margin-top: 10px;
  margin-bottom: 5px;
}

#news .slide p {
  margin-top: 5px;
  padding-bottom: 10px;
}

.news-slider a {
  height: 500px;
}

.news-slider .inner-content-head {
  height: 100px;
}

.news-slider .inner-content-head h3 {
  font-size: 15px;
  line-height: 1.4;
}

/* News Section Responsive */
@media (max-width: 1200px) {
  #news.container-box {
    padding: 0 80px;
  }

  #news .slide {
    min-width: calc(100% / 2);
  }
}

@media (max-width: 992px) {
  #news.container-box {
    padding: 0 40px;
  }

  #news .slide {
    min-width: calc(100% / 2);
  }

  .news-slider a {
    height: 480px;
  }

  .news-slider .inner-content-head {
    height: 90px;
  }

  .news-slider .inner-content-head h3 {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  #news.container-box {
    padding: 0 20px;
  }

  #news .slide {
    min-width: 100%;
  }

  #news .outer-container {
    padding: 25px 15px;
    margin: 10px;
  }

  .news-slider a {
    height: auto;
    min-height: 400px;
  }

  .news-slider .inner-content-head {
    height: auto;
    min-height: 70px;
  }

  .news-slider .inner-content-head h3 {
    font-size: 14px;
  }

  #news .img-section {
    height: 200px;
  }

  #news .slide p {
    font-size: 13px;
    padding: 0 10px 8px;
  }
}

@media (max-width: 480px) {
  #news.container-box {
    padding: 0 10px;
  }

  #news .outer-container {
    padding: 20px 10px;
    margin: 10px 15px;
    border-radius: 15px;
  }

  .news-slider a {
    min-height: 380px;
  }

  .news-slider .inner-content-head {
    padding: 8px 10px;
    min-height: 60px;
  }

  .news-slider .inner-content-head h3 {
    font-size: 13px;
  }

  #news .img-section {
    height: 180px;
  }

  #news .slide p {
    font-size: 12px;
    padding: 0 8px 6px;
  }

  #news h2 .title-border {
    font-size: 14px;
  }
}

/* =============================
    CITIES SECTION
============================= */

.cities-section {
  background-color: #fff;
}

.cities-header {
  text-align: center;
  margin-bottom: 30px;
}

.cities-header h2 {
  margin-bottom: 15px;
}

.cities-subtitle {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.cities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 10px 0;
}

.city-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  transition: all 0.3s ease;
  text-decoration: none !important;
  height: 130px;
  min-height: 130px;
  max-height: 130px;
  overflow: hidden;
}

.city-card img {
  max-width: 160px;
  max-height: 70px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.city-card:hover {
  border-color: #333;
  box-shadow: 0 4px 15px rgba(37, 159, 222, 0.15);
  transform: translateY(-2px);
}

.brand-logo-invert {
  filter: invert(1);
}

.city-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.city-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.city-name {
  font-size: 15px;
  font-weight: 500;
  color: #333;
  font-family: "Montserrat", sans-serif;
}

.city-card:hover .city-name {
  color: #333;
}

/* Developer Card Modern Style (As per User Request) */
.developer-card {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 14px;
  padding: 15px 20px;
  text-decoration: none !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid #f0f0f0;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  min-height: 115px;
  height: auto;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

.developer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border-color: #e2e8f0;
}

.dev-logo-box {
  width: 80px;
  height: 80px;
  min-width: 80px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border: 1px solid #f1f5f9;
  margin-right: 20px;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

.dev-logo-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.dev-info-box {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.dev-name {
  font-size: 17px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 10px 0;
  font-family: "Montserrat", sans-serif;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dev-stats-grid {
  display: flex;
  gap: 40px; /* More generous gap */
  flex-wrap: nowrap; /* Prevent wrapping unless absolutely necessary */
}

.dev-stat-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.stat-value {
  font-size: 24px;
  font-weight: 700;
  color: #2c5282;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 9px;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-family: "Montserrat", sans-serif;
  line-height: 1.2;
  font-weight: 600;
}

@media (max-width: 1400px) {
  .container-box {
    padding-left: 80px;
    padding-right: 80px;
  }
  .dev-stats-grid {
    gap: 15px;
  }
  .stat-value {
    font-size: 20px;
  }
}

@media (max-width: 1100px) {
  .developer-slide-chunk {
    grid-template-columns: repeat(2, 1fr);
  }
  .container-box {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (max-width: 768px) {
  .developer-card {
    height: auto;
    padding: 15px;
  }
  .dev-logo-box {
    width: 70px;
    height: 70px;
    min-width: 70px;
    margin-right: 15px;
  }
  .dev-name {
    font-size: 15px;
  }
  .stat-value {
    font-size: 18px;
  }
  .stat-label {
    font-size: 8px;
  }
}

/* Cities Section Responsive */

/* Desktop/Mobile View Toggle */
.desktop-view {
  display: grid;
}

.mobile-view {
  display: none;
}

/* Developers Slider (Mobile/Tablet) */
.developers-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 10px 0 30px;
}

.developers-slider-track,
.slider-track {
  display: flex;
  transition: transform 0.5s ease;
  cursor: grab;
  will-change: transform;
}

.developers-slider-track:active,
.slider-track:active {
  cursor: grabbing;
  user-select: none;
}

.developers-slider-track img,
.slider-track img {
  pointer-events: none;
  -webkit-user-drag: none;
}

.developer-slide,
.developer-slide-chunk {
  min-width: 50%;
  padding: 10px;
  box-sizing: border-box;
}

.developer-slide-chunk {
  min-width: 100%;
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.developer-slide .city-card,
.developer-slide-chunk .city-card {
  width: 100%;
  justify-content: center;
}

.developers-slider-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  padding: 10px 0;
  flex-wrap: wrap; /* Allow wrapping if there are many dots */
}

.developers-slider-dots span {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  border: 1px solid transparent;
}

.developers-slider-dots span.active {
  background: #000;
  transform: scale(1.3);
  box-shadow: 0 0 10px rgba(37, 99, 235, 0.3);
}

.developers-slider-dots span:hover:not(.active) {
  background: #94a3b8;
  transform: scale(1.1);
}

@media (max-width: 992px) {
  .developers-slider.desktop-view {
    display: none;
  }

  .developers-slider.mobile-view {
    display: block;
  }

  .developer-slide {
    min-width: 33.33%;
  }
}

@media (max-width: 768px) {
  .developer-slide {
    min-width: 50%;
  }

  .developer-slide .city-card {
    padding: 10px 15px;
    height: 120px;
    min-height: 120px;
    max-height: 120px;
  }

  .city-card img {
    max-height: 70px;
  }
}

@media (max-width: 480px) {
  .developer-slide {
    min-width: 100%;
  }

  .developer-slide .city-card {
    padding: 10px 20px;
    height: 120px;
    min-height: 120px;
    max-height: 120px;
  }

  .city-card img {
    max-height: 70px;
  }

  .developers-slider-dots span {
    width: 8px;
    height: 8px;
  }
  .developers-slider-dots {
    gap: 8px;
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .cities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .city-card {
    padding: 12px 15px;
    height: 120px;
    min-height: 120px;
    max-height: 120px;
  }

  .city-icon {
    width: 40px;
    height: 40px;
  }

  .city-name {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .cities-grid {
    grid-template-columns: 1fr;
  }

  .cities-subtitle {
    font-size: 13px;
  }

  .city-card {
    height: 120px;
    min-height: 120px;
    max-height: 120px;
  }
}

/* =============================
    RESPONSIVE STYLES
============================= */

/* Base mobile-first adjustments */
@media (max-width: 480px) {
  .hamburger {
    display: block;
  }

  .logo img {
    height: 48px;
  }

  /* Hide primary nav on mobile */
  .nav-links-primary {
    display: none !important;
  }

  body.menu-open {
    overflow: hidden;
  }

  .container-box,
  .about-us {
    padding: 0px 14px;
  }

  .outer-container,
  .about-us-inner {
    padding: 20px;
    margin: 10px;
    border-radius: 12px;
  }

  .title-border {
    font-size: 15px;
    padding-bottom: 12px;
  }

  .project-container {
    grid-template-columns: 1fr;
    padding: 0;
    gap: 18px;
  }

  .img-section {
    height: 400px;
    margin-top: 12px;
  }

  .about-container {
    flex-direction: column;
    margin: 0;
    padding: 16px;
    gap: 20px;
    max-width: 100%;
  }

  .about-container-headings,
  .about-container-image {
    max-width: 100%;
    margin: auto;
  }

  .about-container-headings h2 {
    font-size: 18px;
    padding: 0;
    text-align: center;
  }

  .about-container-image img {
    height: auto;
    max-height: 420px;
    object-fit: cover;
  }

  .about-container-headings p {
    text-align: left;
    font-size: 13px;
  }

  .testimonial {
    padding: 30px 12px;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
    margin: 20px 0;
    gap: 16px;
  }

  .testimonial-item {
    padding: 8px;
  }

  .awards-grid {
    grid-template-columns: 1fr;
    margin: 20px 0;
    gap: 18px;
    padding: 12px;
  }

  .awards-item img {
    height: 260px;
    object-fit: cover;
  }

  .footer-inner-container {
    margin: 0 12px;
  }

  .footer-inner-box {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    text-align: left;
  }

  .footer-links {
    flex-direction: column;
    gap: 16px;
    padding: 0 12px;
  }

  .disclaimer {
    padding: 18px;
    font-size: 12px;
  }

  .slide {
    min-width: 100%;
  }
}

/* Small phones & larger phones */
@media (min-width: 481px) and (max-width: 767px) {
  .hamburger {
    display: block;
  }

  .logo img {
    height: 54px;
  }

  .container-box,
  .about-us {
    padding: 35px 18px;
  }

  .outer-container,
  .about-us-inner {
    padding: 25px;
    margin: 12px;
    border-radius: 15px;
  }

  .project-container {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .img-section {
    height: 400px;
  }

  .about-container {
    flex-direction: column;
    align-items: stretch;
    max-width: 560px;
  }

  .about-container-image img {
    height: 480px;
    max-height: 480px;
    object-fit: cover;
  }

  .about-container-headings h2 {
    text-align: center;
    font-size: 25px;
  }

  .about-container-headings p {
    text-align: left;
    font-size: 14px;
    line-height: 2;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
    margin: 18px 0;
  }

  .awards-grid {
    grid-template-columns: 1fr;
    margin: 18px 0;
  }

  .slide {
    min-width: 50%;
  }
}

/* Tablet */
@media (min-width: 767px) and (max-width: 1024px) {
  .container-box,
  .about-us {
    padding: 20px 60px;
  }

  .outer-container,
  .about-us-inner {
    padding: 30px;
    margin: 15px;
    border-radius: 18px;
  }

  .about-container {
    flex-direction: column;
    align-items: stretch;
    max-width: 760px;
  }

  .about-container-image img {
    height: 600px;
    max-height: 600px;
    object-fit: cover;
  }

  .about-container-headings h2 {
    text-align: center;
  }

  .about-container-headings p {
    text-align: left;
  }

  .about-service-item {
    margin: 0 110px;
  }
}

/* Side Nav (Hamburger Slide-out) - works on ALL screen sizes */
#sideNav .nav-links {
  display: none;
  position: fixed;
  top: 0;
  right: -320px;
  height: 100vh;
  height: 100dvh;
  width: 290px;
  margin: 0;
  padding: 60px 30px 80px;
  flex-direction: column;
  gap: 14px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(12px);
  box-shadow: -6px 0 20px rgba(0, 0, 0, 0.25);
  transition: right 0.35s ease;
  z-index: 9999;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  list-style: none;
}

#sideNav .nav-links.show {
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Center horizontally */
  text-align: center;
}

/* Ensure the li takes full width so its children can center, or just let them shrink-wrap */
#sideNav .nav-links li {
  width: auto;
  /* Shrink to content instead of 100% */
}

#sideNav .nav-links a {
  display: inline-block;
  font-size: 18px;
  color: #fff;
  font-weight: 400;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

body.menu-open {
  overflow: hidden;
}

/* Side Nav Localities submenu */
#sideNav .localities-submenu {
  position: static !important;
  background: transparent !important;
  box-shadow: none !important;
  display: block !important;
  margin-top: 15px;
  padding: 0 10px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  box-sizing: border-box;
}

#sideNav .localities-dropdown.active .localities-submenu {
  max-height: 800px;
  /* High enough for variety of items */
  opacity: 1;
  padding: 10px;
  margin-bottom: 20px;
}

#sideNav .localities-submenu li {
  width: 100%;
  margin-bottom: 12px;
}

#sideNav .localities-submenu li a {
  color: #fff !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  padding: 14px 18px !important;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 12px;
  display: block;
  width: 100%;
  text-align: left;
  /* Align left for cleaner hierarchy */
  transition: all 0.3s ease;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

#sideNav .localities-submenu li a::after {
  content: "â†’";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  opacity: 0.6;
  transition: all 0.3s ease;
}

#sideNav .localities-submenu li a:active {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(0.98);
}

#sideNav .localities-submenu li a:active::after {
  right: 12px;
  opacity: 1;
}

#sideNav .localities-submenu li:last-child a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
}

#sideNav .localities-submenu .city-heading {
  color: #daa520 !important;
  font-weight: 800 !important;
  font-size: 15px !important;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 20px 10px 10px 10px !important;
  border-bottom: 2px solid rgba(218, 165, 32, 0.3);
  margin-bottom: 15px;
  display: block;
  width: 100%;
  box-sizing: border-box;
}

/* Custom style for the separation line in submenu if needed */
#sideNav .localities-submenu li[style*="border-top"] {
  border-top: none !important;
  margin-top: 20px !important;
  padding-top: 10px !important;
  position: relative;
}

#sideNav .localities-submenu li[style*="border-top"]::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  width: 80%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
}

/* Side Nav Follow Us */
#sideNav .follow-us-dropdown {
  margin-top: 15px;
  border-bottom: none !important;
  width: 100%;
  /* Ensure it spans full width since li is auto */
}

#sideNav .follow-us-dropdown > a {
  display: none !important;
}

#sideNav .follow-us-submenu {
  display: block !important;
  background: transparent !important;
  padding: 0 !important;
  margin-top: 0;
  border-radius: 0;
  text-align: center;
}

#sideNav .follow-title {
  display: block;
  color: #fff;
  font-size: 14px;
  margin-bottom: 15px;
  opacity: 1;
  font-weight: 500;
}

#sideNav .social-icons-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

#sideNav .social-icons-row a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: none !important;
  padding: 0 !important;
  border-bottom: none !important;
}

#sideNav .social-icons-row svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

/* Side Nav call button */
#sideNav .nav-call-btn {
  border-bottom: none !important;
}

#sideNav .nav-call-btn a {
  color: #fff !important;
  padding: 10px 10px !important;
  text-align: center;
  border-bottom: none !important;
  font-size: 18px !important;
  font-weight: 500;
}

/* Small desktop / laptop */
@media (min-width: 1025px) and (max-width: 1199px) {
  .hamburger {
    display: block;
  }

  .logo img {
    height: 60px;
  }

  .container-box,
  .about-us {
    padding: 0px 120px;
  }

  .outer-container,
  .about-us-inner {
    padding: 35px;
    margin: 18px;
  }

  .project-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }

  .img-section {
    height: 400px;
  }

  .about-container {
    display: flex;
    gap: 40px;
    padding: 40px;
    align-items: flex-start;
    margin: 0;
  }

  .about-container-image img {
    /* height: 600px; */
    object-fit: contain;
  }

  .testimonial {
    padding: 80px 100px;
  }

  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
    margin: 30px 50px;
  }

  .awards-grid {
    grid-template-columns: repeat(3, 1fr);
    margin: 40px 80px;
  }

  .footer-links {
    display: flex;
    justify-content: space-evenly;
    gap: 40px;
    margin: 0 auto;
  }

  .footer-inner-container {
    margin: 0 100px;
  }

  .slide {
    min-width: calc(100% / 3);
  }
}

/* Desktop and up */
@media (min-width: 1200px) {
  .container-box,
  .about-us {
    padding: 0px 150px;
  }

  .outer-container,
  .about-us-inner {
    padding: 40px;
    margin: 20px;
  }

  .project-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .testimonial-grid,
  .awards-grid {
    grid-template-columns: repeat(3, 1fr);
    margin: 30px 100px;
  }

  .footer-inner-container {
    margin: 0px;
  }

  .footer-links {
    padding: 60px;
    background-color: #333;
    display: flex;
    justify-content: space-evenly;
    gap: 60px;
  }

  .footer-section {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 10px;
    margin-bottom: 10px;
    max-width: 250px;
  }

  .about-container {
    max-width: 1400px;
    padding: 40px 80px;
  }

  .logo img {
    height: 60px;
  }

  .slide {
    min-width: calc(100% / 3);
  }
}

/* Ultra-wide screens */
@media (min-width: 1600px) {
  .container-box {
    padding-left: 220px;
    padding-right: 220px;
  }

  .about-container {
    --accent-gold: #1c1c1c;
    padding-left: 150px;
    padding-right: 150px;
  }

  .testimonial-grid,
  .awards-grid {
    margin-left: 160px;
    margin-right: 160px;
  }
}

/* Accessibility and small refinements */
a:focus,
button:focus {
  outline: 2px dashed #aaa;
  outline-offset: 2px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* End of stylesheet */

/* #customModal */

.theModal .modal-content {
  padding: 35px 34px;
}

.theModal .modal-dialog {
  max-width: 441px;
}

.theModal .modal-head-div {
  margin-bottom: 15px;
}

.theModal .modal-head {
  font-size: 22px;
  padding-bottom: 8px;
}

.theModal .modal-para {
  font-size: 16px;
}

.theModal .coldiv {
  padding-bottom: 18px;
}

.theModal .form-control {
  padding: 18px 15px;
  font-size: 14px;
}

.theModal .form-control:focus {
  box-shadow: unset;
  border-color: var(--primary);
  color: var(--primary);
}

.theModal .form-control:focus::placeholder {
  color: var(--primary);
}

.theModal .close {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--primary);
  opacity: 1;
}

.theModal .close svg {
  width: 39px;
  height: 39px;
}

/* Base styles Ã¢â‚¬â€ already defined */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  /* background: rgba(0, 0, 0, 0.5); */
}

.modal-box {
  background: white;
  max-width: 900px;
  width: 90%;
  margin: 5% auto;
  border-radius: 16px;
  display: flex;
  flex-direction: row;
  position: relative;
  overflow: hidden;
  top: 20px;
}

.modal-banner-mobile {
  display: none;
  position: relative;
  width: 100%;
  height: 120px;
  /* rectangular, short banner */
  overflow: hidden;
}

.modal-banner-mobile .banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-banner-mobile .banner-logo {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 80px;
  height: auto;
  opacity: 0.8;
  /* transparent */
}

.modal-left {
  width: 50%;
  padding: 40px;
  display: flex;
  flex-direction: column;
}

.modal-left h2 {
  margin-bottom: 20px;
}

.modal-left input,
.modal-left textarea {
  margin-bottom: 15px;
  padding: 12px;
  font-size: 14px;
  border-radius: 6px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

.input-with-button {
  position: relative;
}

.input-with-button input {
  padding-right: 100px;
  /* space for button */
}

.input-with-button button {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  padding: 6px 10px;
  font-size: 13px;
  background: #333;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

textarea {
  resize: vertical;
  min-height: 80px;
}

.submit-btn {
  background: black;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

#otp-section {
  margin-top: 110px;
}

.modal-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.close {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 28px;
  cursor: pointer;
  color: #744c4c;
}

.btn {
  padding: 10px;
  background-color: Gray;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin: -3px;
  margin-left: 20px;
}

.phone-wrapper {
  display: flex;
  gap: 10px;
}

.country-code-wrapper {
  display: flex;
  gap: 8px;
  /* Adds spacing between select and input */
  align-items: center;
  max-width: 100%;
}

.country-code-select {
  max-height: 150px;
  overflow-y: auto;
  width: 100px;
  height: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding: 6px 8px;
  box-sizing: border-box;
  -webkit-transition: none !important;
  transition: none !important;
}

.country-code-select option {
  white-space: nowrap;
  /* Prevent wrapping */
}

.phone-input {
  width: 127%;
}

/* For Android Devices (commonly 360px wide, like Pixel phones) */
@media only screen and (max-width: 360px) {
  .phone-input {
    width: 120%;
  }

  .close {
    top: 120px;
    left: 93%;
  }
}

/* For iPhones with viewport width ~428px (like iPhone 12 Pro Max) */
@media only screen and (min-width: 361px) and (max-width: 428px) {
  .phone-input {
    width: 135%;
  }

  .close {
    top: 125px;
    left: 93%;
  }
}

/* Responsive - Mobile View */
@media (max-width: 767px) {
  /* Center modal on screen */
  .modal {
    display: flex !important;
    align-items: center;
    justify-content: center;
  }

  .modal[style*="display: none"] {
    display: none !important;
  }

  .modal-box {
    flex-direction: column;
    width: 95%;
    margin: 0;
    top: -20px;
  }

  .modal-left {
    width: 100%;
    padding: 20px;
    text-align: center;
  }

  #otp-section {
    margin-top: 30px;
  }

  .modal-right {
    display: none;
  }

  /* .modal-banner-mobile {
        display: block;
    } */

  .modal-left h2 {
    margin-top: 0;
  }

  .input-with-button {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
  }

  .btn {
    margin-left: -2px;
  }

  .input-with-button input {
    width: 100%;
    padding-right: 120px;
    height: 44px;
    font-size: 14px;
    border-radius: 6px;
    box-sizing: border-box;
  }

  .input-with-button button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    padding: 8px 14px;
    /* Adjusted padding */
    font-size: 13px;
    background: #333;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    line-height: 1;
    height: 30px;
    /* Match vertical size better */
  }
}

/* Toast CSS */
.toast {
  visibility: hidden;
  min-width: 250px;
  max-width: 90%;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 8px;
  padding: 16px;
  position: fixed;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  font-size: 16px;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

.toast.show {
  visibility: visible;
  opacity: 1;
}

/* Added custom-dropdown styles */
.custom-dropdown {
  position: relative;
  /* width: 280px;
    font-family: sans-serif;
    user-select: none;
     flex: 1; */
}

.custom-dropdown .selected {
  /* background: #fff;
  border: 1px solid #ccc;
  padding: 10px 0px;
  cursor: pointer;
  border-radius: 5px;
  height: 50px;
  width: 300px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; */
  flex: 0.6;
  background: #fff;
  border: 1px solid #ccc;
  padding: 0 10px;
  border-radius: 10px;
  height: 50px;
  display: flex;
  align-items: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.custom-dropdown .dropdown-list {
  position: absolute;
  top: 110%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #ccc;
  max-height: 200px;
  /* Make it scrollable */
  overflow-y: auto;
  z-index: 999;
  border-radius: 5px;
  display: none;
  /* Hidden by default */
}

.custom-dropdown .dropdown-list li {
  padding: 10px 15px;
  cursor: pointer;
}

.custom-dropdown .dropdown-list li:hover {
  background: #f0f0f0;
}

.phone-flex-wrapper {
  display: flex;
  align-items: center;
}

.phone-flex-wrapper input {
  height: 50px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 16px;
  box-sizing: border-box;
  max-width: 300px;
  align-items: center;
}

/* Specific widths */
.country-code-input {
  cursor: pointer;
  background-color: #f9f9f9;
  height: 50px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 16px;
  padding: 0 10px;
  box-sizing: border-box;
}

#name {
  width: 100%;
}

#email {
  width: 100%;
}

@keyframes blink {
  0% {
    opacity: 2;
  }

  50% {
    opacity: 0.6;
  }

  100% {
    opacity: 2;
  }
}

.blink-button {
  animation: blink 1s infinite;
}

.button-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 768px) {
  .button-wrapper {
    width: 100%;
  }

  .enquire-btn {
    width: 80%;
    max-width: 300px;
    text-align: center;
  }
}

@media (max-width: 500px) {
  .button-wrapper {
    width: 100%;
  }

  .enquire-btn {
    width: 80%;
    max-width: 300px;
    text-align: center;
    margin-top: 30px;
  }
}

/* Optional blinking effect */
.enquire-btn {
  animation: blink 1.5s infinite;
  margin-left: 20px;
  /* Include other styles here if needed, like background, padding, etc. */
}

@keyframes blink {
  50% {
    opacity: 0.5;
  }
}

.commonPattern {
  pointer-events: none;
  z-index: 0;
}

.footerw1 {
  /* background: #4E2801; */
  padding: 20px 0px;
  position: relative;
}

.disclaimer p {
  text-align: center;
  color: #000;
  display: block;
  margin: 0 auto;
  font-size: 13px;
  width: 80%;
  line-height: 20px;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(0,0,0,0.6); */
  z-index: 9998;
}

/* =============================
    MODAL RIGHT FEATURES
============================= */

.modal-right {
  width: 50%;
  padding: 30px;
  background: #333;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.modal-right-title {
  font-size: 22px;
  font-weight: 700;
  color: white;
  margin-bottom: 25px;
  font-family: "Montserrat", sans-serif;
}

.modal-feature {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e0e0e0;
}

.modal-feature:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.modal-feature-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-feature-icon svg {
  width: 40px;
  height: 40px;
  filter: sepia(1) brightness(3);
}

.modal-feature-content {
  flex: 1;
}

.modal-feature-content h4 {
  font-size: 16px;
  font-weight: 700;
  color: white;
  margin-bottom: 5px;
  padding: 0;
  font-family: "Montserrat", sans-serif;
}

.modal-feature-content p {
  font-size: 13px;
  color: white;
  line-height: 1.5;
  margin: 0;
}

/* Responsive for modal-right - MOBILE STACKED LAYOUT */
@media (max-width: 768px) {
  /* Center modal on screen */
  .modal {
    display: flex !important;
    align-items: center;
    justify-content: center;
  }

  .modal[style*="display: none"] {
    display: none !important;
  }

  /* Modal Box - Stack vertically */
  .modal-box {
    flex-direction: column;
    width: 95%;
    max-width: 450px;
    margin: 0;
    max-height: 90vh;
    overflow-y: auto;
  }

  /* Modal Right - Compact at top */
  .modal-right {
    width: 100%;
    padding: 20px 25px;
    order: -1;
    /* Ensure it appears first */
  }

  .modal-right-title {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .modal-feature {
    gap: 12px;
    margin-bottom: 12px;
    padding-bottom: 12px;
  }

  .modal-feature:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .modal-feature-icon {
    width: 35px;
    height: 35px;
  }

  .modal-feature-icon svg {
    width: 28px;
    height: 28px;
  }

  .modal-feature-content h4 {
    font-size: 14px;
    margin-bottom: 2px;
  }

  .modal-feature-content p {
    font-size: 12px;
    line-height: 1.4;
  }

  /* Modal Left - Form below */
  .modal-left {
    width: 100%;
    padding: 25px 20px;
    text-align: center;
  }

  .modal-left h2 {
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 15px;
  }

  .form-logo {
    width: 50%;
    max-width: 180px;
    margin: 0 auto 20px;
    display: none;
  }

  /* Form Inputs */
  .modal-left input,
  .modal-left textarea {
    font-size: 16px;
    padding: 14px 12px;
    margin-bottom: 12px;
    width: 100%;
  }

  .name-email {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  /* Phone Input Fix */
  .custom-dropdown {
    flex-direction: column;
    gap: 10px;
  }

  .custom-dropdown .selected {
    width: 100%;
    text-align: left;
    padding: 10px;
    border-radius: 2px;
  }

  .phone-flex-iwrapper {
    width: 100%;
  }

  .phone-input {
    width: 100% !important;
  }

  /* Submit Button */
  .btn-submit {
    width: 100%;
    height: 48px;
    font-size: 16px;
    margin-top: 15px;
  }

  /* Close Button */
  .close {
    position: absolute;
    top: 10px;
    right: 15px;
    left: auto;
    font-size: 22px;
    color: rgba(255, 255, 255, 0.8);
    z-index: 100;
  }

  /* OTP Section */
  #otp-section {
    margin-top: 30px;
  }

  .otp-heading {
    font-size: large;
    margin-top: 0;
  }

  .otp-verify-btn {
    width: 100%;
  }

  /* Thank You Popup */
  .thankyou-heading {
    font-size: large;
    margin-top: 50px;
  }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
  .modal-box {
    width: 98%;
    margin: 0;
    border-radius: 12px;
    top: -50px;
  }

  .modal-right {
    padding: 15px 18px;
  }

  .modal-right-title {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .modal-feature {
    gap: 10px;
    margin-bottom: 10px;
    padding-bottom: 10px;
  }

  .modal-feature-icon {
    width: 30px;
    height: 30px;
  }

  .modal-feature-icon svg {
    width: 24px;
    height: 24px;
  }

  .modal-feature-content h4 {
    font-size: 13px;
  }

  .modal-feature-content p {
    font-size: 11px;
  }

  .modal-left {
    padding: 20px 15px;
  }

  .form-logo {
    width: 45%;
    margin-bottom: 15px;
    display: none;
  }

  .modal-left input,
  .modal-left textarea {
    font-size: 16px;
    padding: 12px 10px;
    margin-bottom: 10px;
  }

  .btn-submit {
    height: 45px;
    font-size: 15px;
  }

  .close {
    top: 8px;
    right: 12px;
    font-size: 20px;
  }

  .thankyou-heading {
    margin-top: 30px;
    font-size: medium;
  }
}

/* =============================
    ABOUT FEATURES RESPONSIVE
============================= */

/* Tablet Styles */
@media (max-width: 1024px) {
  /* Hide phone number in navbar on non-desktop screens */
  .phone-number {
    display: none;
  }

  .about-us {
    padding: 0 50px;
  }

  .about-us-inner {
    padding: 30px;
    margin: 15px;
  }

  .about-container {
    padding: 15px;
    gap: 20px;
  }

  .about-container-headings h2 {
    font-size: 26px;
  }

  .all-about-feature {
    gap: 0 25px;
  }

  .all-about-feature > div:first-child {
    padding-right: 25px;
  }

  .about-feature-icon {
    width: 45px;
    height: 45px;
  }

  .about-feature-content h4 {
    font-size: 15px;
  }

  .about-feature-content p {
    font-size: 13px;
    text-align: left;
  }
}

/* Medium Devices - Stack to single column */
@media (max-width: 768px) {
  .about-us {
    padding: 0 20px;
  }

  .about-us-inner {
    padding: 25px 20px;
    margin: 10px;
    border-radius: 15px;
  }

  .about-container {
    flex-direction: column;
    padding: 10px;
    gap: 15px;
  }

  .about-container-headings {
    margin-top: 0;
  }

  .about-container-headings h2 {
    font-size: 22px;
    text-align: center;
  }

  .about-container-headings .title-border {
    font-size: 14px;
  }

  .all-about-feature {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 20px;
  }

  .all-about-feature > div:first-child {
    border-right: none;
    padding-right: 0;
    border-bottom: 1px solid rgba(128, 128, 128, 0.2);
    padding-bottom: 10px;
    margin-bottom: 10px;
  }

  .all-about-feature > div:last-child {
    padding-left: 0;
  }

  .about-feature-item {
    gap: 15px;
    padding: 12px 0;
  }

  .about-feature-icon {
    width: 40px;
    height: 40px;
  }

  .about-feature-content h4 {
    font-size: 14px;
  }

  .about-feature-content p {
    font-size: 13px;
    line-height: 1.4;
  }

  .about-container-headings a {
    width: 100%;
    text-align: center;
    padding: 14px 20px;
    font-size: 14px;
    margin-top: 20px;
  }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
  .about-us {
    padding: 0 15px;
  }

  .about-us-inner {
    padding: 20px 15px;
    margin: 8px;
    border-radius: 12px;
  }

  .about-container {
    padding: 5px;
  }

  .about-container-headings h2 {
    font-size: 18px;
    line-height: 1.3;
  }

  .about-container-headings .title-border {
    font-size: 12px;
    padding-bottom: 10px;
  }

  .about-container-headings .title-border::after {
    height: 2px;
  }

  .all-about-feature {
    margin-top: 15px;
  }

  .about-feature-item {
    gap: 12px;
    padding: 10px 0;
  }

  .about-feature-icon {
    width: 35px;
    height: 35px;
    min-width: 35px;
  }

  .about-feature-content h4 {
    font-size: 13px;
    padding: 0;
  }

  .about-feature-content p {
    font-size: 12px;
    line-height: 1.4;
  }

  .about-container-headings a {
    padding: 12px 15px;
    font-size: 13px;
    margin-top: 15px;
  }
}

/* -------Fix Footer Content ---------- */

@media only screen and (max-width: 600px) {
  .fix-footer {
    display: flex !important;
  }
}

.fix-footer {
  display: none;
  position: fixed;
  bottom: 0px;
  left: 0;
  right: 0;
  background: #333;
  padding: 10px 0px;
  z-index: 9;
  justify-content: center;
  align-items: center;
  gap: 0;
  border-top: 2px solid #666;
}

.fix-footer p {
  flex: 1;
  text-align: center;
  margin: 0px;
  padding: 0px;
}

.fix-footer p a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: #000 !important;
  text-decoration: none;
}

.fix-footer p a span {
  font-size: 12px;
  font-weight: 500;
  color: white;
}

.fix-footer img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

/* ----------------------Fix Footer Content End Here---------------------- */

/* =============================
    CITY FILTER BUTTONS
============================= */

.city-filter-buttons {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 6px;
  border-radius: 50px;
  border: 1px solid rgba(218, 165, 32, 0.2);
  gap: 5px;
  justify-content: center;
  margin: 30px auto 45px auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.city-btn {
  padding: 12px 35px;
  font-size: 13px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  color: #555;
  background: transparent;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  z-index: 1;
}

.city-btn:hover {
  color: #000;
  transform: translateY(-1px);
}

.city-btn::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: #daa520;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.city-btn:hover::after {
  width: 20px;
}

.city-btn.active {
  color: #fff;
  background: #1a1a1a;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.city-btn.active::after {
  display: none;
}

.city-btn.active:hover {
  transform: none;
  color: #fff;
}

/* City Slider Container */
.city-slider {
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.city-slider.fade-out {
  opacity: 0;
  transform: translateY(10px);
}

.city-slider.fade-in {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive - Tablet */
@media (max-width: 768px) {
  .city-filter-buttons {
    gap: 2px;
    margin: 20px auto 30px auto;
    padding: 4px;
  }

  .city-btn {
    padding: 10px 22px;
    font-size: 11px;
    letter-spacing: 1px;
  }
}

/* Responsive - Mobile */
@media (max-width: 480px) {
  .city-filter-buttons {
    gap: 0;
    margin: 15px auto 25px auto;
    padding: 3px;
    width: 90%;
  }

  .city-btn {
    padding: 9px 0;
    flex: 1;
    font-size: 10px;
    letter-spacing: 0.5px;
    text-align: center;
  }
}

/* =============================
    NEWS SECTION LAYOUT
============================= */

#news-section {
  padding-top: 0;
  padding-bottom: 0;
}

.news-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  flex-wrap: wrap;
  gap: 15px;
}

.news-section-header h2 {
  margin: 0;
  text-align: left;
  color: #1b1b1b;
}

.view-all-link {
  color: #1b1b1b;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  border-bottom: 2px solid #c5a059;
  padding-bottom: 2px;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.view-all-link:hover {
  color: #c5a059 !important;
}

@media (max-width: 768px) {
  .news-section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
  }

  #news-section {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* =============================
    NEWS CARD STYLES (Premium)
============================= */

.news-card {
  padding: 10px !important;
  min-width: calc(100% / 3);
}

@media (max-width: 1200px) {
  .news-card {
    min-width: calc(100% / 2);
  }
}

@media (max-width: 768px) {
  .news-card {
    min-width: 100%;
  }
}

@media (max-width: 480px) {
  .news-card {
    min-width: 100%;
    padding: 5px !important;
  }
}

/* Override generic .slide a dark styles for news cards */
.slide.news-card a.news-card-link {
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.06) !important;
  color: #1b1b1b !important;
}

.slide.news-card .news-img-wrapper img {
  margin-top: 0 !important;
  height: 100% !important;
}

.slide.news-card p {
  color: #6b7280 !important;
  padding: 0 !important;
  margin-top: 0 !important;
  font-size: 13px !important;
}

.news-card .news-card-link {
  display: flex !important;
  flex-direction: column;
  text-decoration: none !important;
  background: #ffffff !important;
  border: none !important;
  /* border-radius: 16px; */
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: 100%;
}

.news-card .news-card-link:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(-6px);
}

.news-card .news-img-wrapper {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.news-card .news-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.news-card .news-card-link:hover .news-img-wrapper img {
  transform: scale(1.08);
}

.news-card .news-source-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  color: #1a1a2e;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.news-card .news-date-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 500;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.3px;
}

.news-card .news-gradient-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
  pointer-events: none;
}

.news-card .news-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 12px;
}

.news-card .news-category {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: #c8a45a;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-family: "Montserrat", sans-serif;
}

.news-card .news-category svg {
  width: 14px;
  height: 14px;
  fill: #c8a45a;
}

.news-card .news-card-title {
  font-size: clamp(15px, 2vw, 17px);
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.4;
  font-family: "Montserrat", sans-serif;
  margin: 0;
  /* display: -webkit-box; */
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  border: none !important;
}

.news-card .news-card-excerpt {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.65;
  font-family: "Montserrat", sans-serif;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  padding: 0 !important;
}

.news-card .news-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  margin-top: auto;
  border-top: 1px solid #f0f0f0;
}

.news-card .news-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #c8a45a;
  font-family: "Montserrat", sans-serif;
  transition: gap 0.3s ease;
}

.news-card .news-card-link:hover .news-read-more {
  gap: 10px;
}

.news-card .news-read-more svg {
  width: 16px;
  height: 16px;
  fill: #c8a45a;
  transition: transform 0.3s ease;
}

.news-card .news-card-link:hover .news-read-more svg {
  transform: translateX(3px);
}

.news-card .news-read-time {
  font-size: 12px;
  color: #9ca3af;
  font-family: "Montserrat", sans-serif;
  display: flex;
  align-items: center;
  gap: 4px;
}

.news-card .news-read-time svg {
  width: 14px;
  height: 14px;
  fill: #9ca3af;
}

/* News card responsive */
@media (max-width: 768px) {
  .news-card .news-img-wrapper {
    height: 200px;
  }

  .news-card .news-card-body {
    padding: 16px;
    gap: 10px;
  }

  .news-card .news-card-title {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .news-card .news-img-wrapper {
    height: 180px;
  }

  .news-card .news-card-body {
    padding: 14px;
    gap: 8px;
  }

  .news-card .news-card-title {
    font-size: 14px;
  }

  .news-card .news-card-excerpt {
    font-size: 12px;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }

  .news-card .news-source-badge,
  .news-card .news-date-badge {
    font-size: 10px;
    padding: 4px 10px;
  }
}

/* =============================
    LENIS SMOOTH SCROLL STYLES
============================= */

/* Lenis smooth scroll base styles */
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

/* ----------------------City Filter Buttons End Here---------------------- */

/* =============================
    MEDIA POPUP / LIGHTBOX
============================= */

.media-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.media-popup-overlay.media-popup-visible {
  opacity: 1;
}

.media-popup-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 70px 80px;
  box-sizing: border-box;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Close Button Ã¢â€â‚¬Ã¢â€â‚¬ */
.media-popup-close {
  position: absolute;
  top: 15px;
  right: 20px;
  z-index: 100001;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  line-height: 1;
  font-family: Arial, sans-serif;
}

.media-popup-close:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: rotate(90deg) scale(1.1);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Navigation Arrows Ã¢â€â‚¬Ã¢â€â‚¬ */
.media-popup-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100001;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.media-popup-nav:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-50%) scale(1.08);
}

.media-popup-prev {
  left: 15px;
}

.media-popup-next {
  right: 15px;
}

.media-popup-nav svg {
  width: 22px;
  height: 22px;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Content Area Ã¢â€â‚¬Ã¢â€â‚¬ */
.media-popup-content {
  max-width: 90vw;
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.media-popup-content--image {
  line-height: 0;
}

.media-popup-content--video {
  width: 85vw;
  max-width: 1100px;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Image Ã¢â€â‚¬Ã¢â€â‚¬ */
.media-popup-image {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  user-select: none;
  -webkit-user-select: none;
  transition: transform 0.3s ease;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Video Ã¢â€â‚¬Ã¢â€â‚¬ */
.media-popup-video {
  width: 100%;
  max-height: 80vh;
  border-radius: 6px;
  background: #000;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  outline: none;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ YouTube / Iframe Ã¢â€â‚¬Ã¢â€â‚¬ */
.media-popup-iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Instagram / Facebook Reel (Vertical) Ã¢â€â‚¬Ã¢â€â‚¬ */
.media-popup-iframe--reel {
  aspect-ratio: 9 / 16;
  width: auto;
  height: 80vh;
  max-height: 80vh;
}

.media-popup-content--reel {
  width: auto !important;
  max-width: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .media-popup-iframe--reel {
    height: 70vh;
    max-height: 70vh;
    width: auto;
    max-width: 360px;
  }

  .media-popup-content--reel {
    max-width: 95vw;
  }
}

@media (max-width: 480px) {
  .media-popup-iframe--reel {
    height: 62vh;
    max-height: 62vh;
    max-width: 300px;
  }
}

/* =============================
    FEATURED VIDEOS SECTION
============================= */

.featured-videos-section {
  padding: 60px 20px;
  background: linear-gradient(180deg, #f8f8f8 0%, #fff 100%);
}

.featured-videos-section .section-header {
  text-align: center;
  margin-bottom: 40px;
}

.featured-videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.video-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  background: #000;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  aspect-ratio: 9 / 14;
}

.video-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.video-card:hover img {
  transform: scale(1.05);
}

.video-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.7) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  transition: background 0.3s ease;
}

.video-card:hover .video-card-overlay {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.8) 100%
  );
}

/* Play Button */
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.video-play-btn svg {
  width: 24px;
  height: 24px;
  fill: #1a1a1a;
  margin-left: 3px;
}

.video-card:hover .video-play-btn {
  transform: translate(-50%, -50%) scale(1.12);
  background: #fff;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
}

/* Platform Badge */
.video-platform-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 5px 10px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.5px;
}

.video-platform-badge svg {
  width: 14px;
  height: 14px;
  fill: #fff;
}

/* Card Title */
.video-card-title {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  margin: 0;
  line-height: 1.3;
}

.video-card-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-family: "Montserrat", sans-serif;
  margin-top: 4px;
}

/* Responsive */
@media (max-width: 768px) {
  .featured-videos-section {
    padding: 40px 15px;
  }

  .featured-videos-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .video-card {
    border-radius: 12px;
  }

  .video-play-btn {
    width: 44px;
    height: 44px;
  }

  .video-play-btn svg {
    width: 18px;
    height: 18px;
  }

  .video-card-overlay {
    padding: 12px;
  }

  .video-card-title {
    font-size: 12px;
  }

  .video-card-subtitle {
    font-size: 10px;
  }

  .video-platform-badge {
    top: 8px;
    right: 8px;
    padding: 3px 7px;
    font-size: 9px;
  }

  .video-platform-badge svg {
    width: 11px;
    height: 11px;
  }
}

@media (max-width: 480px) {
  .featured-videos-grid {
    gap: 8px;
  }

  .video-card {
    border-radius: 10px;
  }

  .video-play-btn {
    width: 36px;
    height: 36px;
  }

  .video-play-btn svg {
    width: 14px;
    height: 14px;
    margin-left: 2px;
  }

  .video-card-title {
    font-size: 11px;
  }

  .video-platform-badge {
    padding: 2px 6px;
    font-size: 8px;
    gap: 3px;
  }

  .video-platform-badge svg {
    width: 9px;
    height: 9px;
  }
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Bottom Bar (Caption + Counter) Ã¢â€â‚¬Ã¢â€â‚¬ */
.media-popup-bottom {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 100001;
  width: 90%;
  text-align: center;
}

.media-popup-caption {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.3px;
  background: rgba(0, 0, 0, 0.5);
  padding: 6px 18px;
  border-radius: 20px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: none;
  max-width: 80%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.media-popup-counter {
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 2px;
  display: none;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Loader / Spinner Ã¢â€â‚¬Ã¢â€â‚¬ */
.media-popup-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100000;
}

.media-popup-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top: 3px solid rgba(218, 165, 32, 0.8);
  border-radius: 50%;
  animation: mediaPopupSpin 0.8s linear infinite;
}

@keyframes mediaPopupSpin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Slide Transitions Ã¢â€â‚¬Ã¢â€â‚¬ */
.media-popup-slide-out-left {
  animation: mpSlideOutLeft 0.15s ease-in forwards;
}

.media-popup-slide-in-left {
  animation: mpSlideInLeft 0.3s ease-out forwards;
}

.media-popup-slide-out-right {
  animation: mpSlideOutRight 0.15s ease-in forwards;
}

.media-popup-slide-in-right {
  animation: mpSlideInRight 0.3s ease-out forwards;
}

@keyframes mpSlideOutLeft {
  from {
    transform: translateX(0);
    opacity: 1;
  }

  to {
    transform: translateX(-60px);
    opacity: 0;
  }
}

@keyframes mpSlideInLeft {
  from {
    transform: translateX(60px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes mpSlideOutRight {
  from {
    transform: translateX(0);
    opacity: 1;
  }

  to {
    transform: translateX(60px);
    opacity: 0;
  }
}

@keyframes mpSlideInRight {
  from {
    transform: translateX(-60px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ RESPONSIVE Ã¢â€â‚¬Ã¢â€â‚¬ */

/* Tablet */
@media (max-width: 1024px) {
  .media-popup-container {
    padding: 50px 55px 70px;
  }

  .media-popup-content--video {
    width: 90vw;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .media-popup-container {
    padding: 60px 10px 90px;
  }

  .media-popup-close {
    top: 10px;
    right: 12px;
    width: 38px;
    height: 38px;
    font-size: 24px;
  }

  .media-popup-nav {
    width: 36px;
    height: 36px;
  }

  .media-popup-prev {
    left: 6px;
  }

  .media-popup-next {
    right: 6px;
  }

  .media-popup-nav svg {
    width: 18px;
    height: 18px;
  }

  .media-popup-content {
    max-width: 100%;
    max-height: 85vh;
  }

  .media-popup-image {
    max-width: 98vw;
    max-height: 80vh;
    border-radius: 4px;
  }

  .media-popup-content--video {
    width: 100%;
  }

  .media-popup-video {
    border-radius: 4px;
    max-height: 80vh;
  }

  .media-popup-iframe {
    border-radius: 4px;
    height: auto;
    min-height: 200px;
  }

  .media-popup-caption {
    font-size: 13px;
    padding: 5px 14px;
    max-width: 95%;
    white-space: normal;
    line-height: 1.4;
  }

  .media-popup-counter {
    font-size: 11px;
  }

  .media-popup-bottom {
    bottom: 12px;
    width: 100%;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .media-popup-container {
    padding: 50px 10px 70px;
  }

  .media-popup-close {
    top: 8px;
    right: 8px;
    width: 34px;
    height: 34px;
    font-size: 22px;
  }

  .media-popup-nav {
    width: 32px;
    height: 32px;
  }

  .media-popup-prev {
    left: 4px;
  }

  .media-popup-next {
    right: 4px;
  }

  .media-popup-content {
    max-width: 98vw;
    max-height: 70vh;
  }

  .media-popup-image {
    max-width: 98vw;
    max-height: 70vh;
  }

  .media-popup-caption {
    font-size: 11px;
    padding: 4px 12px;
  }

  .media-popup-bottom {
    bottom: 10px;
  }
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Hover effect for triggers Ã¢â€â‚¬Ã¢â€â‚¬ */
[data-media-popup] {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

[data-media-popup]::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s ease;
  pointer-events: none;
  border-radius: inherit;
}

[data-media-popup]:hover::after {
  background: rgba(0, 0, 0, 0.15);
}

/* Zoom icon hint on hover */
[data-media-popup]::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.9)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23333'%3E%3Cpath d='M15.5 14h-.79l-.28-.27A6.471 6.471 0 0 0 16 9.5 6.5 6.5 0 1 0 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z'/%3E%3Cpath d='M12 10h-2v2H9v-2H7V9h2V7h1v2h2v1z'/%3E%3C/svg%3E")
    center/24px no-repeat;
  border-radius: 50%;
  z-index: 2;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}

[data-media-popup]:hover::before {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ End Media Popup Styles Ã¢â€â‚¬Ã¢â€â‚¬ */

/* =============================
    PIP VIDEO WIDGET
============================= */

.pip-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 320px;
  z-index: 99998;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 12px 48px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  background: #0a0a0a;
  transform: translateY(120%) scale(0.9);
  opacity: 0;
  transition:
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 0.3s ease;
}

.pip-widget.pip-visible {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Header / Drag Bar Ã¢â€â‚¬Ã¢â€â‚¬ */
.pip-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 10px 8px 14px;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: grab;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  user-select: none;
}

.pip-header:active {
  cursor: grabbing;
}

.pip-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pip-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.3px;
}

.pip-badge svg {
  flex-shrink: 0;
}

.pip-close,
.pip-volume {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  line-height: 1;
  font-family: Arial, sans-serif;
  padding: 0;
}

.pip-close:hover,
.pip-volume:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.pip-volume.muted {
  color: #daa520;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Content / iframe area Ã¢â€â‚¬Ã¢â€â‚¬ */
.pip-content {
  width: 100%;
  aspect-ratio: 9 / 14;
  background: #000;
  position: relative;
}

.pip-iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Navigation bar Ã¢â€â‚¬Ã¢â€â‚¬ */
.pip-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.04);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.pip-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  padding: 0;
}

.pip-arrow:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
  transform: scale(1.1);
}

.pip-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.pip-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.pip-dot.active {
  background: #daa520;
  width: 22px;
  border-radius: 10px;
}

.pip-dot:hover:not(.active) {
  background: rgba(255, 255, 255, 0.4);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Responsive Ã¢â€â‚¬Ã¢â€â‚¬ */
@media (max-width: 768px) {
  .pip-widget {
    width: 260px;
    bottom: 15px;
    right: 10px;
    border-radius: 12px;
  }

  .pip-header {
    padding: 6px 8px 6px 10px;
  }

  .pip-badge {
    font-size: 11px;
  }

  .pip-close {
    width: 24px;
    height: 24px;
    font-size: 14px;
  }

  .pip-nav {
    padding: 7px 10px;
    gap: 8px;
  }

  .pip-arrow {
    width: 24px;
    height: 24px;
  }

  .pip-dot {
    width: 6px;
    height: 6px;
  }

  .pip-dot.active {
    width: 18px;
  }
}

@media (max-width: 480px) {
  .pip-widget {
    width: 220px;
    bottom: 10px;
    right: 8px;
    border-radius: 10px;
  }

  .pip-content {
    aspect-ratio: 9 / 13;
  }

  .pip-badge {
    font-size: 10px;
    gap: 4px;
  }

  .pip-badge svg {
    width: 12px;
    height: 12px;
  }
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ End PiP Widget Styles Ã¢â€â‚¬Ã¢â€â‚¬ */

/* ==============================================================
   DESKTOP GRID SLIDER (3 tiles per row for locality pages)
   ============================================================== */
@media (min-width: 1025px) {
  .desktop-grid-slider .slider-track {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
    transform: none !important;
    width: 100% !important;
    height: auto !important;
    transition: none !important;
  }

  .desktop-grid-slider .slide {
    width: 100% !important;
    min-width: 0 !important;
    margin-right: 0 !important;
    flex: unset !important;
    display: block !important;
    padding: 0 !important;
  }

  .desktop-grid-slider .dots,
  .desktop-grid-slider .slider-btn {
    display: none !important;
  }

  /* Hot Locality Specific Fixes */
  .desktop-grid-slider .hot-locality-card {
    height: 100% !important;
  }

  .desktop-grid-slider .hot-locality-card .locality-card-link {
    height: 450px !important;
  }
}

/* ==============================================================
   LOCALITY NAVIGATION BUTTONS
   ============================================================== */
.locality-nav-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
  justify-content: center;
}

.locality-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 8px;
  border: none;
  background: transparent;
  color: #666;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
}

/* Hover & focus background glow */
.locality-nav-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.06),
    rgba(212, 175, 55, 0.02)
  );
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Bottom accent line */
.locality-nav-btn::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2.5px;
  background: linear-gradient(90deg, #d4af37, #f5d76e);
  border-radius: 2px;
  transition: width 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.locality-nav-btn:hover {
  color: #1a1a1a;
  background: rgba(0, 0, 0, 0.03);
}

.locality-nav-btn:hover::before {
  opacity: 1;
}

.locality-nav-btn:hover::after {
  width: 60%;
}

.locality-nav-btn:hover svg {
  fill: #d4af37;
}

/* Active State */
.locality-nav-btn.active {
  color: #1a1a1a;
  font-weight: 600;
  background: rgba(212, 175, 55, 0.08);
}

.locality-nav-btn.active::after {
  width: 80%;
}

.locality-nav-btn.active svg {
  fill: #d4af37;
}

/* Icon styling */
.locality-nav-btn svg {
  width: 16px;
  height: 16px;
  fill: #999;
  flex-shrink: 0;
  transition: fill 0.3s ease;
}

@media (max-width: 768px) {
  .locality-nav-buttons {
    gap: 6px;
    margin-bottom: 22px;
  }

  .locality-nav-btn {
    padding: 10px 18px;
    font-size: 12px;
    border-radius: 6px;
  }

  .locality-nav-btn svg {
    width: 14px;
    height: 14px;
  }
}

/* =============================
    FAQ SECTION
============================= */
.ps-faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.ps-faq-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: #1a1a1a !important;
  /* Ensure visibility against white */
  font-weight: 700;
}

.ps-faq-header p {
  color: #666;
  margin-top: 10px;
  font-size: 16px;
}

.ps-faq-grid {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.ps-faq-item {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.ps-faq-item:hover {
  border-color: #d4a574;
}

.ps-faq-question {
  width: 100%;
  padding: 22px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-size: 17px;
  font-weight: 600;
  color: #1a1a1a;
}

.ps-faq-icon-box {
  width: 32px;
  height: 32px;
  border: 1px solid #d4a574;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #d4a574;
  transition: all 0.35s ease;
  flex-shrink: 0;
  line-height: 0;
  padding-bottom: 3px;
}

.ps-faq-item.active .ps-faq-icon-box {
  background: #d4a574;
  color: #fff;
  transform: rotate(45deg);
}

.ps-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: #fafafa;
}

.ps-faq-item.active .ps-faq-answer {
  max-height: 500px;
}

.ps-faq-answer-inner {
  padding: 0 30px 25px 30px;
  color: #555;
  line-height: 1.6;
  font-size: 15px;
}

@media (max-width: 768px) {
  .ps-faq-question {
    padding: 18px 20px;
    font-size: 15px;
  }

  .ps-faq-answer-inner {
    padding: 0 20px 20px 20px;
  }
}

/* ==============================================================
   TOI-STYLE PROJECT CARDS (Matching propertystation.in)
   ============================================================== */

/* Card Container */
.slide.toi-card {
  padding: 12px;
  transition: all 0.3s ease;
}

/* Card Link (the <a> wrapping the card) */
.slide.toi-card a,
.toi-card-link {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
  text-decoration: none;
  color: inherit;
  height: 100%;
  transition: all 0.3s ease;
  overflow: hidden;
}

/* Hover Effects */
.slide.toi-card a:hover,
.toi-card-link:hover {
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.slide.toi-card a:hover .toi-img-section img,
.toi-card-link:hover .toi-img-section img {
  transform: scale(1.08);
}

/* Image Section */
.toi-img-section {
  height: 350px;
  overflow: hidden;
  position: relative;
}

.toi-img-section img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  margin-top: 0;
}

/* Content Section */
.toi-content {
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* Title */
.toi-title {
  font-size: 20px;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 16px;
  font-family: "Montserrat", sans-serif;
  line-height: 1.3;
  letter-spacing: -0.3px;
}

/* Info Grid (2-column layout for location, status, etc.) */
.toi-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
  margin-bottom: 20px;
}

.toi-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #4a5568;
  font-size: 11px;
  font-family: "Montserrat", sans-serif;
}

.toi-info-item svg {
  width: 16px;
  height: 16px;
  fill: #4a5568;
  flex-shrink: 0;
}

.toi-info-item.highlight {
  color: #2c5282;
  font-weight: 500;
}

.toi-info-item.highlight svg {
  fill: #2c5282;
}

/* Price Section */
.toi-price-section {
  border-top: 1px solid #e2e8f0;
  margin-top: auto;
  padding-top: 16px;
}

.toi-price-label {
  font-size: 12px;
  color: #718096;
  display: block;
  margin-bottom: 4px;
}

.toi-price {
  font-size: 26px;
  font-weight: 700;
  color: #2c5282;
  display: flex;
  align-items: baseline;
  font-family: "Montserrat", sans-serif;
}

.rupee-symbol {
  font-size: 18px;
  font-weight: 600;
  margin-right: 2px;
}

/* Grid Layout for Desktop */
.desktop-grid-slider .slider-track {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  /* Spacing handled by card padding */
  width: 100%;
  transform: none !important;
  align-items: start;
}

/* Tablet: 2 columns */
@media (max-width: 1024px) {
  .desktop-grid-slider .slider-track {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile: 1 column */
@media (max-width: 768px) {
  .slide.toi-card {
    min-width: 100%;
    padding: 10px 5px;
  }

  .toi-img-section {
    height: 300px;
  }

  .toi-content {
    padding: 20px;
  }

  .toi-title {
    font-size: 18px;
  }

  .toi-price {
    font-size: 24px;
  }

  .desktop-grid-slider .slider-track {
    grid-template-columns: 1fr;
  }
}

/* =============================
    SEO LOCALITY PAGES
============================= */
.seo-content {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 40px;
}

.seo-content p {
  margin-bottom: 15px;
}

.seo-table-container {
  overflow-x: auto;
  margin-bottom: 40px;
}

.seo-data-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.seo-data-table th {
  border: 1px solid #444;
  padding: 15px;
  background: #222;
  background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%);
  color: #f1d5bb;
  text-align: left;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.seo-data-table td {
  border: 1px solid #eee;
  padding: 15px;
  color: #666;
  font-size: 15px;
}

.seo-data-table td a {
  color: #333;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.seo-data-table td a:hover {
  color: #d4a574;
}

.faq-section {
  margin-top: 50px;
  padding: 60px 40px;
  background-color: #f8f9fa;
  border-radius: 12px;
}

.faq-section h2 {
  font-size: 1.8rem;
  margin-bottom: 40px;
  color: #333;
  font-weight: 500;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  padding-bottom: 15px;
}

.faq-question {
  font-weight: 500;
  cursor: pointer;
  color: #c5a059;
  font-size: 1.15rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  list-style: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-icon {
  font-size: 0.8rem;
  color: #c5a059;
  display: inline-block;
  order: -1;
}

.faq-icon::before {
  content: "â–¶";
}

details[open] .faq-icon::before {
  content: "â–¼";
}

.faq-answer {
  margin-top: 10px;
  line-height: 1.7;
  color: #666;
  padding-left: 25px;
  font-size: 1rem;
}

/* =============================
    LENIS SMOOTH SCROLL STYLES
============================= */
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}
