
    /* Reset and base styles */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: 'Inter', Arial, sans-serif;
      line-height: 1.6;
      color: #2c2c2c;
      background-color: #ffffff;
    }
    
    img {
      max-width: 100%;
      height: auto;
      display: block;
    }
    a {
        text-decoration:none !important;
        color:black !important;
    }
      
 /*about starts*/
      
    /* Hero Section */
    /* .hero {
      background: linear-gradient(135deg, #fff1f2 0%, #fff7ed 50%, #fdf2f8 100%);
      background-image: url(../images/untaam-locations.png);
      background-size: cover;
      background-position: center;
      padding: 40px 16px;
      text-align: center;
      min-height: 60vh;
      display: flex;
      align-items: center;
      justify-content: center;
    } */
    
    .hero-content {
      max-width: 800px;
      margin: 0 auto;
    }
    
    .hero-title {
      font-size: 32px;
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      line-height: 1.2;
      color: #ffffff;
      margin-bottom: 22px;
    }
    
    .hero-title .highlight-pink {
      color: #f43f5e;
    }
    
    .hero-title .highlight-purple {
      color: #aa4ed8;
    }
    
    .hero-description {
      font-size: 16px;
      color: #ffffff;
      line-height: 1.6;
      margin-bottom: 46px;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }
    
    .hero-buttons {
      display: flex;
      flex-direction: column;
      gap: 14px;
      align-items: center;
    }
    
    .btn-primary {
      background-color: #d4af37;
      color: #ffffff;
      padding: 18px 30px;
      border-radius: 10px;
      text-decoration: none;
      font-size: 16px;
      font-weight: 600;
      transition: all 0.3s ease;
      display: inline-block;
    }
    
    .btn-secondary {
      background: transparent;
      color: #ffffff;
      padding: 18px 32px;
      border: 2px solid #ffffff;
      border-radius: 10px;
      text-decoration: none;
      font-size: 16px;
      font-weight: 600;
      transition: all 0.3s ease;
      display: inline-block;
    }
    
    .btn-primary:hover, .btn-secondary:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }
    .presence-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, #ffffff, #f7f9fc);
  text-align: center;
}

.presence-title {
  font-size: 36px;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

.presence-subtitle {
  color: #666;
  font-size: 17px;
  margin-bottom: 40px;
}

.presence-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.presence-card {
  background: #fff;
  padding: 35px 25px;
  width: 260px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.presence-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(0,0,0,0.04), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.presence-card:hover::before {
  opacity: 1;
}

.presence-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.presence-icon {
  font-size: 30px;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.presence-card:hover .presence-icon {
  transform: scale(1.2) rotate(5deg);
}

.presence-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #111;
}

.presence-card p {
  color: #666;
  font-size: 15px;
}

.presence-description {
  max-width: 800px;
  margin: auto;
  color: #555;
  line-height: 1.7;
  font-size: 16px;
}

.presence-highlight {
  margin-top: 15px;
  font-weight: 600;
  color: #111;
}

/* Responsive */
@media (max-width: 768px) {
  .presence-title {
    font-size: 28px;
  }
}
.difference-section {
  padding: 90px 20px;
  background: linear-gradient(180deg,#ffffff,#f6f8fb);
  text-align: center;
}

.difference-header h2 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #111;
  font-weight: 700;
}

.difference-header p {
  color: #666;
  margin-bottom: 50px;
  font-size: 17px;
}

.difference-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
  gap: 30px;
}

.diff-card {
  background: #fff;
  padding: 35px 28px;
  border-radius: 18px;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.diff-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,transparent,rgba(0,0,0,0.04),transparent);
  opacity: 0;
  transition: opacity .4s ease;
}

.diff-card:hover::before {
  opacity: 1;
}

.diff-card:hover {
  transform: translateY(-12px) scale(1.02);
 box-shadow: 0 20px 45px rgb(0 0 9 / 45%);
}

.diff-icon {
  font-size: 30px;
  margin-bottom: 15px;
  display: inline-block;
  transition: transform .35s ease;
}

.diff-card:hover .diff-icon {
  transform: scale(1.25) rotate(8deg);
}

.diff-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #111;
}

.diff-card p {
  color: #555;
  line-height: 1.6;
  font-size: 15px;
}

.diff-card ul {
  padding-left: 18px;
  margin-top: 8px;
}

.diff-card ul li {
  font-size: 14px;
  color: #555;
  margin-bottom: 6px;
  position: relative;
}

.diff-card ul li::marker {
  color: #000;
}

/* subtle glowing bottom border on hover */
.diff-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(to right,#000,#555);
  transition: width .4s ease;
}

.diff-card:hover::after {
  width: 100%;
}

/* Responsive */
@media (max-width:768px){
  .difference-header h2 {
    font-size: 28px;
  }
}
.signature-wedding {
  padding: 90px 20px;
  background: linear-gradient(180deg,#ffffff,#f7f9fc);
  text-align: center;
}

/* Header */
.signature-header h2 {
  font-size: 36px;
  margin-bottom: 12px;
  font-weight: 700;
  color: #111;
}

.signature-header p {
  max-width: 780px;
  margin: auto;
  color: #555;
  line-height: 1.7;
  font-size: 16px;
  margin-bottom: 50px;
}

/* Wedding styles */
.wedding-style-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 25px;
  margin-bottom: 60px;
}

.wedding-style {
  background: #fff;
  padding: 28px 20px;
  border-radius: 16px;
  transition: all .4s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  position: relative;
  overflow: hidden;
}

.wedding-style::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,transparent,rgba(0,0,0,0.05),transparent);
  opacity: 0;
  transition: .4s ease;
}

.wedding-style:hover::after {
  opacity: 1;
}

.wedding-style:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0,0,0,0.14);
}

.style-icon {
  font-size: 32px;
  display: block;
  margin-bottom: 10px;
  transition: transform .35s ease;
}

.wedding-style:hover .style-icon {
  transform: scale(1.25) rotate(8deg);
}

.wedding-style h3 {
  font-size: 18px;
  color: #111;
}

/* Value cards */
.wedding-values {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 45px;
}

.value-card {
  background: #fff;
  padding: 18px 26px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: all .35s ease;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.15);
}

.value-icon {
  font-size: 20px;
}

/* Footer */
.signature-footer p {
  max-width: 700px;
  margin: auto;
  font-size: 17px;
  color: #444;
  line-height: 1.8;
}

/* Responsive */
@media (max-width:768px) {
  .signature-header h2 {
    font-size: 28px;
  }

  .value-card {
    padding: 14px 20px;
  }
}
.event-flow {
  position: relative;
  padding: 100px 20px;
  background: linear-gradient(180deg,#ffffff,#f4f8ff);
  text-align: center;
}
.events-stable {
  padding: 80px 20px;
  background: #f8fafc;
}

.events-header {
  text-align: center;
  max-width: 720px;
  margin: auto;
  margin-bottom: 50px;
}

.events-header h2 {
  font-size: 34px;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}

.events-header p {
  color: #555;
  line-height: 1.7;
}

/* grid */
.events-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 16px;
}

/* cards */
.event-box {
  background: #fff;
  padding: 28px 22px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 10px 28px rgba(0,0,0,0.06);
  transition: 0.3s ease;
  position: relative;
}

/* icon */
.event-box .icon {
  font-size: 28px;
  display: inline-block;
  margin-bottom: 12px;
}

/* title */
.event-box h4 {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  color: #222;
}

/* hover effect */
.event-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(0,0,0,0.12);
}

.event-box:hover h4 {
  color: #b8962e;
}

/* subtle top accent */
.event-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(to right, #d4af37, #b8962e);
  transition: 0.35s ease;
}

.event-box:hover::before {
  width: 100%;
}

/* responsive */
@media(max-width:768px){
  .events-header h2 {
    font-size: 26px;
  }
}




/**/


/* Section background with subtle depth */
.cs-mision-vision-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

/* Main card */
.cs-card-mv {
  background: #fff;
  border: 1px solid #e6e9ef;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);
  transition: transform 0.45s cubic-bezier(.21,.98,.6,.99),
              box-shadow 0.45s ease,
              border-color 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* subtle glow overlay */
.cs-card-mv::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right,
              rgba(43,108,176,0.08),
              transparent 60%);
  opacity: 0;
  transition: opacity 0.45s ease;
}

/* Smooth premium hover */
.cs-card-mv:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: #dbe2ea;
}

.cs-card-mv:hover::before {
  opacity: 1;
}

/* Highlight card (Mission) */
.cs-card-highlight {
  border: 2px solid #2b6cb0;
  box-shadow: 0 10px 30px rgba(43,108,176,0.08);
}

/* Header alignment */
.cs-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

/* Icon circle */
.cs-icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

/* Icon hover animation */
.cs-card-mv:hover .cs-icon-circle {
  transform: rotate(6deg) scale(1.08);
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

/* soft color styles */
.cs-icon-blue {
  background: #e8f1ff;
  color: #0d5cab;
}

.cs-icon-yellow {
  background: #fff3d6;
  color: #222;
}

/* text polish */
.cs-card-mv p {
  line-height: 1.7;
  font-size: 0.98rem;
}

/* smoother title spacing */
.cs-card-mv h3 {
  letter-spacing: 0.3px;
}
  /*about ends*/
    /* Layout components */
    .container {
      width: 100%;
      max-width: 1440px;
      margin: 0 auto;
      padding: 0 16px;
    }
    
    .hero-section {
      background-image: url('../images/img_.png');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      min-height: 700px;
      position: relative;
    }
    
    .hero-overlay {
      background: linear-gradient(180deg, #0000004c 0%, #0000007f 100%);
      min-height: 700px;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      width: 100%;
    }
    
    /* Header */
    .header {
    background-color: #ffffff;
    padding: 14px 16px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    z-index: 10;
}
    
    .logo {
      width: 120px;
      height: auto;
    }
    
    .nav-menu {
      display: none;
      gap: 28px;
      align-items: center;
    }
    
    .nav-menu a {
      font-size: 16px;
      font-family: 'Inter', sans-serif;
      font-weight: 600;
      line-height: 20px;
      color: #0f1823;
      text-decoration: none;
      transition: color 0.3s ease;
    }
    
    .nav-menu a:hover {
      color: #d4af37;
    }
    
    .cta-button {
      background-color: #d4af37;
      color: #2c2c2c;
      padding: 8px 22px;
      border-radius: 2px;
      text-decoration: none;
      font-size: 16px;
      font-weight: 500;
      transition: all 0.3s ease;
    }
    
    .cta-button:hover {
      background-color: #b8941f;
      transform: translateY(-2px);
    }
    
    .hamburger {
      display: block;
      background: none;
      border: none;
      font-size: 24px;
      cursor: pointer;
    }
    
    /*about -us*/
     .hero-content {
      max-width: 800px;
      margin: 0 auto;
    }
    
    /*.hero-title {*/
    /*  font-size: 32px;*/
    /*  font-family: 'Playfair Display', serif;*/
    /*  font-weight: 700;*/
    /*  line-height: 1.2;*/
    /*  color: #ffffff;*/
    /*  margin-bottom: 22px;*/
    /*}*/
    
    .hero-title .highlight-pink {
      color: #f43f5e;
    }
    
    .hero-title .highlight-purple {
      color: #aa4ed8;
    }
    
    .hero-description {
      font-size: 16px;
      color: #ffffff;
      line-height: 1.6;
      margin-bottom: 46px;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }
    
    .hero-buttons {
      display: flex;
      flex-direction: column;
      gap: 14px;
      align-items: center;
    }
    
    .btn-primary {
      background-color: #d4af37;
      color: #ffffff;
      padding: 18px 30px;
      border-radius: 10px;
      text-decoration: none;
      font-size: 16px;
      font-weight: 600;
      transition: all 0.3s ease;
      display: inline-block;
    }
    
    .btn-secondary {
      background: transparent;
      color: #ffffff;
      padding: 18px 32px;
      border: 2px solid #ffffff;
      border-radius: 10px;
      text-decoration: none;
      font-size: 16px;
      font-weight: 600;
      transition: all 0.3s ease;
      display: inline-block;
    }
    
    .btn-primary:hover, .btn-secondary:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }
    .presence-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, #ffffff, #f7f9fc);
  text-align: center;
}

.presence-title {
  font-size: 36px;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

.presence-subtitle {
  color: #666;
  font-size: 17px;
  margin-bottom: 40px;
}

.presence-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.presence-card {
  background: #fff;
  padding: 35px 25px;
  width: 260px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.presence-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(0,0,0,0.04), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.presence-card:hover::before {
  opacity: 1;
}

.presence-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.presence-icon {
  font-size: 30px;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.presence-card:hover .presence-icon {
  transform: scale(1.2) rotate(5deg);
}

.presence-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #111;
}

.presence-card p {
  color: #666;
  font-size: 15px;
}

.presence-description {
  max-width: 800px;
  margin: auto;
  color: #555;
  line-height: 1.7;
  font-size: 16px;
}

.presence-highlight {
  margin-top: 15px;
  font-weight: 600;
  color: #111;
}

/* Responsive */
@media (max-width: 768px) {
  .presence-title {
    font-size: 28px;
  }
}
.difference-section {
  padding: 90px 20px;
  background: linear-gradient(180deg,#ffffff,#f6f8fb);
  text-align: center;
}

.difference-header h2 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #111;
  font-weight: 700;
}

.difference-header p {
  color: #666;
  margin-bottom: 50px;
  font-size: 17px;
}

.difference-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
  gap: 30px;
}

.diff-card {
  background: #fff;
  padding: 35px 28px;
  border-radius: 18px;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.diff-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,transparent,rgba(0,0,0,0.04),transparent);
  opacity: 0;
  transition: opacity .4s ease;
}

.diff-card:hover::before {
  opacity: 1;
}

.diff-card:hover {
  transform: translateY(-12px) scale(1.02);
 box-shadow: 0 20px 45px rgb(0 0 9 / 45%);
}

.diff-icon {
  font-size: 30px;
  margin-bottom: 15px;
  display: inline-block;
  transition: transform .35s ease;
}

.diff-card:hover .diff-icon {
  transform: scale(1.25) rotate(8deg);
}

.diff-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #111;
}

.diff-card p {
  color: #555;
  line-height: 1.6;
  font-size: 15px;
}

.diff-card ul {
  padding-left: 18px;
  margin-top: 8px;
}

.diff-card ul li {
  font-size: 14px;
  color: #555;
  margin-bottom: 6px;
  position: relative;
}

.diff-card ul li::marker {
  color: #000;
}

/* subtle glowing bottom border on hover */
.diff-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(to right,#000,#555);
  transition: width .4s ease;
}

.diff-card:hover::after {
  width: 100%;
}

/* Responsive */
@media (max-width:768px){
  .difference-header h2 {
    font-size: 28px;
  }
}
.signature-wedding {
  padding: 90px 20px;
  background: linear-gradient(180deg,#ffffff,#f7f9fc);
  text-align: center;
}

/* Header */
.signature-header h2 {
  font-size: 36px;
  margin-bottom: 12px;
  font-weight: 700;
  color: #111;
}

.signature-header p {
  max-width: 780px;
  margin: auto;
  color: #555;
  line-height: 1.7;
  font-size: 16px;
  margin-bottom: 50px;
}

/* Wedding styles */
.wedding-style-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 25px;
  margin-bottom: 60px;
}

.wedding-style {
  background: #fff;
  padding: 28px 20px;
  border-radius: 16px;
  transition: all .4s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  position: relative;
  overflow: hidden;
}

.wedding-style::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,transparent,rgba(0,0,0,0.05),transparent);
  opacity: 0;
  transition: .4s ease;
}

.wedding-style:hover::after {
  opacity: 1;
}

.wedding-style:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0,0,0,0.14);
}

.style-icon {
  font-size: 32px;
  display: block;
  margin-bottom: 10px;
  transition: transform .35s ease;
}

.wedding-style:hover .style-icon {
  transform: scale(1.25) rotate(8deg);
}

.wedding-style h3 {
  font-size: 18px;
  color: #111;
}

/* Value cards */
.wedding-values {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 45px;
}

.value-card {
  background: #fff;
  padding: 18px 26px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: all .35s ease;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.15);
}

.value-icon {
  font-size: 20px;
}

/* Footer */
.signature-footer p {
  max-width: 700px;
  margin: auto;
  font-size: 17px;
  color: #444;
  line-height: 1.8;
}

/* Responsive */
@media (max-width:768px) {
  .signature-header h2 {
    font-size: 28px;
  }

  .value-card {
    padding: 14px 20px;
  }
}
.event-flow {
  position: relative;
  padding: 100px 20px;
  background: linear-gradient(180deg,#ffffff,#f4f8ff);
  text-align: center;
}
.events-stable {
  padding: 80px 20px;
  background: #f8fafc;
}

.events-header {
  text-align: center;
  max-width: 720px;
  margin: auto;
  margin-bottom: 50px;
}

.events-header h2 {
  font-size: 34px;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}

.events-header p {
  color: #555;
  line-height: 1.7;
}

/* grid */
.events-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 16px;
}

/* cards */
.event-box {
  background: #fff;
  padding: 28px 22px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 10px 28px rgba(0,0,0,0.06);
  transition: 0.3s ease;
  position: relative;
}

/* icon */
.event-box .icon {
  font-size: 28px;
  display: inline-block;
  margin-bottom: 12px;
}

/* title */
.event-box h4 {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  color: #222;
}

/* hover effect */
.event-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(0,0,0,0.12);
}

.event-box:hover h4 {
  color: #b8962e;
}

/* subtle top accent */
.event-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(to right, #d4af37, #b8962e);
  transition: 0.35s ease;
}

.event-box:hover::before {
  width: 100%;
}

/* responsive */
@media(max-width:768px){
  .events-header h2 {
    font-size: 26px;
  }
}




/**/


/* Section background with subtle depth */
.cs-mision-vision-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

/* Main card */
.cs-card-mv {
  background: #fff;
  border: 1px solid #e6e9ef;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);
  transition: transform 0.45s cubic-bezier(.21,.98,.6,.99),
              box-shadow 0.45s ease,
              border-color 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* subtle glow overlay */
.cs-card-mv::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right,
              rgba(43,108,176,0.08),
              transparent 60%);
  opacity: 0;
  transition: opacity 0.45s ease;
}

/* Smooth premium hover */
.cs-card-mv:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: #dbe2ea;
}

.cs-card-mv:hover::before {
  opacity: 1;
}

/* Highlight card (Mission) */
.cs-card-highlight {
  border: 2px solid #2b6cb0;
  box-shadow: 0 10px 30px rgba(43,108,176,0.08);
}

/* Header alignment */
.cs-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

/* Icon circle */
.cs-icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

/* Icon hover animation */
.cs-card-mv:hover .cs-icon-circle {
  transform: rotate(6deg) scale(1.08);
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

/* soft color styles */
.cs-icon-blue {
  background: #e8f1ff;
  color: #0d5cab;
}

.cs-icon-yellow {
  background: #fff3d6;
  color: #222;
}

/* text polish */
.cs-card-mv p {
  line-height: 1.7;
  font-size: 0.98rem;
}

/* smoother title spacing */
.cs-card-mv h3 {
  letter-spacing: 0.3px;
}
    /*about -us ends here*/
    
    
    /* Hero content */
    .hero-content {
      text-align: center;
      padding: 140px 16px 0 16px;
      max-width: 92%;
      margin: 0 auto;
    }
    
    .hero-title {
      font-size: 42px;
      font-family: 'Playfair Display', serif;
      font-weight: 400;
      line-height: 1.2;
      color: #ffffff;
      margin-bottom: 32px;
    }
    
    .hero-title .brand-name {
      color:darkblue;
      font-weight: 500;
    }
    
    .hero-subtitle {
      font-size: 16px;
      font-family: 'Inter', sans-serif;
      font-weight: 400;
      line-height: 28px;
      color: #ffffffe5;
      margin-bottom: 54px;
      max-width: 80%;
      margin-left: auto;
      margin-right: auto;
    }
    
    .hero-buttons {
      display: flex;
      flex-direction: column;
      gap: 16px;
      align-items: center;
    }
    
    .btn-primary {
      background-color: #d4af37;
      color: #2c2c2c;
      padding: 18px 32px;
      border-radius: 32px;
      text-decoration: none;
      font-size: 18px;
      font-weight: 500;
      transition: all 0.3s ease;
      display: inline-block;
    }
    
    .btn-secondary {
      background: transparent;
      color: #ffffff;
      padding: 18px 32px;
      border: 2px solid #ffffff;
      border-radius: 32px;
      text-decoration: none;
      font-size: 18px;
      font-weight: 500;
      transition: all 0.3s ease;
      display: inline-block;
    }
    
    .btn-primary:hover, .btn-secondary:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }
    
    /* Welcome section */
    .welcome-section {
      background-color: #e7bfd7cc;
      padding: 16px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 36px;
    }
    
    .welcome-images {
      width: 100%;
      max-width: 506px;
      position: relative;
      height: 300px;
    }
    
    .welcome-image {
      position: absolute;
      border-radius: 20px;
    }
    
    .welcome-image:nth-child(1) {
      width: 260px;
      height: 306px;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }
    
    .welcome-image:nth-child(2) {
      width: 176px;
      height: 220px;
      top: 0;
      left: 0;
    }
    
    .welcome-image:nth-child(3) {
      width: 148px;
      height: 186px;
      bottom: 0;
      right: 0;
    }
    
    .welcome-content {
      width: 100%;
      text-align: center;
    }
    
    .section-title {
      font-size: 24px;
      font-family: 'Playfair Display', serif;
      font-weight: 400;
      line-height: 48px;
      color: #2c2c2c;
      margin-bottom: 16px;
    }
    
    .section-line {
      width: 78px;
      height: 2px;
      background-color: #d4af37;
      margin: 0 auto 28px;
    }
    
    .welcome-text {
      font-size: 16px;
      font-family: 'Inter', sans-serif;
      font-weight: 400;
      line-height: 32px;
      color: #374151;
      text-align: justify;
      margin-bottom: 28px;
    }
    
    .welcome-quote {
      background-color: rgba(255, 255, 255, 0.8);
      padding: 22px;
      border-radius: 8px;
      margin-top: 16px;
    }
    
    .welcome-quote p {
      font-size: 16px;
      font-family: 'Calistoga', serif;
      font-weight: 400;
      line-height: 24px;
      color: #374151;
      text-align: justify;
      margin-bottom: 0 !important;
    }
    
    /* Featured destinations */
    .featured-section {
      background-color: #f9fafb;
      padding: 56px 16px;
    }
    
    .featured-header {
      text-align: center;
      margin-bottom: 56px;
    }
    
    .featured-title {
      font-size: 24px;
      font-family: 'Playfair Display', serif;
      font-weight: 400;
      line-height: 48px;
      color: #2c2c2c;
      margin-bottom: 8px;
    }
    
    .featured-subtitle {
      font-size: 16px;
      font-family: 'Inter', sans-serif;
      font-weight: 400;
      line-height: 28px;
      color: #4b5563;
      max-width: 80%;
      margin: 0 auto;
    }
    
    .featured-content {
      display: flex;
      flex-direction: column;
      gap: 44px;
      margin-bottom: 44px;
    }
    
    .featured-main {
      position: relative;
      border-radius: 16px;
      overflow: hidden;
      height: 320px;
    }
    
    .featured-main img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    .featured-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(0deg, #00000099 0%, #00000000 100%);
      padding: 24px;
      color: white;
    }
    
    .featured-overlay h3 {
      font-size: 20px;
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      line-height: 36px;
      margin-bottom: 4px;
    }
    
    .featured-overlay p {
      font-size: 14px;
      font-family: 'Poppins', sans-serif;
      font-weight: 400;
      line-height: 24px;
      margin-bottom: 12px;
    }
    
    .featured-overlay .btn {
      background-color: #ffffff;
      color: #1f2937;
      padding: 8px 22px;
      border-radius: 20px;
      text-decoration: none;
      font-size: 14px;
      font-weight: 500;
      display: inline-block;
    }
    
    .featured-text {
      font-size: 16px;
      font-family: 'Inter', sans-serif;
      font-weight: 400;
      line-height: 35px;
      color: #4b5563;
      text-align: justify;
      margin-bottom: 28px;
    }
    
    .destination-cards {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }
    
    .destination-card {
      background-color: #ffffff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0px 1px 2px #0000000c;
      transition: transform 0.3s ease;
    }
    
    .destination-card:hover {
      transform: translateY(-4px);
    }
    
    .destination-card img {
      width: 100%;
      height: 192px;
      object-fit: cover;
    }
    
    .card-content {
      padding: 16px;
    }
    
    .card-title {
      font-size: 16px;
      font-family: 'Poppins', sans-serif;
      font-weight: 600;
      line-height: 24px;
      color: #000000;
      margin-bottom: 4px;
    }
    
    .card-location {
      font-size: 14px;
      font-family: 'Poppins', sans-serif;
      font-weight: 400;
      line-height: 21px;
      color: #4b5563;
      margin-bottom: 8px;
    }
    
    .card-link {
      font-size: 14px;
      font-family: 'Poppins', sans-serif;
      font-weight: 500;
      line-height: 21px;
      color: #00bfa5;
      text-decoration: none;
    }
    
    /* CTA Section */
    .cta-section {
      background-image: url('../images/untaam-wedding-planner.jpg');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      padding: 146px 28px;
      text-align: center;
      position: relative;
    }
    
    .cta-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(0deg, #0000007a 0%, #0000007a 100%);
    }
    
    .cta-content {
      position: relative;
      z-index: 1;
    }
    
    .cta-title {
      font-size: 28px;
      font-family: 'Poppins', sans-serif;
      font-weight: 500;
      line-height: 1.2;
      color: #ffffff;
      margin-bottom: 30px;
    }
    
    .cta-brand {
      font-size: 40px;
      font-family: 'Cormorant Garamond', serif;
      font-weight: 700;
      line-height: 1.2;
      color: #ff8d28;
    }
    
    /* Multi-purpose section */
    .multipurpose-section {
      background-color: #f8f6f0cc;
      padding: 42px 16px;
    }
    
    .multipurpose-header {
      text-align: center;
      margin-bottom: 46px;
    }
    
    .multipurpose-title {
      font-size: 24px;
      font-family: 'Playfair Display', serif;
      font-weight: 400;
      line-height: 48px;
      color: #2c2c2c;
      margin-bottom: 14px;
    }
    
    .services-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      margin-bottom: 58px;
    }
    
    .service-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 16px;
    }
    
    .service-icon {
      width: 64px;
      height: 64px;
      border-radius: 32px;
      background: linear-gradient(90deg, #c40b6d 0%, #333030 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 16px;
    }
    
    .service-icon img {
      width: 32px;
      height: 32px;
    }
    
    .service-title {
      font-size: 14px;
      font-family: 'Poppins', sans-serif;
      font-weight: 500;
      line-height: 24px;
      color: #3d3a3a;
    }
    
    .service-circles {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 0px;
      /* padding: 0px 48px; */
    }
    
    .service-circle {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 20px;
          padding: 6px 6px 22px 6px;
      border: linear-gradient(90deg, #c40b6d 0%, #333030 100%);
      /* border-image: linear-gradient(90deg, #c40b6d 0%, #333030 100%); */
      border-image-slice: 1;
      border-radius: 100px;
      width: 100%;
      max-width: 150px;
      margin: 0px 19%;
      border: 3.3px solid #c40b6d;
      /* text-align: center; */
      justify-content: center;
    }
    
    .service-circle img {
      width: 130px;
      height: 130px;
      border-radius: 100px;
      object-fit: cover;
    }
    
    .service-circle h3 {
      font-size: 18px;
      font-family: 'Voltaire', sans-serif;
      font-weight: 400;
      line-height: 24px;
      color: #030202;
    }
    
    /* Dream destinations */
    .dream-section {
      padding: 52px 16px;
      position: relative;
    }
    
    .dream-content {
      display: flex;
      flex-direction: column;
      gap: 40px;
    }
    
    .dream-left {
      display: flex;
      flex-direction: column;
      gap: 40px;
    }
    
    .dream-left img {
      width: 100%;
      border-radius: 8px;
    }
    
    .dream-title {
      font-size: 32px;
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      line-height: 1;
      background: linear-gradient(90deg, #c40b6d 0%, #333030 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-align: center;
      /* margin-bottom: 28px; */
    }
    
    .dream-text {
      font-size: 16px;
      font-family: 'Inter', sans-serif;
      font-weight: 400;
      line-height: 30px;
      color: #374151;
      text-align: justify;
      /* margin-bottom: 36px; */
    }
    
    .dream-right {
      display: flex;
      flex-direction: column;
      gap: 48px;
    }
    
    .dream-right img {
      width: 100%;
      border-radius: 8px;
      margin-bottom: 24px;
    }
    
    .dream-subtitle {
      font-size: 40px;
      font-family: 'Cormorant Garamond', serif;
      font-weight: 700;
      line-height: 1.2;
      background: linear-gradient(90deg, #c40b6d 0%, #333030 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-align: center;
      /* margin-bottom: 174px; */
    }
    
    .dream-description {
      font-size: 16px;
      font-family: 'Inter', sans-serif;
      font-weight: 400;
      line-height: 30px;
      color: #374151;
      text-align: justify;
      /* margin-bottom: 130px; */
    }
    
    /* Team section */
    .team-section {
      background-color: #f8f6f0;
      padding: 46px 16px;
    }
    
    .team-header {
      text-align: center;
      margin-bottom: 82px;
    }
    
    .team-title {
      font-size: 24px;
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      line-height: 48px;
      color: #1f2937;
      margin-bottom: 14px;
    }
    
    .team-subtitle {
      font-size: 18px;
      font-family: 'Inter', sans-serif;
      font-weight: 400;
      line-height: 25px;
      color: #4b5563;
    }
    
    .team-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 46px;
    }
    
    .team-member {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 34px;
    }
    
    .team-image-container {
      border: 1px solid #d4af37;
      border-radius: 60px 60px 10px 10px;
      box-shadow: 4px 7px 4px #0000003f;
      overflow: hidden;
    }
    
    .team-image {
      width: 150px;
      height: 150px;
      object-fit: cover;
      border-radius: 60px 60px 10px 10px;
    }
    
    .team-role {
      font-size: 14px;
      font-family: 'Poppins', sans-serif;
      font-weight: 600;
      line-height: 24px;
      color: #1f2937;
      text-align: center;
    }
    
    /* Services showcase */
    .services-showcase {
      /* background-image: url('../images/img_rectangle_2.png'); */
      background-size: cover;
      background-position: center;
      /* padding: 50px 16px; */
      position: relative;
    }
    
    .services-showcase::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      /* background: #65004C; */
    }
    
    .services-content {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      gap: 90px;
    }
    
    .services-left {
      display: flex;
      flex-direction: column;
      gap: 90px;
      width: 50%;
      background: #6d004f; /* your pink color */
      color: #fff;
      padding: 60px 40px;
      clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
    }
    
    .services-row {
      display: flex;
      flex-direction: column;
      gap: 32px;
      align-items: center;
    }
    
    .service-showcase-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      text-align: center;
    }
    
    .service-showcase-icon {
      width: 70px;
      height: 70px;
    }
    
    .service-showcase-title {
      font-size: 18px;
      font-family: 'Playfair Display', serif;
      font-weight: 500;
      line-height: 27px;
      color: #ffffff;
    }
    
    .services-right {
      text-align: center;
      width: 50%;
      background: #ffffff;
      padding: 60px 40px;
      color: #333;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    
    .services-main-title {
      font-size: 24px;
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      line-height: 1.5;
      color: #000000;
      margin-bottom: 20px;
    }
    
    .services-description {
      font-size: 18px;
      font-family: 'Inter', sans-serif;
      font-weight: 400;
      line-height: 25px;
      color: #000000;
      margin-bottom: 40px;
    }
    
    .services-cta {
      background-color: #f4ba00;
      color: #2c2c2c;
      padding: 12px 34px;
      border-radius: 8px;
      text-decoration: none;
      font-size: 19px;
      font-weight: 500;
      box-shadow: 1px 6px 8px #0000003f;
      display: inline-block;
      transition: all 0.3s ease;
      width: 192px;
    }
    
    .services-cta:hover {
      transform: translateY(-2px);
      box-shadow: 2px 8px 12px #0000004f;
    }
    
    /* Why choose section */
    .why-choose-section {
      background-image: url('../images/img_image_1.png');
      background-size: cover;
      background-position: center;
      padding: 56px 16px;
      position: relative;
    }
    
    .why-choose-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(0deg, #000000a5 0%, #00000000 100%);
    }
    
    .why-choose-content {
      position: relative;
      z-index: 1;
    }
    
    .why-choose-header {
      text-align: center;
      margin-bottom: 40px;
    }
    
    .why-choose-title {
      font-size: 24px;
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      line-height: 48px;
      color: #ffffff;
      margin-bottom: 8px;
      background: linear-gradient(90deg, #c40b6d40 0%, #333030 100%);
    }
    
    .why-choose-subtitle {
      font-size: 16px;
      font-family: 'Inter', sans-serif;
      font-weight: 400;
      line-height: 28px;
      color: #ffffff;
    }
    
    .features-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 32px;
    }
    
    .feature-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 18px;
    }
    
    .feature-icon {
      width: 48px;
      height: 48px;
      background-color: #4a9b8e;
      border-radius: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 16px;
    }
    
    .feature-icon img {
      width: 24px;
      height: 24px;
    }
    
    .feature-title {
      font-size: 16px;
      font-family: 'Inter', sans-serif;
      font-weight: 600;
      line-height: 22px;
      color: #ffffff;
    }
    
    .feature-description {
      font-size: 14px;
      font-family: 'Inter', sans-serif;
      font-weight: 400;
      line-height: 22px;
      color: #f2f2f2;
    }
    
    /* Resort gallery */
    .resort-section {
      background-color: #f8f6f0;
      padding: 78px 16px;
    }
    
    .resort-header {
      text-align: center;
      margin-bottom: 64px;
    }
    
    .resort-title {
      font-size: 24px;
      font-family: 'Playfair Display', serif;
      font-weight: 400;
      line-height: 48px;
      color: #2c2c2c;
      margin-bottom: 8px;
    }
    
    .resort-subtitle {
      font-size: 16px;
      font-family: 'Inter', sans-serif;
      font-weight: 400;
      line-height: 28px;
      color: #4b5563;
    }
    
    .resort-gallery {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      margin-bottom: 58px;
    }
    
    .resort-gallery img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: 8px;
    }
    
    .view-more-btn {
      background-color: #d4af37;
      color: #2c2c2c;
      padding: 12px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-size: 14px;
      font-weight: 500;
      display: inline-block;
      margin: 0 auto;
      transition: all 0.3s ease;
    }
    
    .view-more-btn:hover {
      background-color: #b8941f;
      transform: translateY(-2px);
    }
    

    .left-side {
    width: 50%;
    background: #6d004f; /* your pink color */
    color: #fff;
    padding: 60px 40px;
    clip-path: polygon(0 0, 85% 0, 75% 100%, 0 100%);
}

.right-side {
    width: 50%;
    background: #ffffff;
    padding: 60px 40px;
    color: #333;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
    /* CTA final */
    .cta-final {
      background-image: url('../images/img_img_404x1440.png');
      background-size: cover;
      background-position: center;
      padding: 56px 16px 42px;
      text-align: center;
      position: relative;
    }
    
    .cta-final::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.6);
    }
    
    .cta-final-content {
      position: relative;
      z-index: 1;
    }
    
    .cta-final-title {
      font-size: 28px;
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      line-height: 1.3;
      color: #ffffff;
      margin-bottom: 8px;
    }
    
    .cta-final-subtitle {
      font-size: 16px;
      font-family: 'Inter', sans-serif;
      font-weight: 400;
      line-height: 28px;
      color: #d1d5db;
      margin-bottom: 32px;
      max-width: 80%;
      margin-left: auto;
      margin-right: auto;
    }
    
    .cta-final-btn {
      background-color: #d4af37;
      color: #2c2c2c;
      padding: 16px 34px;
      border-radius: 30px;
      text-decoration: none;
      font-size: 16px;
      font-weight: 500;
      display: inline-block;
      transition: all 0.3s ease;
    }
    
    .cta-final-btn:hover {
      background-color: #b8941f;
      transform: translateY(-2px);
    }
    
    /* Footer */
    .footer {
      background-color: #ffffff;
      padding: 46px 16px 15px;
    }
    
    .footer-content {
      display: flex;
      flex-direction: column;
      gap: 80px;
      margin-bottom: 32px;
    }
    
    .footer-main {
      display: flex;
      flex-direction: column;
      gap: 48px;
    }
    
    .footer-brand {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    
    .footer-logo {
      width: 150px;
      height: auto;
    }
    
    .footer-description {
      font-size: 14px;
      font-family: 'Inter', sans-serif;
      font-weight: 400;
      line-height: 24px;
      color: #242931;
    }
    
    .social-links {
      display: flex;
      gap: 16px;
      align-items: center;
    }
    
    .social-links img {
      width: 24px;
      height: 32px;
    }
    
    .footer-sections {
      display: flex;
      flex-direction: column;
      gap: 48px;
    }
    
    .footer-section h3 {
      font-size: 20px;
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      line-height: 32px;
      color: #93026f;
      margin-bottom: 24px;
    }
    
    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    
    .footer-link {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
      font-family: 'Inter', sans-serif;
      font-weight: 400;
      line-height: 20px;
      color: #242931;
      text-decoration: none;
    }
    
    .footer-link img {
      width: 16px;
      height: 16px;
    }
    
    .footer-link:hover {
      color: #d4af37;
    }
    
    .footer-bottom {
      text-align: center;
      padding-top: 32px;
      border-top: 1px solid #e5e7eb;
    }
    
    .footer-bottom p {
      font-size: 14px;
      font-family: 'Inter', sans-serif;
      font-weight: 400;
      line-height: 20px;
      color: #242931;
    }
    
    /* Typography */
    .playfair {
      font-family: 'Playfair Display', serif;
    }
    
    .inter {
      font-family: 'Inter', sans-serif;
    }
    
    .poppins {
      font-family: 'Poppins', sans-serif;
    }
    
    .voltaire {
      font-family: 'Voltaire', sans-serif;
    }
    
    .cormorant {
      font-family: 'Cormorant Garamond', serif;
    }
    
    .calistoga {
      font-family: 'Calistoga', serif;
    }
    
    /* Interactive states */
    .btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }
    
    .card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    }
    
    /* Responsive media queries */
    @media (min-width: 640px) {
      .container {
        /* padding: 0 24px; */
      }
      
      .hero-title {
        font-size: 48px;
      }
      
      .hero-subtitle {
        font-size: 18px;
        max-width: 70%;
      }
      
      .hero-buttons {
        flex-direction: row;
        justify-content: center;
      }
      
      .services-grid {
        grid-template-columns: repeat(3, 1fr);
      }
      
      .service-circles {
        grid-template-columns: repeat(3, 1fr);
      }
      
      .team-grid {
        grid-template-columns: repeat(3, 1fr);
      }
      
      .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px;
      }
      
      .resort-gallery {
        grid-template-columns: repeat(3, 1fr);
      }
      
      .destination-cards {
        flex-direction: row;
        gap: 24px;
      }
      
      .destination-card {
        flex: 1;
      }
    }
    
    @media (min-width: 768px) {
      .container {
        /* padding: 0 32px; */
      }
      
      .hamburger {
        display: none;
      }
      
      .nav-menu {
        display: flex;
      }
      
      .header {
        padding: 14px 88px;
      }
      
      .hero-title {
        font-size: 60px;
      }
      
      .hero-subtitle {
        font-size: 20px;
        max-width: 54%;
      }
      
      .welcome-section {
        flex-direction: row;
        align-items: center;
        padding: 65px 56px;
      }
      
      .welcome-images {
        width: 36%;
        height: 444px;
      }
      
      .welcome-content {
        width: 54%;
        text-align: left;
        margin-left: 36px;
      }
      
      .section-title {
        font-size: 36px;
      }
      
      .featured-content {
        flex-direction: row;
        gap: 44px;
      }
      
      .featured-main {
        width: 50%;
      }
      
      .featured-text-content {
        width: 46%;
      }
      
      .services-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 24px;
      }
      
      .service-circles {
        grid-template-columns: repeat(5, 1fr);
      }
      
      .dream-content {
        flex-direction: row;
        gap: 72px;
      }
      
      .dream-left {
        width: 46%;
      }
      
      .dream-right {
        width: 48%;
      }
      
      .team-grid {
        grid-template-columns: repeat(5, 1fr);
      }
      
      .services-content {
        flex-direction: row;
        gap: 48px;
      }
      
      .services-left {
        width: 60%;
      }
      
      .services-right {
        width: 40%;
        text-align: left;
      }
      
      .services-row {
        flex-direction: row;
        justify-content: space-evenly;
      }
      
      .features-grid {
        grid-template-columns: repeat(5, 1fr);
      }
      
      .resort-gallery {
        grid-template-columns: repeat(4, 1fr);
      }
      
      .footer-main {
        flex-direction: row;
        justify-content: space-between;
      }
      
      .footer-brand {
        width: 32%;
      }
      
      .footer-sections {
        flex-direction: row;
        width: 58%;
        gap: 80px;
      }
    }
    .cta-brand {
        font-size: 60px;
      }
  
    @media (min-width: 1024px) {
      .hero-title {
        font-size: 60px;
      }
      
       .header {
        padding: 14px 21px;
    }
      
      .section-title {
        font-size: 36px;
      }
      
      .featured-title {
        font-size: 36px;
      }
      
      .multipurpose-title {
        font-size: 36px;
      }
      
      .cta-title {
        font-size: 50px;
      }
      
      .cta-brand {
        font-size: 60px;
      }
      
      .dream-title {
        font-size: 37px;
      }
      
      .dream-subtitle {
        font-size: 40px;
      }
      
      .team-title {
        font-size: 36px;
      }
      
      .services-main-title {
        font-size: 36px;
      }
      
      .why-choose-title {
        font-size: 36px;
      }
      
      .resort-title {
        font-size: 36px;
      }
      
      .cta-final-title {
        font-size: 48px;
      }
    }
    
    @media (min-width: 1280px) {
      .container {
        max-width: 1288px;
      }
    }
    
    @media (min-width: 1536px) {
      .container {
        max-width: 1440px;
      }
    }
@media (max-width:768px) {
    .services-cta {
    background-color: #f4ba00;
    color: #2c2c2c;
    padding: 12px 34px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 19px;
    font-weight: 500;
    box-shadow: 1px 6px 8px #0000003f;
    display: inline-block;
    transition: all 0.3s 
ease;
    width: 192px;
    /* margin-left: 25%; */
    margin: auto;
}
.services-right {
    text-align: center;
    width: 100%;
    background: #ffffff;
    padding: 60px 40px;
    color: #333;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.services-left {
    display: flex;
    flex-direction: column;
    gap: 90px;
    width: 100%;
    background: #6d004f;
    color: #fff;
    padding: 60px 40px;
    clip-path: none;
}
.team-grid {
    display: block;
    grid-template-columns: repeat(2, 1fr);
    gap: 46px;
}
.service-circle {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 34px;
    padding: 16px 14px;
    border: 4px solid transparent;
    border-image: linear-gradient(90deg, #c40b6d 0%, #333030 100%);
    border-image-slice: 1;
    border-radius: 114px;
    width: 100%;
    max-width: 230px;
    margin: 0 auto;
    margin-bottom: 10px;
}
.service-circles {
    display: block;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
    padding: 0 16px;
    /* margin-bottom: 27px; */
}
.welcome-section {
    background-color: #e7bfd7cc;
    padding: 80px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
}
.welcome-image:nth-child(2) {
    width: 130px;
    height: 163px;
    top: -63px;
    left: -10px;
}
.welcome-image:nth-child(1) {
    width: 220px;
    height: 264px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.welcome-image:nth-child(3) {
    width: 113px;
    height: 140px;
    bottom: -41px;
    right: 0;
}
.dream-description {
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 30px;
    color: #374151;
    text-align: justify;
    margin-bottom: 0px;
}
.dream-subtitle {
    font-size: 40px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    line-height: 1.2;
    background: linear-gradient(90deg, #c40b6d 0%, #333030 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 0px;
}
.dream-right img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 25px;
}
.dream-title {
    font-size: 32px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(90deg, #c40b6d 0%, #333030 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 0px;
}
.services-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 0px;
}
.hero-content {
    text-align: center;
    padding: 80px 16px 0 16px;
    max-width: 92%;
    margin: 0 auto;
}
.hero-title {
    font-size: 32px;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 23px;
}
.hero-subtitle {
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 28px;
    color: #ffffffe5;
    margin-bottom: 21px;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

}

.service-circle:hover img {
    width: 130px;
    height: 130px;
    border-radius: 100px;
    object-fit: cover;
    position: relative;
    top: 82px;
}
.service-circle:hover h3 {
    font-size: 18px;
    font-family: 'Voltaire', sans-serif;
    font-weight: 400;
    line-height: 24px;
    color: #fff;
    position: relative;
    /* top: -108px; */
    bottom: 118px;
}
.service-circle:hover {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    padding: 6px 6px 22px 6px;
    border: linear-gradient(90deg, #c40b6d 0%, #333030 100%);
    /* border-image: linear-gradient(90deg, #c40b6d 0%, #333030 100%); */
    border-image-slice: 1;
    border-radius: 100px;
    width: 100%;
    max-width: 150px;
    margin: 0px 19%;
    border: 3.3px solid #c40b6d;
    /* text-align: center; */
    justify-content: center;
    /* background-color: #c30b6d; */
    /* color: #fff; */
    background: linear-gradient(90deg, #c40b6d 0%, #333030 100%);
}

/* ---------------------- */
/* MOBILE MENU */
/* ---------------------- */

.mobile-menu {
    position: fixed;
    top: 0;
    /* right: -260px; */
    width: 85%;
    height: 100vh;
    background: #ffffff;
    box-shadow: -2px 0 12px rgba(0,0,0,0.15);
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    /* gap: 22px; */
    transition: all 0.4s ease;
    z-index: 999;
}

.mobile-menu a {
    text-decoration: none;
    color: #000;
    font-size: 18px;
    font-weight: 600;
    border-bottom: 1px solid #0000003d;
    align-items: center;
    padding: 12px 0;
}

.mobile-menu .close-btn {
    font-size: 32px;
    margin-bottom: 20px;
    cursor: pointer;
    background: none;
    border: none;
    text-align: right;
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45);
    display: none;
    z-index: 900;
}

/* ---------------------- */
/* MOBILE VIEW */
/* ---------------------- */

@media (max-width: 768px) {
    .nav-menu,
    .cta-button {
        display: none;
    }

    .hamburger {
        display: block;
    }
}
@media(min-width:991px){
  .mobile-menu {
    position: fixed;
    top: 0;
    /* right: -260px; */
    width: 100%;
    height: 100vh;
    background: #ffffff;
    box-shadow: -2px 0 12px rgba(0, 0, 0, 0.15);
    padding: 30px 20px;
    display: none;
    flex-direction: column;
    /* gap: 22px; */
    transition: all 0.4s 
ease;
    z-index: 999;
}
}

 /* ================= NAVBAR ================= */
.untaam-navbar {
  background: #ffffff;
  border-bottom: 1px solid #eaeaea;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.untaam-navbar-inner {
  max-width: 1200px;
  margin: auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.untaam-logo img {
  height: 42px;
  display: block;
}

/* ================= DESKTOP MENU ================= */
.untaam-desktop-menu {
  display: flex;
  align-items: center;
  gap: 26px;
}

.untaam-desktop-menu a {
  text-decoration: none;
  color: #111111;
  font-size: 15px;
}

/* CTA */
.untaam-cta {
  background: #f2c94c;
  padding: 10px 16px;
  border-radius: 4px;
  font-weight: bold;
  color: #111111;
}

/* ================= DESKTOP DROPDOWN ================= */
.untaam-desktop-dropdown {
  position: relative;
}

.untaam-desktop-dropdown-trigger {
  padding: 14px 0;
  cursor: pointer;
  display: inline-block;
}

/* WHITE dropdown */
.untaam-desktop-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  min-width: 240px;
  border-radius: 6px;
  padding: 10px 0 0;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.effect:hover {
  color: #d4af37;
}

.bottom-drop {
    border-bottom: none !important;
}

.untaam-desktop-dropdown-menu a:last-child:hover {
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}

.untaam-desktop-dropdown:hover .untaam-desktop-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.untaam-desktop-dropdown-menu a {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  color: #111111;
  border-bottom: 1px solid darkgray;
}

.untaam-desktop-dropdown-menu a:hover {
  background: linear-gradient(90deg, #f2c94c 0%, #a79999 100%);
}

.untaam-hamburger {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

.untaam-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 1500;
}

.untaam-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.untaam-mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 75%;
  height: 100%;
  background: #ffffff;
  box-shadow: 4px 0 30px rgba(0,0,0,0.25);

  transform: translateX(-100%);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
  z-index: 2000;

  display: flex;
  flex-direction: column;
}

.untaam-mobile-overlay.active {
  transform: translateX(0);
  opacity: 1;
}

/* Mobile header */
.untaam-overlay-header {
  flex-shrink: 0;
  padding: 20px;
  border-bottom: 1px solid #eaeaea;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.untaam-overlay-header img {
  height: 36px;
}

.untaam-close {
  font-size: 26px;
  cursor: pointer;
}

/* SCROLLABLE CONTENT */
.untaam-overlay-links {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.untaam-overlay-links a {
  text-decoration: none;
  font-size: 17px;
  color: #111111;
}

.untaam-overlay-dropdown-toggle {
  font-size: 17px;
  cursor: pointer;
}

.untaam-overlay-dropdown-menu {
  background: #ffffff;
  border-radius: 6px;
  margin-top: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);

  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.untaam-overlay-dropdown.open .untaam-overlay-dropdown-menu {
  max-height: 600px;
}

.untaam-overlay-dropdown-menu a {
  display: block;
  padding: 10px 14px;
  font-size: 15px;
  color: #111111;
}

.untaam-overlay-dropdown-menu a:hover {
  background: linear-gradient(90deg, #f2c94c 0%, #a79999 100%);
}

.untaam-desktop-menu a,
.untaam-desktop-dropdown-trigger {
  font-weight: 600;
}
.untaam-overlay-links a,
.untaam-overlay-dropdown-toggle {
  font-weight: 600;
}


/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .untaam-desktop-menu {
    display: none;
  }

  .untaam-hamburger {
    display: block;
  }
}
@media (max-width: 768px) {

  /* normal links */
  .untaam-overlay-links > a {
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 12px;
  }

  /* dropdown toggle */
  .untaam-overlay-dropdown-toggle {
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 12px;
  }

  /* dropdown items */
  .untaam-overlay-dropdown-menu a {
    border-bottom: 1px solid #eaeaea;
  }

  /* remove border from last dropdown item */
  .untaam-overlay-dropdown-menu a:last-child {
    border-bottom: none;
  }
}
@media (max-width: 768px) {

  .untaam-overlay-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
  }

  .untaam-dropdown-icon {
    font-size: 22px;
    font-weight: 600;
    transition: transform 0.3s ease;
  }

  .untaam-overlay-dropdown.open .untaam-dropdown-icon {
    transform: rotate(45deg);
  }
}

/*new style for animated section*/

 .untaam-event-section {
  padding: 0px 20px 50px;
  background: #faf7f2;
}

/* CONTAINER */
.untaam-event-container {
  max-width: 1140px;
  margin: auto;
  display: flex;
  justify-content: space-evenly;
  gap: 12px;              
  flex-wrap: nowrap;      
}

/* CARD */
.untaam-event-card {
  width: 170px;           
  height: 280px;
  border-radius: 100px;
  background: #ffffff;
  border: 3.3px solid #c40b6d;
  cursor: pointer;
  overflow: hidden;

  display: flex;
  flex-direction: column;
  align-items: center;

  transition: background 0.45s ease, border 0s ease;
}

/* IMAGE */
.untaam-event-image {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  margin-top: 20px;
  transition: transform 2s ease;
}

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

/* TEXT */
.untaam-event-text {
  margin-top: 28px;
  font-size: 15px;
  font-weight: 600;
  color: #111111;
  text-align: center;
  line-height: 1.35;
  transition: transform 0.45s ease, color 0.45s ease;
}

/* HOVER EFFECT */
.untaam-event-card:hover {
  background: linear-gradient(90deg, #c40b6d 0%, #333030 100%);
  border-color: transparent;
  border: 1.5px solid #c40b6d;
}

.untaam-event-card:hover .untaam-event-image {
  transform: translateY(100px);   /* more down */
}

.untaam-event-card:hover .untaam-event-text {
  transform: translateY(-132px);
  color: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .untaam-event-container {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .untaam-event-card {
    width: 165px;
    height: 270px;
  }
}

@media (max-width: 480px) {
  .untaam-event-card {
    width: 100%;
    max-width: 260px;
  }
}

/*bottom footer*/
.site-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 24px;
   
}

.site-footer-bottom p,
.site-footer-bottom span {
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 20px;
    color: #242931;
    margin: 0;
}

.site-footer-designedby {
    display: flex;
    align-items: center;
    gap: 8px;
}

.site-footer-logo {
    /*height: 20px;*/
    width: 90px;
    position: relative;
    top: -7px;
}

@media (max-width: 768px) {
    .site-footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}
   
    /* Hero Section */
    .hero {
      background: linear-gradient(135deg, #fff1f2 0%, #fff7ed 50%, #fdf2f8 100%);
      background-image: url('assets/images/img_img_186x148.png');
      background-size: cover;
      background-position: center;
      padding: 40px 16px;
      text-align: center;
      min-height: 60vh;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .hero-content {
      max-width: 800px;
      margin: 0 auto;
    }
    
    .hero-title {
      font-size: 32px;
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      line-height: 1.2;
      color: #ffffff;
      margin-bottom: 22px;
    }
    
    .hero-title .highlight-pink {
      color: #f43f5e;
    }
    
    .hero-title .highlight-purple {
      color: #aa4ed8;
    }
    
    .hero-description {
      font-size: 16px;
      color: #ffffff;
      line-height: 1.6;
      margin-bottom: 46px;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }
    
    .hero-buttons {
      display: flex;
      flex-direction: column;
      gap: 14px;
      align-items: center;
    }
    
    .btn-primary {
      background-color: #d4af37;
      color: #ffffff;
      padding: 18px 30px;
      border-radius: 10px;
      text-decoration: none;
      font-size: 16px;
      font-weight: 600;
      transition: all 0.3s ease;
      display: inline-block;
    }
    
    .btn-secondary {
      background: transparent;
      color: #ffffff;
      padding: 18px 32px;
      border: 2px solid #ffffff;
      border-radius: 10px;
      text-decoration: none;
      font-size: 16px;
      font-weight: 600;
      transition: all 0.3s ease;
      display: inline-block;
    }
    
    .btn-primary:hover, .btn-secondary:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }
    @media(max-width:760px){
        .hero {
                min-height: 20vh;
        }
    }
      
      /* FAQ Wrapper */
.untaam-faq-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}
.section-head {
    margin: 40px;
}
/* FAQ Item */
.untaam-faq-item {
    background: #684a9936;
    margin-bottom: 10px;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Question */
.untaam-faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    cursor: pointer;
    text-align: left;
}

/* Plus Icon */
.untaam-faq-icon {
    font-size: 22px;
    font-weight: 700;
    transition: transform 0.3s ease;
}

/* Answer */
.untaam-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #ffffff;
}

.untaam-faq-answer p {
    padding: 20px 24px;
    margin: 0;
    font-size: 15px;
    line-height: 26px;
    color: #444;
}

/* Active State */
.untaam-faq-item.active .untaam-faq-answer {
    max-height: 300px;
}

.untaam-faq-item.active .untaam-faq-icon {
    transform: rotate(45deg); /* turns + into × */
}

    
  
      
    /* Hero Section */
    .hero {
      background: linear-gradient(135deg, #fff1f2 0%, #fff7ed 50%, #fdf2f8 100%);
      background-image: url(../images/partner-your-land-for-property-development.jpg);
      background-size: cover;
      background-position: center;
      padding: 33px 16px;
      text-align: center;
      min-height: 60vh;
      display: flex;
      align-items: center;
      justify-content: center;
    }

/*    .hero::before {*/
/*  content: "";*/
/*  position: absolute;*/
/*  inset: 0;*/
  /* top: 0; right: 0; bottom: 0; left: 0; */
  /*background-color: rgba(0, 0, 0, 0.39); dim black */
/*  height: 100%;*/
/*}*/
    
    .hero-content {
      max-width: 800px;
      margin: 0 auto;
      z-index: 999;
    }
    
    .hero-title {
      font-size:49px;
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      line-height: 1.2;
      color: #ffffff;
      margin-bottom: 22px;
          /*background: #bb6b6b33;*/
    }
    
    .hero-title .highlight-pink {
      color: #fff;
    }
    
    .hero-title .highlight-purple {
      color: #fff;
    }
    
    .hero-description {
      font-size: 16px;
      color: #ffffff;
      line-height: 1.6;
      margin-bottom: 46px;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }
    
    .hero-buttons {
      display: flex;
      flex-direction: column;
      gap: 14px;
      align-items: center;
    }
    
    .btn-primary {
      background-color: #d4af37;
      color: #ffffff;
      padding: 18px 30px;
      border-radius: 10px;
      text-decoration: none;
      font-size: 16px;
      font-weight: 600;
      transition: all 0.3s ease;
      display: inline-block;
    }
    
    .btn-secondary {
      background: #ffffff6e;
      color: #ffffff;
      padding: 18px 32px;
      border: 2px solid #ffffff;
      border-radius: 10px;
      text-decoration: none;
      font-size: 16px;
      font-weight: 600;
      transition: all 0.3s ease;
      display: inline-block;
    }
    
    .btn-primary:hover, .btn-secondary:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }
    
    /* Custom Installations Section */
    /* Land Partnership / Installations Section */
.installations {
  background-color: #f9fafb;
  padding: 40px 16px;
}

/* Flex Layout */
.installations-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* Text */
.installations-text {
  flex: 1;
}

/* Bullet List */
.installations-list {
  list-style: none;
  margin: 20px 0;
  padding: 0;
}

.installations-list li {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
  font-size: 16px;
  color: #374151;
  line-height: 1.5;
}

.installations-list li::before {
  content: '';
  width: 18px;
  height: 24px;
  background-image: url('../assets/images/img_i_red_400.svg');
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 12px;
  flex-shrink: 0;
}

/* Image Wrapper */
.installations-image-wrapper {
  flex: 1;
  text-align: center;
}

.installations-image-wrapper img {
  width: 100%;
  max-width: 420px;
  border-radius: 16px;
  height: auto;
}

/* Responsive */
@media (max-width: 768px) {
  .installations-content {
    flex-direction: column;
    text-align: center;
  }

  .installations-list li {
    justify-content: center;
  }
}
.installations-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.installations-list li {
  position: relative;
  padding-left: 38px;
  margin-bottom: 16px;
  font-size: 16px;
  color: #374151;
}

.installations-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 26px;
  height: 26px;
  background-image: url('../assets/images/img_i_red_400.svg');
  background-size: contain;
  background-repeat: no-repeat;
}

.installations-text p {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #4b5563;
}
/* Elegant bullet dots */
.untaam-benefits li::marker {
  color: #b8962e;   /* luxury gold tone */
  font-size: 18px;
}



    /* About Section */
    .about-section {
      background-color: #f9fafb;
      padding: 80px 56px;
    }
    
    .about-content {
      display: flex;
      flex-direction: column;
      gap: 64px;
      align-items: center;
    }
    
    .about-header {
      text-align: center;
      gap: 8px;
    }
    
    .about-title {
      font-size: 24px;
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      line-height: 32px;
      color: #2c1810;
      margin-bottom: 8px;
    }
    
    .about-subtitle {
      font-size: 16px;
      font-weight: 400;
      line-height: 22px;
      color: #4b5563;
      max-width: 68%;
      margin: 0 auto;
    }
    
    .about-main {
      display: flex;
      gap: 48px;
      align-items: center;
      width: 92%;
    }
    
    .about-text {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 28px;
    }
    
    .about-description {
      font-size: 14px;
      line-height: 20px;
      color: #374151;
    }
    
    .about-highlight {
      font-size: 16px;
      line-height: 24px;
      color: #374151;
    }
    
    .about-images {
      display: flex;
      gap: 16px;
      margin-left: 48px;
    }
    
    .image-column {
      display: flex;
      flex-direction: column;
      gap: 16px;
      width: 288px;
    }
    
    .about-image {
      border-radius: 8px;
      width: 288px;
      object-fit: cover;
    }
    
    .about-image-1 {
      height: 192px;
      object-fit: cover;
    }
    
    .about-image-2 {
      height: 128px;
      margin-bottom: 32px;
      object-fit: cover;
    }
    
    .about-image-3 {
      height: 128px;
      margin-top: 32px;
      object-fit: cover;
    }
    
    .about-image-4 {
      height: 192px;
      object-fit: cover;
    }
    
    @media (min-width: 768px) {
      .about-title {
        font-size: 30px;
        line-height: 40px;
      }
      .about-subtitle {
        font-size: 18px;
        line-height: 26px;
      }
      .about-description {
        font-size: 16px;
        line-height: 26px;
      }
    }
    
    @media (min-width: 1024px) {
      .about-title {
        font-size: 36px;
        line-height: 48px;
      }
      .about-subtitle {
        font-size: 20px;
        line-height: 28px;
      }
    }
    
    @media (max-width: 768px) {
      .about-main {
        flex-direction: column;
        gap: 32px;
      }
      .about-images {
        margin-left: 0;
        justify-content: center;
      }
      .image-column {
        width: 200px;
      }
      .about-image {
        width: 200px;
      }
      .about-section {
        padding: 60px 24px;
      }
    }
   .resort-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  margin-top: 30px;
}

/* Card Style */
.reason-card {
  background: #ffffff;
  padding: 26px 20px;
  border-radius: 16px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 8px 22px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Gold top accent */
.reason-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, #d4af37, #b8962e);
}

/* Icon */
.reason-icon {
  font-size: 30px;
  margin-bottom: 12px;
}

/* Text */
.reason-card p {
  font-size: 15px;
  color: #374151;
  line-height: 1.6;
}

/* Hover Effect */
.reason-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.12);
}

/* Mobile */
@media (max-width: 600px) {
  .reason-card {
    padding: 22px 16px;
  }
}




    /* Facilities Section */
    .facilities-section {
      background-color: #f8f6f0;
      padding: 60px 56px;
    }
    
    .facilities-content {
      display: flex;
      flex-direction: column;
      gap: 46px;
      align-items: center;
    }
    
    .facilities-header {
      text-align: center;
      display: flex;
      flex-direction: column;
      gap: 16px;
      padding: 0 56px;
    }
    
    .facilities-title {
      font-size: 24px;
      font-weight: 700;
      line-height: 30px;
      color: #111827;
    }
    
    .facilities-subtitle {
      font-size: 16px;
      font-weight: 400;
      line-height: 20px;
      color: #4b5563;
    }
    
    .facilities-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
      width: 92%;
    }
    
    .facility-card {
      background-color: #f9fafb;
      border-radius: 8px;
      padding: 24px;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    
    .facility-icon {
      width: 56px;
      height: 56px;
      border-radius: 28px;
      padding: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .facility-icon-1 {
      background-color: #dbeafe;
    }
    
    .facility-icon-2 {
      background-color: #f3e8ff;
    }
    
    .facility-icon-3 {
      background-color: #dcfce7;
    }
    
    .facility-icon-4 {
      background-color: #ffedd5;
    }
    
    .facility-name {
      font-size: 16px;
      font-weight: 700;
      line-height: 20px;
      color: #111827;
    }
    
    .facility-features {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    
    .facility-feature {
      font-size: 12px;
      font-weight: 400;
      line-height: 15px;
      color: #374151;
    }
    
    .decor-support-card {
      background: linear-gradient(135deg, #faf5ff 0%, #fdf2f8 100%);
      border-radius: 8px;
      padding: 32px;
      display: flex;
      flex-direction: column;
      gap: 24px;
      width: 92%;
      margin: 0 auto;
    }
    
    .decor-support-title {
      font-size: 20px;
      font-weight: 700;
      line-height: 25px;
      color: #111827;
    }
    
    .decor-support-description {
      font-size: 14px;
      font-weight: 400;
      line-height: 18px;
      color: #374151;
    }
    
    .decor-support-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }
    
    .decor-support-item {
      background-color: #ffffff;
      border-radius: 8px;
      padding: 16px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
    }
    
    .decor-support-icon {
      width: 24px;
      height: 28px;
    }
    
    .decor-support-name {
      font-size: 12px;
      font-weight: 500;
      line-height: 15px;
      color: #374151;
      text-align: center;
    }
    
    @media (min-width: 768px) {
      .facilities-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .facilities-title {
        font-size: 30px;
        line-height: 37px;
      }
      .facilities-subtitle {
        font-size: 18px;
        line-height: 22px;
      }
      .facility-name {
        font-size: 18px;
        line-height: 22px;
      }
      .facility-feature {
        font-size: 14px;
        line-height: 17px;
      }
      .decor-support-title {
        font-size: 24px;
        line-height: 30px;
      }
      .decor-support-description {
        font-size: 16px;
        line-height: 20px;
      }
      .decor-support-grid {
        grid-template-columns: repeat(4, 1fr);
      }
      .decor-support-name {
        font-size: 14px;
        line-height: 17px;
      }
    }
    
    @media (min-width: 1024px) {
      .facilities-grid {
        grid-template-columns: repeat(4, 1fr);
      }
    }
    
    @media (max-width: 640px) {
      .facilities-section {
        padding: 48px 24px;
      }
      .facilities-header {
        padding: 0 16px;
      }
      .decor-support-grid {
        grid-template-columns: 1fr;
      }
    }
    .facility-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

/* subtle gold accent line */
.facility-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: linear-gradient(180deg, #d4af37, #b8962e);
  opacity: 0;
  transition: 0.3s ease;
}

.facility-card:hover::before {
  opacity: 1;
}

/* lift & shadow */
.facility-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.12);
}

/* text styling */
.facility-name {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: #374151;
  margin: 0;
  transition: 0.3s ease;
}

/* text color on hover */
.facility-card:hover .facility-name {
  color: #b8962e;
}
   /* SECTION */
.partner-section {
  padding: 70px 20px;
  background: #f9fafb;
  text-align: center;
}

/* HEADER */
.partner-title {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 12px;
}

.partner-subtitle {
  font-family: 'Poppins', sans-serif;
  color: #6b7280;
  margin-bottom: 45px;
  font-size: 17px;
}

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

/* CARD */
.partner-card {
  background: #ffffff;
  padding: 28px 22px;
  border-radius: 18px;
  position: relative;
  transition: all 0.35s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  cursor: pointer;
  overflow: hidden;
}

/* GOLD BORDER EFFECT */
.partner-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 1px;
  background: linear-gradient(135deg, #d4af37, #b8962e, #e8c76a);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.partner-card:hover::before {
  opacity: 1;
}

/* HOVER EFFECT */
.partner-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.partner-card p {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: #374151;
  margin: 0;
  transition: 0.3s ease;
  line-height: 1.6;
}

.partner-card:hover p {
  color: #b8962e;
}

/* FOOTER TEXT */
.partner-footer {
  margin-top: 40px;
  font-family: 'Poppins', sans-serif;
  color: #4b5563;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
  font-size: 16px;
}

/* ========================= */
/* 📱 RESPONSIVE BREAKPOINTS */
/* ========================= */

/* Large Tablets */
@media (max-width: 1024px) {
  .partner-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partner-title {
    font-size: 30px;
  }
}

/* Tablets & Small Screens */
@media (max-width: 768px) {
  .partner-section {
    padding: 55px 18px;
  }

  .partner-title {
    font-size: 26px;
  }

  .partner-subtitle {
    font-size: 15px;
  }

  .partner-card {
    padding: 22px 18px;
  }
}

/* Mobile Phones */
@media (max-width: 480px) {
  .partner-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .partner-title {
    font-size: 24px;
  }

  .partner-footer {
    font-size: 15px;
  }
} 
/* Icon styling */
.partner-icon {
  font-size: 34px;
  margin-bottom: 12px;
  transition: 0.3s ease;
}

/* icon animation on hover */
.partner-card:hover .partner-icon {
  transform: scale(1.15);
}

/* spacing for card content */
.partner-card {
  text-align: center;
}
/* SECTION */
.partner-section {
  padding: 70px 20px;
  background: #f9fafb;
}

.partner-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 40px;
}

.partner-title {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 12px;
}

.partner-subtitle {
  font-family: 'Poppins', sans-serif;
  color: #6b7280;
  font-size: 16px;
  line-height: 1.7;
}

/* GRID */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  margin-top: 30px;
}

/* CARD */
.partner-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 22px;
  text-align: center;
  box-shadow: 0 8px 22px rgba(0,0,0,0.05);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* gradient glow on hover */
.partner-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(212,175,55,0.08), transparent);
  opacity: 0;
  transition: 0.4s;
}

.partner-card:hover::before {
  opacity: 1;
}

/* hover lift */
.partner-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* ICON */
.partner-icon {
  font-size: 30px;
  margin-bottom: 14px;
  display: inline-block;
  transition: transform 0.3s ease;
}

/* icon animation */
.partner-card:hover .partner-icon {
  transform: scale(1.2) rotate(6deg);
}

/* TEXT */
.partner-card p {
  font-family: 'Poppins', sans-serif;
  font-size: 15.5px;
  color: #374151;
  margin: 0;
  line-height: 1.5;
  font-weight: 500;
  transition: 0.3s;
}

/* gold text on hover */
.partner-card:hover p {
  color: #b8962e;
}

/* FOOTER TEXT */
.partner-footer {
  text-align: center;
  margin-top: 35px;
  font-family: 'Poppins', sans-serif;
  color: #4b5563;
  font-size: 15px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .partner-title {
    font-size: 26px;
  }
  .partner-section {
    padding: 50px 15px;
  }
}
  
.form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.5;
    color:#696194;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #a4a0ba;
    border-radius: var(--bs-border-radius);
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.form-label {
    margin-bottom: 0.5rem;
}
.info-inner {
    position: relative;
    display: block;
    padding: 110px 0px 70px 0px;
    border-bottom: 1px solid #e0e6ed;
    margin-bottom: 100px;
}
.info-inner .single-item .inner-box {
    position: relative;
    display: block;
    text-align: center;
    padding: 23px 0px 20px 0px;
}
.info-inner .single-item .inner-box:before {
    position: absolute;
    content: '';
    background: #e0e6ed;
    width: 1px;
    height: 100%;
    top: 0px;
    right: -15px;
}
.info-inner .single-item .inner-box .icon-box {
    position: relative;
    display: inline-block;
    font-size: 70px;
    line-height: 70px;
    color: #2d5883;
    font-weight: 600;
    margin-bottom: 44px;
    transition: all 500ms ease;
}
.info-inner .single-item .inner-box h3 {
    margin-bottom: 20px;
}
.info-inner .single-item .inner-box p {
    position: relative;
    font-size: 19px;
    line-height: 30px;
    color: #222;
    font-weight: 400;
    margin: 0px;
}
.info-inner .single-item .inner-box:hover .icon-box {
    transform: rotateY(-180deg);
}
.info-inner .single-item .inner-box:hover .icon-box {
    color: #ec4e4f;
}


 /* ===============================
   GALLERY SECTION (CENTERED)
   =============================== */

.vh-gallery-section {
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

/* ===============================
   3 x N GRID
   =============================== */

.vh-gallery-grid {
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Images */
.vh-gallery-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vh-gallery-img:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* ===============================
   RESPONSIVE BREAKPOINTS
   =============================== */

@media (max-width: 992px) {
  .vh-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .vh-gallery-grid {
    grid-template-columns: 1fr;
  }

  .vh-gallery-img {
    height: 220px;
  }
}

/* ===============================
   FULLSCREEN VIEW
   =============================== */

.vh-fullscreen {
  display: none;
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 10000;
  justify-content: center;
  align-items: center;
}

.vh-fullscreen img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Close button */
.vh-close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 42px;
  color: #ffffff;
  cursor: pointer;
  z-index: 10001;
}

