/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* 🔧 RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  touch-action: pan-y !important;
}


/* Performance optimizations */
html {
  scroll-behavior: smooth;
  overflow-x: auto;
}


img {
  max-width: 100%;
  height: auto;
}

/* Preload critical resources */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: 'Poppins', sans-serif;
  background: #fff;
  color: #2C2C2C;
  font-size: 16px;
  overflow-x: auto;
}

/* 🔝 HEADER */
.top-bar {
  display: flex;
  align-items: center;
  padding: 0 20px;
  height: 80px;
  background-color: #B8860B;
  color: white;

  /* ✅ REMOVE space-between */
  justify-content: flex-start;
  gap: 100px; /* ✅ Adds space between logo and nav links */
}


.logo {
  width: 60px;
  height: auto;
}

.nav-links {
  display: flex;
  gap: 30px;
}



.nav-links a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  color: white;
}

/* 🍔 HAMBURGER ICON */
.hamburger {
  font-size: 30px;
  background: none;
  border: none;
  cursor: pointer;
  display: none;
  color: white;
}

/* 📱 MOBILE MENU & PANELS */
.mobile-menu,
.mobile-panel {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #F5F5F5;
  transition: left 0.3s ease;
  z-index: 999;
  overflow-y: auto;
  pointer-events: none;
}

.mobile-menu.show,
.mobile-panel.show,
.mobile-menu[style*="left: 0"],
.mobile-panel[style*="left: 0"] {
  pointer-events: auto;
}

.mobile-top-bar {
  background-color: #B8860B;
  color: white;
  padding: 12px 16px;
  font-weight: bold;
  font-size: 16px;
  text-align: left;
}

.mobile-nav,
.mobile-submenu-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
}

.mobile-nav a,
.mobile-submenu button,
.mobile-submenu-list a {
  font-size: 16px;
  text-decoration: none;
  border: none;
  background: none;
  color: black;
  text-align: left;
  cursor: pointer;
}

/* 📦 QUICK LINKS DESKTOP GRID */
.quick-links {
  width: 100vw;
  position: relative;
  left: calc(-50vw + 50%);
  padding: 40px 20px;
  background-color: #F5F5F5;
}

.quick-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: left;
  padding-left: 80px;
  
}

.column {
  width: 10vw;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.column h4 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}

.service-content {
  padding: 20px 100px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.service-item {
  display: flex;
  padding: 30px;
  border: 1px solid #D8AA67;
  border-radius: 8px;
  gap: 30px;
  box-shadow: 0 2px 4px #D8AA67;
  color: #B8860B;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  align-items: flex-start;
  justify-content: space-between;
  text-align: justify;
  transition: transform 0.3s ease;
  min-height: 140px;
  background-color: #fff;
}

.service-item:hover {
  transform: scale(1.02);
  background-color: #B8860B;
  color: white;
  
}

.service-item div {
  width: 150px;
  height: auto;
}

.service-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.column a {
  text-decoration: none;
  color: #2C2C2C;
  font-size: 14px;
}

/* 🤝 SOCIAL ICONS */
.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.social-icons img {
  width: 36px;
  height: 36px;

}


/* 📱 QUICK LINKS MOBILE ACCORDION */
.mobile-quick-drawer {
  display: none;
  flex-direction: column;
  width: 100vw;
  position: relative;
  left: calc(-50vw + 50%);
  margin-bottom: 30px;
  gap: 0px;
  background-color: #F5F5F5;
  border-top: 2px solid #ccc;
}

.mobile-quick-drawer h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  width: 95%;
  margin: 5px;
}

.accordion {
  border: 1px solid #000;       /* Black border */
  border-radius: 0px;           /* No rounding */
  overflow: hidden;
  background-color: #F5F5F5;    /* Match Quick Links section */
  margin-bottom: 0px;           /* Remove spacing between items */
  transition: all 0.5s ease-in-out;  /* Smooth + slow transition */
}

.accordion-content {
  display: none;
  flex-direction: column;
  padding: 10px 14px;
  background-color: white;
  transition: max-height 0.5s ease-in-out;
}

.content
{
padding-bottom: 100px;
}

.accordion-header {
  background-color: #F5F5F5;
  padding: 10px 14px;
  margin-bottom: 0px;
  font-weight: bold;
  font-size: 15px;
  border: none;
  cursor: pointer;
  width: 100%;
  text-align: left;
}




.accordion-content a {
  text-decoration: none;
  color: #2C2C2C;
  font-size: 14px;
  padding: 5px 0;
}

/* ⬇️ FOOTER */
footer {
  background-color: #F5F5F5;
  text-align: center;
  padding: 20px;
  font-size: 14px;
  color: #5A5A5A;
}

.dropdown {
  position: relative;
}

.dropdown-btn {
  background: none;
  border: none;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  color: white;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  background-color: #fff;
  border: 1px solid #ccc;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  flex-direction: column;
  z-index: 1000;
  min-width: 180px;
}

.dropdown-content a {
  padding: 8px 12px;
  text-decoration: none;
  color: #2C2C2C;
  font-size: 14px;
}

.dropdown:hover .dropdown-content {
  display: flex;
}

.hero-carousel {
  position: relative;
  width: 100vw;
  height: auto;
  overflow: visible;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.carousel-track {
  position: relative;
  width: 100vw;
  height: auto;
  touch-action: pan-y;
  user-select: none;
}

.carousel-track::after {
  content: '';
  display: block;
  clear: both;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: auto;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
  pointer-events: none;
  touch-action: pan-y;
}

.carousel-slide:first-child {
  position: relative;
  pointer-events: auto;
}

.carousel-slide.active {
  opacity: 1;
  pointer-events: auto;
  touch-action: pan-y;
}

.carousel-slide img {
  width: 100vw;
  height: auto;
}

.carousel-spacer {
  min-height: 100px;
  width: 100%;
}

.services-row {
  display: flex;
  gap: 40px;
  padding: 40px;
  justify-content: center;
  flex-wrap: wrap;
  background-color: #fff;
  position: relative;
  z-index: 1;
}

.service-card {
  width: 20vw;
  height: 400px;
  background: #FFFFFF;
  border: 1px solid #ccc;
  padding: 20px;
  text-align: center;
  transition: transform 0.4s ease;
  border-radius: 15px;
  border-color: #FFD700;
}

.service-card img {
  width: 100%;
  height: 80%;
  aspect-ratio: 1 / 1;
  object-fit:contain;
  margin-bottom: 12px;
}

.service-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #B8860B;

}

.explore-button {
  height: 40px;
  color: #E5F1F7;
  border: 2px solid #D8AA67;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 30px;
  transition: background-color 0.3s ease;
}

.explore-button:hover {
  background-color: #B8860B;
}

.explore-button h3:hover {
  
  color: white;
}

.service-card p {
  font-size: 14px;
  color: black;
}

/* Hover effect */
.service-card:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.join-section {
  display: flex;
  height: 40vw;
  justify-content: space-between;
  align-items: center;
  /* padding: 60px 40px; */
  background-color: #B8860B;
  color: white;
  flex-wrap: wrap;
}

.service-header {
  display: flex;
  width: 100%;
  height: auto;
  min-height: 12vh;
  align-items: center;
  padding: 30px 20px;
  background: #ffffff;
  position: relative;
  z-index: 100;
  
  /* border-bottom: 3px solid black */
}

.join-left {
  flex: 1;
  max-width: 55%;
  padding: 0px 5vw;
  align-items: center;
  justify-content: center;
}

.join-left h2 {
  font-size: 40px;
  line-height: 1.4;
  margin-bottom: 24px;
  
  
}

.join-left h3 {
  font-size: 24px;
  margin-bottom: 20px;
}

.choose-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.choose-point {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
}

.choose-point img {
  width: 64px;
  height: 64px;
}

/* Right image container */
.join-right {
  width: 40vw;
  height: 40vw;
  flex-shrink: 0;
}

.join-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* border: 2px solid #fff; */
}

footer a {
  color: #B8860B;
  text-decoration: none;
  font-size: 10px;
}

/* Contact form styles */
.contact-form-input {
  width: 100%;
  height: 30px;
  margin-bottom: 5px;
  padding: 12px;
  border-radius: 12px;
  border: none;
  outline: none;
  font-size: 16px;
  background: rgba(172, 102, 12, 0.3);
  backdrop-filter: blur(8px);
  box-shadow: inset 2px 2px 5px rgba(255, 255, 255, 0.2),
              inset -2px -2px 5px rgba(255, 255, 255, 0.3);
}

.contact-form-textarea {
  width: 100%;
  height: 60px;
  margin-bottom: 5px;
  padding: 12px;
  border-radius: 12px;
  border: none;
  outline: none;
  font-size: 16px;
  background: rgba(172, 102, 12, 0.3);
  backdrop-filter: blur(8px);
  box-shadow: inset 2px 2px 5px rgba(255, 255, 255, 0.2),
              inset -2px -2px 5px rgba(255, 255, 255, 0.3);
}

.contact-submit-btn {
  width: 90px;
  height: 40px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 4px 4px 10px rgba(0,0,0,0.4),
              -4px -4px 10px rgba(255,255,255,0.1);
  transition: all 0.2s ease-in-out;
  border: none;
  border-radius: 12px;
  color: white;
  font-size: 16px;
}

.contact-map-container {
  flex: 1;
  height: 450px;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  position: relative;
}

.contact-map-iframe {
  border: 0;
  width: 100%;
  height: 100%;
}

.contact-icon-full {
  width: 100%;
  height: 100%;
}

.contact-info-white {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-info-white h3 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #B8860B;
  margin: 0;
  line-height: 1.2;
}

.contact-info-white p {
  font-size: 1.15rem;
  line-height: 1.6;
  color: black;
  margin: 0;
  font-weight: 400;
}

.contact-info-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  font-size: 24px;
  padding-bottom: 10px;
  height: 70px;
  width: 70%;
}

/* CONTACT PAGE STYLES */
.contact-banner {
  width: 100%;
  margin-bottom: 40px;
  text-align: center;
}

.contact-banner img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
}

.contact-section {
  padding: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info {
  margin-bottom: 50px;
}

.contact-info h3 {
  font-size: 32px;
  font-weight: 700;
  color: #B8860B;
  margin-bottom: 20px;
  text-align: center;
}

.contact-info p {
  font-size: 18px;
  color: black;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.6;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.contact-card {
  background: #fff;
  border: 2px solid #D8AA67;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(172, 102, 12, 0.2);
}

.contact-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.contact-card h4 {
  font-size: 20px;
  font-weight: 600;
  color: #B8860B;
  margin-bottom: 15px;
}

.contact-card p, .contact-card div p {
  font-size: 16px;
  color: black;
  margin: 5px 0;
  text-align: center;
}

.map-section {
  margin: 50px 0;
}

.map-section h3 {
  font-size: 32px;
  font-weight: 700;
  color: #B8860B;
  margin-bottom: 30px;
  text-align: center;
}

.map-container {
  width: 100%;
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-form-section {
  margin-top: 50px;
}

.contact-form-section h3 {
  font-size: 32px;
  font-weight: 700;
  color: #B8860B;
  margin-bottom: 30px;
  text-align: center;
}

.contact-form {
  max-width: 800px;
  margin: 0 auto;
  background: #f9f9f9;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 16px;
  font-weight: 600;
  color: #B8860B;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px;
  border: 2px solid #D8AA67;
  border-radius: 8px;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #B8860B;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  background: #D8AA67;
  color: white;
  border: none;
  padding: 15px 40px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: block;
  margin: 30px auto 0;
}

.submit-btn:hover {
  background: #8B5409;
}

.service-title {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.service-title h2 {
  font-size: 36px;
  font-weight: 700;
  color: #B8860B;
  margin: 0;
}

.service-title a {
  color: #B8860B;
  text-decoration: none;
  font-size: 16px;
}

.service-title a:hover {
  text-decoration: underline;
}

.contact-info {
  flex: 1;
  padding: 40px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(172, 102, 12, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-radius: 20px;
  z-index: -1;
}

.contact-info h3 {
  color: #B8860B;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.contact-info p {
  color: black;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.contact-details-centered {
  background: rgba(255, 255, 255, 0.9);
  padding: 30px;
  border-radius: 15px;
  border: 1px solid rgba(172, 102, 12, 0.2);
  box-shadow: 0 4px 15px rgba(172, 102, 12, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.contact-details-centered strong {
  color: #B8860B;
  font-weight: 700;
  font-size: 1.1rem;
  display: block;
  margin-bottom: 0.5rem;
}

.contact-details-centered div {
  color: black;
  font-weight: 400;
}

.about-image-container {
  width: 30vw;
  height: auto;
}

.service-column-wide {
  width: 25vw;
}

.hidden {
  display: none;
}

/* Improved responsive images */
img {
  max-width: 100%;
  height: auto;
}

/* Lazy loading for images */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.3s;
}

img[loading="lazy"].loaded {
  opacity: 1;
}

.about-section {
  display: flex;
  flex-direction: column;
  gap: 60px;
  
}

.service-body{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  padding: 0;
  margin: 0;
  background-color: #B8860B;
  color: white;
  height: 50vh;
  overflow: hidden;
  box-sizing: border-box;
}

.service-text{
  text-align: justify;
  width: 60vw;
  height: 100%;
  color: #E5F1F7;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-text h3{
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

.service-text p{
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

.service-title, .contact-title {
  text-align: center;
  position: relative;
  z-index: 1000;
}

.service-title h2, .contact-title h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: #B8860B;
  margin: 0 0 10px 0;
  text-shadow: none;
  letter-spacing: -0.5px;
}

.service-title a, .contact-title a {
  color: #666666;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
  z-index: 1001;
  pointer-events: auto;
  cursor: pointer;
  display: inline-block;
  padding: 3px 8px;
  border: 1px solid transparent;
}

.service-title a:hover, .contact-title a:hover {
  color: #B8860B;
}

.service-image {
  width: 35vw;
  height: 100%;
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
  display: block;
  /* background-color: aqua; */
}

.service-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin: 0;
  padding: 0;
}

.about-block{
  padding: 20px 100px;
  display: flex;
  gap: 20px;
  color: #B8860B;
  text-align: justify;
}

.about-block.reverse {
  flex-direction: row-reverse;
}

/* Header Section Styling */
.contact-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 40vh;
  background: linear-gradient(135deg, #D8AA67 0%, #8B5209 100%);
  position: relative;
  overflow: hidden;
}

.contact-title {
  text-align: center;
  position: relative;
  z-index: 2;
}

.contact-title h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: #E5F1F7;
  margin: 0 0 15px 0;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: -1px;
}

.contact-title a {
  color: rgba(229, 241, 247, 0.8);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-title a:hover {
  color: #E5F1F7;
}

.contact-content {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 40px;
  padding: 60px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  min-height: 70vh;
  position: relative;
}

.contact-content::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(229, 241, 247, 0.05) 0%, transparent 70%);
  animation: subtle-pulse 8s ease-in-out infinite;
}

@keyframes subtle-pulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.1); opacity: 0.1; }
}

.contact-icon{
  width: 80px;
  height: 200px;
  position: fixed;
  right: 0;
  bottom: 0;
}

.contact-icon:hover + .contact-banner {
  visibility: visible;
  transition: visibility 0.3s ease-in-out;

}

.contact-overlay{
  visibility: hidden;
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.contact-overlay[style*="visibility: visible"] {
  pointer-events: auto;
}

.contact-overlay div{
  display: flex;

  padding: 24px;
  border-radius: 18px;
  justify-content: center;
  align-items: center;
  height: 90%;
  width: 40%;
  


  /* Bronze-golden tinted glass */
  background: rgba(255, 255, 255, 0.3);  /* #D8AA67 with transparency */
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);

  border: 1px solid rgba(172, 102, 12, 0.45); /* border glow */
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);

  color: #fff;
  font-family: sans-serif;
  text-align: center;
}

input, textarea, #contact-button {
  width: 100%;
  Height: 30px;
  margin-bottom: 5px;
  padding: 12px;
  border-radius: 12px;
  border: none;
  outline: none;
  font-size: 16px;
  /* color: #fff; */
  background: rgba(172, 102, 12, 0.3);
  backdrop-filter: blur(8px);
  box-shadow: inset 2px 2px 5px rgba(255, 255, 255, 0.2),
              inset -2px -2px 5px rgba(255, 255, 255, 0.3);
}

input::placeholder, textarea::placeholder {
  color: rgba(0, 0, 0, 0.8);
}

#contact-button {
  cursor: pointer;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 4px 4px 10px rgba(0,0,0,0.4),
              -4px -4px 10px rgba(255,255,255,0.1);
  transition: all 0.2s ease-in-out;
}

/* Click hone par dabe */
#contact-button:active {
  box-shadow: inset 2px 2px 5px rgba(0,0,0,0.5),
              inset -2px -2px 5px rgba(255,255,255,0.2);
  transform: translateY(2px);
}

.contact-overlay div form{
  display: flex;
  flex-direction: column;
  
  align-items: center;
  width: 80%;
  height: 80%;
}

.contact-banner{
  visibility: hidden;
  position: fixed;
  width: 200px;
  height: 100px;
  right: 70px;
  bottom: 170px;
  
}

.form-area{
  display: flex;
  flex-direction: row;
  margin-top: 20px;
  height: 50vh;
}

.form-image {
  width: 40vw;
  height: 100%;
  height: auto;
  object-fit: cover;
}
.form-input{
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 60vw;
}

.form-input form{
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 80%;
}

.about-block img{
  width: 30vw;
  height: 100%;
  border-radius: 10%;
}

.about-block div{
  width: 70vw
}

.about-block h1{
  font-family: poppins, sans-serif;
  font-size: 32px;
  font-weight: 700;
  text-align: justify;

}

.about-block p{
  display: flex;
  font-size: 15px;
  text-align: justify;

  
  
}

.text-content {
  flex: 1 1 400px;
  width: 70vw;
}

.text-content h2 {
  font-size: 28px;
  color: #B8860B;
  margin-bottom: 20px;
}

.text-content p {
  font-size: 16px;
  color: black;
  line-height: 1.6;
  text-align: justify;
}

.image-content {
  flex: 1 1 400px;
  
  width: 30vw
  
  
}

.image-content img {
  width: 30vw;
  height: auto;
  object-fit: contain;
  
}

/* 📱 MEDIA QUERIES */
@media (max-width: 768px) {
  html, body {
    overflow-x: hidden;
    max-width: 100vw;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
  }

  .content {
    overflow: visible;
    height: auto;
    max-height: none;
    padding-bottom: 0;
  }

  *::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Opera */
  }

  .quick-links {
    width: 100vw;
    position: relative;
    left: calc(-50vw + 50%);
    padding: 0;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: block;
    margin-left: auto;
  }

  .quick-columns {
    display: none;
  }

  .mobile-quick-drawer {
    display: flex;
    width: 100vw;
    position: relative;
    left: calc(-50vw + 50%);
  }

  .about-block,
  .about-block.reverse {
    flex-direction: column;
    padding: 0;
    margin: 0;
    width: 100vw;
    position: relative;
    left: calc(-50vw + 50%);
  }

  .services-row {
    position: relative;
    padding: 10px 20px;
    height: 400px;
    overflow: visible;
    margin-top: 0;
  }
  
  .services-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    touch-action: pan-y;
    user-select: none;
  }

  .service-card {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80vw;
    max-width: 280px;
    height: 320px;
    opacity: 0;
    transition: opacity 0.5s ease;
    overflow: visible;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    pointer-events: none;
    touch-action: pan-y;
  }
  
  .service-card.active {
    opacity: 1;
    pointer-events: auto;
    touch-action: pan-y;
  }

  .service-card::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Opera */
  }

  .service-card img {
    height: 60%;
    margin-bottom: 15px;
  }

  .explore-button {
    width: 100%;
    max-width: 140px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    height: 36px;
    padding: 8px 16px;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
  }

  .explore-button::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Opera */
  }

  .explore-button h3 {
    margin: 0;
    padding: 0;
    line-height: 1;
    font-size: 14px;
    white-space: nowrap;
  }

  .join-section {
    flex-direction: column;
    height: auto;
    padding: 20px 20px 0 20px;
    margin-bottom: 20px;
    background-color: #B8860B;
    color: white;
  }

  .join-left {
    max-width: 100%;
    padding: 20px;
  }

  .join-left h2 {
    font-size: 24px;
    text-align: justify;
    width: 100%;
  }

  .join-right {
    position: relative;
    width: 100vw;
    left: calc(-50vw + 50%);
    height: auto;
    padding: 0;
    margin: 0;
  }
  
  .join-right img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    padding: 0;
  }

  .choose-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .choose-point {
    text-align: left;
    justify-content: flex-start;
  }
  
  /* Disable all hover effects on mobile */
  /* Disable hover effects but keep elements visible */
  .social-icons img:hover {
    background-color: transparent !important;
    transform: none !important;
    transition: none !important;
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    opacity: 1 !important;
    filter: none !important;
  }
  
  .dropdown:hover .dropdown-content {
    display: none !important;
    visibility: hidden !important;
  }
  
  /* Make explore button golden color with no hover effects on mobile */
  .explore-button {
    background-color: #B8860B !important;
    color: #ffffff !important;
    border: 1px solid #8B5209 !important;
    height: 40px !important;
    padding: 10px 20px !important;
    font-size: 16px !important;
    cursor: pointer !important;
    border-radius: 30px !important;
    transition: none !important;
    text-decoration: none !important;
  }
  
  .explore-button:hover,
  .explore-button:focus,
  .explore-button:active,
  .explore-button:visited {
    background-color: #B8860B !important;
    color: #ffffff !important;
    border: 1px solid #8B5209 !important;
    transform: none !important;
    box-shadow: none !important;
    transition: none !important;
    text-decoration: none !important;
  }
  
  .explore-button h3,
  .explore-button h3:hover,
  .explore-button h3:focus,
  .explore-button h3:active {
    color: #ffffff !important;
    background-color: transparent !important;
    transform: none !important;
    transition: none !important;
    margin: 0 !important;
    text-decoration: none !important;
  }
  
  /* Remove underlines from anchor tags around explore buttons */
  a .explore-button,
  a:hover .explore-button,
  a:focus .explore-button,
  a:active .explore-button,
  a:visited .explore-button {
    text-decoration: none !important;
  }
  
  a,
  a:hover,
  a:focus,
  a:active,
  a:visited {
    text-decoration: none !important;
  }
  
  /* Service carousel specific overrides to maintain functionality */
  .services-row {
    pointer-events: auto !important;
  }
  
  .services-carousel {
    pointer-events: auto !important;
  }
  
  .service-card {
    position: absolute !important;
    top: 0 !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 80vw !important;
    max-width: 280px !important;
    height: 320px !important;
    background-color: #FFFFFF !important;
    border: 1px solid #FFD700 !important;
    opacity: 0 !important;
    transition: opacity 0.5s ease !important;
    pointer-events: auto !important;
    touch-action: pan-y !important;
  }
  
  .service-card.active {
    opacity: 1 !important;
    pointer-events: auto !important;
  }
  
  /* Completely disable hover/mouse interactions on service cards */
  .service-card:hover,
  .service-card:focus,
  .service-card:active {
    position: absolute !important;
    top: 0 !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 80vw !important;
    max-width: 280px !important;
    height: 320px !important;
    background-color: #FFFFFF !important;
    border: 1px solid #FFD700 !important;
    transition: opacity 0.5s ease !important;
    pointer-events: auto !important;
    touch-action: pan-y !important;
    opacity: 0 !important;
  }
  
  .service-card.active:hover,
  .service-card.active:focus,
  .service-card.active:active {
    opacity: 1 !important;
    pointer-events: auto !important;
  }
  
  .contact-icon:hover + .contact-banner {
    visibility: hidden !important;
  }
  
  .service-title a:hover,
  .contact-title a:hover {
    color: initial !important;
    transform: none !important;
    transition: none !important;
  }
  
  /* Disable hover for service items on mobile */
  .service-item:hover {
    transform: none !important;
    background-color: #fff !important;
    color: #B8860B !important;
    box-shadow: 0 2px 4px #D8AA67 !important;
  }

  /* COMPLETE HOVER DISABLE FOR MOBILE - BUT ALLOW CAROUSEL TOUCH */
  *:not(.carousel-track):not(.carousel-slide):not(.services-carousel):not(.service-card) {
    -webkit-tap-highlight-color: transparent !important;
    -webkit-touch-callout: none !important;
    -webkit-user-select: none !important;
    -khtml-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
  }
  
  /* Enable touch for carousel elements */
  .carousel-track,
  .carousel-slide,
  .services-carousel,
  .service-card {
    -webkit-user-select: none !important;
    -khtml-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
    touch-action: pan-y !important;
    pointer-events: auto !important;
  }
  
  .carousel-slide:not(.active) {
    pointer-events: auto !important;
    touch-action: pan-y !important;
  }
  
  /* Nuclear option - disable ALL hover states but preserve join-section */
  *:hover,
  *:focus,
  *:active {
    transform: none !important;
    transition: none !important;
    animation: none !important;
    box-shadow: none !important;
    scale: none !important;
    rotate: none !important;
    translate: none !important;
    filter: none !important;
    backdrop-filter: initial !important;
  }
  
  /* Preserve join-section background */
  .join-section,
  .join-section:hover,
  .join-section:focus,
  .join-section:active {
    background-color: #B8860B !important;
    color: white !important;
  }
  
  /* Ensure dropdowns don't work on mobile */
  .dropdown-content {
    display: none !important;
  }

  body {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
  }

  .content {
    padding: 0;
    margin: 0;
    width: 100%;
    max-width: none;
    overflow-x: visible;
    position: relative;
  }

  .top-bar {
    height: 60px;
    padding: 0 10px;
    gap: 15px;
  }

  .logo {
    width: 40px;
    height: auto;
  }

  .hero-carousel {
    position: relative;
    width: 100vw;
    height: auto;
    overflow: visible;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-bottom: 0;
    max-width: none;
  }

  .hero-carousel,
#services-carousel {
  overflow: visible;
}

  .carousel-track {
    width: 100vw;
    height: auto;
    position: relative;
    touch-action: pan-y;
    overflow-y: visible;
  }

  .carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: auto;
    opacity: 0;
    transition: opacity 0.5s ease;
    overflow: visible;
    pointer-events: none;
  }
  
  .carousel-slide:first-child {
    position: relative;
    pointer-events: auto;
  }
  
  .carousel-slide.active {
    opacity: 1;
    overflow: visible;
    pointer-events: auto;
  }

  .content {
    margin-top: 0;
    position: relative;
  }


  .carousel-slide img {
    width: 100vw;
    height: auto;
  }


  .service-content {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .service-body {
    flex-direction: column;
    height: auto;
    padding: 0;
    margin: 0;
  }

  .service-text {
    width: 100%;
    padding: 20px;
  }

  .service-image {
    position: relative;
    width: 100vw;
    left: calc(-50vw + 50%);
    height: auto;
    margin: 0;
    padding: 0;
  }
  
  .service-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .contact-content {
    flex-direction: column;
    height: auto;
  }

  .form-area {
    flex-direction: column;
    height: auto;
  }

  .form-image,
  .form-input {
    width: 100%;
  }

  .contact-map-container {
    width: 100%;
    height: 300px;
    margin: 0;
  }

  .about-image-container {
    width: 100%;
    height: auto;
    padding: 20px;
  }
  
  .about-image-container img {
    width: 100%;
    height: auto !important;
    border-radius: 10px;
  }

  .service-column-wide {
    width: 100%;
  }

  .text-content,
  .image-content {
    width: 100%;
    padding: 20px;
  }
  
  .about-block div {
    width: 100% !important;
    padding: 20px;
  }

  .top-bar {
    padding: 0 15px;
    gap: 20px;
  }

  /* Contact page mobile styles */
  .contact-section {
    padding: 15px;
    width: 100vw;
    position: relative;
    left: calc(-50vw + 50%);
    margin: 0;
    overflow: visible;
    height: auto;
    max-height: none;
  }

  .contact-banner {
    width: 100vw;
    position: relative;
    left: calc(-50vw + 50%);
    margin: 0 0 30px 0;
    padding: 0 15px;
    box-sizing: border-box;
  }

  .contact-banner img {
    height: 180px;
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
  }

  .contact-info,
  .map-section,
  .contact-form-section {
    padding: 0 15px;
    margin-bottom: 40px;
  }

  .contact-info {
    padding-bottom: 20px;
    overflow: visible;
    height: auto;
    max-height: none;
  }

  .contact-info h3,
  .map-section h3,
  .contact-form-section h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
  }

  .contact-info p {
    font-size: 15px;
    margin-bottom: 30px;
    line-height: 1.6;
    padding: 0 5px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    overflow: visible;
    height: auto;
    max-height: none;
    display: block;
  }

  .contact-cards {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .contact-card {
    padding: 20px 15px;
    border-radius: 12px;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .contact-card img {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    margin: 0;
  }

  .contact-card div {
    flex: 1;
  }

  .contact-card h4 {
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 600;
  }

  .contact-card p {
    font-size: 14px;
    margin: 2px 0;
    color: #555;
    text-align: left;
  }

  .map-container {
    height: 250px;
    margin: 0 -15px;
    border-radius: 0;
  }

  .contact-form {
    padding: 20px 15px;
    margin: 0 -15px;
    border-radius: 0;
    background: #f9f9f9;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 0;
  }

  .form-group {
    margin-bottom: 20px;
  }

  .form-group label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 14px 12px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: #B8860B;
    box-shadow: 0 0 0 3px rgba(172, 102, 12, 0.1);
  }

  .form-group textarea {
    min-height: 100px;
    resize: vertical;
  }

  .submit-btn {
    width: 100%;
    margin: 25px 0 0;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }

  .service-header {
    padding: 20px 15px;
    min-height: auto;
  }

  .service-title {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    width: 100%;
    overflow: hidden;
  }

  .service-title h2 {
    font-size: 24px;
    line-height: 1.2;
    width: 100%;
    white-space: normal;
    margin: 0;
  }

  .service-title a {
    font-size: 11px;
    display: inline;
  }

  /* Breadcrumb navigation wrapper */
  .breadcrumb {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    font-size: 11px;
    line-height: 1.3;
  }

  .breadcrumb a {
    font-size: 11px;
    display: inline;
  }

  /* Enhanced mobile touch interactions */
  .contact-card:hover {
    transform: none;
    box-shadow: 0 4px 15px rgba(172, 102, 12, 0.15);
  }

  .submit-btn:active {
    transform: scale(0.98);
    background: #7A4A07;
  }

  /* Prevent zoom on input focus for iOS */
  @supports (-webkit-touch-callout: none) {
    .form-group input,
    .form-group select,
    .form-group textarea {
      font-size: 16px !important;
    }
  }

  /* Better spacing for thumbs on mobile */
  .contact-card {
    min-height: 80px;
  }

  .form-group input,
  .form-group select {
    min-height: 48px;
  }

  .submit-btn {
    min-height: 48px;
  }

}

/* Disable hover on touch devices */
@media (hover: none) and (pointer: coarse) {
  *:hover,
  *:focus,
  *:active {
    transform: none !important;
    transition: none !important;
    animation: none !important;
    background-color: initial !important;
    color: initial !important;
    border-color: initial !important;
    box-shadow: none !important;
    opacity: initial !important;
    scale: none !important;
    rotate: none !important;
    translate: none !important;
    filter: none !important;
  }
}

@media (min-width: 769px) {
  .quick-links {
    width: 100%;
    left: 0;
    position: static;
  }
  
  .mobile-menu,
  .mobile-panel,
  .mobile-quick-drawer,
  .connect-on {
    display: none !important;
  }
  
  /* Desktop service header */
  .service-header {
    height: auto;
    min-height: 15vh;
    padding: 40px 20px;
    background: #ffffff;
    /* border-bottom: 3px solid #D8AA67; */
  }
  
  .service-title h2 {
    font-size: 2.8rem;
  }
  
  /* Desktop service body layout */
  .service-body {
    flex-direction: row;
    align-items: stretch;
    padding: 0;
    margin: 0;
    height: 50vh;
    box-sizing: border-box;
  }
  
  .service-image {
    width: 35vw;
    height: 100%;
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
    display: block;
    background-color: #B8860B;
  }
  
  .service-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: 0;
    padding: 0;
  }
  
  .service-text {
    width: 60vw;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  /* Desktop service cards layout */
  .services-row {
    display: flex;
    gap: 30px;
    padding: 40px;
    justify-content: center;
    flex-wrap: wrap;
    background-color: #fff;
    position: static;
    height: auto;
    overflow: visible;
  }
  
  .services-carousel {
    display: flex;
    gap: 30px;
    width: 100%;
    justify-content: center;
    align-items: center;
    position: static;
    height: auto;
  }
  
  .service-card {
    position: static;
    width: 22vw;
    min-width: 250px;
    max-width: 300px;
    height: 400px;
    opacity: 1;
    transform: none;
    left: auto;
    top: auto;
    transition: transform 0.4s ease, box-shadow 0.3s ease;
  }
  
  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(172, 102, 12, 0.2);
  }
}

.mf-banner {
  visibility: visible;
  position: fixed;
  bottom: 1px;
  left: 1px;
  
  background-color: #FFD700;
  color: #000;
  padding: 6px 12px;
  border-radius: 8px;
  text-align: left;
  font-size: 10px;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 1050;
  max-width: 90%;
  line-height: 1.1;
  height: auto;
}

@media (min-width: 769px) {
  .mf-banner {
    visibility: visible;
    position: fixed;
    left: 55px;
    bottom: 55px;
  }
}

.mf-banner-logo {
  position: fixed;
  left: 10px;
  bottom: 10px;
  width:50px;
  height: auto;
  z-index: 1051;
  visibility: visible;
}

.mf-banner-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

@media (max-width: 768px) {
  .mf-banner-logo {
    visibility: hidden;
  }
}
