/* ===== GLOBAL ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #ffffff;
  color: #0f1930;
  scroll-behavior: smooth;
}

/* Premium Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600&family=Montserrat:wght@300;500&display=swap');

.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  color: #fff;
  z-index: 3;
}

.hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem;
  font-weight: 600;
  margin-bottom: 15px;
  letter-spacing: 2px;
  line-height: 1.3;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4);
}

.hero-content p {
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 30px;
  letter-spacing: 0.5px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-buttons .btn {
  padding: 14px 35px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
}

.btn-primary {
  background: linear-gradient(135deg, #f8d77b, #eab85c);
  color: #0f1930;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

.btn-secondary {
  background: transparent;
  border: 1.5px solid #f8d77b;
  color: #f8d77b;
}

.btn-secondary:hover {
  background: #f8d77b;
  color: #0f1930;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .hero-content p {
    font-size: 0.95rem;
  }
  .hero-buttons .btn {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
}

/* ===== ABOUT US SECTION ===== */
.about-section {
  background: #ffe9cd;
  padding: 60px 20px;
  font-family: 'Montserrat', sans-serif;
  display: flex;
  justify-content: center;
}

.about-card-wrapper {
  background: #fff;
  padding: 38px 32px;
  border-radius: 18px;
  max-width: 1000px;
  width: 100%;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(248, 215, 123, 0.35);
  text-align: center;
  transition: all 0.25s ease;
}

.about-card-wrapper:hover {
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.12);
  border-color: #f8d77b;
}

/* Title */

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: #0f1930;
  margin-bottom: 14px;
}

.section-title::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, #f8d77b, #eab85c);
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Description text */

.about-text {
  font-size: 1rem;
  font-weight: 400;
  color: #555;
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Cards layout */

.about-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}

/* Individual card */

.about-card {
  background: #fff;
  padding: 20px 18px;
  border-radius: 14px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.07);
  text-align: center;
  transition: all 0.25s ease;
  border: 1px solid rgba(248, 215, 123, 0.25);
}

.about-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.11);
  border-color: #f8d77b;
}

/* Icon */

.card-icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #f8d77b, #eab85c);
  color: #0f1930;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

/* Card text */

.about-card p {
  font-size: 0.92rem;
  font-weight: 400;
  color: #333;
  line-height: 1.5;
}

/* Mobile */

@media (max-width: 768px) {

  .section-title {
    font-size: 1.9rem;
  }

  .about-text {
    font-size: 0.95rem;
  }

  .about-card p {
    font-size: 0.9rem;
  }

}
/* ===== What We Offer Section ===== */
.offer-section {
  width: 100%;
  padding: 50px 20px;
  background: #fff9f2;
  font-family: 'Poppins', sans-serif;
}

.offer-main-card {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.section-title {
  font-size: 1.9rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
}

.offer-subtitle {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 30px;
}

/* ===== Offer Cards Layout ===== */
.offer-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

/* ===== Individual Card Styling ===== */
.offer-card {
  background: #ffffff;
  padding: 22px 18px;
  border-radius: 14px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.07);
  text-align: center;
  transition: all 0.28s ease;
  border: 1px solid #f0e6d8;
}

.offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

/* ===== Icons Styling ===== */
.offer-icon {
  font-size: 2rem;
  color: #c79a5b;
  margin-bottom: 12px;
}

/* ===== Card Titles ===== */
.offer-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

/* ===== Card Paragraph ===== */
.offer-card p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.45;
}



/* ===== VALUE SECTION STYLING ===== */
.value-section {
  padding: 50px 20px;
  font-family: 'Poppins', sans-serif;
  background-color: #f8f5f0;
}

.value-main-card {
  max-width: 1100px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 14px;
  padding: 32px;
  box-shadow: 0 6px 22px rgba(0,0,0,0.07);
}

.value-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
  color: #222;
}

.value-subtitle {
  font-size: 0.95rem;
  color: #666;
  text-align: center;
  margin-bottom: 32px;
}

.value-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 20px;
}

.value-card {
  background: #fff;
  padding: 22px 18px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.28s ease;
  box-shadow: 0 3px 12px rgba(0,0,0,0.05);
  border: 1px solid #eee;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.12);
  border-color: #d4af37;
}

.value-icon {
  font-size: 2.2rem;
  color: #d4af37;
  margin-bottom: 12px;
}

.value-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 6px;
}

.value-card p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 768px) {
  .value-main-card {
    padding: 25px 18px;
  }

  .value-title {
    font-size: 1.7rem;
  }
}




/* ===== POPUP OVERLAY ===== */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* ===== POPUP CONTENT ===== */
.popup-content {
  display: flex;
  flex-direction: row;
  background: #ffffff;
  border-radius: 15px;
  max-width: 900px;
  width: 90%;
  overflow: hidden;
  box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.3);
  position: relative;
}

/* ===== CLOSE BUTTON ===== */
.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  color: #555;
  cursor: pointer;
  transition: color 0.2s ease;
  z-index: 10;
}
.close-btn:hover {
  color: #000;
}

/* ===== LEFT SIDE IMAGE/LOGO ===== */
.popup-image {
  flex: 1;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.desktop-img {
  display: block;
}
.mobile-logo {
  display: none;
  max-width: 150px;
}

/* ===== RIGHT SIDE FORM ===== */
.popup-form {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.popup-form h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #222;
}
.popup-form p {
  font-size: 16px;
  margin-bottom: 20px;
  color: #555;
}
.popup-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.popup-form input,
.popup-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.popup-form input:focus,
.popup-form textarea:focus {
  border-color: #ff9800;
  box-shadow: 0px 0px 8px rgba(255, 152, 0, 0.3);
}
.popup-form button {
  background: linear-gradient(135deg, #b8860b, #d4af37);
  color: white;
  border: none;
  padding: 14px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.2s ease;
}
.popup-form button:hover {
  background: linear-gradient(135deg, #b8860b, #d4af37);
  transform: translateY(-2px);
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
  .popup-content {
    flex-direction: column;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
  }
  .popup-image {
    padding: 20px;
    background: #fff;
  }
  .desktop-img {
    display: none;
  }
  .mobile-logo {
    display: block;
  }
  .popup-form {
    padding: 25px;
  }
}



/* Section Background */
.process-timeline {
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 80px 20px;
  font-family: 'Montserrat', sans-serif;
}
.timeline-overlay {
  background: rgba(0,0,0,0.55);
  padding: 60px 20px;
  border-radius: 12px;
}

/* Heading */
.timeline-heading {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 60px;
  font-family: 'Cormorant Garamond', serif;
}
/* ===== Desktop Timeline ===== */
.process-timeline {
  position: relative;
}

.timeline-overlay {
  position: relative;
}

/* Desktop Timeline */
.timeline-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

/* connecting line */
.timeline-container::before {
  content: "";
  position: absolute;
  top: 35px;
  left: 50px;
  right: 50px;
  height: 3px;
  background: #ddd;
  z-index: 1;
}

.timeline-step {
  position: relative;
  text-align: center;
  flex: 1;
  cursor: pointer;
  padding: 0 15px;
}

.timeline-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  background: #bbb;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.timeline-step.active .timeline-icon,
.timeline-step:hover .timeline-icon {
  background: linear-gradient(135deg, #f8d77b, #eab85c);
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}

.timeline-step h3 {
  margin-top: 15px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
}

/* Details (Desktop hidden by default) */
.timeline-details {
  margin-top: 15px;
  padding: 15px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.35s ease;
}

.timeline-step:hover .timeline-details {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.timeline-details p {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 12px;
}

/* Buttons */
.step-btn {
  display: inline-block;
  padding: 10px 22px;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 8px;
  background: linear-gradient(135deg, #f8d77b, #eab85c);
  color: #0f1930;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 140px;
  text-align: center;
}

.step-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.25);
}

/* ===== Left/Right Navigation Buttons (Hidden on Desktop) ===== */
.timeline-nav {
  display: none; /* hidden by default */
  position: absolute;
  top: 58%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(248, 215, 123, 0.8);
  background: rgba(255, 255, 255, 0.95);
  color: #111;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.timeline-nav i {
  font-size: 16px;
}

.timeline-prev {
  left: 12px;
}

.timeline-next {
  right: 12px;
}

.timeline-nav:active {
  transform: translateY(-50%) scale(0.95);
}

/* ===== Tablet & Mobile → Full-Width Carousel + Always Visible ===== */
@media (max-width: 1024px) {
  .timeline-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    gap: 14px;

    /* IMPORTANT: padding so buttons don't cover cards */
    padding: 12px 60px;
  }

  /* Hide connecting line */
  .timeline-container::before {
    display: none;
  }

  /* Show navigation buttons on mobile/tablet */
  .timeline-nav {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .timeline-step {
    flex: 0 0 100%;
    max-width: 100%;
    scroll-snap-align: center;
    margin: 0;
    text-align: center;
    padding: 20px 15px;
  }

  .timeline-icon {
    margin-bottom: 12px;
  }

  /* Details always visible */
  .timeline-details {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    max-width: 90%;
    margin: 15px auto 0;
    text-align: center;
  }

  .timeline-details p {
    font-size: 0.85rem;
    color: #444;
    margin-bottom: 10px;
  }

  .step-btn {
    display: block;
    width: 100%;
    max-width: 220px;
    margin: 0 auto;
  }

  /* Hide scrollbar for clean look */
  .timeline-container::-webkit-scrollbar {
    display: none;
  }
  .timeline-container {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
}

/* ===== Scroll Indicator (Optional) ===== */
.scroll-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 5;
}

.scroll-indicator span {
  display: block;
  width: 15px;
  height: 15px;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(-45deg);
  margin: auto;
  animation: bounce 1.5s infinite;
}

/* bounce animation */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) rotate(-45deg);
  }
  40% {
    transform: translateY(8px) rotate(-45deg);
  }
  60% {
    transform: translateY(4px) rotate(-45deg);
  }
}
/* ===== Desktop Size Reduction Only ===== */
@media (min-width: 1025px){

.process-timeline{
  padding: 60px 20px;
}

.timeline-overlay{
  padding: 40px 20px;
}

.timeline-heading{
  font-size: 2rem;
  margin-bottom: 40px;
}

.timeline-container{
  max-width: 1000px;
}

.timeline-container::before{
  top: 30px;
}

.timeline-icon{
  width: 60px;
  height: 60px;
  font-size: 24px;
}

.timeline-step h3{
  font-size: 1rem;
}

.timeline-details{
  padding: 12px;
  margin-top: 12px;
}

.step-btn{
  padding: 8px 18px;
  font-size: 0.85rem;
  min-width: 120px;
}

}


/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 28px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #20b954;
}
/* ===== HEADER STYLING ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  z-index: 1000;
  transition: all 0.3s ease;
}

/* Container */
.nav-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  height: 80px;
}
.logo img {
  max-height: 100%;
  width: auto;
  display: block;
}

/* Navigation */
nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
nav a {
  position: relative;
  text-decoration: none;
  color: #222;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}

/* Golden underline on hover */
nav a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #d4af37;
  transition: width 0.3s ease;
  border-radius: 2px;
}
nav a:hover {
  color: #d4af37;
}
nav a:hover::after {
  width: 100%;
}

/* Contact Button */
.contact-btn {
  padding: 10px 22px;
  background: #d4af37;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.4px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  height: 42px;
  box-shadow: 0 2px 6px rgba(212, 175, 55, 0.3);
}
.contact-btn:hover {
  background: #b88a2c;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(212, 175, 55, 0.4);
}

/* ===== HAMBURGER MENU ===== */
.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: #333;
  transition: color 0.3s ease;
}
.menu-toggle:hover {
  color: #d4af37;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  nav {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 70px;
    right: 20px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
    width: 220px;
    text-align: left;
    gap: 20px;
  }
  nav.active {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
  .contact-btn {
    margin-top: 15px;
    width: 100%;
    justify-content: center;
  }
}








:root{
  --gold: #d4af37;
  --text: #111;
  --border: #eeeeee;
}

/* ===== HEADER ===== */
.pg-header{
  position: sticky;
  top: 0;
  z-index: 999;
  background: #ffffff;
  border-bottom: 3px solid var(--gold); /* gold line like screenshot */
}

.pg-header-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 18px;  /* 🔥 compact height */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LEFT: Brand */
.pg-brand{
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.pg-brand-logo{
  width: 90px;   /* 🔥 BIG logo */
  height: 90px;
  object-fit: contain;
}

.pg-brand-name{
  font-size: 18px; /* 🔥 smaller than logo */
  font-weight: 900;
  color: var(--text);
  letter-spacing: 0.2px;
}

/* RIGHT: Nav + CTA in one line */
.pg-right{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

/* NAV LINKS */
.pg-navlinks{
  display: flex;
  align-items: center;
  gap: 26px;
}

.pg-navlink{
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.2s ease;
}

.pg-navlink i{
  color: var(--gold);
  font-size: 14px;
}

.pg-navlink:hover{
  color: var(--gold);
}

/* CTA BUTTON */
.pg-cta-btn{
  border: none;
  cursor: pointer;
  padding: 10px 18px;
  border-radius: 12px;
  font-weight: 900;
  font-size: 14px;
  background: var(--gold);
  color: #111;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.2s ease;
}

.pg-cta-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.12);
}

/* MOBILE HAMBURGER */
.pg-menu-btn{
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
}

.pg-menu-btn span{
  display: block;
  width: 24px;
  height: 2px;
  background: #111;
  margin: 5px auto;
  border-radius: 2px;
}

/* ===== MOBILE SIDEBAR ===== */
.pg-menu-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  visibility: hidden;
  transition: 0.25s ease;
  z-index: 998;
}

.pg-sidebar{
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 320px;
  max-width: 88%;
  background: #fff;
  border-left: 1px solid var(--border);
  transform: translateX(110%);
  transition: 0.28s ease;
  z-index: 999;
  padding: 16px;
  display: flex;
  flex-direction: column;
}

.pg-sidebar-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.pg-sidebar-brand{
  display: flex;
  align-items: center;
  gap: 10px;
}

.pg-sidebar-logo{
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.pg-sidebar-name{
  font-size: 16px;
  font-weight: 900;
  color: var(--text);
}

.pg-sidebar-close{
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
}

.pg-sidebar-close i{
  font-size: 20px;
  color: #111;
}

.pg-sidebar-links{
  padding: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pg-side-link{
  text-decoration: none;
  color: var(--text);
  font-weight: 800;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pg-side-link i{
  color: var(--gold);
  width: 20px;
  text-align: center;
}

.pg-side-link:hover{
  background: rgba(212,175,55,0.12);
}

/* Bottom CTA */
.pg-sidebar-bottom{
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.pg-side-cta{
  width: 100%;
  border: none;
  cursor: pointer;
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 900;
  font-size: 15px;
  background: var(--gold);
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* Active menu */
.pg-menu-overlay.active{
  opacity: 1;
  visibility: visible;
}

.pg-sidebar.active{
  transform: translateX(0);
}

/* RESPONSIVE */
@media (max-width: 900px){
  .pg-navlinks{ display:none; }
  .pg-cta-btn{ display:none; }
  .pg-menu-btn{ display:block; }
}

/* Extra small phones */
@media (max-width: 420px){
  .pg-brand-logo{
    width: 78px;
    height: 78px;
  }
  .pg-brand-name{
    font-size: 16px;
  }
}
:root{
  --gold: #d4af37;
}

/* ===== Minimal Premium Intro ===== */
.pg-intro-min{
  position: fixed;
  inset: 0;
  background: #ffffff;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.45s ease;
}

/* thin line container */
.pg-intro-line{
  width: 260px;
  max-width: 80vw;
  height: 4px;
  border-radius: 999px;
  background: rgba(0,0,0,0.06);
  overflow: hidden;
}

/* moving gold line */
.pg-intro-line span{
  display: block;
  width: 35%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(212,175,55,0.4), var(--gold), rgba(212,175,55,0.4));
  animation: introMove 0.9s infinite ease-in-out;
}

/* fade out */
.pg-intro-min.hide{
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(1.01);
}

@keyframes introMove{
  0%{ transform: translateX(-120%); }
  100%{ transform: translateX(320%); }
}

:root{
  --gold: #d4af37;
  --text: #111;
  --border: #eeeeee;
}

/* ===== HEADER ===== */
.pg-header{
  position: sticky;
  top: 0;
  z-index: 999;
  background: #ffffff;
  border-bottom: 3px solid var(--gold);
}

.pg-header-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 18px; /* compact */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Brand */
.pg-brand{
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.pg-brand-logo{
  width: 46px;
  height: 46px;
  object-fit: cover; /* square logo looks perfect */
  border-radius: 10px;
}

.pg-brand-name{
  font-size: 16px;
  font-weight: 900;
  color: var(--text);
}

/* Desktop nav */
.pg-navlinks{
  display: flex;
  align-items: center;
  gap: 22px;
}

.pg-navlink{
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.2s ease;
}

.pg-navlink i{
  color: var(--gold);
  font-size: 14px;
}

.pg-navlink:hover{
  color: var(--gold);
}

/* CTA */
.pg-cta-btn{
  border: none;
  cursor: pointer;
  padding: 10px 16px;
  border-radius: 12px;
  font-weight: 900;
  font-size: 14px;
  background: var(--gold);
  color: #111;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pg-cta-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.12);
}

/* Hamburger */
.pg-menu-btn{
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
}

.pg-menu-btn span{
  display: block;
  width: 22px;
  height: 2px;
  background: #111;
  margin: 5px auto;
  border-radius: 2px;
}

/* Mobile Sidebar */
.pg-menu-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  visibility: hidden;
  transition: 0.25s ease;
  z-index: 998;
}

.pg-sidebar{
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 320px;
  max-width: 88%;
  background: #fff;
  border-left: 1px solid var(--border);
  transform: translateX(110%);
  transition: 0.28s ease;
  z-index: 999;
  padding: 16px;
  display: flex;
  flex-direction: column;
}

.pg-sidebar-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.pg-sidebar-brand{
  display: flex;
  align-items: center;
  gap: 10px;
}

.pg-sidebar-logo{
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 12px;
}

.pg-sidebar-name{
  font-size: 15px;
  font-weight: 900;
  color: var(--text);
}

.pg-sidebar-close{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
}

.pg-sidebar-close i{
  font-size: 18px;
  color: #111;
}

.pg-sidebar-links{
  padding: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pg-side-link{
  text-decoration: none;
  color: var(--text);
  font-weight: 800;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pg-side-link i{
  color: var(--gold);
  width: 20px;
  text-align: center;
}

.pg-side-link:hover{
  background: rgba(212,175,55,0.12);
}

.pg-sidebar-bottom{
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.pg-side-cta{
  width: 100%;
  border: none;
  cursor: pointer;
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 900;
  font-size: 15px;
  background: var(--gold);
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* Active menu */
.pg-menu-overlay.active{
  opacity: 1;
  visibility: visible;
}

.pg-sidebar.active{
  transform: translateX(0);
}

/* Responsive */
@media (max-width: 900px){
  .pg-navlinks{ display:none; }
  .pg-cta-btn{ display:none; }
  .pg-menu-btn{ display:block; }
}


/* Founder Section */
.founder-section{
    padding:50px 20px;
    background:#fff2e1;
    display:flex;
    justify-content:center;
}

/* Container */
.container{
    max-width:1100px;
    margin:auto;
}

/* MahaRERA Footer Link */

.footer .tagline a{
  color: inherit;          /* same color as surrounding text */
  text-decoration: none;   /* remove underline */
  font-weight: 500;
  transition: color 0.3s ease;
}

/* After clicking (visited link) */
.footer .tagline a:visited{
  color: inherit;
}

/* Hover effect */
.footer .tagline a:hover{
  color: #c9a14a;          /* gold hover */
}

/* Active click */
.footer .tagline a:active{
  color: #b38f3a;
}



/* SECTION */

.contact-section{
width:100%;
padding:60px 20px;
background:#fff9f2;
font-family:'Poppins', sans-serif;
}

.contact-wrapper{
max-width:1200px;
margin:auto;
text-align:center;
}

/* HEADING */

.contact-title{
font-size:2rem;
font-weight:700;
color:#333;
margin-bottom:8px;
font-family: 'Cormorant Garamond';
}

.contact-underline{
width:60px;
height:3px;
background:#c79a5b;
margin:0 auto 30px auto;
border-radius:2px;
}

/* SLIDER */

.contact-slider{
display:grid;
grid-template-columns:1fr 1fr;
gap:20px;
}

/* CARD */

.contact-card{
background:#ffffff;
padding:24px;
border-radius:15px;
border:1px solid #f0e6d8;
box-shadow:0 4px 15px rgba(0,0,0,0.08);
text-align:left;
transition:all .3s ease;
}

.contact-card:hover{
transform:translateY(-5px);
box-shadow:0 8px 22px rgba(0,0,0,0.12);
}

/* TEXT */

.contact-card h4{
font-size:1rem;
font-weight:600;
color:#c79a5b;
margin-top:12px;
margin-bottom:4px;
}

.contact-card p{
font-size:.95rem;
color:#555;
line-height:1.5;
}

.contact-card a{
text-decoration:none;
color:#555;
}

/* MAP */

.map-card iframe{
width:100%;
height:260px;
border:0;
border-radius:10px;
}

/* MOBILE SLIDER */

@media(max-width:768px){

.contact-slider{
display:flex;
overflow:hidden;
scroll-behavior:smooth;
}

.contact-card{
min-width:100%;
}

}
/* Founder Card */
.founder-card{
    background:#ffffff;
    max-width:920px;
    margin:auto;
    text-align:left;
    padding:28px 36px;
    border-radius:12px;
    border:1px solid #e9e9e9;
    box-shadow:0 10px 28px rgba(0,0,0,0.07);
    transition:all 0.28s ease;
}

.founder-card:hover{
    transform:translateY(-4px);
    box-shadow:0 14px 34px rgba(0,0,0,0.10);
}

/* Heading */
.founder-heading{
    font-size:24px;
    font-weight:600;
    color:#111;
    letter-spacing:0.8px;
    font-family: 'Cormorant Garamond';
}

/* Gold Divider */
.gold-line{
    width:55px;
    height:3px;
    background:linear-gradient(90deg,#d4af37,#c9a14a);
    margin:10px 0 16px 0;
    border-radius:2px;
}

/* Founder Name */
.founder-name{
    font-size:22px;
    font-weight:600;
    color:#c9a14a;
    margin-bottom:3px;
}

/* Role */
.founder-role{
    font-size:14px;
    color:#777;
    margin-bottom:14px;
}

/* Text */
.founder-text{
    font-size:15px;
    line-height:1.65;
    color:#444;
    margin-bottom:14px;
    max-width:720px;
}

/* Badges */
.founder-badges span{
    display:inline-block;
    border:1px solid #c9a14a;
    color:#c9a14a;
    padding:7px 14px;
    border-radius:30px;
    font-size:13px;
    margin:5px 6px 0 0;
    transition:all .25s ease;
}

.founder-badges span:hover{
    background:#c9a14a;
    color:#ffffff;
    transform:translateY(-2px);
}


/* ===== FOOTER ===== */

.footer{
background:#f7f5f0;
padding:50px 20px 25px;
border-top:3px solid #c9a14a;
font-family:"Poppins",sans-serif;
color:#222;
}

/* ===== GRID ===== */

.footer-container{
max-width:1200px;
margin:auto;

display:grid;
grid-template-columns:1.2fr 1px 1fr 1px 1fr 1px 1.2fr;
gap:28px;
align-items:start;
}

/* vertical divider */

.divider{
background:#e2c27a;
width:1px;
height:140px;
margin:auto;
}

/* ===== BRAND ===== */

.footer-logo{
width:110px;
margin-bottom:12px;
}

.tagline{
font-size:15px;
color:#444;
margin-bottom:6px;
}

.rera-number{
font-size:17px;
font-weight:600;
color:#b8860b;
margin:6px 0;
}

.rera-link a{
font-size:14px;
color:#555;
text-decoration:none;
}

.rera-link a:hover{
color:#c9a14a;
}

/* ===== TITLES ===== */

.footer-col h3{
font-size:18px;
font-weight:600;
color:#b8860b;
margin-bottom:14px;
}

/* ===== LINKS ===== */

.footer-col ul{
list-style:none;
padding:0;
margin:0;
}

.footer-col ul li{
margin:7px 0;
font-size:15px;
display:flex;
align-items:flex-start;
gap:10px;
}

.footer-col ul li a{
text-decoration:none;
color:#222;
transition:0.25s;
}

.footer-col ul li a:hover{
color:#c9a14a;
}

/* ===== ICONS ===== */

.footer-col ul li i{
color:#b8860b;
font-size:16px;
width:18px;
margin-top:3px;
}

/* ===== QR CODE ===== */

.qr-section{
text-align:center;
}

.qr-code{
width:120px;
border:2px solid #c9a14a;
border-radius:10px;
padding:6px;
background:#fff;
display:block;
margin:auto;
}

.qr-text{
margin-top:8px;
font-size:13px;
color:#666;
}

/* ===== FOOTER BOTTOM ===== */

.footer-bottom{
margin-top:35px;
padding-top:18px;
border-top:1px solid #ddd;
text-align:center;
font-size:14px;
color:#555;
}

.footer-bottom a{
color:#222;
text-decoration:none;
margin:0 6px;
}

.footer-bottom a:hover{
color:#c9a14a;
}

.footer-disclaimer{
margin-top:10px;
font-size:12px;
color:#777;
max-width:820px;
margin-left:auto;
margin-right:auto;
line-height:1.5;
}

/* ===== MOBILE ===== */

@media(max-width:900px){

.footer-container{
grid-template-columns:1fr;
gap:25px;
text-align:center;
}

.divider{
display:none;
}

/* horizontal divider */

.footer-col{
border-bottom:1px solid #e2c27a;
padding-bottom:18px;
}

.footer-col:last-child{
border-bottom:none;
}

.footer-logo{
margin:auto;
}

.footer-col ul li{
justify-content:center;
}

.qr-code{
width:110px;
}

}
.pg-wa-widget{
position:fixed;
bottom:25px;
right:25px;
display:flex;
align-items:center;
gap:12px;
z-index:9999;
}

/* bubble link */

.pg-wa-bubble-link{
text-decoration:none;
}

/* message bubble */

.pg-wa-bubble{
background:#ffffff;
color:#333;
padding:10px 16px;
border-radius:22px;
font-size:14px;
box-shadow:0 6px 20px rgba(0,0,0,0.2);
opacity:0;
transform:translateX(10px);
transition:0.4s ease;
white-space:nowrap;
cursor:pointer;
}

.pg-wa-bubble.show{
opacity:1;
transform:translateX(0);
}

/* whatsapp button */

.pg-wa-button{
width:60px;
height:60px;
background:#25D366;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
color:white;
font-size:28px;
text-decoration:none;
box-shadow:0 8px 25px rgba(0,0,0,0.25);
transition:0.3s;
}

.pg-wa-button:hover{
transform:scale(1.08);
}










