@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap');

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box sizing: border-box;
}
html,body{
  width: 100%;
  height: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    transition: background 0.4s color 0.4s;
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
}
/* default color*/
body.dark-mode {
  background-color: #ffffff;
  color: #a68c5b;
} 
body.light-mode {
  background-color: #000000;
  color: #ffffff;
}
a {
  color: inherit;
  text-decoration: none;
}
h1, h2, h3, .brand-name{
    font-family: 'Playfair Display', serif;
  font-weight: 700;
}
h1,h2, h3 {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  font-size: 2rem;
  color: #55524d;
  margin-bottom: 0.5rem;
  margin-top: 0.5;
}


/* Header */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1rem;
  position: sticky;
  top: 0;
  background: rgba(214, 213, 199, 0.699);
  backdrop-filter: blur(6px);
  z-index: 1000;
  font-family: 'Cinzel', serif;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
  text-decoration: none;
  color: #000000;
  font-family: 'Montserrat', sans-serif;;
  font-size: large;
}

.logo img {
  height: 75px;
  width: auto;
}

.nav-links a {
    margin: 0.1rem;
    font-weight: 600;
    color: rgb(68, 66, 51);
    text-decoration: none;
    margin: 0 15px; /* Adds space between links */
    position: relative;
    align-items: center;
  }
.nav-links a:not(:last-child)::after {
    content: "|";              /* Vertical line */
    position: absolute;
    right: -10px;              /* Push line to the right */
    color: rgb(0, 0, 0);
  }
.toggles button {
  margin-left: 1rem;
  background: none;
  border: none;
  font-size: 1.2rem;
  color: inherit;
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  text-align: center;
  padding: 6rem 2rem;
  height: 45vh;
  background: 
    linear-gradient(rgba(104, 101, 63, 0.3), rgba(0, 0, 0, 0.3)), 
    url("images/img1.jpg"); /* Replace with actual path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.hero h1 {
  font-size: 3rem;
  color: #ffffff;
}

.hero p {
  font-size: 1.2rem;
  margin-top: 1rem;
  color: #eaeaea;
}

.scroll-indicator {
  margin-top: 2rem;
  font-size: 1.5rem;
  animation: bounce 2s infinite;
  color: aliceblue;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

/* About, Services, Forms, Contact */
section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: auto;
}
/* WHY CHOOSE US */
.why-choose-us {
  padding: 80px 20px;
  background: var(--section-bg);
}
.why-choose-us .section-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 50px;
  color: var(--gold);
}
.choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}
.choose-item {
  background: var(--card-bg);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.choose-item i {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 15px;
}
.choose-item h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--text-color);
}
.choose-item p {
  color: var(--text-light);
  font-size: 0.95rem;
}
.choose-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

/* TRUST SECTION */
.trust-section {
  padding: 80px 20px;
  background: var(--section-alt-bg);
}
.trust-section .section-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 50px;
  color: var(--gold);
}
.trust-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}
.trust-text {
  flex: 1;
}
.trust-text p {
  font-size: 1.1rem;
  color: var(--text-color);
  margin-bottom: 20px;
}
.trust-text ul {
  list-style: none;
  padding: 0;
}
.trust-text ul li {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
.trust-text ul li i {
  color: var(--gold);
  margin-right: 10px;
}
.trust-visual {
  flex: 1;
  text-align: center;
}
.trust-visual img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow);
}
/* TRUST LIST STYLING */
.trust-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.trust-list li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 1.05rem;
  color: #333;
  font-weight: 500;
}

.trust-list li i {
  color: #ffb400; /* Gold tone to match premium branding */
  font-size: 1.2rem;
  margin-right: 10px;
  flex-shrink: 0;
  transition: transform 0.2s ease, color 0.3s ease;
}

.trust-list li:hover i {
  transform: scale(1.2);
  color: #ff8c00; /* Slightly deeper gold on hover */
}


/* Dark/Light Mode Variables */
.light-mode{
  --gold: #757575;
  --section-bg: #000000;
  --section-alt-bg: #020202;
  --card-bg: #121212;
  --text-color: #fff;
  --text-light: #ccc;
  --shadow: 0 4px 20px rgba(0,0,0,0.3);
  --shadow-hover: 0 6px 30px rgba(0,0,0,0.5);
}
:root {
  --section-bg: #f9f9f9;
  --section-alt-bg: #fff;
  --card-bg: #fff;
  --text-color: #222;  
  --text-light: #555;
  --shadow: 0 4px 20px rgba(0,0,0,0.1);
  --shadow-hover: 0 6px 30px rgba(0,0,0,0.15);
}


/* Services Section */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.card{
  flex: 1 1 30%;
  background: #c2c04e;
  padding: 2rem;
  color: #000;
  border-radius: 1rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.233);
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 20px rgba(70, 63, 29, 0.3);
}

.testimonials {
  padding: 80px 0;
  background: #f8f9fa;
}
.light-mode .testimonials {
  background: #000;
  color: blackb ;
}

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

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

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-text {
  font-style: italic;
  color: #000000;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #00768a;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author h4 {
  margin: 0;
  font-weight: 600;
}

.testimonial-author span {
  font-size: 0.9em;
  color: #3a2424;
}
   





/* SERVICES SECTION */
.services {
  padding: 80px 20px;
  background: var(--section-bg);
  text-align: center;
}
.services h2 {
  font-size: 2.2rem;
  margin-bottom: 50px;
  color: var(--gold);
}
.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

/* Card Base */
.card {
  perspective: 1000px;
  cursor: pointer;
}
.card-inner {
  position: relative;
  width: 100%;
  height: 330px;
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
 
}
.card.flipped .card-inner {
  transform: rotateY(180deg);
  
}

/* Front & Back */
.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 20px;
  box-shadow: var(--shadow);
  font-weight: bold;
  font-size: 1.1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  
}

/* Front Side */
.card-front {
  background: var(--card-bg);
  color: var(--text-color);
}

/* Back Side */
.card-back {
  background: var(--gold);
  color: #000000;
  transform: rotateY(180deg);
  font-weight: normal;
  font-size: 0.95rem;
  line-height: 1.4;
}
.light-mode .card-back{
  color: white;
}
/* Hover Zoom */
.card:hover .card-inner {
  transform: scale(1.05);
}
.card.flipped:hover .card-inner {
  transform: rotateY(180deg) scale(1.05);
}


/* Forms Section */
.forms {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.form-container {
  flex: 1 1 45%;
}
form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: #000000;
}
input, textarea {
  padding: 0.75rem;
  border: #1d1a1a;
  border-radius: 0.5rem;
  font-size: 1rem;
}
button {
  padding: 0.75rem;
  background: #a68c5b;
  color: #000;
  font-weight: bold;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background 0.3s ease;
}
button:hover {
  background: #835252;
}
/* Contact Section */
.contact-details p {
  margin-bottom: 0.5rem;
  text-align: center;
}
.map-section {
  padding: 3rem 1rem;
  background-color: var(--bg);
  color: var(--text);
  text-align: center;
}

.map-container {
  margin: 1rem auto;
  max-width: 900px;
  border: 4px solid #a68c5b;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0,0,0,0.4);
}

/* Footer */
.site-footer {
  text-align: center;
  padding: 2rem;
  background: #a68c5b;
  color: #000000;
}
.site-footer .tagline {
  font-family: 'Times New Roman', Times, serif;
  color: #1b1b1b;
  margin-top: 0.12rem;
  font-weight: bold;
}
.social-links a {
  margin: 0 0.5rem;
  color: #1d1c1b;
  font-weight: bold;
}
/* Animation Keyframes */
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Responsive */
@media (max-width: 768px) {
  .service-cards {
    flex-direction: column;
  }
  .forms {
    flex-direction: column;
  }
  .form-container {
    flex: 1 1 100%;
  }
}
/* === TIMELINE STYLING === */
section.journey {
  background: #f9f9f9;
  padding: 4rem 2rem;
  font-family: 'Syne', sans-serif;
  color: #222;
}

.light-mode .journey{
  background-color: #000;
}
.journey h3 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #d4af37;
  position: relative;
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: auto;
  padding-left: 30px;
  border-left: 3px solid #d4af37;
}

.event {
  margin-bottom: 3rem;
  position: relative;
}

.event span {
  position: absolute;
  left: -65px;
  top: 0;
  background-color: #d4af37;
  color: #fff;
  font-weight: bold;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 1rem;
  white-space: nowrap;
}

.event p {
  margin: 0;
  background-color: #fff;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.event:hover p {
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 600px) {
  .timeline {
    padding-left: 20px;
  }

  .event span {
    left: -50px;
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem;
  }

  .event p {
    font-size: 0.95rem;
  }
}
/* SERVICES PAGE */
/* ===== SERVICES SECTION ===== */


    .services-section-padding {
      padding: 80px 20px;
      background: white;
      font-family: 'Poppins', sans-serif;
    }

    .light-mode .services-section-padding{
  background: #000;
  }

    .services-section-padding .section-title {
      font-size: 2.5rem;
      text-align: center;
      background: linear-gradient(90deg, #ad9e46, #ff9f00);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 10px;
      animation: gradientText 6s ease infinite;
    }

    .services-section-padding h3 {
      text-align: center;
      font-weight: 400;
      font-size: 1.3rem;
      color: rgb(180, 180, 66);
      margin-bottom: 30px;
    }

    @keyframes gradientText {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

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

    /* ===== SERVICE CARDS ===== */
 /* ===== SERVICES GRID ===== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* ===== SERVICE CARD / BLOCK ===== */
.service-block {
  background: #b89a59;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  height: 100%; /* make all cards same height in grid */
  width: 100%;
}

/* Light mode override */
.light-mode .service-block {
  background: #36393a;
}

/* Card glowing border */
.service-block::before {
  content: '';
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  border-radius: 18px;
  padding: 2px;
  background: linear-gradient(45deg, #ffd700, #ff9f00, #ffd700, #ff9f00);
  background-size: 400% 400%;
  z-index: -1;
  animation: gradientGlow 8s ease infinite;
  filter: blur(8px);
  opacity: 0.7;
}

@keyframes gradientGlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ===== SERVICE IMAGE ===== */
.service-block img {
  width: 100%;
  height: 180px; /* consistent height for all images */
  object-fit: cover; /* cover ensures all images fit nicely */
  transition: transform 0.4s ease;
  display: block;
}

/* ===== SERVICE CONTENT ===== */
.service-content {
  padding: 15px;
  flex-grow: 1; /* makes cards uniform height even with different content */
  display: flex;
  flex-direction: column;
}

.service-content h4 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #ffd700, #ff9f00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientText 6s ease infinite;
}

.service-content ul {
  list-style: disc inside;
  margin: 0;
  padding: 0;
  color: #ffffff;
  flex-grow: 1; /* fills remaining space for consistent card height */
}

.service-content ul li {
  margin-bottom: 6px;
}

/* ===== HOVER EFFECTS ===== */
.service-block:hover {
  transform: translateY(-10px) scale(1.03);
  background: #000;
  box-shadow: 0 12px 30px rgba(148, 134, 57, 0.35), 0 6px 20px rgba(0, 0, 0, 0.4);
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .service-block img {
    height: 150px;
  }
  .service-content h4 {
    font-size: 1.2rem;
  }
  .service-block:hover {
    transform: translateY(-8px) scale(1.02);
  }
}

    /* ===== MODALS ===== */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(78, 72, 72, 0.9);
  backdrop-filter: blur(6px);
  justify-content: center;
  align-items: center;
  overflow-y: auto;
  padding: 40px 20px;
}

.modal-content {
  background: #a5805d;
  color: #fff;
  margin: auto;
  padding: 25px;
  border-radius: 15px;
  max-width: 750px;
  width: 100%;
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.35);
  animation: slideUp 0.5s ease;
  position: relative;
}

/* Modal scroll */
.modal-content::-webkit-scrollbar {
  width: 8px;
}
.modal-content::-webkit-scrollbar-thumb {
  background-color: rgba(255, 215, 0, 0.6);
  border-radius: 4px;
}
.modal-content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}

/* Modal headings and text */
.modal-content h2 {
  margin-top: 0;
  font-size: 1.8rem;
  color: gold;
}
.modal-content p {
  font-size: 1rem;
  line-height: 1.6;
  margin: 15px 0;
}
.modal-content ul {
  list-style: disc inside;
  margin: 10px 0 15px 0;
  padding: 0;
}
.modal-content ul li {
  margin-bottom: 8px;
}

/* Modal image */
.modal-img {
  width: 100%;
  max-height: 350px;
  object-fit: cover;
  border-radius: 10px;
  margin: 15px 0;
  display: block;
  transition: transform 0.3s ease;
}
.modal-img:hover {
  transform: scale(1.02);
}

/* Close button */
.close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  color: gold;
  transition: color 0.3s;
}
.close:hover {
  color: white;
}

/* CTA button */
.cta-button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background: gold;
  color: black;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.cta-button:hover {
  background: white;
  color: black;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}
    @keyframes slideUp { from { transform: translateY(30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

    @media (max-width: 768px) {
      .modal-content { padding: 25px; }
      .service-content h4 { font-size: 1.2rem; }
      .service-block:hover { transform: translateY(-8px) scale(1.02); }
    }

  /* GALLERY PAGE */
 
.gallery-section {
    padding: px 5vw;
    background-color: #ffffff;
    color: #3b392ca2;
    font-family: 'Poppins', sans-serif;
  }
.light-mode .gallery-section{
  background-color: #000;
}
  .section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 600;
  }

  .section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
  }

  .masonry-gallery {
    column-count: 4;
    column-gap: 20px;
  }

  @media (max-width: 1200px) {
    .masonry-gallery {
      column-count: 3;
    }
  }

  @media (max-width: 768px) {
    .masonry-gallery {
      column-count: 2;
    }
  }

  @media (max-width: 500px) {
    .masonry-gallery {
      column-count: 1;
    }
  }

  .gallery-item {
    break-inside: avoid;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 16px;
    background: rgb(37, 26, 26);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease;
  }

  .gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
    object-fit: cover;
    cursor: zoom-in;
  }

  .gallery-item:hover {
    transform: scale(1.02);
  }

  /* Lightbox overlay styling */
.lightbox-overlay {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 40px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: rgba(0,0,0,0.95);
  transition: opacity 0.3s ease;
}

.lightbox-overlay.active {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Lightbox image */
.lightbox-image {
  width: 80vw;              /* use viewport width for responsive sizing */
  height: 80vh;             /* use viewport height for responsive sizing */
  object-fit: contain;      /* ensures entire image is visible without cropping */
  box-shadow: 0 0 25px rgba(0,0,0,0.6);
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: block;
  margin: 0 auto;           /* center horizontally */
}

/* Zoom effect */
.lightbox-image.zoomed {
  transform: scale(1.1);    /* subtle zoom */
  box-shadow: 0 0 40px rgba(0,0,0,0.7);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .lightbox-image {
    width: 90vw;
    height: 60vh;
  }
}


.lightbox-image:hover {
  transform: scale(1.02);
}

/* Close button */
.close-lightbox {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: white;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.close-lightbox:hover {
  transform: scale(1.1);
  color: gold;
}

/* Navigation arrows */
.lightbox-nav {
  position: absolute;
  width: 100%;
  top: 50%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 20px;
}

.lightbox-nav span {
  font-size: 50px;
  font-weight: bold;
  color: white;
  cursor: pointer;
  user-select: none;
  opacity: 0.5;
  transition: opacity 0.3s, transform 0.2s;
}

.lightbox-nav span:hover {
  opacity: 1;
  transform: scale(1.2);
  color: gold;
}


/* Custom Cursor Base */
.custom-cursor,
.cursor-follower {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  border-radius: 50%;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease;
}

/* Inner dot */
.custom-cursor {
  width: 8px;
  height: 8px;
  background-color: gold;
}

/* Follower circle */
.cursor-follower {
  width: 32px;
  height: 32px;
  border: 2px solid gold;
  background: transparent;
  transition: all 0.2s ease-out;
}

/* Hover states */
.cursor-hover {
  transform: scale(2) translate(-50%, -50%) !important;
}

.follower-hover {
  transform: scale(1.5) translate(-50%, -50%) !important;
  border-color: white;
}



/* Enlarge on Hover */
.cursor-hover .custom-cursor {
  transform: scale(2);
}
.cursor-hover .cursor-follower {
  transform: scale(1.8);
  opacity: 0.7;
}

/* Click Pulse Effect */
.custom-cursor.click-effect::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  background-color: rgba(255, 215, 0, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(1);
  animation: pulse 0.5s ease-out;
  pointer-events: none;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}
body {
  cursor: none;
}

input, textarea, button, select {
  cursor: auto;
}
/*
        LOADER
*/
/* Loader overlay */
.loader-overlay {
    position: fixed;
    top:0; left:0;
    width: 100%;
    height: 100%;
    background: rgb(0, 0, 0);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    color: #000;
}

/* Loader text */
.loader-text {
    margin-top: 20px;
    text-align: center;
    opacity: 0;
    transition: opacity 1s ease;
    font-family: 'Poppins', sans-serif;
}

/* Company name */
.company-name {
    font-size: 1.6rem;
    font-weight: 700;
    font-family: 'Times New Roman', Times, serif;
    color: rgb(255, 255, 255);
}

/* Tagline */
.tagline {
    font-size: 1rem;
    font-weight: 500;
    color: #bfa34f; /* slightly muted gold for elegance */
    margin-top: 5px;
}

/* Floating button style */

#floatingQuoteBtn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: gold;
    color: black;
    font-weight: bold;
    padding: 15px 22px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    pointer-events: none; /* initially not clickable */
    z-index: 999;
}

/* Hover effect */
#floatingQuoteBtn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
}

/* Show when active */
#floatingQuoteBtn.show {
    opacity: 1;
    pointer-events: auto;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 110px; /* Placed above current location button */
    right: 20px;
    z-index: 999;
    background-color: #25D366;
    padding: 8px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 14px rgba(0,0,0,0.3);
}

.whatsapp-icon {
    width: 36px; /* Smaller size */
    height: 36px;
    display: block;
}
