@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #f5f3fb;
  color: #2d255f;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

.topbar {
  width: 100%;
  height: 74px;
  background: rgba(255, 255, 255, 0.98);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 6.5%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.logo img {
  height: 54px;
  width: auto;
  display: block;
}

.logo {
  font-size: 24px;
  font-weight: 800;
  color: #8d1794;
}

.logo span {
  color: #2443a2;
}

nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  font-weight: 600;
}

nav a {
  padding: 10px 14px;
  border-radius: 999px;
  transition: 0.3s ease;
}

nav a:hover {
  background: linear-gradient(90deg, #BB5EA0, #8E58A2);
  color: #fff;
}

.call-btn {
  border: 1px solid #e8e2ef;
  border-radius: 999px;
  padding: 13px 24px;
  font-size: 15px;
  font-weight: 500;
  color: #4b4b59;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.hero {
  min-height: 92vh;
  margin-top: 74px;
  background:
    linear-gradient(92deg, rgba(47, 45, 155, 0.92) 0%, rgba(78, 66, 175, 0.70) 28%, rgba(255, 255, 255, 0.06) 60%),
    url('images/hero.png') 62% center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 8.5%;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  left: -280px;
  bottom: -220px;
  background: rgba(152, 75, 209, 0.42);
  border-radius: 50%;
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  left: -4%;
  bottom: -70px;
  width: 110%;
  height: 260px;
  background: #f5f3fb;
  border-radius: 55% 55% 0 0;
  transform: rotate(-4deg);
  z-index: 1;
}

.hero-content {
  max-width: 620px;
  color: #fff;
  z-index: 2;
  position: relative;
}

.hero-content h1 {
  font-size: 68px;
  line-height: 1.04;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  font-weight: 700;
}

.hero-content p {
  max-width: 560px;
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.95);
}

.btn-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 15px 28px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(34, 28, 98, 0.12);
  transition: 0.3s ease;
}

.btn:hover {
  background: linear-gradient(90deg, #BB5EA0, #8E58A2);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 16px 28px rgba(142, 88, 162, 0.28);
}

.btn-primary {
  background: #fff;
  color: #232169;
  border-color: #fff;
}

.btn-pink,
.price {
  background: #be238f;
  color: #fff;
}

.btn-blue {
  background: #1769ff;
  color: #fff;
  border-radius: 10px;
}

.container {
  width: min(88%, 1280px);
  margin: auto;
  position: relative;
  z-index: 5;
}

.about-box {
  scroll-margin-top: 120px;
  margin-top: -132px;
  background: #fff;
  padding: 32px 28px 26px;
  border-radius: 14px;
  box-shadow: 0 22px 70px rgba(50, 30, 100, 0.14);
  border-left: 5px solid #2c9bff;
}

.tag-title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #8E58A2, #BB5EA0);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 18px;
  border: none;
  padding: 12px 26px 14px;
  border-radius: 28px 28px 0 28px;
  box-shadow: 0 10px 22px rgba(187, 94, 160, 0.22);
}

.about-box h2 {
  font-size: 29px;
  line-height: 1.35;
  margin-bottom: 6px;
  color: #1f2367;
}

.about-box h2 span {
  color: #7f8499;
  font-weight: 400;
}

.stats {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stat-card {
  background: #fff;
  text-align: center;
  padding: 24px 10px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(68, 43, 122, 0.08);
}

.stat-card h3 {
  font-size: 22px;
  color: #2c2878;
  margin-bottom: 6px;
}

.stat-card p {
  font-size: 13px;
  color: #555;
  margin-top: 4px;
}

section {
  padding: 90px 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-size: 34px;
  color: #2c2878;
}

.section-title p {
  font-size: 16px;
  color: #777;
  margin-top: 10px;
}

.underline {
  width: 100px;
  height: 4px;
  background: #9e208b;
  margin: 12px auto 0;
}

.property-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.property-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(45, 35, 89, 0.10);
  position: relative;
  transition: 0.3s ease;
}

.property-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 38px rgba(45, 35, 89, 0.18);
}

.property-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.badge {
  position: absolute;
  right: 14px;
  top: 168px;
  background: #a51a96;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 7px 12px;
  border-radius: 999px;
}

.property-card div {
  padding: 18px;
}

.property-card h4 {
  font-size: 18px;
  margin-bottom: 8px;
}

.property-card p {
  font-size: 13px;
  color: #777;
}

.view-details {
  display: inline-block;
  margin-top: 14px;
  color: #8d1794;
  font-size: 14px;
  font-weight: 700;
}

.features {
  background:
    linear-gradient(rgba(247, 244, 253, 0.92), rgba(247, 244, 253, 0.92)),
    url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1600&q=80') center/cover;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: #fff;
  padding: 40px 28px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(45, 35, 89, 0.10);
}

.feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  background: #f6e6fa;
  color: #b61aa0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 28px;
}

.feature-card h3 {
  margin-bottom: 14px;
  font-size: 22px;
}

.feature-card p {
  color: #666;
  font-size: 15px;
  line-height: 1.7;
}

.details-hero {
  min-height: 520px;
  background:
    linear-gradient(100deg, rgba(44, 43, 128, 0.8), rgba(255, 255, 255, 0.08)),
    url('https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?auto=format&fit=crop&w=1600&q=80') center/cover;
  color: #fff;
  padding: 120px 9% 60px;
  position: relative;
}

.details-hero h1 {
  font-size: 48px;
  margin-bottom: 12px;
}

.details-buttons {
  margin-top: 22px;
}

.thumbs {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 16px;
  margin-top: 60px;
  max-width: 720px;
}

.thumbs img {
  height: 145px;
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  border: 5px solid #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.details-text {
  background: #fff;
  padding: 35px;
  border-radius: 0 0 70px 0;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.08);
  margin-top: -20px;
}

.details-text h2 {
  text-align: center;
  margin-bottom: 18px;
  color: #2d2878;
}

.details-text p,
.details-text li {
  font-size: 14px;
  color: #444;
  line-height: 1.8;
}

.details-text ul {
  padding-left: 22px;
  margin-top: 12px;
}

.map-section {
  padding-top: 35px;
}

.map-title {
  background: #2e287d;
  color: #fff;
  text-align: center;
  padding: 14px;
  font-size: 24px;
  margin-top: 40px;
}

.map-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

.directors {
  background:
    linear-gradient(rgba(247, 244, 253, 0.94), rgba(247, 244, 253, 0.94)),
    url('https://images.unsplash.com/photo-1494526585095-c41746248156?auto=format&fit=crop&w=1600&q=80') center/cover;
}

.director-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.director-card {
  background: transparent;
  color: #fff;
  text-align: center;
  border-radius: 0;
  overflow: visible;
  position: relative;
}

.director-card::before {
  display: none;
}

.director-image-wrap {
  position: relative;
  overflow: hidden;
  background: #fff;
  border-radius: 16px 16px 0 0;
}

.director-card img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: 0.4s ease;
}

.director-card:hover img {
  transform: scale(1.03);
}

.director-info {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  text-align: center;
  z-index: 2;
}

.director-info h4 {
  background: #213a96;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  padding: 18px 10px 14px;
  margin: 0;
}

.director-info p {
  background: linear-gradient(90deg, #BB5EA0, #8E58A2);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 10px;
  margin: 0;
}

.contact {
  background: #f9f6ff;
  border-radius: 90px 0 0 0;
}

form {
  max-width: 700px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

input,
textarea {
  border: none;
  background: #fff;
  padding: 16px 18px;
  border-radius: 10px;
  outline: none;
  box-shadow: 0 4px 12px rgba(40, 30, 90, 0.05);
  font-size: 15px;
}

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

.location-map {
  width: 100%;
  height: 420px;
  border: 0;
  border-radius: 18px;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.12);
}

footer {
  text-align: center;
  padding: 25px;
  background: #2e287d;
  color: #fff;
  font-size: 13px;
}

@media (max-width: 1100px) {
  .hero-content h1 {
    font-size: 56px;
  }

  .hero-content p {
    font-size: 18px;
  }

  .property-grid,
  .feature-grid,
  .director-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .topbar {
    padding: 0 5%;
    height: 66px;
  }

  .logo img {
    height: 46px;
  }

  nav {
    display: none;
    
  }
  nav.show {
    display: block;
  }

  .hero,
  .details-hero {
    padding-left: 6%;
    padding-right: 6%;
  }

  .hero {
    min-height: 760px;
    margin-top: 66px;
    background-position: 72% center;
  }

  .hero-content h1 {
    font-size: 48px;
  }

  .hero-content p {
    font-size: 17px;
    max-width: 480px;
  }

  .container {
    width: 92%;
  }

  .stats,
  .property-grid,
  .feature-grid,
  .director-grid {
    grid-template-columns: 1fr 1fr;
    

  }

  .thumbs {
    grid-template-columns: 1fr 1fr;
  }

  .about-box {
    margin-top: -90px;
  }
}

@media (max-width: 600px) {
  .hero {
    min-height: 690px;
    background-position: 70% center;
  }

  .hero-content h1,
  .details-hero h1 {
    font-size: 38px;
  }

  .hero-content p {
    font-size: 15px;
    margin-bottom: 26px;
  }

  .btn {
    min-height: 46px;
    padding: 12px 18px;
    font-size: 15px;
  }

  .about-box h2 {
    font-size: 22px;
  }

  .tag-title {
    font-size: 20px;
    padding: 10px 20px 11px;
  }

  .stats,
  .property-grid,
  .feature-grid,
  .director-grid,
  .two-col {
    grid-template-columns: 1fr;
  }

  .call-btn {
    display: none;
  }

  .about-box {
    margin-top: -50px;
    padding: 22px 18px;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .property-card img {
    height: 220px;
  }

  .badge {
    top: 178px;
  }
}

/* Scrollable property slider */
.property-section {
  padding-top: 78px;
  padding-bottom: 72px;
  background: #fbf8ff;
  border-radius: 0 0 90px 0;
  overflow: hidden;
}

.property-section::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -190px;
  top: -180px;
  border-radius: 50%;
  background: rgba(142, 88, 162, 0.08);
}

.property-slider-wrap {
  position: relative;
  padding: 0 4px 14px;
}

.property-slider-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 4px 18px;
  scrollbar-width: none;
}

.property-slider-track::-webkit-scrollbar {
  display: none;
}

.property-slider-track .property-card {
  flex: 0 0 calc((100% - 72px) / 4);
  min-width: 255px;
  scroll-snap-align: start;
  border-radius: 18px;
}

.property-link {
  display: block;
  color: inherit;
}

.property-slider-track .property-card img {
  height: 220px;
}

.property-slider-track .badge {
  top: 176px;
  right: 14px;
  background: #c042a7;
}

.property-slider-track .badge-rent {
  background: #7b55bc;
}

.property-slider-track .property-card div {
  padding: 16px 18px 18px;
}

.property-slider-track .property-card h4 {
  color: #28216c;
  font-size: 17px;
  line-height: 1.25;
}

.property-slider-track .property-card p {
  font-size: 12px;
  color: #424061;
}

.property-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
}

.property-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  background: #d5d0de;
  transition: 0.3s ease;
}

.property-dot.active {
  width: 16px;
  height: 16px;
  background: #322886;
  box-shadow: 0 0 0 5px rgba(50, 40, 134, 0.10);
}

@media (max-width: 1100px) {
  .property-slider-track .property-card {
    flex-basis: calc((100% - 24px) / 2);
  }
}

@media (max-width: 650px) {
  .property-section {
    border-radius: 0 0 48px 0;
  }

  .property-slider-track .property-card {
    flex-basis: 86%;
    min-width: 260px;
  }
}

/* Individual property details pages */
.property-page-main {
  padding-top: 74px;
}

.property-details-hero {
  min-height: 560px;
  display: flex;
  align-items: center;
  padding: 110px 8.5% 80px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.property-details-hero::after {
  content: "";
  position: absolute;
  left: -5%;
  bottom: -92px;
  width: 110%;
  height: 190px;
  background: #f5f3fb;
  border-radius: 55% 55% 0 0;
  transform: rotate(-3deg);
}

.property-details-content {
  width: min(680px, 100%);
  position: relative;
  z-index: 2;
}

.back-link {
  display: inline-flex;
  align-items: center;
  margin-bottom: 22px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.16);
  padding: 10px 16px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.property-details-content h1 {
  font-size: 58px;
  line-height: 1.05;
  margin-bottom: 18px;
}

.property-details-content p {
  font-size: 18px;
  line-height: 1.7;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.94);
}

.property-meta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: -52px;
  position: relative;
  z-index: 6;
}

.property-meta-card {
  background: #fff;
  padding: 22px 18px;
  border-radius: 14px;
  box-shadow: 0 16px 35px rgba(45, 35, 89, 0.12);
}

.property-meta-card span {
  display: block;
  font-size: 12px;
  color: #7f8499;
  margin-bottom: 8px;
  font-weight: 600;
}

.property-meta-card strong {
  color: #24206d;
  font-size: 15px;
  line-height: 1.4;
}

.property-page-gallery {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 18px;
}

.property-page-gallery img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 14px 35px rgba(45, 35, 89, 0.12);
}

.property-page-gallery img:first-child {
  grid-row: span 2;
  height: 478px;
}

.property-cta {
  background: linear-gradient(90deg, #2e287d, #8E58A2);
  color: #fff;
  border-radius: 24px;
  padding: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 18px 45px rgba(45, 35, 89, 0.14);
}

.property-cta h2 {
  font-size: 30px;
  margin-bottom: 10px;
}

.property-cta p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .property-page-main {
    padding-top: 66px;
  }

  .property-details-content h1 {
    font-size: 42px;
  }

  .property-meta-grid {
    grid-template-columns: 1fr 1fr;
  }

  .property-page-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .property-page-gallery img:first-child {
    grid-row: auto;
    height: 230px;
  }

  .property-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .property-details-hero {
    min-height: 500px;
    padding: 90px 6% 70px;
  }

  .property-details-content h1 {
    font-size: 34px;
  }

  .property-details-content p {
    font-size: 15px;
  }

  .property-meta-grid,
  .property-page-gallery {
    grid-template-columns: 1fr;
  }

  .property-cta {
    padding: 26px 20px;
  }

  .property-cta h2 {
    font-size: 24px;
  }
}
.location-section {
  padding: 70px 0 0;
  background:
    linear-gradient(rgba(247, 244, 253, 0.85), rgba(247, 244, 253, 0.85)),
    radial-gradient(circle at left bottom, rgba(142, 88, 162, 0.20), transparent 35%),
    radial-gradient(circle at right bottom, rgba(187, 94, 160, 0.18), transparent 35%);
}

.location-title {
  margin-bottom: 18px;
}

.location-title h2 {
  font-size: 28px;
  color: #2e287d;
}

.location-map-box {
  width: 78%;
  max-width: 980px;
  height: 420px;
  margin: 0 auto;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  border: 2px solid #ffffff;
  box-shadow: 0 18px 45px rgba(45, 35, 89, 0.18);
  z-index: 3;
}

.location-map-box .location-map {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  border-radius: 22px;
}

.office-address {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 72%;
  background: #4b347d;
  color: #fff;
  padding: 16px 24px;
  border-radius: 10px 10px 0 0;
  font-size: 14px;
  line-height: 1.5;
  box-shadow: 0 -8px 20px rgba(0, 0, 0, 0.16);
}

.office-address strong {
  margin-right: 8px;
  font-weight: 800;
}

.site-footer {
  margin-top: -80px;
  padding: 150px 20px 24px;
  text-align: center;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(100, 51, 167, 0.88), rgba(28, 25, 100, 0.98)),
    radial-gradient(circle at 25% 10%, rgba(255, 255, 255, 0.22), transparent 30%),
    linear-gradient(135deg, #8E58A2, #2e287d);
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  width: 120%;
  height: 150px;
  left: -10%;
  top: -80px;
  background: #f5f3fb;
  border-radius: 0 0 50% 50%;
}

.footer-content {
  position: relative;
  z-index: 2;
}

.footer-content h3 {
  font-size: 18px;
  margin-bottom: 14px;
  font-weight: 800;
}

.footer-content p {
  font-size: 13px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.88);
}

.footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin: 15px 0 18px;
}

.footer-social a {
  width: 32px;
  height: 32px;
  background: #d13aa5;
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 700;
  transition: 0.3s ease;
}

.footer-social a:hover {
  background: #fff;
  color: #8E58A2;
  transform: translateY(-3px);
}

.copyright {
  font-size: 12px !important;
  margin-bottom: 0 !important;
  color: rgba(255, 255, 255, 0.75) !important;
}

@media (max-width: 900px) {
  .location-map-box {
    width: 92%;
    height: 360px;
  }

  .office-address {
    width: 88%;
    font-size: 12px;
    padding: 12px 15px;
  }

  .site-footer {
    margin-top: -55px;
    padding-top: 120px;
  }
}

@media (max-width: 600px) {
  .location-map-box {
    width: 100%;
    height: 310px;
  }

  .office-address {
    width: 92%;
    font-size: 11px;
  }

  .footer-content p {
    font-size: 12px;
    line-height: 1.7;
  }
}
/* =========================
   ABOUT PAGE DESIGN
========================= */

.about-main {
  padding-top: 74px;
  background: #f5f3fb;
  overflow: hidden;
}

/* About Hero Section */
.about-hero {
  min-height: 520px;
  display: flex;
  align-items: center;
  padding: 120px 8.5% 90px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  left: -220px;
  bottom: -240px;
  background: rgba(187, 94, 160, 0.35);
  border-radius: 50%;
  z-index: 1;
}

.about-hero::after {
  content: "";
  position: absolute;
  left: -5%;
  bottom: -85px;
  width: 110%;
  height: 180px;
  background: #f5f3fb;
  border-radius: 55% 55% 0 0;
  transform: rotate(-3deg);
  z-index: 1;
}

.about-hero-content {
  max-width: 760px;
  position: relative;
  z-index: 2;
}

.about-hero-content h1 {
  font-size: 64px;
  line-height: 1.05;
  margin-bottom: 22px;
  font-weight: 800;
  letter-spacing: -1.5px;
}

.about-hero-content p {
  font-size: 19px;
  line-height: 1.8;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.94);
}

/* About Content Box */
.about-main .about-box {
  width: min(88%, 1100px);
  margin: -75px auto 90px;
  background: #fff;
  padding: 48px 46px;
  border-radius: 24px;
  position: relative;
  z-index: 5;
  box-shadow: 0 24px 70px rgba(45, 35, 89, 0.14);
  border-left: 6px solid #8E58A2;
}

.about-main .about-box h2 {
  font-size: 32px;
  color: #24206d;
  margin: 30px 0 14px;
  position: relative;
  padding-left: 18px;
}

.about-main .about-box h2:first-child {
  margin-top: 0;
}

.about-main .about-box h2::before {
  content: "";
  width: 6px;
  height: 70%;
  background: linear-gradient(180deg, #BB5EA0, #8E58A2);
  position: absolute;
  left: 0;
  top: 15%;
  border-radius: 10px;
}

.about-main .about-box p {
  font-size: 16px;
  line-height: 1.9;
  color: #55536a;
  margin-bottom: 18px;
}

/* About Values List */
.about-main .about-box ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 22px;
}

.about-main .about-box li {
  background: #fbf8ff;
  padding: 20px 20px 20px 54px;
  border-radius: 16px;
  color: #55536a;
  line-height: 1.7;
  position: relative;
  box-shadow: 0 10px 25px rgba(45, 35, 89, 0.06);
  border: 1px solid #eee7f7;
}

.about-main .about-box li::before {
  content: "✓";
  position: absolute;
  left: 20px;
  top: 22px;
  width: 24px;
  height: 24px;
  background: linear-gradient(90deg, #BB5EA0, #8E58A2);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 800;
}

.about-main .about-box li strong {
  color: #24206d;
  font-weight: 800;
}

/* Optional extra beautiful section style if you add more paragraphs */
.about-main .about-box .highlight-text {
  background: linear-gradient(90deg, rgba(142, 88, 162, 0.10), rgba(187, 94, 160, 0.10));
  border-left: 5px solid #BB5EA0;
  padding: 22px 24px;
  border-radius: 16px;
  margin: 24px 0;
  color: #39335f;
  font-weight: 500;
}

/* Responsive About Page */
@media (max-width: 900px) {
  .about-main {
    padding-top: 66px;
  }

  .about-hero {
    min-height: 460px;
    padding: 100px 6% 80px;
  }

  .about-hero-content h1 {
    font-size: 48px;
  }

  .about-hero-content p {
    font-size: 17px;
  }

  .about-main .about-box {
    width: 92%;
    margin-top: -55px;
    padding: 36px 28px;
  }

  .about-main .about-box ul {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .about-hero {
    min-height: 420px;
    padding: 85px 6% 70px;
  }

  .about-hero-content h1 {
    font-size: 38px;
  }

  .about-hero-content p {
    font-size: 15px;
    line-height: 1.7;
  }

  .about-main .about-box {
    width: 92%;
    padding: 28px 20px;
    margin-bottom: 60px;
    border-radius: 18px;
  }

  .about-main .about-box h2 {
    font-size: 24px;
  }

  .about-main .about-box p,
  .about-main .about-box li {
    font-size: 14px;
  }

  .about-main .about-box li {
    padding: 18px 16px 18px 48px;
  }

  .about-main .about-box li::before {
    left: 16px;
    top: 20px;
  }
}
/* Gallery Page Design */
body {
  background: #f5f3fb;
  color: #2d255f;
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
}

/* Header fixed thakar jonno gallery niche namano */
.thumbs {
  max-width: 1200px;
  margin: 120px auto 60px;
  padding: 0 25px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

/* Gallery Images */
.thumbs img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 18px;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(45, 37, 95, 0.16);
  transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
  background: #fff;
}

/* Hover effect */
.thumbs img:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 20px 45px rgba(45, 37, 95, 0.28);
  filter: brightness(1.05);
}

/* Lightbox background */
.lightbox {
  display: none;
  position: fixed;
  z-index: 3000;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  justify-content: center;
  align-items: center;
  padding: 30px;
}

/* Big image */
.lightbox-img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: 18px;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: zoomIn 0.3s ease;
}

/* Close button */
.close {
  position: absolute;
  top: 25px;
  right: 40px;
  color: white;
  font-size: 45px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
}

.close:hover {
  color: #ffcc00;
}

/* Zoom animation */
@keyframes zoomIn {
  from {
    transform: scale(0.75);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Mobile View Fix */
@media (max-width: 900px) {
  
  /* Initially hide the nav items */
  nav {
    display: none; /* Hide by default */
    position: fixed; /* Fix position at the top-right */
    top: 0;
    right: 0; /* Position at the top-right corner */
    background-color: #fff;
    width: 250px; /* Adjust the width of the menu */
    height: 100vh; /* Full height */
    padding-top: 60px; /* Space for top header items */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Add a shadow for depth */
    z-index: 1000; /* Make sure it's above other content */
    transform: translateX(100%); /* Initially off-screen */
    transition: transform 0.3s ease-in-out; /* Smooth sliding effect */
  }

  /* Show the menu when 'show' class is added */
  nav.show {
      display: block; /* Show the nav when 'show' class is added */

    transform: translateX(0);  /* Slide in from the right */
  }

  /* Hamburger Bar */
  .hamburger {
    display:
    position: absolute;
    top: 18px;
    right: 20px;
    width: 28px;
    height: 22px;
    cursor: pointer;
    z-index: 1100; /* Ensure it's above the nav */
  }
  

  /* Navigation Menu Links */
  nav a {
    padding: 15px 20px;
    font-size: 18px;
    text-align: left;
    color: #333;
    display: block;
    text-decoration: none;
    transition: background 0.3s ease;
  }

  /* Hover effect on menu items */
  nav a:hover {
    background: #f0f0f0;
  }

  /* Topbar (Header) styles */
  .topbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    z-index: 100; /* Make sure the topbar is on top */
  }

  /* Logo inside the header */
  .logo {
    font-size: 24px;
    font-weight: 800;
    color: #8d1794;
  }
}
/* Click zoom effect */
.thumbs img.zoomed {
  position: fixed;
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  transform: translate(-50%, -50%) scale(1);
  z-index: 4000;
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  background: #fff;
  animation: imageZoomIn 0.3s ease;
}

.zoom-bg {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  z-index: 3999;
  display: none;
}

.zoom-bg.show {
  display: block;
}

@keyframes imageZoomIn {
  from {
    transform: translate(-50%, -50%) scale(0.65);
    opacity: 0;
  }

  to {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}
/* Desktop view */
.navbar {
  display: flex;
}

.navbar a {
  padding: 14px 20px;
  text-decoration: none;
}

/* Mobile view */
@media (max-width: 768px) {
  .navbar {
    display: none;  /* Hide the navbar links */
  }

  .hamburger {
    display: block;  /* Show the hamburger icon */
  }
}


/* ==================================================
   FINAL MOBILE HEADER MENU FIX
   Keep this section at the very bottom of style.css
================================================== */
.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 8px;
  position: relative;
  z-index: 5001;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: #2e287d;
  border-radius: 999px;
  margin: 5px auto;
  transition: 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 900px) {
  .topbar {
    height: 66px;
    padding: 0 5%;
    z-index: 5000;
  }

  .logo img {
    height: 46px;
  }

  .hamburger {
    display: block;
  }

  .call-btn {
    display: none;
  }

  nav {
    position: fixed;
    top: 66px;
    right: 12px;
    width: min(82vw, 310px);
    height: auto;
    max-height: calc(100vh - 82px);
    overflow-y: auto;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 18px;
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(45, 35, 89, 0.22);
    transform: translateY(-14px) scale(0.96);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.25s ease;
    z-index: 4999;
  }

  nav.show {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  nav a {
    display: block;
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    color: #2e287d;
    font-size: 16px;
    font-weight: 700;
    text-align: left;
  }

  nav a:hover {
    background: linear-gradient(90deg, #BB5EA0, #8E58A2);
    color: #ffffff;
  }
}

@media (max-width: 420px) {
  nav {
    left: 12px;
    right: 12px;
    width: auto;
  }
}

.gallery-page-thumbs {
  padding-top: 110px;
  margin-left: auto;
  margin-right: auto;
  width: min(92%, 1100px);
  max-width: 1100px;
}

@media (max-width: 600px) {
  .gallery-page-thumbs {
    padding-top: 92px;
  }
}
