/* Root variables start */
:root {
  --primary-color: #004aad;
  --primary-light: #0066cc;
  --primary-dark: #003580;
  --secondary-color: #0072ff;
  --bg: #f9fafb;
  --text: #1e293b;
}
/* Root variables end */

/* Basic reset start */
* { margin:0; padding:0; box-sizing:border-box; }
html, body { overflow-x: hidden !important; }
body { font-family:"Poppins",sans-serif; color:var(--text); background:var(--bg); transition:all 0.3s ease; scroll-behavior: smooth; }

/* Prevent media elements from overflowing on small screens */
img, picture, video, iframe { max-width: 100%; height: auto; display: block; }

/* AOS rendering hints to avoid layout shifts creating horizontal overflow */
[data-aos] {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform, opacity;
}

/* ===== Professional Loader ===== */
.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(249,250,251,0.98) 0%, rgba(255,255,255,0.99) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.loader-container.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.loader-spinner {
  width: 64px;
  height: 64px;
  position: relative;
}

.loader-spinner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 4px solid rgba(0, 74, 173, 0.12);
  border-radius: 50%;
  border-top-color: var(--primary-light);
  border-right-color: var(--secondary-color);
  animation: spin 1s cubic-bezier(.4,.0,.2,1) infinite;
}

.loader-spinner::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 8px;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  border: 3px solid rgba(0,102,204,0.12);
  border-radius: 50%;
  border-bottom-color: var(--primary-color);
  animation: spin-reverse 1.6s cubic-bezier(.4,.0,.2,1) infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes spin-reverse {
  0% { transform: rotate(360deg); }
  100% { transform: rotate(0deg); }
}

.loader-text {
  color: var(--primary-color);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  animation: pulse-text 1.6s ease-in-out infinite;
}

@keyframes pulse-text {
  0%, 100% { opacity: 0.65; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-3px); }
}

@media (max-width: 768px) {
  /* extra guard for mobile */
  html, body { overflow-x: hidden; }
}
/* Basic reset end */

/* Header start */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}
/* Header end */

/* Nav container start */
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/* Nav container end */

/* Logo start */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.5s;
}
.logo img {
  width: 250px;
  height: 50px;
  object-fit: contain;
  margin-left: -20px;
}
.logo h1 {
  font-family: "Exo 2", sans-serif;
  font-size: 1.2rem;
  color: var(--primary-color);
  font-weight: 700;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.2);
}
/* Logo end */

/* Navigation start */
nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
nav a {
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 500;
  position: relative;
  transition: all 0.3s;
}
nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--primary-light);
  transition: width 0.3s;
}
nav a:hover::after {
  width: 100%;
}
nav a.phone {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
  color: var(--primary-dark);
}
/* Navigation end */

/* Language button start */
.lang-btn {
  border-radius: 20px;
  padding: 6px 14px;
  cursor: pointer;
  font-weight: 500;
  background: var(--primary-light);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 5px;
  border: none;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.lang-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}
/* Language button end */

/* Menu toggle start */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}
.menu-toggle.active i {
  transform: rotate(180deg);
}
/* Menu toggle end */

/* Responsive nav start */
@media (max-width: 900px) {
  nav {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding: 25px 0;
    display: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 20px 20px;
    animation: fadeDown 0.4s ease forwards;
  }

  nav.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
  .logo img {
  width: 250px;
  height: 50px;
  object-fit: contain;
  margin-left: -20px;
}
}
/* Responsive nav end */

/* Fade animation start */
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Fade animation end */
/* Slider section start */
.showu-slider-section {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

#dynamic-slide {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

#slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.7s ease-in-out;
    z-index: 1;
    filter: brightness(30%);
    background-size: cover;
    background-position: center;
}

.showu-overlay {
    position: relative;
    z-index: 2;
    background-color: transparent;
    padding: 30px;
    text-align: center;
    max-width: 90%;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

#slide-title {
    color: #ffffff;
    font-size: 3.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    white-space: nowrap;
}

#slide-description {
    color: #f0f0f0;
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: 300;
    line-height: 1.4;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    min-height: 1.5rem;
}

.cta-btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    background-color: var(--primary-color);
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
}

.cta-btn:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}
.cta-btn { text-decoration: none; }

@media (max-width: 768px) {
    .showu-overlay {
        padding: 20px 15px;
        max-width: 95%;
    }

    #slide-title {
        font-size: 2.2rem;
        margin-bottom: 10px;
        white-space: normal;
    }

    #slide-description {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .cta-btn {
        padding: 10px 20px;
        font-size: 1rem;
    }
}

#showu-dot-container {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
}
/* Slider section end */

/* Trust section start */
.trust-section { padding:100px 20px; background: linear-gradient(135deg,#e3f0ff,#ffffff); }
.trust-container { max-width:1200px; margin:0 auto; display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); gap:50px; align-items:center; }
.trust-image img { width:100%; border-radius:10px; transition: transform 0.5s, box-shadow 0.5s; box-shadow:0 10px 30px rgba(0,0,0,0.15); }
.trust-image img:hover { transform:scale(1.05) rotateY(5deg); }
.trust-content h2 { font-family:'Exo 2',sans-serif; font-size:2.5rem; color:var(--primary-color); margin-bottom:20px; text-shadow:1px 1px 5px rgba(0,0,0,0.1); }
.trust-content p { font-size:1.1rem; margin-bottom:25px; line-height:1.7; color:var(--text); }
.trust-points { display:grid; grid-template-columns:repeat(auto-fit,minmax(180px,1fr)); gap:15px; }
.point { background:var(--secondary-color); color:#fff; font-weight:600; padding:12px 15px; border-radius:15px; text-align:center; box-shadow:0 6px 15px rgba(0,0,0,0.1); transition:transform 0.3s, box-shadow 0.3s; display:flex; align-items:center; justify-content:center; gap:8px; }
.point:hover { transform:translateY(-5px); box-shadow:0 10px 20px rgba(0,0,0,0.2); }

@media (max-width:900px){
  nav { display:none; flex-direction:column; background:var(--bg); position:absolute; top:70px; left:0; width:100%; padding:20px 0; border-top:1px solid #eee; box-shadow:0 5px 25px rgba(0,0,0,0.1); border-radius:0 0 15px 15px; }
  nav.open { display:flex; animation:slideIn 0.3s ease forwards; }
  nav a { padding:12px 20px; font-size:1.1rem; }
  .menu-toggle { display:block; }
}
@media (max-width:500px){ .trust-image-grid { grid-template-columns:1fr; } }
/* Trust section end */


.services {
  padding: 100px 20px;
  background: linear-gradient(160deg, #eef5ff, #f9fbff 60%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* ===== Section Headings ===== */
.section-title {
  font-size: 2.8rem;
  color: var(--primary-dark);
  font-family: 'Exo 2', sans-serif;
  font-weight: 800;
  margin-bottom: 15px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  letter-spacing: 0.5px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 70px;
  font-weight: 500;
  opacity: 0.85;
  max-width: 800px;
  margin-inline: auto;
  line-height: 1.6;
}

/* ===== Grid Layout ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== Service Card ===== */
.service-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 25px;
  padding: 40px 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}

/* Subtle light effect */
.service-card::before {
  content: "";
  position: absolute;
  top: -60%;
  left: -60%;
  width: 220%;
  height: 220%;
  background: radial-gradient(circle at 50% 50%, rgba(0, 102, 255, 0.08), transparent 70%);
  transform: scale(0);
  transition: transform 0.7s ease-out;
}

.service-card:hover::before {
  transform: scale(1);
}

.service-card:hover {
  transform: translateY(-14px) rotateX(4deg) rotateY(1deg);
  box-shadow: 0 20px 45px rgba(0, 74, 173, 0.25);
}

.icon, .service-img {
  font-size: 3.2rem;
  margin-bottom: 25px;
  transition: transform 0.4s ease;
}

.icon {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service-img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 15px;
  transition: all 0.4s ease;
}

.service-card:hover .service-img img,
.service-card:hover .icon {
  transform: scale(1.1) rotate(3deg);
}

.service-card h3 {
  font-size: 1.35rem;
  color: var(--primary-color);
  margin-bottom: 12px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.service-card p {
  font-size: 0.97rem;
  line-height: 1.7;
  color: var(--text);
  opacity: 0.9;
}

.service-card:hover h3 {
  color: var(--primary-dark);
}

/* Decorative floating particles */
.services::after {
  content: "";
  position: absolute;
  top: -10%;
  right: -10%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(0, 74, 173, 0.12), transparent 70%);
  border-radius: 50%;
  animation: floatShape 12s infinite ease-in-out alternate;
  z-index: 0;
}

@keyframes floatShape {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(20px) scale(1.1); }
}

/* ===== Responsive Design ===== */
@media (max-width: 900px) {
  .section-title { font-size: 2.2rem; }
  .service-card { padding: 30px 20px; }
}

@media (max-width: 600px) {
  .section-subtitle { font-size: 1rem; margin-bottom: 40px; }
  .service-card h3 { font-size: 1.15rem; }
  .service-card p { font-size: 0.9rem; }
}
/* How it works section start */
.how-it-works {
  background: linear-gradient(180deg, #ffffff, #f3f7ff);
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.how-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Steps grid start */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 70px;
  position: relative;
}

/* Step card start */
.step {
  background: rgba(255, 255, 255, 0.9);
  padding: 40px 25px;
  border-radius: 25px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.06);
  border: 1px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(10px);
  transition: all 0.5s ease;
  position: relative;
  z-index: 1;
}

.step::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -40%;
  width: 180%;
  height: 180%;
  background: radial-gradient(circle, rgba(0,114,255,0.08), transparent 70%);
  transform: scale(0);
  transition: transform 0.6s ease;
  border-radius: 50%;
}

.step:hover::before {
  transform: scale(1);
}

.step:hover {
  transform: translateY(-12px) rotateX(3deg);
  box-shadow: 0 20px 40px rgba(0, 74, 173, 0.15);
}

/* Step icon start */
.step-icon {
  font-size: 3rem;
  color: var(--primary-color);
  background: linear-gradient(135deg, var(--primary-light), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.step:hover .step-icon {
  transform: scale(1.15) rotate(10deg);
}

/* Step text start */
.step h3 {
  color: var(--primary-dark);
  font-size: 1.3rem;
  margin-bottom: 12px;
  font-weight: 600;
}

.step p {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.85;
}

/* Connector lines start */
@media (min-width: 900px) {
  .steps-grid::after {
    content: "";
    position: absolute;
    top: 80px;
    left: 10%;
    width: 80%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-light), var(--secondary-color));
    z-index: 0;
    opacity: 0.2;
  }
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .step { padding: 30px 20px; }
  .step h3 { font-size: 1.2rem; }
}
@media (max-width: 600px) {
  .section-title { font-size: 2.2rem; }
  .section-subtitle { font-size: 1rem; }
}
/* How it works section end */

/* Special offer section start */
.special-offer {
  background: radial-gradient(circle at top, #004aad, #002f77 80%);
  color: #fff;
  text-align: center;
  padding: 120px 20px;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 80px rgba(0,0,0,0.2);
}

.special-offer::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 70%);
  animation: softGlow 6s infinite alternate;
  z-index: 0;
}

@keyframes softGlow {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.2); opacity: 0.9; }
}

/* Offer container start */
.offer-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255,255,255,0.08);
  padding: 60px 40px;
  border-radius: 30px;
  backdrop-filter: blur(15px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.25);
  transform-style: preserve-3d;
  transition: transform 0.5s ease;
  overflow: hidden;
}

/* .offer-container::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 30px;
  background: conic-gradient(
    from 0deg,
    #00aaff,
    #0088ff,
    #0066cc,
    #004aad,
    #0055ff,
    #00aaff
  );
  animation: rotateBorder 4s linear infinite;
  z-index: -1;
  mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: destination-out;
  padding: 2px;
}

@keyframes rotateBorder {
  to { transform: rotate(360deg); }
} */

.offer-container:hover {
  transform: translateY(-10px) rotateX(4deg);
}

/* Offer icon start */
.offer-icon img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  filter: drop-shadow(0 5px 12px rgba(255,255,255,0.3));
  margin-bottom: 20px;
  animation: bounce 3s infinite ease-in-out;
}

@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.offer-content h2 {
  font-size: 2.8rem;
  margin-bottom: 15px;
  font-weight: 700;
  letter-spacing: 1px;
}

.offer-content p {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 35px;
}

.highlight {
  color: #66ccff;
  font-weight: 700;
}

/* Discount box start */
.discount-box {
  background: linear-gradient(135deg, #ffffff, #f3f3f3);
  color: #004aad;
  display: inline-block;
  padding: 25px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  margin-bottom: 35px;
}

.discount-text {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.code-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.code-wrapper h3 {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: #003580;
}

.copy-btn {
  background: #00aaff;
  border: none;
  color: #fff;
  font-weight: 600;
  border-radius: 10px;
  padding: 8px 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,170,255,0.4);
}

.copy-btn:hover {
  background: #fff;
  color: #004aad;
  transform: translateY(-2px);
}

/* CTA button start */
.offer-btn {
  background: #00aaff;
  color: #fff;
  padding: 14px 45px;
  border: none;
  border-radius: 40px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 5px 20px rgba(0,170,255,0.4);
}

.offer-btn:hover {
  background: #fff;
  color: #004aad;
  transform: scale(1.05);
}

.expiry {
  margin-top: 25px;
  font-size: 0.95rem;
  opacity: 0.9;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .offer-content h2 { font-size: 2.2rem; }
  .offer-content p { font-size: 1rem; }
  .discount-box { padding: 20px; }
  .code-wrapper h3 { font-size: 1.4rem; }
  .offer-icon img { width: 70px; height: 70px; }
}

@media (max-width: 480px) {
  .offer-container { padding: 40px 20px; }
  .offer-btn { padding: 12px 30px; font-size: 1rem; }
}
/* Special offer section end */

/* Our work section start */
.our-work {
  padding: 100px 20px;
  background: linear-gradient(145deg, #eaf1ff, #f8fbff);
  text-align: center;
  overflow: hidden;
}

/* Property Highlights Tags */
.property-highlights {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.property-highlights span {
  background: var(--secondary-color);
  color: #fff;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  cursor: default;
  transition: all 0.3s ease;
}

.property-highlights span:hover {
  background: var(--primary-light);
  transform: scale(1.1);
}

/* Work Grid */
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Individual Work Card */
.work-card {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  transform-style: preserve-3d;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  cursor: pointer;
}

.work-card img {
  width: 100%;
  height: 220px;
  object-fit: fill;
  transition: transform 0.5s ease;
}

/* Card hover 3D effect */
.work-card:hover {
  transform: translateY(-10px) rotateX(2deg);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.work-card:hover img {
  transform: scale(1.1);
}

/* Overlay Text – Visible on Hover */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
  pointer-events: none; /* Prevent interaction when hidden */
}

.work-card:hover .overlay {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.overlay h3 {
  font-family: 'Exo 2', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--secondary-color);
  text-shadow: 1px 1px 6px rgba(0,0,0,0.2);
}

.overlay p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
  opacity: 0.95;
}

.overlay .property-types {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.overlay .property-types span {
  background: var(--primary-light);
  color: #fff;
  padding: 5px 12px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.overlay .property-types span:hover {
  background: var(--secondary-color);
  transform: scale(1.1);
}

/* Responsive Adjustments */
@media (max-width: 900px) {
  .overlay h3 { font-size: 1.3rem; }
  .overlay p { font-size: 0.95rem; }
}

@media (max-width: 600px) {
  .property-highlights { gap: 10px; }
  .work-card img { height: 180px; }
  .overlay h3 { font-size: 1.1rem; }
  .overlay p { font-size: 0.9rem; }
}
/* Our work section end */

/* Service areas section start */
.service-areas {
  padding: 100px 20px;
  background: #f9fafb; /* Simple light background */
  text-align: center;
}

.service-areas .section-title {
  font-size: 2.8rem;
  color: var(--primary-color);
  margin-bottom: 40px;
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
}

.areas-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
}

.areas-grid span {
  background: var(--primary-light);
  color: #fff;
  padding: 8px 16px;
  border-radius: 25px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: transform 0.3s, background 0.3s;
  cursor: default;
}

.areas-grid span:hover {
  background: var(--secondary-color);
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 900px) {
  .service-areas .section-title { font-size: 2.2rem; }
  .areas-grid span { padding: 6px 12px; font-size: 0.85rem; }
}
@media (max-width: 600px) {
  .service-areas .section-title { font-size: 1.9rem; }
  .areas-grid span { padding: 5px 10px; font-size: 0.8rem; }
}
/* Service areas section end */

/* Reviews section start */
.reviews {
  padding: 100px 20px;
  background: var(--primary-light); /* theme color */
  text-align: center;
  overflow: hidden;
}

.reviews .section-title {
  font-size: 2.8rem;
  color: #fff;
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.2);
}

.reviews .section-subtitle {
  font-size: 1.1rem;
  color: #f0f0f0;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.reviews-container {
  display: flex;
  align-items: center;
  position: relative;
  gap: 10px;
}

.review-btn {
  background: transparent;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s;
}



.reviews-grid {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 30px;
  padding-bottom: 10px;
}

.reviews-grid::-webkit-scrollbar {
  display: none;
}

.review-card {
  min-width: 300px;
  max-width: 350px;
  background: #fff;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  flex-shrink: 0;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.reviewer-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 10px;
}

.reviewer-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.review-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #333;
  margin-bottom: 12px;
}

.review-card .stars i {
  color: #ffb400;
  margin: 0 2px;
}

@media (max-width: 900px) {
  .review-card { min-width: 260px; }
}

@media (max-width: 600px) {
  .reviews { padding: 60px 10px; }
  .review-card { min-width: 220px; padding: 20px; }
}
/* Reviews section end */

/* FAQs section start */
.faqs {
  padding: 100px 20px;
  background: #f4f7ff; /* light and clean */
  text-align: center;
}

.faqs .section-title {
  font-size: 2.8rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-family: 'Exo 2', sans-serif;
}

.faqs .section-subtitle {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 50px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  background: #fff;
  border-radius: 20px;
  padding: 20px 25px;
  margin-bottom: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  cursor: pointer;
  transition: all 0.4s ease;
  overflow: hidden;
}

.faq-item.active {
  background: #eaf1ff;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question h3 {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin: 0;
}

.faq-toggle {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  margin-top: 10px;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* enough for answer content */
}
/* FAQs section end */

/* Request section start */
.request-section {
  padding: 80px 20px;
  background: var(--bg);
  font-family: 'Exo 2', sans-serif;
  position: relative;
  overflow: hidden;
  min-height: 60vh;
}

/* Request container start */
.request-container {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  align-items: flex-start;
}

/* Request form start */
.request-form {
  flex: 1;
  min-width: 300px;
  background: var(--primary-color);
  padding: 40px 30px;
  border-radius: 18px;
  color: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(0);
  transition: transform 0.45s ease, opacity 0.45s ease;
}

/* Paragraph inside form */
.request-form p {
  margin-bottom: 25px;
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.9;
}

/* Form groups start */
.request-form form .form-group {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

/* Inputs and textarea start */
.request-form input,
.request-form textarea ,#workType {
  flex: 1 1 220px;
  padding: 12px 16px;
  border: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.98rem;
  transition: background 0.2s ease, transform 0.18s ease;
  box-shadow: inset 0 -6px 18px rgba(0,0,0,0.08);
  min-height: 48px;
}
#workType option{
  color: black;
}

.request-form input:focus,
.request-form textarea:focus {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
  outline: 2px solid rgba(255,255,255,0.12);
}

/* Placeholder start */
.request-form input::placeholder,
.request-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

/* Textarea start */
.request-form textarea {
  resize: none;
  width: 100%;
  min-height: 110px;
}

/* Privacy section start */
.privacy {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.privacy input[type="checkbox"] {
  accent-color: #fff;
}

/* Submit button start */
.request-form button {
  background: #fff;
  color: var(--primary-color);
  border: none;
  padding: 12px 32px;
  font-size: 1rem;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.request-form button:hover {
  background: rgba(255, 255, 255, 0.98);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}
/* Request form end */

/* Request info section start */
.request-info {
  flex: 1;
  min-width: 300px;
  opacity: 0;
  transform: translateY(20px);
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.request-info h4 {
  color: var(--primary-color);
  margin-bottom: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.request-info h1 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.request-info p {
  font-size: 1rem;
  margin-bottom: 25px;
  line-height: 1.7;
  color: var(--text);
  opacity: 0.9;
}

.request-info ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin-bottom: 30px;
  padding: 0;
}

.request-info ul li {
  font-weight: 600;
  color: var(--primary-color);
}

/* Call button start */
.call-btn {
  padding: 14px 40px;
  background: var(--text);
  color: #fff;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: 0.3s ease, transform 0.3s ease;
}

.call-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}
/* Request info section end */

/* Fade animations start */
[data-aos] {
  backface-visibility: hidden;
  transform-style: preserve-3d;
  will-change: transform, opacity;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}
/* Fade animations end */

/* Responsive design start */
@media (max-width: 900px) {
  .request-section {
  padding: 100px 20px;
  background: var(--bg);
  font-family: 'Exo 2', sans-serif;
  position: relative;
  overflow: hidden;
  height: max-content;
}
  .request-container {
    flex-direction: column;
  }

  .request-info {
    order: -1;
    margin-bottom: 30px;
  }

  .request-form {
    order: 0;
    width: 100%;
  }
}

@media (max-width: 500px) {
  .request-form,
  .request-info {
    padding: 22px 16px;
    border-radius: 12px;
  }

  .request-info h1 {
    font-size: 2rem;
  }
}
/* Responsive design end */

/* Request section end */

/* Contact us section start */
.contact-us-section {
    padding: 50px 0;
    text-align: center;
}

.contact-header {
    margin-bottom: 40px;
}

.contact-header .subtitle {
    font-size: 16px;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
}

.contact-header .subtitle::after {
    content: '';
    display: block;
    width: 30px;
    height: 3px;
    background-color:var(--primary-color);
    margin: 5px auto 0;
}

.contact-header .title {
    font-size: 40px;
    color: var(--primary-dark);
    margin-top: 10px;
    font-weight: 700;
}

.contact-info-container {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
    border-radius: 20px;
}

.contact-item {
    flex: 1;
    min-width: 200px;
    padding: 0 10px;
    text-align: center;
}

.contact-item .item-title {
    font-size: 20px;
    color:#fff;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-item .item-detail {
    font-size: 18px;
    margin: 0;
    line-height: 1.5;
}

.map-placeholder {
  width: 100%;
  height: 460px;
  background-color: transparent;
  border-top: 4px solid rgba(0,0,0,0.04);
  overflow: hidden;
  box-shadow: 0 -6px 30px rgba(0,0,0,0.06);
  border-radius: 8px 8px 0 0;
}

.map-placeholder iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.functional-link {
    color: inherit; 
    text-decoration: none; 
    transition: color 0.3s; 
}
.functional-link:hover {
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .contact-info-container {
        flex-direction: column;
        gap: 20px;
        padding: 30px 15px;
    }

    .contact-header .title {
        font-size: 30px;
    }
    
    .contact-item .item-detail {
        font-size: 16px;
    }
    .contact-info-container {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
    border-radius: 0px;
}

}
/* Contact us section end */

/* Footer section start */
.site-footer {
  background: var(--primary-color);
  color: #fff;
  padding: 60px 20px 30px;
  font-family: 'Exo 2', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  justify-content: space-between;
}

.footer-section {
  flex: 1 1 220px;
}


.footer-section h3 {
  color: #fff;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-section p {
  line-height: 1.7;
  font-size: 0.95rem;
  opacity: 0.9;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
  font-size: 0.95rem;
  color: #fff;
}

.footer-section ul li i {
  font-size: 18px;
  color: #ffffff;
  margin-right: 10px;
  min-width: 20px;
}

.footer-section ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--secondary-color);
}


/* Footer bottom start */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 20px;
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    gap: 30px;
  }

  .footer-section {
    flex: 1 1 100%;
  }
}

@media (max-width: 500px) {
  .site-footer {
    padding: 40px 15px 20px;
  }
}
/* Footer section end */

/* Float icons section start */
.float-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.float-btn img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: transform 0.3s;
}

.float-btn:hover img {
    transform: scale(1.1);
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .float-btn img {
        width: 40px;
        height: 40px;
    }
    .float-buttons {
        right: 15px;
        bottom: 15px;
        gap: 10px;
    }
}
/* Float icons section end */

/* Social media icons start */
.footer-social {
  margin-top: 15px;
  display: flex;
  gap: 15px; /* Icons ke beech space */
}

/* Social media links start */
.footer-social a {
  font-size: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  width: 45px;
  height: 45px;
  border-radius: 50%; /* Circle shape */
  transition: all 0.3s ease;
  box-shadow: 0 3px 6px rgba(186, 175, 175, 0.2);
  text-decoration: none;
}

/* Hover effect start */
.footer-social a:hover {
  transform: scale(1.3) rotate(10deg);
  box-shadow: 0 5px 15px rgba(185, 182, 182, 0.3);
}

/* Optional: keep original brand color while hover adds subtle background */
.footer-social a:hover i {
  color: #fff;
}

.footer-social a:hover {
  background-color: rgba(0,0,0,0.2);
}
/* Social media icons end */
