* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  overflow-x: hidden;
}


body {
  font-family: 'Poppins', sans-serif;
}


h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

h1 {
  font-size: 72px;
  font-weight: 700;
  letter-spacing: -1px;
}

h2 {
  font-size: 44px;
  font-weight: 600;
}

p {
  font-weight: 400;
  font-size: 18px;
}

/* HERO */
.hero {
  width: 100%;
  min-height: 75vh;
  background: linear-gradient(to bottom, #ffffff, #dfeae6);
  position: relative;
  overflow: hidden;

  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-content {
  max-width: 850px;
  width: 90%;
  z-index: 2;
}

.badge {
  display: inline-block;
  background: #ffe7c2;
  color: #ff6600;
  padding: 10px 22px;
  border-radius: 25px;
  font-size: 16px;
  margin-bottom: 25px;
}


h1 {
  line-height: 1.1;
}


.orange {
  color: #ff6600;
}

.green {
  color: #1e7d32;
}


.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 25px 0;
}

.divider span {
  width: 50px;
  height: 2px;
  background: #ff6600;
}

.divider span:last-child {
  background: #1e7d32;
}

.circle {
  width: 16px;
  height: 16px;
  border: 2px solid #1e7d32;
  border-radius: 50%;
  margin: 0 10px;
}

p {
  line-height: 1.8;
}

.floating {
  position: absolute;
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.18);

  animation: float 6s ease-in-out infinite;
}

.img1 { top: 5%; left: 4%; }
.img3 { top: 35%; left: 3%; }
.img4 { bottom: 8%; left: 6%; border-radius: 50%; }

.img2 { top: 6%; right: 4%; }
.img5 { top: 38%; right: 4%; border-radius: 50%; }
.img6 { bottom: 8%; right: 6%; }

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}


@media (max-width: 1024px) {

  h1 {
    font-size: 56px;
  }

  .floating {
    width: 100px;
    height: 100px;
  }

  .img1 { top: 20px; left: 15px; }
  .img2 { top: 20px; right: 15px; }

 
  .img3 { top: 45%; left: 10px; transform: translateY(-50%); }
  .img5 { top: 45%; right: 10px; transform: translateY(-50%); }

  
  .img4 { bottom: 20px; left: 15px; }
  .img6 { bottom: 20px; right: 15px; }
}

@media (max-width: 768px) {

  .hero {
    min-height: auto;
    padding: 60px 15px;
  }

  h1 {
    font-size: 38px;
  }

  p {
    font-size: 14px;
  }

  .floating {
    width: 70px;
    height: 70px;
  }

  .img1 { top: 10px; left: 10px; }
  .img2 { top: 10px; right: 10px; }

  
  .img3 { top: 50%; left: 8px; transform: translateY(-50%); }
  .img5 { top: 50%; right: 8px; transform: translateY(-50%); }

  
  .img4 { bottom: 10px; left: 10px; }
  .img6 { bottom: 10px; right: 10px; }
}

@media (max-width: 480px) {

  .floating {
    width: 55px;
    height: 55px;
  }

  h1 {
    font-size: 30px;
  }
}



/* 2nd section */

.monuments {
  padding: 80px 20px;
  background: #f5f6f7;
}

.container {
  max-width: 1200px;
  margin: auto;
}


.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header .badge {
   font-family: 'Poppins', sans-serif;  
  background: #ffe7c2;
  color: #ff6600;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 16px;
  display: inline-block;
  margin-bottom: 15px;
}

.section-header h2 {
  margin-bottom: 15px;
}

.section-header p {
  color: #000000;
  max-width: 700px;
  margin: auto;
  font-size: 16px;
  line-height: 1.6;
}

/* GRID */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-10px);
}

.card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3; 
  overflow: hidden;
  border-radius: 15px 15px 0 0;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;  
  object-position: center; 
}

/* TAG */
.tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
}

/* CONTENT */
.card-content {
  padding: 20px;
}

.card-content h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.card-content p {
  color: #333;
  font-size: 14px;
  line-height: 1.6;
}


@media (max-width: 992px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .card-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 32px;
  }
}

/* SECTION */
.rural {
  padding: 60px 20px;
  background: #f7f5f3;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header .badge {
  background: #f1dcbc;
  color: #3d1a03;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 16px;
  display: inline-block;
  margin-bottom: 15px;
}

.section-header h2 {
  font-size: 48px;
   margin-bottom: 10px;
}

.section-header p {
  color: #111;
  max-width: 700px;
  margin: auto;
  font-size: 16px;
  line-height: 1.6;
}


.rural-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}


.rural-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 5; 
  cursor: pointer;
}


.rural-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;       
  object-position: center; 
  transition: 0.4s;
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  color: #fff;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}


.overlay h3 {
  font-size: 20px;
  margin-bottom: 5px;
}

.overlay p {
  font-size: 15px;
  opacity: 0.9;
  color: white;
}


.rural-card:hover img {
  transform: scale(1.08);
}


@media (max-width: 768px) {
  .rural-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 32px;
  }
}

/* SECTION */
.crafts {
  padding: 80px 20px;
  background: #f7f5f3;
}


.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header .badge {
  background: #ffe7c2;
  color: #ff6600;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 16px;
  display: inline-block;
  margin-bottom: 15px;
}

.section-header h2 {
  font-size: 48px;
  margin-bottom: 10px;
}

.section-header p {
  color: #666;
  max-width: 700px;
  margin: auto;
  font-size: 16px;
  line-height: 1.6;
}


.crafts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}


.craft-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 5; 
  cursor: pointer;
}


.craft-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}


.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  color: #fff;

  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}


.overlay h3 {
  font-size: 20px;
  margin-bottom: 5px;
}

.overlay p {
  font-size: 15px;
  opacity: 0.9;
}


.craft-card:hover img {
  transform: scale(1.08);
}


@media (max-width: 992px) {
  .crafts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .crafts-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 32px;
  }
}



/* SECTION */
.stats {
  padding: 60px 20px;
  background: #f3f1ef;
}


.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  gap: 20px;
}

.stat-item h2 {
  font-size: 48px;
  color: #c94c0c; 
  margin-bottom: 10px;
  font-weight: 700;
}

.stat-item p {
  color: #333;
  font-size: 14px;
}


@media (max-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 576px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-item h2 {
    font-size: 36px;
  }
}


.quotes {
  padding: 80px 20px;
  background: #f3ede8;
}


.slider {
  position: relative;
  max-width: 900px;
  margin: auto;
  height: 260px;
}


.quote-card {
  position: absolute;
  width: 100%;
  text-align: center;
  opacity: 0;
  transition: opacity 0.6s ease;
}


.quote-card.active {
  opacity: 1;
  position: relative;
}


.quote-icon {
  font-size: 50px;
  color: #e4b8a6;
  display: block;
  margin-bottom: 20px;
}


.quote-text {
  font-size: 28px;
  line-height: 1.6;
  color: #111;
  font-weight: 500;
  margin-bottom: 25px;
}


.quote-author {
  font-size: 16px;
  color: #666;
  font-style: italic;
}


@media (max-width: 768px) {

  .slider {
    height: 220px;
  }

  .quote-text {
    font-size: 20px;
  }

  .quote-icon {
    font-size: 40px;
  }
}

@media (max-width: 480px) {

  .slider {
    height: 200px;
  }

  .quote-text {
    font-size: 18px;
  }
}

/* SECTION */
.atithi {
  background: #1e1311;
  color: #fff;
  padding: 100px 20px;
}


.atithi .container {
  max-width: 1100px;
  margin: auto;
}


.atithi-content {
  text-align: center;
  margin-bottom: 50px;
}

.atithi-content h2 {
  font-size: 56px;
  margin-bottom: 10px;
}

.atithi-content .subtitle {
  font-size: 20px;
  color: #f2d6c9;
  margin-bottom: 15px;
}

.atithi-content .desc {
  max-width: 700px;
  margin: auto;
  color: #d7c2b8;
  line-height: 1.6;
  font-size: 15px;
}


.divider-line {
  height: 1px;
  background: rgba(255,255,255,0.2);
  margin: 40px 0;
}


.atithi-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}


.atithi-footer .left h3 {
  font-size: 22px;
  margin-bottom: 5px;
}

.atithi-footer .left p {
  color: #cbb5aa;
  font-size: 14px;
}

/* RIGHT */
.atithi-footer .right p {
  color: #cbb5aa;
  font-size: 14px;
}


@media (max-width: 768px) {

  .atithi-content h2 {
    font-size: 36px;
  }

  .atithi-footer {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}


/* FLOATING CTA BUTTON */
.floating-cta {
  position: fixed;
  bottom: 30px;
  right: 25px;

  background: linear-gradient(135deg, #ff6600, #ff8533);
  color: #fff;
  padding: 14px 26px;

  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;

  box-shadow: 0 10px 25px rgba(255, 102, 0, 0.35);
  z-index: 999;

  transition: all 0.3s ease;
}


.floating-cta:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 35px rgba(255, 102, 0, 0.5);
}


.floating-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50px;
  background: rgba(255, 102, 0, 0.4);
  z-index: -1;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  70% {
    transform: scale(1.4);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}


@media (max-width: 768px) {
  .floating-cta {
    bottom: 20px;
    right: 15px;
    padding: 12px 20px;
    font-size: 14px;
  }
}