* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "El Messiri", sans-serif;
  background-color: #fff;
  overflow-x: hidden;
  min-height: 100vh;
  padding-top: 80px;
}
.festival-modal {
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 20000;  /* 👈 CHANGE THIS from 1000 to 20000 */
}


.festival-modal.active {
    display: flex;
}


.festival-modal-content {
    background: white;
    display: flex;                    /* 🔥 Horizontal structure */
    gap: 20px;
    align-items: center;
    padding: 20px;
    border-radius: 14px;
    max-width: 750px;                 /* 🔥 Wider */
    width: 90%;
    max-height: 320px;                /* 🔥 Shorter height */
    overflow: hidden;
    position: relative;
    animation: fadeScale 0.3s ease-out;
}

/* Close Button */
/* Close Button */
.festival-close {
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 28px;
    cursor: pointer;
    color: #444;
    z-index: 99999;  /* ✅ This line fixes the unclickable button */
}

/* Image Styling */
.festival-popup-img {
    width: 40%;                       /* 🔥 Image takes left side */
    height: 100%;
    max-height: 280px;
    object-fit: cover;
    border-radius: 10px;
}

/* Content Area */
.festival-popup-content {
    width: 60%;                       /* 🔥 More space for text */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.festival-popup-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.festival-popup-desc {
    font-size: 14px;
    margin-bottom: 18px;
    color: #555;
    line-height: 1.4;
}

.festival-popup-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #862033;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    align-self: flex-start;
}

/* Animation */
@keyframes fadeScale {
    from { opacity: 0; transform: scale(0.85); }
    to { opacity: 1; transform: scale(1); }
}

/* Responsive for Mobile */
@media (max-width: 700px) {
    .festival-modal-content {
        flex-direction: column;
        max-height: none;
        max-width: 95%;
    }

    .festival-popup-img {
        width: 100%;
        max-height: 220px;
    }

    .festival-popup-content {
        width: 100%;
    }
}




.top-bar {
  background: #862033;
  color: #fff;
  padding: 8px 50px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  font-size: 14px;
}
.leave-query-btn {
  background: 0 0;
  border: 1px solid #fff;
  color: #fff;
  padding: 6px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-family: "Libre Baskerville", serif;
  font-size: 14px;
  transition: all 0.3s ease;
}
.leave-query-btn:hover {
  background: #fff;
  color: #c9453a;
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 15px 50px;
  font-size: 16px;
  position: fixed;
  top: 40px;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  font-family: "Libre Baskerville", serif;
}
.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 25px;
}
.nav-menu a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  transition: color 0.3s ease;
}
.nav-menu a:hover {
  color: #a5806a;
  text-decoration: underline;
}
.nav-dropdown {
  position: relative;
  display: inline-block;
}
.nav-dropbtn {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.3s ease;
}
.nav-dropbtn:hover {
  color: #a5806a;
}
.nav-dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 160px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  border-radius: 4px;
  overflow: hidden;
  top: 100%;
  right: 0;
}
.nav-dropdown-content a {
  color: #000;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  transition: background-color 0.3s ease;
}
.nav-dropdown-content a:hover {
  background-color: #f8f5f0;
  color: #a5806a;
}
.nav-dropdown:hover .nav-dropdown-content {
  display: block;
}
.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 0;
  width: 90%;
  max-width: 600px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  animation: slideDown 0.3s ease;
}
@keyframes slideDown {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.modal-header {
  background: #862033;
  color: #fff;
  padding: 20px 30px;
  border-radius: 8px 8px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal-header h2 {
  margin: 0;
  font-size: 24px;
}
.close {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  cursor: pointer;
  transition: color 0.3s ease;
  line-height: 1;
}
.close:hover {
  color: #ddd;
}
.modal-body {
  padding: 30px;
}
.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group {
  flex: 1;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #333;
  font-weight: 500;
  font-size: 14px;
}
.form-group label .required {
  color: #c9453a;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: "Libre Baskerville", serif;
  font-size: 14px;
  transition: border-color 0.3s ease;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: 0;
  border-color: #a5806a;
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.submit-btn {
  background: #862033;
  color: #fff;
  padding: 8px 4px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-family: "Libre Baskerville", serif;
  font-size: 16px;
  font-weight: 500;
  transition: background 0.3s ease;
  display: block;
  margin: 20px auto 0;
}
/* FIXED NAVBAR SCROLL Z-INDEX & POSITIONING */
.top-bar {
    z-index: 1002 !important; /* Higher than nav (1000) */
    transition: all 0.3s ease !important;
}

.top-bar.hidden {
    transform: translateY(-100%) !important;
}

nav {
    z-index: 1001 !important; /* Above content, below top-bar */
    transition: all 0.3s ease !important;
    top: 48px !important; /* Match top-bar height */
}

nav.hidden {
    transform: translateY(-100%) !important;
}

/* MOBILE/TABLET SPECIFIC FIXES */
@media (max-width: 1024px) {
    body {
        padding-top: 96px !important; /* top-bar(48px) + nav(48px) */
    }
    
    .top-bar {
        padding: 6px 20px !important; /* Reduced padding */
        top: 0 !important;
    }
    
    nav {
        top: 48px !important;
        padding: 12px 20px !important;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 88px !important; /* Adjusted for mobile */
    }
    
    .top-bar {
        padding: 5px 15px !important;
        font-size: 13px !important;
    }
    
    .leave-query-btn {
        padding: 5px 16px !important;
        font-size: 13px !important;
        z-index: 1003 !important; /* HIGHEST - stays on top */
    }
    
    nav {
        top: 44px !important;
        padding: 10px 15px !important;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 80px !important;
    }
    
    .top-bar {
        padding: 4px 12px !important;
    }
    
    nav {
        top: 40px !important;
        padding: 8px 12px !important;
    }
}

.submit-btn:hover {
  background: #6b1515;
}
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
}
.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: #000;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
}

.mobile-menu-content a {
    display: block;
  color: #fff;
  text-decoration: none;
  font-size: 24px;
  margin: 20px 0;
  transition: color 0.3s ease;
}
.mobile-menu-content a:hover {
  color: #a5806a;
}
.mobile-menu-close {
  position: absolute;
  top: 30px;
  right: 30px;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
}
.mobile-dropdown {
  margin: 10px 0;
}
.mobile-dropdown-title {
  color: #a5806a;
  font-size: 20px;
  margin-bottom: 10px;
  cursor: pointer;
}
.mobile-dropdown-content {
  display: none;
}
.mobile-dropdown-content a {
  font-size: 18px;
  margin: 8px 0;
  color: #ccc;
}
.mobile-dropdown.active .mobile-dropdown-content {
  display: block;
}
@media (max-width: 768px) {
  .top-bar {
    padding: 8px 20px;
  }
  nav {
    padding: 15px 20px;
  }
  .nav-menu {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .form-row {
    flex-direction: column;
    gap: 15px;
  }
  .modal-content {
    width: 95%;
    margin: 10% auto;
  }
  .modal-body {
    padding: 20px;
  }
}
.hero-container {
  position: relative;
  width: 100vw;
  height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #fff 0%, #f8f8f8 100%);
  margin-top: 0;
}
.content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 50px;
  position: relative;
  z-index: 2;
}
.left-content {
  flex: 1;
  max-width: 600px;
}
.star-icon {
  font-size: 32px;
  color: #000;
  margin-bottom: 10px;
  display: block;
}
.main-title {
  font-weight: 250;
  color: #000;
  line-height: 1.2;
  margin-bottom: 40px;
  letter-spacing: 0;
}
.name-title {
  font-size: 68px;
  display: block;
  margin-bottom: 15px;
  font-weight: 250;
}
.profession-title {
  font-size: 42px;
  display: block;
}
.highlight {
  color: #030303;
  font-weight: 250;
}
.consult-btn {
  background-color: transparent;
  border: 2px solid #252525;
  padding: 8px 15px;
  font-size: 20px;
  font-family: "El Messiri", sans-serif;
  font-weight: 300;
  color: #000;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 20px;
  letter-spacing: 0.5px;
 text-decoration: none;
 border-radius: 4px;
}
.consult-btn:hover {
  background-color: #862033;
  border-color: #862033;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(165, 128, 106, 0.3);
}
.right-content {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  max-width: 700px;
}
.zodiac-circle {
  position: relative;
  width: 550px;
  height: 550px;
  background-image: url("../images/zodiac10.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  animation: rotate 60s linear infinite;
}
.astrologer-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 480px;
  height: 480px;
  background-image: url("../images/astrologer.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50%;
  z-index: 3;
  animation: counterRotate 60s linear infinite;
}
@keyframes counterRotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}
.services-banner {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #862033;
  color: #fff;
  padding: 15px 0;
  overflow: hidden;
  z-index: 4;
  white-space: nowrap;
}
.services-scroll {
  display: inline-block;
  white-space: nowrap;
  animation: continuousScroll 60s linear infinite;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.5px;
}
.services-scroll::after {
  content: " ★ Vastu Consultation ★ Dream Analysis ★ Feng Shui ★ Top Rated Astrologer ★ Free Horoscope ★ Tarot Reading ★ Birth Chart Analysis ★ Marriage Compatibility ★ Career Guidance ★ Love Problem Solution ★ Business Astrology ★ Vastu Consultation ★ Dream Analysis ★ Feng Shui ★ Top Rated Astrologer ★ Free Horoscope ★ Tarot Reading ★ Birth Chart Analysis ★ Marriage Compatibility ★ Career Guidance ★ Love Problem Solution ★ Business Astrology";
}
.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.floating-star {
  position: absolute;
  color: #a5806a;
  font-size: 20px;
  opacity: 0.3;
  animation: float 6s ease-in-out infinite;
}
.floating-star:nth-child(1) {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}
.floating-star:nth-child(2) {
  top: 20%;
  right: 15%;
  animation-delay: 2s;
}
.floating-star:nth-child(3) {
  bottom: 30%;
  left: 5%;
  animation-delay: 4s;
}
.floating-star:nth-child(4) {
  top: 60%;
  right: 10%;
  animation-delay: 1s;
}
.glow-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 550px;
  height: 550px;
  background: radial-gradient(
    circle,
    rgba(165, 128, 106, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite;
}
.services-section {
  background-color: #fff;
  padding: 80px 0;
  position: relative;
}
.services-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 50px;
  text-align: center;
}
.services-title {
  font-family: "El Messiri", sans-serif;
  font-size: 48px;
  font-weight: 100;
  color: #661e29;
  margin-bottom: 20px;
  letter-spacing: 2px;
}
.services-underline {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}
.services-underline img {
  height: 80px;
  width: 200px;
  object-fit: contain;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.service-card {
  background: #fff;
  height: 410px;
  width: 280px;
  border-radius: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  position: relative;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(165, 128, 106, 0.2);
}
.service-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
  border-radius: 0;
}
.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.service-card:hover .service-image img {
  transform: scale(1.05);
}
.service-name {
  font-family: "El Messiri", sans-serif;
  font-size: 22px;
  font-weight: 100;
  color: #000;
  padding: 25px 20px;
  margin: 0;
  background: #fff;
  border-radius: 0 0 20px 20px;
  letter-spacing: 0.5px;
}
.about-section {
  /* background: linear-gradient(
    135deg,
    var(--gold-dark) 0%,
    var(--gold-base) 20%,
    var(--gold-highlight) 45%,
    var(--gold-light) 60%,
    var(--gold-dark) 100%
  ); */
  background: linear-gradient(
  135deg,
  #ccab85 0%,
  #f9f1d3 50%,
  #dbc6a5 100%
);

  /* background: linear-gradient(
    135deg,
    var(--gold-dark-1) 0%,
    var(--gold-main-1) 20%,
    var(--gold-light-1) 35%,
    var(--gold-highlight-1) 48%,
    var(--gold-light-1) 60%,
    var(--gold-main-1) 80%,
    var(--gold-dark-1) 100%
  ); */
  
  padding: 80px 0;
  position: relative;
}
.about-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 50px;
  text-align: center;
}
.about-title {
  font-family: "El Messiri", sans-serif;
  font-size: 48px;
  font-weight: 100;
  color: #862033;
  /* background: linear-gradient(90deg, #f9f295 0%, #e0aa3e 33%, #faf398 66%, #b88a44 100%);
  -webkit-background-clip: text; 
  -webkit-text-fill-color: transparent; */
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.about-subtitle {
  font-family: "Libre Baskerville", serif;
  font-size: 32px;
  font-weight: 400;
  color: #862033;
  /* background: linear-gradient(90deg, #f9f295 0%, #e0aa3e 33%, #faf398 66%, #b88a44 100%);
  -webkit-background-clip: text; 
  -webkit-text-fill-color: transparent; */
  margin-bottom: 20px;
}

.about-text {
  font-family: "Libre Baskerville", serif;
  font-size: 18px;
  line-height: 1.8;
  color: #000000;
  max-width: 900px;
  margin: 0 auto 40px;
  text-align: center;
}
.know-more-btn {
  background-color: transparent;
  border: 2px solid #862033;
  padding: 8px 15px;
  border-radius: 4px;
  font-size: 20px;
  font-family: "El Messiri", sans-serif;
  font-weight: 300;
  color: #000000;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}
.know-more-btn:hover {
  background-color: #862033;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(165, 128, 106, 0.3);
}
.horoscope-section {
  background-color: #fff;
  padding: 80px 0;
  position: relative;
}
.horoscope-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 50px;
  text-align: center;
}
.horoscope-title {
  font-family: "El Messiri", sans-serif;
  font-size: 48px;
  font-weight: 100;
  color: #661e29;
  margin-bottom: 2px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.horoscope-underline {
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
}
.horoscope-underline img {
  height: 80px;
  width: 200px;
  object-fit: contain;
}
.horoscope-subtitle {
  font-family: "El Messiri", sans-serif;
  font-size: 32px;
  font-weight: 300;
  color: #661e29;
  margin-bottom: 50px;
}
.horoscope-carousel-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.horoscope-carousel {
  overflow: hidden;
  position: relative;
}
.horoscope-track {
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease;
  padding: 20px 0;
}
.zodiac-card {
  flex: 0 0 160px;
  height: 200px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}
.zodiac-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
.zodiac-card:hover {
  transform: translateY(-10px) scale(1.05);
}
.zodiac-card:hover img {
  box-shadow: 0 15px 40px rgba(165, 128, 106, 0.3);
}
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #661e29;
  
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-arrow:hover {
  color: #9b313f;
  transform: translateY(-50%) scale(1.1);
}
.carousel-arrow.left {
  left: -25px;
}
.carousel-arrow.right {
  right: -25px;
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes continuousScroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-20px);
    opacity: 0.6;
  }
}
@keyframes pulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.8;
  }
}
@keyframes sparkle {
  0% {
    opacity: 1;
    transform: scale(0) rotate(0deg);
  }
  50% {
    opacity: 1;
    transform: scale(1) rotate(180deg);
  }
  100% {
    opacity: 0;
    transform: scale(0) rotate(360deg);
  }
}
@media (max-width: 1024px) {
  nav {
    padding: 15px 30px;
  }
  .nav-menu {
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  nav {
    padding: 15px 20px;
  }
  .nav-menu {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .hero-container {
    height: auto;
    min-height: 100vh;
    padding: 40px 0;
  }
  .content-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 40px;
    padding: 0 30px;
  }
  .left-content {
    max-width: 100%;
  }
  .name-title {
    font-size: 32px;
  }
  .profession-title {
    font-size: 42px;
  }
  .zodiac-circle {
    width: 300px;
    height: 300px;
  }
  .astrologer-image {
    width: 170px;
    height: 210px;
  }
  .glow-effect {
    width: 350px;
    height: 350px;
  }
  .services-section {
    padding: 60px 0;
  }
  .services-container {
    padding: 0 30px;
  }
  .services-title {
    font-size: 36px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    max-width: 600px;
  }
  .service-image {
    height: 260px;
  }
  .service-name {
    font-size: 22px;
    padding: 20px 15px;
  }
  .about-section {
    padding: 60px 0;
  }
  .about-container {
    padding: 0 30px;
  }
  .about-title {
    font-size: 36px;
  }
  .about-subtitle {
    font-size: 26px;
  }
  .about-text {
    font-size: 16px;
  }
  .know-more-btn {
    font-size: 18px;
    padding: 12px 35px;
  }
  .horoscope-section {
    padding: 60px 0;
  }
  .horoscope-container {
    padding: 0 30px;
  }
  .horoscope-title {
    font-size: 36px;
  }
  .horoscope-subtitle {
    font-size: 26px;
  }
  .zodiac-card {
    flex: 0 0 140px;
    height: 180px;
  }
  .carousel-arrow {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}
@media (max-width: 600px) {
  body {
    padding-top: 70px;
  }
  .hero-container {
    height: auto;
    min-height: calc(100vh - 70px);
    padding: 30px 0;
  }
  .content-wrapper {
    gap: 35px;
    padding: 0 25px;
  }
  .name-title {
    font-size: 28px;
  }
  .profession-title {
    font-size: 36px;
  }
  .zodiac-circle {
    width: 280px;
    height: 280px;
  }
  .astrologer-image {
    width: 150px;
    height: 190px;
  }
  .glow-effect {
    width: 320px;
    height: 320px;
  }
  .consult-btn {
    font-size: 17px;
    padding: 14px 30px;
  }
  .services-section {
    padding: 50px 0;
  }
  .services-container {
    padding: 0 25px;
  }
  .services-title {
    font-size: 32px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 500px;
  }
  .service-image {
    height: 220px;
  }
  .service-name {
    font-size: 20px;
    padding: 18px 12px;
  }
  .about-section {
    padding: 50px 0;
  }
  .about-container {
    padding: 0 25px;
  }
  .about-title {
    font-size: 32px;
  }
  .about-subtitle {
    font-size: 24px;
  }
  .about-text {
    font-size: 15px;
  }
  .know-more-btn {
    font-size: 17px;
    padding: 12px 30px;
  }
  .horoscope-section {
    padding: 50px 0;
  }
  .horoscope-container {
    padding: 0 25px;
  }
  .horoscope-title {
    font-size: 32px;
  }
  .horoscope-subtitle {
    font-size: 24px;
  }
  .zodiac-card {
    flex: 0 0 120px;
    height: 160px;
  }
  .carousel-arrow {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  nav {
    padding: 10px 15px;
  }
  .nav-logo img {
    height: 40px;
  }
  body {
    padding-top: 60px;
  }
  .hero-container {
    height: auto;
    min-height: calc(100vh - 60px);
    padding: 20px 0;
  }
  .content-wrapper {
    gap: 25px;
    padding: 40px 15px;
  }
  .name-title {
    font-size: 22px;
  }
  .profession-title {
    font-size: 28px;
  }
  .zodiac-circle {
    width: 220px;
    height: 220px;
  }
  .astrologer-image {
    width: 120px;
    height: 150px;
  }
  .glow-effect {
    width: 260px;
    height: 260px;
  }
  .consult-btn {
    font-size: 15px;
    padding: 10px 20px;
  }
  .services-section {
    padding: 40px 0;
  }
  .services-container {
    padding: 0 15px;
  }
  .services-title {
    font-size: 26px;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    max-width: 300px;
  }
  .service-image {
    height: 240px;
  }
  .service-name {
    font-size: 20px;
    padding: 20px 15px;
  }
  .about-section {
    padding: 40px 0;
  }
  .about-container {
    padding: 0 15px;
  }
  .about-title {
    font-size: 26px;
  }
  .about-subtitle {
    font-size: 20px;
  }
  .about-text {
    font-size: 14px;
  }
  .know-more-btn {
    font-size: 15px;
    padding: 10px 25px;
  }
  .horoscope-section {
    padding: 40px 0;
  }
  .horoscope-container {
    padding: 0 15px;
  }
  .horoscope-title {
    font-size: 26px;
  }
  .horoscope-subtitle {
    font-size: 20px;
  }
  .horoscope-track {
    gap: 15px;
  }
  .zodiac-card {
    flex: 0 0 100px;
    height: 140px;
  }
  .carousel-arrow {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }
  .carousel-arrow.left {
    left: -15px;
  }
  .carousel-arrow.right {
    right: -15px;
  }
}
@media (min-width: 1440px) {
  .content-wrapper {
    max-width: 1600px;
    padding: 0 60px;
  }
  /* .name-title {
    font-size: 48px;
  }
  .profession-title {
    font-size: 65px;
  } */
  .zodiac-circle {
    width: 650px;
    height: 650px;
  }
  .astrologer-image {
    width: 550px;
    height: 550px;
  }
  .glow-effect {
    width: 750px;
    height: 750px;
  }
  .services-container {
    max-width: 1600px;
    padding: 0 60px;
  }
  .services-title {
    font-size: 56px;
  }
  .services-grid {
    gap: 50px;
    max-width: 1400px;
  }
  .service-image {
    height: 320px;
  }
  .service-name {
    font-size: 26px;
    padding: 30px 20px;
  }
  .about-container {
    max-width: 1600px;
    padding: 0 60px;
  }
  .about-title {
    font-size: 56px;
  }
  .about-subtitle {
    font-size: 38px;
  }
  .about-text {
    font-size: 20px;
  }
  .know-more-btn {
    font-size: 22px;
    padding: 16px 45px;
  }
  .horoscope-container {
    max-width: 1600px;
    padding: 0 60px;
  }
  .horoscope-title {
    font-size: 56px;
  }
  .horoscope-subtitle {
    font-size: 38px;
  }
  .zodiac-card {
    flex: 0 0 180px;
    height: 220px;
  }
}
@media (max-width: 1199px) and (min-width: 1024px) {
  .content-wrapper {
    padding: 0 30px;
  }
  .name-title {
    font-size: 36px;
  }
  .profession-title {
    font-size: 48px;
  }
  .zodiac-circle {
    width: 500px;
    height: 500px;
  }
  .astrologer-image {
    width: 400px;
    height: 400px;
  }
  .glow-effect {
    width: 600px;
    height: 600px;
  }
  .consult-btn {
    font-size: 18px;
    padding: 14px 32px;
  }
  .services-container {
    padding: 0 30px;
  }
  .services-title {
    font-size: 42px;
  }
  .services-grid {
    gap: 35px;
    max-width: 1000px;
  }
  .service-image {
    height: 250px;
  }
  .service-name {
    font-size: 22px;
    padding: 20px 15px;
  }
  .about-container {
    padding: 0 30px;
  }
  .about-title {
    font-size: 42px;
  }
  .about-subtitle {
    font-size: 28px;
  }
  .about-text {
    font-size: 17px;
  }
  .know-more-btn {
    font-size: 19px;
    padding: 14px 38px;
  }
  .horoscope-section {
    padding: 70px 0;
  }
  .horoscope-container {
    padding: 0 30px;
  }
  .horoscope-title {
    font-size: 42px;
  }
  .horoscope-subtitle {
    font-size: 28px;
  }
  .zodiac-card {
    flex: 0 0 150px;
    height: 190px;
  }
}
.numerology-section {
  background-color: #fff;
  padding: 80px 0;
  position: relative;
}
.numerology-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 50px;
  text-align: center;
}
.numerology-title {
  font-family: "El Messiri", sans-serif;
  font-size: 48px;
  font-weight: 100;
  color: #661e29;
  margin-bottom: 2px;
  letter-spacing: 2px;
}
.numerology-underline {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}
.numerology-underline img {
  height: 80px;
  width: 200px;
  object-fit: contain;
}
.numerology-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}
.numerology-left {
  flex: 1;
  display: flex;
  justify-content: center;
}
.number-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.number-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(
  135deg,
  #ccab85 0%,
  #f9f1d3 50%,
  #dbc6a5 100%
);

  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 8px 8px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}
.number-circle:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 30px rgba(134, 32, 51, 0.4);
}
.number {
  font-family: "El Messiri", sans-serif;
  font-size: 52px;
  font-weight: 450;
  background: #862033;
  -webkit-background-clip: text; 
  -webkit-text-fill-color: transparent;
}
.numerology-right {
  flex: 1;
}
.calculator-form {
  background: #fff;
  padding: 40px;
  border-radius: 0;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}
.form-group {
  margin-bottom: 25px;
  text-align: left;
}
.form-group label {
  display: block;
  font-family: "El Messiri", sans-serif;
  font-size: 18px;
  color: #272626;
  margin-bottom: 8px;
  font-weight: 400;
}
.form-group input {
  width: 100%;
  padding: 15px;
  border: 1px solid #a5806a;
  border-radius: 0;
  font-family: "El Messiri", sans-serif;
  font-size: 20px;
  color: #272626;
  transition: all 0.3s ease;
}
.form-group input:focus {
  outline: 0;
  border-color: #862033;
  box-shadow: 0 0 0 3px rgba(134, 32, 51, 0.1);
}
.form-group input::placeholder {
  color: #999;
  font-style: italic;
}
.submit-btn {
  width: 100%;
  background-color: transparent;
  border: 2px solid #862033;
  padding: 15px 35px;
  font-size: 20px;
  font-family: "El Messiri", sans-serif;
  font-weight: 400;
  color: #862033;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 1px;
  margin-top: 10px;
}
.submit-btn:hover {
  background-color: #862033;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(134, 32, 51, 0.3);
}
@media (max-width: 1024px) {
  .numerology-container {
    padding: 0 30px;
  }
  .numerology-content {
    gap: 50px;
  }
  .number-grid {
    gap: 20px;
  }
  .number-circle {
    width: 100px;
    height: 100px;
  }
  .number {
    font-size: 44px;
  }
  .calculator-form {
    padding: 30px;
  }
}
@media (max-width: 768px) {
  .numerology-section {
    padding: 60px 0;
  }
  .numerology-container {
    padding: 0 20px;
  }
  .numerology-title {
    font-size: 36px;
    margin-bottom: 15px;
  }
  .numerology-underline {
    margin-bottom: 40px;
  }
  .numerology-underline img {
    height: 60px;
    width: 150px;
  }
  .numerology-content {
    flex-direction: column;
    gap: 40px;
  }
  .numerology-left,
  .numerology-right {
    width: 100%;
    max-width: 500px;
  }
  .number-grid {
    gap: 20px;
  }
  .number-circle {
    width: 90px;
    height: 90px;
  }
  .number {
    font-size: 38px;
  }
  .calculator-form {
    padding: 30px 25px;
  }
  .form-group label {
    font-size: 16px;
  }
  .form-group input {
    padding: 12px;
    font-size: 15px;
  }
  .submit-btn {
    font-size: 18px;
    padding: 12px 30px;
  }
}
@media (max-width: 480px) {
  .numerology-section {
    padding: 40px 0;
  }
  .numerology-container {
    padding: 0 15px;
  }
  .numerology-title {
    font-size: 28px;
    letter-spacing: 1px;
    margin-bottom: 10px;
  }
  .numerology-underline {
    margin-bottom: 30px;
  }
  .numerology-underline img {
    height: 50px;
    width: 120px;
  }
  .numerology-content {
    gap: 30px;
  }
  .number-grid {
    gap: 15px;
  }
  .number-circle {
    width: 70px;
    height: 70px;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
  }
  .number-circle:hover {
    transform: translateY(-3px) scale(1.03);
  }
  .number {
    font-size: 28px;
  }
  .calculator-form {
    padding: 25px 20px;
  }
  .form-group {
    margin-bottom: 20px;
  }
  .form-group label {
    font-size: 15px;
    margin-bottom: 6px;
  }
  .form-group input {
    padding: 10px;
    font-size: 14px;
  }
  .submit-btn {
    font-size: 16px;
    padding: 12px 25px;
    letter-spacing: 0.5px;
  }
}
@media (max-width: 360px) {
  .numerology-title {
    font-size: 24px;
  }
  .number-grid {
    gap: 12px;
  }
  .number-circle {
    width: 60px;
    height: 60px;
  }
  .number {
    font-size: 24px;
  }
  .calculator-form {
    padding: 20px 15px;
  }
  .form-group label {
    font-size: 14px;
  }
  .form-group input {
    padding: 8px;
    font-size: 13px;
  }
  .submit-btn {
    font-size: 15px;
    padding: 10px 20px;
  }
}
.kundli-section {
  background: linear-gradient(
  135deg,
  #ccab85 0%,
  #f9f1d3 50%,
  #dbc6a5 100%
);

  padding: 80px 0;
  position: relative;
}
.kundli-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 50px;
  text-align: center;
}
.kundli-title {
  font-family: "El Messiri", sans-serif;
  font-size: 48px;
  font-weight: 100;
  color: #862033;
  margin-bottom: 2px;
  letter-spacing: 2px;
}

.kundli-underline {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}
.kundli-underline img {
  height: 80px;
  width: 200px;
  object-fit: contain;
}
.kundli-form {
  max-width: 1000px;
  margin: 0 auto;
  background: #fff;
  padding: 50px;
  border-radius: 0;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}
.kundli-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 25px;
}
.kundli-field,
.kundli-field-group {
  text-align: left;
}
.kundli-field label,
.kundli-field-group label {
  display: block;
  font-family: "Libre Baskerville", serif;
  font-size: 18px;
  color: #272626;
  margin-bottom: 8px;
  font-weight: 400;
}
.kundli-field input,
.kundli-field-group input {
  width: 100%;
  padding: 15px;
  border: 1px solid #a5806a;
  border-radius: 0;
  font-family: "Libre Baskerville", serif;
  font-size: 16px;
  color: #272626;
  transition: all 0.3s ease;
}
.kundli-field input:focus,
.kundli-field-group input:focus {
  outline: 0;
  border-color: #862033;
  box-shadow: 0 0 0 3px rgba(134, 32, 51, 0.1);
}
.kundli-field input::placeholder,
.kundli-field-group input::placeholder {
  color: #999;
  font-style: italic;
}
.time-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.kundli-submit-btn {
  width: 100%;
  background-color: transparent;
  border: 2px solid #862033;
  padding: 16px 40px;
  font-size: 22px;
  font-family: "El Messiri", sans-serif;
  font-weight: 400;
  color: #862033;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 1px;
  margin-top: 20px;
}
.kundli-submit-btn:hover {
  background-color: #862033;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(134, 32, 51, 0.3);
}
@media (max-width: 1024px) {
  .kundli-container {
    padding: 0 30px;
  }
  .kundli-form {
    padding: 40px;
  }
  .kundli-row {
    gap: 25px;
  }
}
@media (max-width: 768px) {
  .kundli-section {
    padding: 60px 0;
  }
  .kundli-container {
    padding: 0 20px;
  }
  .kundli-title {
    font-size: 36px;
    margin-bottom: 15px;
  }
  .kundli-underline {
    margin-bottom: 40px;
  }
  .kundli-underline img {
    height: 60px;
    width: 150px;
  }
  .kundli-form {
    padding: 30px 25px;
  }
  .kundli-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .kundli-field label,
  .kundli-field-group label {
    font-size: 16px;
  }
  .kundli-field input,
  .kundli-field-group input {
    padding: 12px;
    font-size: 15px;
  }
  .kundli-submit-btn {
    font-size: 18px;
    padding: 14px 35px;
  }
}
@media (max-width: 480px) {
  .kundli-section {
    padding: 40px 0;
  }
  .kundli-container {
    padding: 0 15px;
  }
  .kundli-title {
    font-size: 28px;
    letter-spacing: 1px;
    margin-bottom: 10px;
  }
  .kundli-underline {
    margin-bottom: 30px;
  }
  .kundli-underline img {
    height: 50px;
    width: 120px;
  }
  .kundli-form {
    padding: 25px 20px;
  }
  .kundli-row {
    gap: 18px;
    margin-bottom: 20px;
  }
  .kundli-field label,
  .kundli-field-group label {
    font-size: 15px;
    margin-bottom: 6px;
  }
  .kundli-field input,
  .kundli-field-group input {
    padding: 10px;
    font-size: 14px;
  }
  .time-inputs {
    gap: 8px;
  }
  .kundli-submit-btn {
    font-size: 16px;
    padding: 12px 25px;
    letter-spacing: 0.5px;
  }
}
@media (max-width: 360px) {
  .kundli-title {
    font-size: 24px;
  }
  .kundli-form {
    padding: 20px 15px;
  }
  .kundli-field label,
  .kundli-field-group label {
    font-size: 14px;
  }
  .kundli-field input,
  .kundli-field-group input {
    padding: 8px;
    font-size: 13px;
  }
  .kundli-submit-btn {
    font-size: 15px;
    padding: 10px 20px;
  }
}
.testimonials {
  background: #ffffff;
  padding: 80px 20px;
  margin-top: 0;
  position: relative;
  overflow: hidden;
  transform-origin: center;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between; /* 🔥 */
  gap: 0;                         /* 🔥 */
}

.testimonials h2 {
  font-size: 48px;
  color: #862033;
  line-height: 1.2;
  flex: 1;
  font-family: "Playfair Display", serif;
  font-weight: 400;
  padding-bottom: 20px;
}

.read-more-btn {
    color: #862033;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
    font-style: normal;
    transition: color 0.3s ease;
    display: inline;
    padding: 0;
    background: none;
    border: none;
}

.read-more-btn:hover {
    color: #A5806A;
}

.testimonials-wrapper {
 flex:1;
 padding: 0 30px;
  height: 400px;
  overflow-x: visible;   /* ✅ allow scale */
  overflow-y: hidden; 
  position: relative;
  mask: linear-gradient(
    to bottom,
    transparent 0%,
    black 20%,
    black 80%,
    transparent 100%
  );
  -webkit-mask: linear-gradient(
    to bottom,
    transparent 0%,
    black 20%,
    black 80%,
    transparent 100%
  );

}
.testimonials-list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: scrollUp 18s linear infinite;
}
.testimonial {
  background: #fff;
  padding: 20px 30px;
  border-radius: 0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 520px;
  transition: all 0.5s ease;
  position: relative;
  min-height: 85px;
  opacity: 1.6;
  transform: scale(0.95);
}

.testimonial.center {
  opacity: 1;
  transform: scale(1.05);
  box-shadow: 0 12px 35px rgba(165, 128, 106, 0.3);
  border: 2px solid #862033;
  background: linear-gradient(135deg, #fff 0%, #fef7f0 100%);
}

.testimonial-avatar {
  width: 80px;
  height: 60px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
}
.avatar-1,
.avatar-2,
.avatar-3,
.avatar-4,
.avatar-5,
.avatar-6 {
  background: linear-gradient(135deg, #862033 0%, #862033 100%);
}
.testimonial-content {
  flex: 1;
}
.testimonial-text {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  font-family: "Libre Baskerville", serif;
  margin-bottom: 8px;
}
.testimonial-name {
  font-size: 14px;
  color: #862033;
  font-weight: 700;
}
@keyframes scrollUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-600px);
  }
}
.testimonials-wrapper:hover .testimonials-list {
  animation-play-state: paused;

}
@media (max-width: 1024px) {
  .testimonials {
    padding: 70px 20px;
  }
  .testimonials-container {
    gap: 60px;
  }
  .testimonials h2 {
    font-size: 42px;
  }
}
@media (max-width: 768px) {
  .testimonials {
    padding: 60px 20px;
  }
  .testimonials-container {
    flex-direction: column;
    gap: 40px;
  }
  .testimonials h2 {
    font-size: 36px;
    text-align: center;
  }
  .testimonials-wrapper {
    width: 100%;
    height: 350px;
  }
  .testimonial {
    max-width: 100%;
  }
}
@media (max-width: 480px) {
  .testimonials {
    padding: 40px 15px;
  }
  .testimonials-container {
    gap: 30px;
  }
  .testimonials h2 {
    font-size: 28px;
  }
  .testimonials-wrapper {
    height: 320px;
    padding: 0 15px;
  }
  .testimonial {
    padding: 15px 20px;
    gap: 15px;
    min-height: 75px;
  }
  .testimonial-avatar {
    width: 50px;
    height: 50px;
    font-size: 16px;
  }
  .testimonial-text {
    font-size: 14px;
  }
  .testimonial-name {
    font-size: 13px;
  }
}
@media (max-width: 360px) {
  .testimonials h2 {
    font-size: 24px;
  }
  .testimonials-wrapper {
    height: 300px;
  }
  .testimonial {
    padding: 12px 15px;
  }
  .testimonial-avatar {
    width: 45px;
    height: 45px;
    font-size: 14px;
  }
  .testimonial-text {
    font-size: 13px;
  }
  .testimonial-name {
    font-size: 12px;
  }
}
.contact-section {
  background-color: #fff;
  padding: 80px 0;
  position: relative;
}
.contact-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 50px;
}
.contact-main-title {
  font-family: "El Messiri", sans-serif;
  font-size: 48px;
  font-weight: 100;
  color: #661e29;
  text-align: center;
  margin-bottom: 2px;
  letter-spacing: 3px;
}
.contact-underline {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}
.contact-underline img {
  height: 80px;
  width: 200px;
  object-fit: contain;
}
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}
.contact-left {
  background: #fff;
  padding: 40px;
  border-radius: 0;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}
.contact-title {
  font-family: "Libre Baskerville", serif;
  font-size: 28px;
  font-weight: 600;
  color: #272626;
  margin-bottom: 30px;
}
.contact-info {
  margin-bottom: 30px;
}
.contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.contact-icon {
  font-size: 24px;
  flex-shrink: 0;
  width: 30px;
}
.contact-item p {
  font-family: "Libre Baskerville", serif;
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  margin: 0;
}
.contact-item strong {
  color: #272626;
  display: block;
  margin-bottom: 3px;
}
.contact-map {
  margin-top: 30px;
  border: 2px solid #a5806a;
  overflow: hidden;
}
.contact-right {
  background: #fff;
  padding: 40px;
  border-radius: 0;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}
.contact-form-group {
  margin-bottom: 25px;
}
.contact-form-group label {
  display: block;
  font-family: "Libre Baskerville", serif;
  font-size: 18px;
  color: #272626;
  margin-bottom: 8px;
  font-weight: 400;
}
.contact-form-group input,
.contact-form-group textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #a5806a;
  border-radius: 0;
  font-family: "Libre Baskerville", serif;
  font-size: 16px;
  color: #272626;
  transition: all 0.3s ease;
  resize: vertical;
}
.contact-form-group input:focus,
.contact-form-group textarea:focus {
  outline: 0;
  border-color: #862033;
  box-shadow: 0 0 0 3px rgba(134, 32, 51, 0.1);
}
.contact-form-group input::placeholder,
.contact-form-group textarea::placeholder {
  color: #999;
  font-style: italic;
}
.contact-submit-btn {
  width: 100%;
  background-color: transparent;
  border: 2px solid #862033;
  padding: 15px 35px;
  font-size: 20px;
  font-family: "El Messiri", sans-serif;
  font-weight: 400;
  color: #862033;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 1px;
  margin-top: 10px;
}
.contact-submit-btn:hover {
  background-color: #862033;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(134, 32, 51, 0.3);
}
@media (max-width: 1024px) {
  .contact-container {
    padding: 0 30px;
  }
  .contact-content {
    gap: 40px;
  }
  .contact-left,
  .contact-right {
    padding: 35px;
  }
}
@media (max-width: 768px) {
  .contact-section {
    padding: 60px 0;
  }
  .contact-container {
    padding: 0 20px;
  }
  .contact-main-title {
    font-size: 36px;
    margin-bottom: 15px;
  }
  .contact-underline {
    margin-bottom: 40px;
  }
  .contact-underline img {
    height: 60px;
    width: 150px;
  }
  .contact-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .contact-left,
  .contact-right {
    padding: 30px 25px;
  }
  .contact-title {
    font-size: 24px;
  }
  .contact-item p {
    font-size: 14px;
  }
  .contact-form-group label {
    font-size: 16px;
  }
  .contact-form-group input,
  .contact-form-group textarea {
    padding: 12px;
    font-size: 15px;
  }
  .contact-submit-btn {
    font-size: 18px;
    padding: 12px 30px;
  }
}
@media (max-width: 480px) {
  .contact-section {
    padding: 40px 0;
  }
  .contact-container {
    padding: 0 15px;
  }
  .contact-main-title {
    font-size: 28px;
    letter-spacing: 2px;
    margin-bottom: 10px;
  }
  .contact-underline {
    margin-bottom: 30px;
  }
  .contact-underline img {
    height: 50px;
    width: 120px;
  }
  .contact-content {
    gap: 25px;
  }
  .contact-left,
  .contact-right {
    padding: 25px 20px;
  }
  .contact-title {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .contact-icon {
    font-size: 20px;
    width: 25px;
  }
  .contact-item {
    gap: 12px;
    margin-bottom: 15px;
  }
  .contact-item p {
    font-size: 13px;
  }
  .contact-map {
    margin-top: 20px;
  }
  .contact-form-group {
    margin-bottom: 20px;
  }
  .contact-form-group label {
    font-size: 15px;
    margin-bottom: 6px;
  }
  .contact-form-group input,
  .contact-form-group textarea {
    padding: 10px;
    font-size: 14px;
  }
  .contact-submit-btn {
    font-size: 16px;
    padding: 12px 25px;
    letter-spacing: 0.5px;
  }
}
@media (max-width: 360px) {
  .contact-main-title {
    font-size: 24px;
  }
  .contact-left,
  .contact-right {
    padding: 20px 15px;
  }
  .contact-title {
    font-size: 20px;
  }
  .contact-item p {
    font-size: 12px;
  }
  .contact-form-group label {
    font-size: 14px;
  }
  .contact-form-group input,
  .contact-form-group textarea {
    padding: 8px;
    font-size: 13px;
  }
  .contact-submit-btn {
    font-size: 15px;
    padding: 10px 20px;
  }
}
footer {
  background: url(../images/footer_bg.jpg) no-repeat center/cover;
  padding: 40px 80px;
  min-height: 280px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  font-size: 14px;
  color: #090909;
  position: relative;
  z-index: 1;
  gap: 20px;
  font-family: "Libre Baskerville", serif;
}
footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}
footer div {
  margin-bottom: 30px;
}
footer h4 {
  font-family: "Playfair Display", serif;
  margin-bottom: 10px;
  color: #0e0e0e;
  font-size: 19px;
}
footer p {
  line-height: 1.6;
}
.social a {
  display: block;
  color: #080808;
  text-decoration: none;
  margin: 15px 0;
  transition: color 0.3s ease;
}
.social a:hover {
  text-decoration: underline;
  color: #862033;
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  footer {
    padding: 40px 60px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer {
    grid-template-columns: repeat(2, 1fr);
    padding: 40px 40px;
    gap: 30px;
  }
}
@media screen and (max-width: 768px) {
  footer {
    grid-template-columns: repeat(2, 1fr);
    padding: 30px 20px;
    gap: 15px;
  }
  footer h4 {
    font-size: 16px;
  }
  footer p {
    font-size: 12px;
  }
  .social a {
    margin: 12px 0;
  }
}
@media screen and (max-width: 480px) {
  footer {
    grid-template-columns: 1fr;
    padding: 20px 15px;
    text-align: center;
  }
  footer h4 {
    font-size: 15px;
  }
  footer p {
    font-size: 11px;
  }
  .social a {
    margin: 10px 0;
  }
}
@media screen and (max-width: 360px) {
  footer {
    padding: 15px 10px;
  }
  footer h4 {
    font-size: 14px;
  }
  footer p {
    font-size: 10px;
  }
}

