@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Poppins:wght@300;400;600&display=swap');

:root {
  --gold: #d4af37;
  --dark: #0b0b0b;
  --muted: #6f665f;
  --bg: #fbf7f2
}

* {
  box-sizing: border-box
}
/* Global Heading Styles */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Arial', sans-serif;
    color: #333;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1); /* Light shadow */
    margin-bottom: 10px;
}

/* Individual Heading Styles */
h1 {
    font-size: 2.8em;
    font-weight: bold;
    color: #2c3e50; /* Darker color for contrast */
}

h2 {
    font-size: 2.3em;
    font-weight: bold;
    color: #34495e; 
}

h3 {
    font-size: 1.7em;
    font-weight: bold;
    color: #16a085; /* Greenish shade */
}

h4 {
    font-size: 1.5em;
    font-weight: bold;
    color: #f39c12; /* Yellowish tone */
}

h5 {
    font-size: 1.3em;
    font-weight: bold;
    color: #8e44ad; /* Purple tone */
}

h6 {
    font-size: 0.95em;
    font-weight: bold;
    color: #e74c3c; /* Red tone */
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background: var(--bg);
  font-family: Poppins, system-ui, Arial;
  color: #111
}

a {
  text-decoration: none;
  color: inherit
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04)
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  gap: 12px
}

.logo {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 1.35rem;
  font-weight: 700
}

.header-right {
  display: flex;
  gap: 12px;
  align-items: center
}

.phone-chip {
  background: linear-gradient(135deg, #fff6dc, #f7e9b8);
  padding: 8px 12px;
  border-radius: 24px;
  font-weight: 700;
  color: #000;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08)
}

/* Nav (simple) */
.nav {
  display: flex;
  gap: 14px
}

.nav a {
  padding: 8px 10px;
  border-radius: 8px;
  font-weight: 600;
  color: #222
}

/* Hero */
.hero {
  position: relative;
  padding: 24px 12px;
  margin-bottom: 60px;
  border-bottom: 1px solid #ddd;
}

.hero-media {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  border-radius: 14px;
  overflow: hidden
}

.hero-media img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.35));
  display: flex;
  align-items: center;
  justify-content: center
}

.hero-content {
  color: #fff;
  text-align: center;
  padding: 20px;
  max-width: 900px;
  background: #0000002e;
  border-radius: 4px 4px 4px 4px;
  box-shadow: inset 0 0 10px 2px rgba(0, 0, 0, 0.3);
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  color: #d1afa2;
  font-size: 2.6rem;
  margin: 0
}

.hero-content p {
  margin-top: 12px;
  opacity: 0.95
}
/* mini-cta */

.mini-cta {
  display: flex;
  justify-content: center; /* horizontal center */
  align-items: center;     /* vertical center */
  gap: 15px;               /* space between buttons */
  margin: 20px 0;          /* some top-bottom spacing */
}

.mini-cta a {
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: bold;
  color: #fff;
}

.call-btn {
  background-color: #28a745; /* green */
}

.wa-btn {
  background-color: #25d366; /* whatsapp green */
}
/* Containers */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 30px 18px
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

.card {
  background: #fff;
  padding: 14px;
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(10, 10, 10, 0.06);
  text-align: center
}

/* Pricing */
.pricing-grid {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center
}

.pricing-card {
  background: #fff;
  padding: 14px;
  border-radius: 12px;
  min-width: 160px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(10, 10, 10, 0.06)
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  justify-items: center
}

.gallery-item {
  width: 100%;
  max-width: 360px;
  border-radius: 12px;
  overflow: hidden;
  position: relative
}

.gallery-item img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
  transition: transform .35s ease
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transition: opacity .25s
}

.gallery-item:hover .gallery-overlay,
.gallery-item.active .gallery-overlay {
  opacity: 1
}

.call-btn,
.wa-btn {
  padding: 10px 16px;
  border-radius: 30px;
  font-weight: 700;
  color: #fff
}

.call-btn {
  background: linear-gradient(45deg, #1e90ff, #0066cc)
}

.wa-btn {
  background: linear-gradient(45deg, #25d366, #128c7e)
}

/* Sliders */
.sliders .split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: center
}

.slider {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  min-height: 260px
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .6s
}

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

.slide.active {
  opacity: 1
}

/* Text table */
.text-table {
  background: #fff;
  padding: 14px;
  border-radius: 12px;
  margin-top: 18px
}

.table-wrap {
  overflow: auto;
  width: 100%;
  -webkit-overflow-scrolling: touch;
  border-radius: 8px
}

.responsive-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px
}

.responsive-table th,
.responsive-table td {
  border: 1px solid #eee;
  padding: 10px;
  text-align: center
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 18px;
  align-items: start
}

.contact-form {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), #fff);
  padding: 16px;
  border-radius: 12px
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 8px;
  border: 1px solid #ddd
}

/* FAQ central */
.faq-section {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  bottom: 20px;
  text-align: center;
  padding: 20px
}

.faq-item {
  background: #fff;
  border-radius: 10px;
  padding: 10px;
  margin: 10px 0;
  text-align: left;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04)
}

.faq-question {
  font-weight: 700;
  cursor: pointer;
  padding: 10px
}

.faq-answer {
  display: none;
  padding: 10px;
  color: #444;
  border-top: 1px solid #eee;
  margin-top: 8px
}

/* Tags */
 /* Define the animation for the hover effect */
        @keyframes colorShift {
            0% {
                background: linear-gradient(135deg, #ff7e5f, #feb47b);
            }
            25% {
                background: linear-gradient(135deg, #43cea2, #185a9d, #56ab2f);
            }
            50% {
                background: linear-gradient(135deg, #8e2de2, #4a00e0, #ff9966);
            }
            75% {
                background: linear-gradient(135deg, #ff7e5f, #feb47b, #ff9966);
            }
            100% {
                background: linear-gradient(135deg, #ff9966, #ff5e62, #56ab2f);
            }
        }

        /* Basic styles for the tags */
        .tag {
            padding: 8px 12px;
            font-size: 16px;
            color: white;
            border-radius: 20px;
            display: inline-block;
            transition: transform 0.3s ease, background 0.3s ease;
            cursor: pointer;
            margin: 5px;
        }

        /* Apply the hover animation */
        .tag:hover {
            animation: colorShift 4s infinite;
            transform: scale(1.1);
        }

        /* Mobile and Tablet Responsive Styles */
        @media (max-width: 768px) {
            .tag {
                font-size: 14px; /* Smaller font size for smaller screens */
                padding: 6px 10px; /* Reduced padding */
            }
        }

        @media (max-width: 480px) {
            .tag {
                font-size: 12px; /* Even smaller font size for very small screens */
                padding: 5px 8px; /* Further reduced padding */
                margin: 3px; /* Reduce margin to prevent overflow */
            }

            /* Ensure tags stack vertically on small screens */
            .tag {
                display: block;
                width: 100%; /* Full width to avoid overflow */
                text-align: center; /* Center text */
            }
        }

/* Footer fixed bottom */
.footer-fixed {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: linear-gradient(90deg, #521818b8, #6c4e4e4a);
  display: flex;
  justify-content: space-around;
  padding: 12px 18px;
  gap: 12px
}

.footer-fixed a {
  padding: 12px 18px;
  border-radius: 999px;
  color: #fff;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transition: transform .25s ease
}

.footer-fixed a:hover {
  transform: scale(1.06)
}

/* badges used elsewhere */
.chip {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 20px;
  font-weight: 700;
  background: linear-gradient(135deg, #fff6dc, #f7e9b8);
  color: #000;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06)
}

/* responsive */
@media(max-width:980px) {
  .cards {
    grid-template-columns: repeat(2, 1fr)
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .sliders .split {
    grid-template-columns: 1fr
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:640px) {
  .nav {
    display: none
  }

  .cards {
    grid-template-columns: 1fr
  }

  .gallery-grid {
    grid-template-columns: 1fr
  }

  .hero-media img {
    height: 420px
  }

  .contact-grid {
    grid-template-columns: 1fr
  }

  .table-wrap {
    overflow: auto;
    min-width: 100%
  }

  .footer-fixed {
    bottom: 0px;
    border-radius: 12px;
  }
}


/* Our Services Grid Fix */
.services-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

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

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


/* Our Services Section */
.services-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.services-section h2 {
  font-size: 2.4em;
  margin-bottom: 30px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.service-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
  transition: transform 0.4s ease;
}

.service-card img:hover {
  transform: scale(1.05);
}

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

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


/* Our Services Section (Finalized) */
.services-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: -102px;
}

.services-section h2 {
  font-size: 2.4em;
  margin-bottom: 30px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.service-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
  transition: transform 0.4s ease;
}

.service-card img:hover {
  transform: scale(1.05);
}

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

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


/* Footer copyright */
.site-footer {
  background: #111;
  color: #eee;
  text-align: center;
  padding: 15px;
  font-size: 14px;
  position: relative;
  bottom: 0;
  width: 100%;
}

/* Center align whatsapp/phone call blocks */
.call-whatsapp-block {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px auto;
}

.call-whatsapp-block .btn {
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.call-whatsapp-block .btn:hover {
  transform: translateY(-3px);
}

.call-whatsapp-block .call-btn {
  background: linear-gradient(135deg, #ff7e5f, #feb47b);
  color: white;
}

.call-whatsapp-block .whatsapp-btn {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
}


/* Add spacing between all sections */
section {
  margin-bottom: 60px;
}

/* Gap inside split class div */
.split {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}

/* Tables inside split class */
.split table {
  margin-top: 20px;
  border-collapse: collapse;
  width: 100%;
}

.split table td,
.split table th {
  border: 1px solid #ddd;
  padding: 12px;
  text-align: center;
}

.split table tr:nth-child(even) {
  background-color: #f9f9f9;
}


/* Stylish copyright section */
.site-footer {
  background: linear-gradient(135deg, #232526, #414345);
  color: #fff;
  text-align: center;
  padding: 15px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 5;
}

.site-footer p {
  margin: 0;
  letter-spacing: 0.5px;
}


/* Ensure site-footer shows above content but below fixed footer */
.site-footer {
  position: relative;
  z-index: 10;
  margin-bottom: 60px;
  /* space for fixed footer */
}

.now-calling {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}


/* Add bottom spacing for tables so they don't mix with next section */
table {
  margin-bottom: 50px;
}


/* Add spacing specifically for text-table and split class sections */
.text-table {
  margin-bottom: 50px;
}

.split {
  margin-bottom: 50px;
}


/* Reset table bottom margin back to normal */
table {
  margin-bottom: 0;
}


/* Modern shadow card style for all sections */
section {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 40px 20px;
  margin-bottom: 60px;
}


/* Remove global shadow from all sections */
section {
  background: none;
  border-radius: 0;
  box-shadow: none;
  padding: 40px 20px;
  margin-bottom: 60px;
  
}

/* Only FAQ section with shadow */
#faq {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 40px 20px;
}

/* Center align WhatsApp and Phone number section */
.call-whatsapp-block {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 30px auto;
}


/* Attractive background and shadow for fixed footer */
.now-calling {
  background: linear-gradient(135deg, #25D366, #128C7E);
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.3);
  padding: 12px 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.now-calling a {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.25);
  transition: background 0.3s ease;
}

.now-calling a:hover {
  background: rgba(0, 0, 0, 0.45);
}

/* Base styles for hero section */
.hero-media {
  position: relative;
  width: 100%;
  height: 400px; /* adjust as needed */
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* dark overlay for text readability */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.hero-content {
  color: #fff;
  max-width: 800px;
}

@media (max-width: 768px) {
  .hero-media img {
    display: none; /* hide original image on mobile */
  }

  .hero-media {
    background-image: url('../photos/hero-mobile.webp');
    background-size: cover;
    background-position: center;
  }
}
.divider {
  flex: 1;                   /* line will adjust */
  height: 2px;               /* thickness */
  background-color: #ccc;    /* line color */
  border: none;
  max-width: 180px;           /* short line */
  margin-top: -20px;
}
img {
  box-shadow: 0 4px 8px rgba(0,0,0,0.3); /* X-offset, Y-offset, blur, color */
  border-radius: 8px; /* optional rounded corners */
}
.colorful-nav {
  padding: 20px;
  margin: 30px auto;
}
.colorful-nav .nav-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(120px,1fr));
  gap: 10px;
}
.colorful-nav .nav-grid a {
  padding: 15px;
  text-align: center;
  color: #fff;
  font-weight: bold;
  border-radius: 8px;
  transition: transform 0.3s, box-shadow 0.3s;
  /* हर item का unique रंग */
  background: linear-gradient(135deg,
    hsl(calc(var(--i) * 40), 80%, 60%),
    hsl(calc(var(--i) * 40 + 30), 80%, 50%)
  );
}

/* Hover Effect */
.colorful-nav .nav-grid a:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

/* Responsive */
@media(max-width: 768px){
  .colorful-nav .nav-grid { grid-template-columns: repeat(4,1fr); }
}
@media(max-width: 480px){
  .colorful-nav .nav-grid { grid-template-columns: repeat(2,1fr); }
}