:root {
  --primary-green: #899a63;
  --text-dark: #222222;
  --text-light: #666666;
  --bg-color: #fbfbf9;
  --nav-bg: #f3f3ee;
  --font-heading: "Playfair Display", sans-serif;
  --font-body: "Inter", sans-serif;
}
html,
body {
  overflow-x: hidden;
}
/* html {
  background: red;
}
body {
  background: white;
} */
/* img, video {
  max-width: 100%;
  height: auto;
} */
* {
  /* max-width: 100%; */
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* outline: 1px solid red; */
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--text-dark);
  background-image: radial-gradient(#e5e5e5 1px, transparent 1px);
  background-size: 40px 40px;
  overflow-x: hidden;
}
a {
  text-decoration: none;
}

/* ----- HEADER / NAVBAR ----- */

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
  width: 100%;

  position: sticky;
  top: 0;
  z-index: 1000;

  background: white;
}

.logo {
  font-family: var(--font-heading);
  font-size: 28px;
  font-style: italic;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-dark);
}

.logo i {
  color: var(--primary-green);
  font-size: 20px;
}

.nav-links {
  display: flex;
  background-color: var(--nav-bg);
  border-radius: 40px;
  padding: 8px;
  list-style: none;
  gap: 10px;
}

.nav-links li a {
  text-decoration: none;
  color: var(--text-dark);
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
}

.nav-links li a.active,
.nav-links li a:hover {
  background-color: var(--primary-green);
  color: white;
}

.nav-buttons {
  display: flex;
  gap: 15px;
}

.btn {
  padding: 12px 28px;
  border-radius: 30px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn-filled {
  background-color: var(--primary-green);
  color: white;
}

.btn-filled:hover {
  background-color: #788954 !important;
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-dark);
  border: 1px solid #ccc;
}

.btn-outline:hover {
  border-color: var(--primary-green);
  color: var(--primary-green);
}

/* ----- HERO SECTION ----- */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 5%;
  min-height: 90vh;
  max-width: 1400px;
  margin: 0 auto;
  gap: 60px;
  padding: clamp(38px, 4.167vw, 160px) 0 clamp(60px, 8.698vw, 254px) 0;
  position: relative;
  overflow: hidden;
}
.bubbles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.bubble {
  position: absolute;
  background: #93969434;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 122, 0.1);
  animation: float 15s infinite ease-in-out;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(30px, -20px) scale(1.1);
  }
  50% {
    transform: translate(-20px, 30px) scale(0.9);
  }
  75% {
    transform: translate(20px, 20px) scale(1.05);
  }
}

/* Bubble sizes and positions */
.b1 {
  width: 100px;
  height: 100px;
  top: 50px;
  left: 50px;
  animation-duration: 20s;
}
.b2 {
  width: 200px;
  height: 200px;
  top: 30%;
  right: 5%;
  animation-duration: 18s;
  animation-delay: 2s;
  background: rgba(212, 175, 122, 0.03);
}
.b3 {
  width: 150px;
  height: 150px;
  bottom: 10%;
  left: 10%;
  animation-duration: 15s;
  animation-delay: 1s;
}
.b4 {
  width: 100px;
  height: 100px;
  top: 20%;
  left: 20%;
  animation-duration: 12s;
  animation-delay: 3s;
}
.b5 {
  width: 150px;
  height: 150px;
  bottom: 50px;
  right: 10%;
  animation-duration: 25s;
  animation-delay: 1s;
  background: rgba(255, 217, 0, 0.093);
}
.b6 {
  width: 80px;
  height: 80px;
  top: 60%;
  left: 5%;
  animation-duration: 10s;
  animation-delay: 4s;
}
.b7 {
  width: 180px;
  height: 180px;
  top: 5%;
  right: 20%;
  animation-duration: 22s;
  animation-delay: 2s;
}
.b8 {
  width: 120px;
  height: 120px;
  bottom: 30%;
  right: 25%;
  animation-duration: 16s;
  animation-delay: 3s;
}
@media (max-width: 1024px) {
  .b1 {
    width: 80px;
    height: 80px;
    top: 30px;
    left: 30px;
  }
  .b2 {
    width: 150px;
    height: 150px;
    top: 25%;
    right: 3%;
  }
  .b3 {
    width: 120px;
    height: 120px;
    bottom: 8%;
    left: 8%;
  }
  .b4 {
    width: 80px;
    height: 80px;
    top: 15%;
    left: 15%;
  }
  .b5 {
    width: 120px;
    height: 120px;
    bottom: 30px;
    right: 8%;
  }
  .b6 {
    width: 60px;
    height: 60px;
    top: 55%;
    left: 3%;
  }
  .b7 {
    width: 140px;
    height: 140px;
    top: 3%;
    right: 15%;
  }
  .b8 {
    width: 100px;
    height: 100px;
    bottom: 25%;
    right: 20%;
  }
}

/* ========== MOBILE LANDSCAPE (576px - 767px) ========== */
@media (max-width: 767px) {
  .b1 {
    width: 60px;
    height: 60px;
    top: 20px;
    left: 20px;
    animation-duration: 15s;
  }
  .b2 {
    width: 100px;
    height: 100px;
    top: 20%;
    right: 2%;
    animation-duration: 14s;
  }
  .b3 {
    width: 90px;
    height: 90px;
    bottom: 5%;
    left: 5%;
    animation-duration: 12s;
  }
  .b4 {
    width: 60px;
    height: 60px;
    top: 10%;
    left: 10%;
    animation-duration: 10s;
  }
  .b5 {
    width: 90px;
    height: 90px;
    bottom: 20px;
    right: 5%;
    animation-duration: 18s;
  }
  .b6 {
    width: 50px;
    height: 50px;
    top: 50%;
    left: 2%;
    animation-duration: 8s;
  }
  .b7 {
    width: 100px;
    height: 100px;
    top: 2%;
    right: 10%;
    animation-duration: 16s;
  }
  .b8 {
    width: 70px;
    height: 70px;
    bottom: 20%;
    right: 15%;
    animation-duration: 12s;
  }
}
/* ========== MOBILE PORTRAIT (up to 575px) ========== */
@media (max-width: 575px) {
  /* Performance ke liye mobile pe kam bubbles */
  .b1 {
    width: 40px;
    height: 40px;
    top: 10px;
    left: 10px;
    animation-duration: 12s;
  }
  .b2 {
    width: 70px;
    height: 70px;
    top: 15%;
    right: 1%;
    animation-duration: 10s;
  }
  .b3 {
    width: 60px;
    height: 60px;
    bottom: 3%;
    left: 3%;
    animation-duration: 9s;
  }
  .b4 {
    width: 40px;
    height: 40px;
    top: 13%;
    left: 34%;
    animation-duration: 8s; /* Chhupa bhi sakte ho */
  }
  .b5 {
    width: 60px;
    height: 60px;
    bottom: 10px;
    right: 3%;
    animation-duration: 14s;
  }
  .b6 {
    width: 30px;
    height: 30px;
    top: 26%;
    left: 7%;
    animation-duration: 6s;
  }
  .b7 {
    width: 70px;
    height: 70px;
    top: 1%;
    right: 5%;
    animation-duration: 12s;
  }
  .b8 {
    width: 50px;
    height: 50px;
    bottom: 15%;
    right: 10%;
    animation-duration: 10s;
  }
}

/* ========== VERY SMALL MOBILE (up to 375px) ========== */
@media (max-width: 375px) {
  .b1 {
    width: 30px;
    height: 30px;
  }
  .b2 {
    width: 50px;
    height: 50px;
  }
  .b3 {
    width: 40px;
    height: 40px;
  }
  .b4 {
    width: 40px;
    height: 40px;
  }
  .b5 {
    width: 40px;
    height: 40px;
  }
  .b6 {
    width: 40px;
    height: 40px;
  }
  .b8 {
    width: 40px;
    height: 40px;
  }
  .b7 {
    width: 50px;
    height: 50px;
  }
}
.hero-content,
.hero-images {
  position: relative;
  z-index: 10;
}
/* ---------- LEFT CONTENT ---------- */
.hero-content {
  flex: 1;
  max-width: 550px;
}

.bunting-placeholder {
  font-size: 42px;
  color: var(--primary-green);
  margin-bottom: 20px;
  letter-spacing: -5px;
  opacity: 0.8;
  line-height: 1;
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: 56px;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 500;
}

.hero-content h1 span {
  color: var(--primary-green);
}

.hero-content p {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 90%;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 34px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  border: 2px solid var(--primary-green);
  cursor: pointer;
  transition: all 0.3s ease;
  background: transparent;
  color: var(--primary-green);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.3px;
}

.btn-filled {
  background: var(--primary-green);
  color: white;
}

.btn-filled:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
  background: var(--primary-green);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* ---------- RIGHT IMAGES (DESKTOP) ---------- */
.hero-images {
  flex: 1;
  position: relative;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.img-main {
  width: 450px;
  height: 500px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.img-arch {
  position: absolute;
  width: 200px;
  height: 260px;
  object-fit: cover;
  border-radius: 100px 100px 20px 20px;
  left: 20px;
  bottom: 20px;
  z-index: 3;
  box-shadow: var(--shadow-lg);
  border: 8px solid white;
  transition: transform 0.3s ease;
}

.img-rect {
  position: absolute;
  width: 220px;
  height: 300px;
  object-fit: cover;
  border-radius: 24px;
  right: 0;
  top: 80px;
  z-index: 1;
  opacity: 0.95;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease;
}

/* Hover effects */
.img-main:hover,
.img-arch:hover,
.img-rect:hover {
  transform: scale(1.02);
  z-index: 10;
}

/* ========== RESPONSIVE DESIGN ========== */

/* Large Desktop (1200px - 1400px) */
@media (max-width: 1300px) {
  .hero-content h1 {
    font-size: 48px;
  }

  .img-main {
    width: 400px;
    height: 450px;
  }

  .img-arch {
    width: 170px;
    height: 230px;
    left: 10px;
  }

  .img-rect {
    width: 190px;
    height: 270px;
    right: -5px;
  }
}

/* Tablet Landscape (992px - 1200px) */
@media (max-width: 1100px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 50px 5%;
    gap: 50px;
    min-height: auto;
  }

  .hero-content {
    max-width: 700px;
    margin: 0 auto;
  }

  .hero-content p {
    margin: 0 auto 40px;
    max-width: 600px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-images {
    width: 100%;
    height: 550px;
    margin-top: 20px;
  }

  .img-main {
    width: min(450px, 80vw);
    height: auto;
    max-height: 500px;
    aspect-ratio: 450/500;
  }

  .img-arch {
    width: min(200px, 30vw);
    height: auto;
    aspect-ratio: 200/260;
    left: 5%;
  }

  .img-rect {
    width: min(220px, 32vw);
    height: auto;
    aspect-ratio: 220/300;
    right: 5%;
  }
}

/* ===== MOBILE RESPONSIVE - GRID LAYOUT (APPROACH #3) ===== */
@media (max-width: 700px) {
  .hero {
    padding: 40px 5%;
    gap: 40px;
  }

  .hero-content h1 {
    font-size: 38px;
  }

  .bunting-placeholder {
    font-size: 32px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
    padding: 14px 20px;
  }

  /* ---------- GRID LAYOUT FOR MOBILE (2x2 Style) ---------- */
  .hero-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    height: auto;
    position: static;
    padding: 20px 0;
    width: 100%;
  }

  /* Main image spans full width (both columns) */
  .img-main {
    grid-column: span 2;
    width: 100%;
    height: 280px;
    position: static;
    border-radius: 20px;
    aspect-ratio: auto;
  }

  /* Arch and Rect images side by side */
  .img-arch,
  .img-rect {
    position: static;
    width: 100%;
    height: 220px;
    border-radius: 20px;
    aspect-ratio: auto;
  }

  .img-arch {
    border-radius: 80px 80px 20px 20px;
    border: 5px solid white;
  }

  .img-rect {
    opacity: 1;
  }

  /* Remove absolute positioning and hover scale */
  .img-main:hover,
  .img-arch:hover,
  .img-rect:hover {
    transform: scale(1.01);
  }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .hero-images {
    gap: 12px;
  }

  .img-main {
    height: 220px;
  }

  .img-arch,
  .img-rect {
    height: 180px;
  }

  .img-arch {
    border-radius: 60px 60px 15px 15px;
    border-width: 4px;
  }
  .logo {
    font-size: 20px;
  }
}

/* Extra Small (360px) */
@media (max-width: 360px) {
  .img-main {
    height: 180px;
  }

  .img-arch,
  .img-rect {
    height: 150px;
  }
}

/* Optional feedback area */
.click-indicator {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: var(--primary-green);
  opacity: 0.7;
}
/* Hide mobile menu button on Desktop */
.mobile-menu-btn {
  display: none;
  font-size: 28px;
  color: var(--primary-green);
  cursor: pointer;
}

@media (max-width: 900px) {
  header {
    position: relative;
  }

  .nav-links {
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    gap: 10px;
    border-radius: 0;

    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: all 0.3s ease;
  }

  .nav-links.show-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links li a {
    width: 90%;
  }

  .nav-buttons {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }
}
/* Responsive Design */

/* ----- ABOUT SECTION ----- */

.about {
  background-color: #f3f4ec;
  padding: 100px 5% 120px;
  position: relative;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;

  margin: 40px 0;
  z-index: 10;
}

.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(43, 122, 75, 0.03),
    transparent 70%
  );
  pointer-events: none;
  border-radius: inherit;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

/* ===== LEFT IMAGE - ANIMATED BLOB ===== */
.about-image {
  position: relative;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
}

.img-blob {
  width: 380px;
  height: 380px;
  object-fit: cover;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  z-index: 3;
  box-shadow: 0 25px 40px -10px rgba(43, 122, 75, 0.4);
  transition: transform 0.5s ease;
  border: 4px solid rgba(255, 255, 255, 0.4);
  animation: blobAnimation 8s ease-in-out infinite;
}

/*  Blob animation - shape continuously change hogi */
@keyframes blobAnimation {
  0% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
  25% {
    border-radius: 40% 60% 70% 30% / 40% 60% 30% 70%;
  }
  50% {
    border-radius: 30% 70% 50% 50% / 50% 40% 60% 50%;
  }
  75% {
    border-radius: 70% 30% 40% 60% / 30% 70% 40% 60%;
  }
  100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
}

.img-blob:hover {
  transform: scale(1.02);
  animation-duration: 4s; /* Hover pe animation fast */
}

/* Blob shapes behind image - animated */
.blob-1 {
  border-radius: 50% 50% 40% 60% / 40% 50% 50% 60%;
  transform: rotate(15deg) translate(-10px, -10px);
  border-color: var(--primary-green);
  opacity: 0.3;
  animation: blobMove1 7s ease-in-out infinite;
}

.blob-2 {
  border-radius: 40% 60% 30% 70% / 60% 30% 70% 40%;
  transform: rotate(-25deg) translate(15px, 15px);
  border-color: #b8b99a;
  opacity: 0.4;
  animation: blobMove2 9s ease-in-out infinite;
}

.blob-3 {
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 60% 40% 50% 50% / 30% 60% 40% 70%;
  background: linear-gradient(
    45deg,
    rgba(43, 122, 75, 0.08),
    rgba(255, 255, 255, 0.15)
  );
  transform: rotate(-5deg);
  z-index: 0;
  animation: blobMove3 10s ease-in-out infinite;
  backdrop-filter: blur(5px);
}

/* outer glow lighting */
.blob-3::before {
  content: "";
  position: absolute;
  inset: -40px;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(43, 122, 75, 0.25), transparent 70%);
  filter: blur(40px);
  z-index: -1;
  animation: blobGlow 6s ease-in-out infinite alternate;
}

/* light shine effect */
.blob-3::after {
  content: "";
  position: absolute;
  width: 120%;
  height: 120%;
  top: -10%;
  left: -10%;
  border-radius: inherit;
  background: linear-gradient(
    120deg,
    transparent 40%,
    rgba(255, 255, 255, 0.4),
    transparent 60%
  );
  opacity: 0.4;
  transform: rotate(25deg);
  animation: blobShine 8s linear infinite;
}

/* glow animation */
@keyframes blobGlow {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.2);
    opacity: 1;
  }
}

/* shine animation */
@keyframes blobShine {
  0% {
    transform: translateX(-100%) rotate(25deg);
  }
  100% {
    transform: translateX(100%) rotate(25deg);
  }
}

/* ===== RIGHT CONTENT ===== */
.about-content {
  flex: 1.2;
}

.about-content .section-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--text-dark);
}

.about-content .section-title .highlight {
  color: var(--primary-green);
}

.line-decorator {
  height: 2px;
  width: 80px;
  background: linear-gradient(90deg, var(--primary-green), transparent);
  position: relative;
}

.line-decorator::after {
  content: "";
  position: absolute;
  right: -2px;
  top: -4px;
  width: 8px;
  height: 8px;
  background-color: var(--primary-green);
  transform: rotate(45deg);
  border-radius: 2px;
}

.about-content h2 {
  font-size: 38px;
  line-height: 1.3;
  margin-bottom: 25px;
  font-weight: 500;
  color: var(--text-dark);
}

.about-content p {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 25px;
  opacity: 0.9;
}

/* ===== STATS ROW ===== */
.stats-row {
  display: flex;
  gap: 40px;
  margin: 45px 0 40px;
  flex-wrap: wrap;
}

.stat-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  min-width: 160px;
}

.stat-icon {
  font-size: 34px;
  color: var(--primary-green);
  opacity: 0.9;
  margin-top: 5px;
  transition: transform 0.3s;
}

.stat-box:hover .stat-icon {
  transform: translateY(-3px);
}

.calendar-icon {
  position: relative;
  display: inline-block;
}

.calendar-icon .stat-icon {
  font-size: 38px;
}

.calendar-icon .cal-num {
  position: absolute;
  top: 13px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  font-weight: bold;
  color: white;
  background: var(--primary-green);
  width: 18px;
  height: 18px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-info h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--text-dark);
}

.stat-info span {
  font-size: 14px;
  color: var(--text-light);
  letter-spacing: 0.3px;
}

/* ===== BUTTON ===== */
.btn-outline-green {
  background-color: transparent;
  color: var(--primary-green);
  border: 2px solid var(--primary-green);
  padding: 14px 38px;
  border-radius: 40px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.4s;
  letter-spacing: 0.5px;
  box-shadow: 0 5px 15px rgba(43, 122, 75, 0.1);
}

.btn-outline-green:hover {
  background-color: var(--primary-green);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(43, 122, 75, 0.3);
}

/* ========== RESPONSIVE DESIGN ========== */

@media (max-width: 1100px) {
  .about-container {
    gap: 50px;
  }

  .img-blob {
    width: 320px;
    height: 320px;
  }

  .blob-shape {
    width: 340px;
    height: 340px;
  }

  .about-content h2 {
    font-size: 32px;
  }
}

/* ===== SMALL SCREEN - CUSTOM ORDER ===== */
@media (max-width: 900px) {
  .about {
    padding: 80px 5% 100px;
  }

  .about-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  /* Small screen pe custom order */
  .about-content {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  /* Sirf "About Us" heading pehle dikhao */
  .about-content .section-title {
    order: 1;
    justify-content: center;
    margin-bottom: 30px;
  }

  .line-decorator {
    display: none;
  }

  /* Image second position me */
  .about-image {
    order: 2;
    min-height: 350px;
    margin: 20px 0;
  }

  /* Baaki ka content third position me */
  .about-content h2,
  .about-content p,
  .about-content .stats-row,
  .about-content .btn-outline-green {
    order: 3;
  }

  .about-content h2 {
    font-size: 28px;
  }

  .about-content p {
    text-align: left;
  }

  .stats-row {
    justify-content: center;
    gap: 30px;
  }

  .stat-box {
    text-align: left;
  }
}

/* Mobile (700px and below) */
@media (max-width: 700px) {
  .about {
    padding: 60px 5% 80px;
  }

  .about-content h2 {
    font-size: 26px;
  }

  .about-content p {
    font-size: 15px;
    text-align: left;
  }

  .stats-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
    width: 100%;
  }

  .stat-box {
    width: 100%;
    justify-content: flex-start;
  }

  .btn-outline-green {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .about-image {
    min-height: 300px;
  }

  .img-blob {
    width: 280px;
    height: 280px;
  }

  .blob-shape {
    width: 300px;
    height: 300px;
  }

  .blob-3 {
    width: 270px;
    height: 270px;
  }
}

@media (max-width: 480px) {
  .img-blob {
    width: 250px;
    height: 250px;
  }

  .blob-shape {
    width: 270px;
    height: 270px;
  }

  .blob-3 {
    width: 240px;
    height: 240px;
  }

  .about-content h2 {
    font-size: 24px;
  }
}

/* Interactive Feedback */
.click-feedback {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  color: var(--primary-green);
  font-style: italic;
  opacity: 0.8;
}
/* ----- SERVICES SECTION ----- */
.services {
  padding: 0px 5% 60px 5%;
  background-color: #ffffff;
}

.text-center {
  text-align: center;
}

.section-header {
  margin-bottom: 60px;
}

.services-heading {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 10px;
}

.services-heading .highlight {
  color: var(--primary-green);
}

.decorator-line {
  display: inline-block;
  width: 80px;
  height: 1px;
  background-color: var(--primary-green);
  position: relative;
}

.decorator-line.left::before {
  content: "♦";
  position: absolute;
  right: -8px;
  top: -12px;
  color: var(--primary-green);
  font-size: 16px;
}

.decorator-line.right::before {
  content: "♦";
  position: absolute;
  left: -8px;
  top: -12px;
  color: var(--primary-green);
  font-size: 16px;
}

.services-subtitle {
  color: var(--text-light);
  font-size: 15px;
}
/*
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 50px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.service-card {
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px); 
}

.img-wrapper {
  width: 100%;
  height: 380px; 
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-img {
  transform: scale(1.08);
}

.service-card h3 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text-dark);
  transition: color 0.3s ease;
}

.service-card:hover h3 {
  color: var(--primary-green); 
}

.service-card p {
  font-size: 13px;
  color: var(--text-light);
}



@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .decorator-line {
    width: 50px;
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .services-heading {
    font-size: 28px;
  }
  .decorator-line {
    display: none;
  } 
} */
.btn-container {
  text-align: center;
  margin-top: 40px;
}
/* ----- GALLERY SECTION ----- */
.gallery {
  padding: 80px 5%;
  background-color: var(--bg-color); /* Light cream background */
}

.gallery-container {
  display: flex;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  height: 700px; /* Fixed height for the whole grid */
}

/* Flexbox Column Layout */
.gallery-col-left {
  flex: 1; /* Takes 1 part of the width (33.3%) */
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gallery-col-right {
  flex: 2; /* Takes 2 parts of the width (66.6%) */
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gallery-top-row {
  display: flex;
  gap: 20px;
  flex: 1.5; /* Makes the top row taller in the right column */
}

.gallery-top-row .gallery-img-box {
  flex: 1; /* Both images in top row take equal width */
}

/* Adjusting specific heights using flex-grow */
.top-left-img {
  flex: 1; /* Shorter image */
}

.bottom-left-img {
  flex: 1.5; /* Taller image */
}

.bottom-right-img {
  flex: 1; /* Shorter wide image */
}

/* Image Box Styling */
.gallery-img-box {
  border-radius: 15px;
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: relative;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.g-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* Zoom Effect on Hover */
.gallery-img-box:hover .g-img {
  transform: scale(1.08);
}

/* Responsive Gallery */
@media (max-width: 900px) {
  .gallery-container {
    flex-direction: column;
    height: auto;
  }
  .gallery-col-left,
  .gallery-col-right {
    flex: none;
  }
  .top-left-img,
  .bottom-left-img,
  .bottom-right-img,
  .gallery-top-row {
    height: 300px; /* Fixed height for mobile */
  }
  .gallery-top-row {
    flex-direction: column;
    height: auto;
  }
  .gallery-top-row .gallery-img-box {
    height: 300px;
  }
}

/* ----- FOOTER SECTION ----- */
.footer {
  background-color: #f3f4ec;
  padding: 80px 5% 20px;
  font-family: var(--font-body);
  /* margin-top: 50px; */
  color: #141516 !important;
}

.footer-container {
  display: grid;
  /* 4 Columns layout */
  grid-template-columns: 2fr 1.5fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  border-bottom: 1px solid #333;
  padding-bottom: 40px;
  color: #141516 !important;
}

.footer-logo {
  /* color: black; */
  color: #141516;
  margin-bottom: 20px;
}

.brand-col p {
  color: #141516;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 25px;
  max-width: 85%;
}

/* Social Media Icons */
.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--primary-green);
  color: #141516;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}
.social-links a i {
  color: #878c53;
  transition: color 0.3s ease !important;
}
.social-links a:hover i {
  color: white;
}

.social-links a:hover {
  background-color: #878c53;
  border: 1px solid #878c53;
}

.footer-col h4 {
  /* font-family: var(--font-heading); */
  font-size: 20px;
  color: #141516;
  margin-bottom: 25px;
  font-weight: normal;
}
.footer-col h4.underline-title {
  text-align: center;
  display: inline-flex;
  border-bottom: 4px solid #878c53;
}
.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 15px;
}

/* Links Hover Effect */
.footer-col ul li a {
  color: #141516 !important;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-col ul li a:hover {
  color: #878c53 !important;
}

/* Contact List Styling */
.contact-info li {
  display: flex;
  gap: 15px;
  color: #141516;
  /* font-size: 14px; */
  align-items: flex-start;
}

.contact-info li i {
  color: #141516 !important;
  font-size: 16px;
  /* margin-top: 3px; */
}

/* Newsletter Styling */
.newsletter-col p {
  color: #141516 !important;
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form input {
  width: 100%;
  padding: 12px 15px;
  border-radius: 30px;
  border: 1px solid #333;
  outline: none;
  background-color: #2a2c27;
  color: #fff;
  font-family: var(--font-body);
}

.newsletter-form input:focus {
  border-color: var(--primary-green);
}

.newsletter-form button {
  padding: 12px 20px; /* Adjusted to fit the icon perfectly */
}

.footer-bottom {
  text-align: center;
  padding-top: 25px;
  color: #777;
  font-size: 13px;
}

/* Responsive Footer */
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: 1fr 1fr; /* 2 columns for tablets */
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr; /* 1 column for mobile */
  }
  .brand-col p {
    max-width: 100%;
  }
}

.whatsapp-float {
  position: fixed;
  width: 65px;
  height: 65px;
  bottom: 25px;
  right: 25px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  transition: transform 0.3s ease;
}
.whatsapp-float i {
  font-size: 38px;
  color: #fff;
}
/* ----- PAGE BANNER SECTION ----- */
.page-banner {
  position: relative;
  width: 100%;
  height: 350px; /* Banner ki height */
  display: flex;
  align-items: center;
  justify-content: center;
  /* White overlay (rgba) + Background Image */
  background:
    linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)),
    url("https://images.unsplash.com/photo-1519167758481-83f550bb49b3?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80");
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid #eaeaea;
}

.banner-title {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 600;
  color: var(--text-dark); /* Dark grey text */
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Decorator Lines & Diamonds */
.banner-decorator {
  display: flex;
  align-items: center;
}

.b-line {
  width: 60px;
  height: 2px;
  background-color: var(--primary-green);
}

.b-diamond {
  width: 10px;
  height: 10px;
  background-color: var(--primary-green);
  transform: rotate(45deg); /* Square ko ghumakar diamond banana */
}

/* Responsive Design for Mobile */
@media (max-width: 600px) {
  .page-banner {
    height: 200px;
  }
  .banner-title {
    font-size: 32px;
    gap: 15px;
  }
  .b-line {
    width: 30px; /* Mobile par line thodi choti hogi */
  }
}

.video-gallery-section {
  /* max-width: 1400px; */
  width: 100%;
  /* background: rgba(255, 255, 255, 0.85); */
  backdrop-filter: blur(10px);
  /* border-radius: 48px; */
  padding: 40px 10%;
  /* box-shadow:
    0 30px 60px -20px rgba(0, 20, 30, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.5) inset; */
}

/* --- Section Header --- */
.section-head {
  text-align: center;
  margin-bottom: 50px;
}

.section-head h3 {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #6b7c5b;
  font-weight: 500;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-head h3::before,
.section-head h3::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40px;
  height: 1.5px;
  background: #6b7c5b;
  opacity: 0.4;
}

.section-head h3::before {
  right: 110%;
}

.section-head h3::after {
  left: 110%;
}

.section-head h2 {
  font-size: 36px;
  font-family: var(--font-heading);
  font-weight: 600;
  color: #1a2a1f;
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.03);
}

.section-head h2 span {
  color: #6b7c5b;
  font-weight: 700;
  position: relative;
}

/* .section-head h2 span::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: #6b7c5b;
  opacity: 0.2;
  border-radius: 4px;
  z-index: -1;
} */

/* --- Gallery Grid --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin: 40px 0 30px;
  overflow: hidden;
}

/* --- Gallery Item Base --- */
.gallery-item {
  position: relative;
  height: 320px;
  border-radius: 32px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.2);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  border: 3px solid transparent;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Image zoom effect on hover */
.gallery-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 0;
}

.gallery-item:hover::after {
  transform: scale(1.15);
}

/* Soft overlay on hover */
.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 45px -8px rgba(90, 110, 70, 0.4);
  border-color: #ffffff;
}

/* Gradient overlay */
.gallery-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.2) 50%,
    rgba(30, 40, 20, 0.7) 100%
  );
  opacity: 0.4;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.gallery-item:hover::before {
  opacity: 0.7;
  background: linear-gradient(
    135deg,
    rgba(107, 124, 91, 0.75) 0%,
    rgba(40, 50, 30, 0.85) 100%
  );
}

/* --- IMPROVED PLAY BUTTON --- */
.video-thumb .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 90px;
  height: 90px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.3),
    0 0 0 8px rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
}

.video-thumb:hover .play-btn {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  box-shadow:
    0 20px 45px rgba(107, 124, 91, 0.5),
    0 0 0 12px rgba(255, 255, 255, 0.3);
}

.video-thumb .play-btn svg {
  width: 40px;
  height: 40px;
  fill: #6b7c5b;
  margin-left: 5px;
  transition: all 0.3s ease;
}

.video-thumb:hover .play-btn svg {
  fill: #4a5a3f;
  transform: scale(1.1);
}

/* Pulse animation on hover */
.video-thumb:hover .play-btn {
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

/* --- Text Label (Improved) --- */
.gallery-item span {
  position: absolute;
  bottom: 25px;
  left: 25px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  letter-spacing: 0.5px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  z-index: 5;
  transition: all 0.3s ease;
  transform: translateY(0);
}

.gallery-item:hover span {
  background: rgba(107, 124, 91, 0.4);
  border-color: white;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(15px);
}

/* --- View More Button --- */
.view-more-wrap {
  text-align: center;
  margin-top: 50px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: 2.5px solid #6b7c5b;
  color: #1a2a1f;
  padding: 16px 42px;
  border-radius: 60px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-outline::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #6b7c5b;
  transition: left 0.4s ease;
  z-index: -1;
}

.btn-outline:hover {
  color: white;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px -8px #6b7c5b;
}

.btn-outline:hover::before {
  left: 0;
}

/* --- Modal (Video Player) --- */
.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 15, 10, 0.98);
  align-items: center;
  justify-content: center;
  z-index: 2000;
  backdrop-filter: blur(12px);
}

.video-modal.active {
  display: flex;
  animation: modalFade 0.3s ease;
}

@keyframes modalFade {
  from {
    opacity: 0;
    backdrop-filter: blur(0);
  }
  to {
    opacity: 1;
    backdrop-filter: blur(12px);
  }
}

.modal-content {
  position: relative;
  width: 800px;
  height: 500px;
  background: #000;
  border-radius: 40px;
  overflow: hidden;
  box-shadow:
    0 40px 70px rgba(0, 0, 0, 0.6),
    0 0 0 3px #6b7c5b inset;
  animation: modalPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalPop {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Video takes full modal space */
.modal-content video {
  width: 100%;
  height: 100%;
  border: none;
  object-fit: contain;
  background: #000;
  display: block;
}

/* Close button - positioned absolutely relative to modal, not video */
.close-modal {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: white;
  font-size: 2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
  line-height: 1;
  z-index: 10; /* Always on top */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.close-modal:hover {
  background: #6b7c5b;
  border-color: white;
  transform: rotate(90deg) scale(1.1);
}

.modal-caption {
  position: absolute;
  bottom: -40px;
  left: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  backdrop-filter: blur(4px);
  padding: 5px 20px;
  border-radius: 30px;
  background: rgba(107, 124, 91, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-head h2 {
    font-size: 2.5rem;
  }

  .modal-content {
    width: 90%;
    height: 450px;
  }
}

@media (max-width: 600px) {
  .video-gallery-section {
    padding: 40px 20px;
    border-radius: 32px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .section-head h2 {
    font-size: 1.8rem;
  }

  .section-head h3 {
    font-size: 0.9rem;
  }

  .gallery-item {
    height: 250px;
  }

  .video-thumb .play-btn {
    width: 70px;
    height: 70px;
  }

  .video-thumb .play-btn svg {
    width: 30px;
    height: 30px;
  }

  .modal-content {
    width: 95%;
    height: 280px;
    border-radius: 28px;
  }

  .close-modal {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    font-size: 1.8rem;
  }
}

/* --- Custom Scrollbar --- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #e9eef5;
}

::-webkit-scrollbar-thumb {
  background: #6b7c5b;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #4a5a3f;
}
.testimonial-sec {
  background: linear-gradient(145deg, #0b120f 0%, #1c2620 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  /* font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif; */
}
.testimonial-section {
  max-width: 1300px;
  width: 100%;
  padding: 30px 30px 10px 30px;
  position: relative;
  overflow: hidden;
}

/* Background Decoration */
.testimonial-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(167, 139, 96, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.testimonial-section::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(200, 180, 140, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 0;
}

/* Section Header */
.testimonial-section .section-header {
  text-align: center;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

.section-subtitle {
  color: var(--primary-green);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 6px;
  font-weight: 400;
  margin-bottom: 15px;
  display: inline-block;
  padding: 8px 20px;
  background: rgba(201, 169, 107, 0.1);
  border-radius: 40px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(201, 169, 107, 0.3);
}

.testimonial-section .section-title {
  font-size: 36px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.testimonial-section .section-title span {
  color: var(--primary-green);
  font-weight: 700;
  position: relative;
  display: inline-block;
}

/* .testimonial-section .section-title span::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 10px;
  background: rgba(201, 169, 107, 0.3);
  border-radius: 5px;
  z-index: -1;
} */

/* Testimonial Slider Container */
.testimonial-slider {
  position: relative;
  z-index: 5;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 0;
}

/* Main Slider */
.slider-container {
  position: relative;
  min-height: unset;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Testimonial Cards */
.testimonial-card {
  /* position: absolute;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none; */
  position: absolute;
  width: 100%;
  opacity: 0;
  transform: translateX(20px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}

.testimonial-card.active {
  /* opacity: 1;
  visibility: visible;
  position: relative;
  pointer-events: all; */
  opacity: 1;
  transform: translateX(0);
  position: relative;
}

/* Card Content */
.card-content {
  background: rgba(30, 35, 32, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(201, 169, 107, 0.2);
  border-radius: 50px;
  padding: 50px 60px;
  box-shadow:
    0 30px 60px -20px rgba(0, 0, 0, 0.8),
    0 0 0 1px rgba(201, 169, 107, 0.1) inset,
    0 0 40px rgba(201, 169, 107, 0.1);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}

.card-content:hover {
  transform: translateY(-5px);
  box-shadow:
    0 40px 70px -20px rgba(0, 0, 0, 0.9),
    0 0 0 1px rgba(201, 169, 107, 0.3) inset,
    0 0 60px rgba(201, 169, 107, 0.15);
  border-color: rgba(201, 169, 107, 0.4);
}

/* Quote Icon */
.quote-icon {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 8rem;
  color: rgba(201, 169, 107, 0.1);
  font-family: serif;
  line-height: 1;
  pointer-events: none;
  transition: all 0.4s ease;
}

.card-content:hover .quote-icon {
  color: rgba(201, 169, 107, 0.15);
  transform: scale(1.1) rotate(5deg);
}

/* Rating Stars */
.rating {
  margin-bottom: 25px;
  display: flex;
  gap: 8px;
}

.star {
  color: var(--primary-green);
  font-size: 1.8rem;
  filter: drop-shadow(0 0 10px rgba(201, 169, 107, 0.4));
  animation: starPulse 2s infinite;
  display: inline-block;
}

.star:nth-child(2) {
  animation-delay: 0.2s;
}
.star:nth-child(3) {
  animation-delay: 0.4s;
}
.star:nth-child(4) {
  animation-delay: 0.6s;
}
.star:nth-child(5) {
  animation-delay: 0.8s;
}

@keyframes starPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(201, 169, 107, 0.7));
  }
}

/* Testimonial Text */
.testimonial-text {
  font-size: 1.5rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 400;
  margin-bottom: 30px;
  position: relative;
  padding-left: 20px;
  border-left: 3px solid var(--primary-green);
  font-style: italic;
}

/* Client Info */
.client-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.client-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #c9a96b;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
}

.card-content:hover .client-image {
  border-color: #fff;
  transform: scale(1.05);
  box-shadow: 0 15px 35px rgba(201, 169, 107, 0.4);
}

.client-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-details {
  flex: 1;
}

.client-name {
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 5px;
  letter-spacing: -0.02em;
}

.client-title {
  color: var(--primary-green);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 400;
}

/* Navigation Dots */
.navigation-dots {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 50px;
  position: relative;
  z-index: 10;
  flex-wrap: wrap;
}

.dot {
  width: 45px;
  height: 45px;
  border-radius: 45px;
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(201, 169, 107, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
  padding: 3px;
}

.dot:hover {
  border-color: #c9a96b;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.dot.active {
  width: 140px;
  background: rgba(201, 169, 107, 0.15);
  border-color: #c9a96b;
  cursor: default;
  box-shadow: 0 0 25px rgba(201, 169, 107, 0.3);
}

.dot-image {
  width: 100%;
  height: 100%;
  border-radius: 45px;
  object-fit: cover;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.dot.active .dot-image {
  opacity: 1;
}

.dot span {
  display: none;
  color: white;
  font-weight: 500;
  white-space: nowrap;
}

.dot.active span {
  display: inline-block;
  margin-left: 10px;
}

.dot.active .dot-image {
  width: 35px;
  height: 35px;
  margin-right: 5px;
}

.dot.active {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px 15px 3px 3px;
}

/* Navigation Arrows */
.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(30, 35, 32, 0.6);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(201, 169, 107, 0.3);
  color: var(--primary-green);
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 20;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.nav-arrow:hover {
  background: var(--primary-green);
  color: #0b120f;
  border-color: #fff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 10px 25px rgba(201, 169, 107, 0.4);
}

.nav-arrow.prev {
  left: 20px;
}

.nav-arrow.next {
  right: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .testimonial-section .section-title {
    font-size: 2.2rem;
  }

  .card-content {
    padding: 35px 30px;
    backdrop-filter: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  }

  .testimonial-text {
    font-size: 1.2rem;
  }
  .star {
    filter: none;
    animation: none;
  }

  .quote-icon {
    display: none;
  }

  .nav-arrow {
    width: 45px;
    height: 45px;
    font-size: 1.5rem;
  }

  .nav-arrow.prev {
    left: 5px;
  }

  .nav-arrow.next {
    right: 5px;
  }

  .dot {
    width: 35px;
    height: 35px;
  }

  .dot.active {
    width: 110px;
  }
}

@media (max-width: 480px) {
  .testimonial-section {
    padding: 40px 15px;
  }

  .client-info {
    flex-direction: column;
    text-align: center;
  }

  .testimonial-text {
    font-size: 1rem;
    padding-left: 15px;
  }

  .rating {
    justify-content: center;
  }

  .quote-icon {
    font-size: 5rem;
    top: 20px;
    right: 20px;
  }
}
/* services  */

/* .page-banner {
  background: linear-gradient(135deg, var(--primary-green) 0%, #0a4d2a 100%);
  padding: 80px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><path d="M30 5L55 30L30 55L5 30L30 5Z" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="2"/></svg>');
  opacity: 0.3;
}

.banner-content {
  position: relative;
  z-index: 2;
}

.banner-title {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.banner-decorator {
  display: flex;
  align-items: center;
  gap: 8px;
}

.b-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--light-gold),
    transparent
  );
}

.b-diamond {
  width: 10px;
  height: 10px;
  background: var(--light-gold);
  transform: rotate(45deg);
} */

/* Tab Navigation */
.tab-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 5%;
}
.tab-container-home {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0px 5%;
}
.tab-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 500;
  border: 2px solid var(--primary-green);
  background: transparent;
  color: var(--primary-green);
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 10px;
}

.tab-btn i {
  font-size: 18px;
}

.tab-btn:hover {
  background: var(--primary-green);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(3, 27, 13, 0.2);
}

.tab-btn.active {
  background: var(--primary-green);
  color: white;
  border-color: var(--primary-green);
}

/* Tab Content */
.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  justify-content: center;
}

/* Service Card - Matching your theme */
.service-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(3, 27, 13, 0.15);
}

.img-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.service-card:hover .img-wrapper img {
  transform: scale(1.1);
}

/* Card Content */
.service-content {
  padding: 25px;
}

.service-content h3 {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  color: var(--text-dark);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-icon {
  font-size: 20px;
}

.service-desc {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
}

/* Features */
.service-features {
  margin-bottom: 20px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--text-dark);
}

.feature-item i {
  color: var(--primary-green);
  font-size: 14px;
  width: 18px;
}

/* Package Options */
.package-options {
  display: flex;
  gap: 10px;
  margin: 20px 0;
  padding: 15px 0;
  border-top: 1px dashed #ddd;
  border-bottom: 1px dashed #ddd;
}

.package {
  flex: 1;
  background: #f5f5f5;
  padding: 12px 5px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s;
}

.package:hover {
  background: #e8e8e8;
}

.package.active {
  background: var(--primary-green);
}

.package.active .package-name,
.package.active .package-price {
  color: white;
}

.package-name {
  font-size: 13px;
  color: #666;
  margin-bottom: 5px;
}

.package-price {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-green);
}

/* Included Section */
.included-section {
  background: #f9f9f9;
  padding: 15px;
  border-radius: 12px;
  margin-bottom: 20px;
}

.included-section h4 {
  font-size: 15px;
  color: var(--text-dark);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.included-section h4 i {
  color: var(--primary-gold);
}

.included-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.included-list p {
  font-size: 13px;
  color: #555;
  display: flex;
  align-items: center;
  gap: 6px;
}

.included-list p i {
  color: var(--primary-green);
  font-size: 12px;
}

/* Action Buttons */
.card-actions {
  display: flex;
  gap: 10px;
}

.btn-call {
  flex: 2;
  background: var(--primary-green);
  color: white;
  padding: 12px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.btn-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(3, 27, 13, 0.2);
}

.btn-whatsapp {
  flex: 1;
  background: #25d366;
  color: white;
  padding: 12px;
  border-radius: 30px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s;
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
}
#dj-tab .services-grid,
#events-tab .services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
}

/* Responsive */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .banner-title {
    font-size: 32px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .included-list {
    grid-template-columns: 1fr;
  }

  .package-options {
    flex-direction: column;
  }

  .card-actions {
    flex-direction: column;
  }
}
/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
}

#imageModal .modal-content {
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10000;
}

#caption {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: #ccc;
  text-align: center;
  width: 80%;
}
 
       
        /* Contact Hero Section */
        .contact-hero {
            padding: 60px 5% 40px;
            text-align: center;
            position: relative;
            background: var(--bg-color);
        }

        .contact-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--primary-green), transparent);
        }

        .page-title {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 15px;
            font-family: var(--font-heading);
            color: var(--text-dark);
        }

        .page-title span {
            color: var(--primary-green);
            position: relative;
            display: inline-block;
        }

        .page-title span::after {
            content: '';
            position: absolute;
            bottom: 10px;
            left: 0;
            width: 100%;
            height: 10px;
            background: rgba(137, 154, 99, 0.2);
            z-index: -1;
        }

        .hero-subtitle {
            color: var(--text-light);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
            font-family: var(--font-body);
        }

        /* Contact Info Cards */
        .contact-info-section {
            padding: 60px 5%;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1400px;
            margin: 0 auto;
            background: var(--bg-color);
        }

        .info-card {
            background: white;
            border: 1px solid rgba(137, 154, 99, 0.15);
            border-radius: 30px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
        }

        .info-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--primary-green), transparent);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
        }

        .info-card:hover::before {
            transform: translateX(100%);
        }

        .info-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary-green);
            box-shadow: 0 20px 40px rgba(137, 154, 99, 0.1);
        }

        .info-icon {
            width: 80px;
            height: 80px;
            background: rgba(137, 154, 99, 0.08);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2.5rem;
            border: 2px solid rgba(137, 154, 99, 0.2);
            transition: all 0.4s ease;
        }

        .info-card:hover .info-icon {
            background: var(--primary-green);
            border-color: white;
            transform: rotateY(180deg);
        }

        .info-card:hover .info-icon svg {
            fill: white;
        }

        .info-icon svg {
            width: 40px;
            height: 40px;
            fill: var(--primary-green);
            transition: all 0.4s ease;
        }

        .info-card h3 {
            font-size: 1.5rem;
            color: var(--primary-green);
            margin-bottom: 15px;
            font-family: var(--font-heading);
        }

        .info-detail {
            color: var(--text-light);
            line-height: 1.8;
            font-size: 1.1rem;
            font-family: var(--font-body);
        }

        .info-detail a {
            color: var(--text-dark);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .info-detail a:hover {
            color: var(--primary-green);
        }

        /* Business Hours Section */
        .hours-section {
            padding: 40px 5% 60px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .hours-card {
            background: white;
            border: 1px solid rgba(137, 154, 99, 0.2);
            border-radius: 50px;
            padding: 50px;
            text-align: center;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.02);
        }

        .hours-card h2 {
            font-size: 2rem;
            color: var(--primary-green);
            margin-bottom: 30px;
            position: relative;
            display: inline-block;
            font-family: var(--font-heading);
        }

        .hours-card h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: var(--primary-green);
        }

        .hours-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            max-width: 800px;
            margin: 0 auto;
        }

        .hours-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 25px;
            background: var(--bg-color);
            border-radius: 50px;
            border: 1px solid rgba(137, 154, 99, 0.15);
        }

        .day {
            color: var(--primary-green);
            font-weight: 600;
            font-size: 1.1rem;
            font-family: var(--font-heading);
        }

        .time {
            color: var(--text-dark);
            font-size: 1rem;
            font-family: var(--font-body);
        }

        .emergency-note {
            margin-top: 30px;
            padding: 20px;
            background: rgba(137, 154, 99, 0.08);
            border-radius: 50px;
            color: var(--primary-green);
            font-weight: 500;
            border: 1px solid rgba(137, 154, 99, 0.2);
        }

        /* Map Section */
        .map-section {
            padding: 0 5% 60px;
        }

        .map-container {
            border-radius: 40px;
            overflow: hidden;
            border: 3px solid rgba(137, 154, 99, 0.2);
            height: 450px;
            position: relative;
            box-shadow: 0 20px 35px rgba(0, 0, 0, 0.03);
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            filter: grayscale(0.3);
            transition: filter 0.5s ease;
        }

        .map-container:hover iframe {
            filter: grayscale(0);
        }

        .map-overlay {
            position: absolute;
            top: 20px;
            left: 20px;
            background: white;
            backdrop-filter: blur(10px);
            padding: 15px 25px;
            border-radius: 40px;
            border: 1px solid var(--primary-green);
            color: var(--text-dark);
            pointer-events: none;
            box-shadow: 0 5px 20px rgba(137, 154, 99, 0.15);
            font-family: var(--font-body);
            font-weight: 500;
        }

        /* Connect Section */
       .connect-section {
            padding: 40px 5% 60px;
            text-align: center;
        }

       .connect-section .connect-title {
            font-size: 2rem;
            color: var(--text-dark);
            margin-bottom: 40px;
            font-family: var(--font-heading);
        }

        .connect-title span {
            color: var(--primary-green);
        }

       .connect-section .social-links {
            display: flex;
            justify-content: center;
            gap: 25px;
            flex-wrap: wrap;
        }

       .connect-section .social-link {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: rgba(137, 154, 99, 0.08);
            border: 2px solid rgba(137, 154, 99, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s ease;
            text-decoration: none;
        }

       .connect-section .social-link:hover {
            background: var(--primary-green);
            transform: translateY(-10px) rotate(360deg);
            border-color: white;
        }

       .connect-section .social-link:hover svg {
            fill: white;
        }

        .connect-section .social-link svg {
            width: 30px;
            height: 30px;
            fill: var(--primary-green);
            transition: all 0.4s ease;
        }

       

        /* Responsive */
        @media (max-width: 992px) {
            .contact-info-section {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .hours-grid {
                grid-template-columns: 1fr;
            }
            
            .page-title {
                font-size: 2.8rem;
            }
        }

        @media (max-width: 768px) {
           
            .contact-info-section {
                grid-template-columns: 1fr;
            }
            
            .info-card {
                padding: 30px 20px;
            }
            
            .hours-card {
                padding: 30px 20px;
            }
            
            .page-title {
                font-size: 2.2rem;
            }
            
            .map-container {
                height: 350px;
            }
            
            .hours-item {
                flex-direction: column;
                gap: 10px;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
         
            
           .connect-section .social-link {
                width: 55px;
                height: 55px;
            }
            
           .connect-section  .social-link svg {
                width: 25px;
                height: 25px;
            }
        }
   