/* --- previous CSS remains the same --- */
/* Reset & Fonts */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
body {
    line-height: 1.6;
    background: #fffdfd;
    color: #b85345;
}
a {
    text-decoration: none;
    color: inherit;
}

/* Header */

header {
    background: #0077b6;
    color: #fff;
    padding: 10px 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
header h1 {
    font-size: 2rem;
    font-weight: 700;
}
header nav a {
    margin-left: 15px;
    padding: 5px 10px;
    transition: 0.3s;
    border-radius: 5px;
}
header nav a:hover {
    background: #fff;
    color: #0077b6;
}
.emergency {
    display: flex;
    align-items: center;
    gap: 10px;
}
.btn-header {
    background: #ffb703;
    color: #333;
    padding: 6px 12px;
    border-radius: 5px;
    transition: 0.3s;
}
.btn-header:hover {
    background: #faa307;
}
.btn-header.whatsapp {
    background: #25D366;
    color: #fff;
}
.btn-header.whatsapp:hover {
    background: #1ebe57;
}


/* Hero Section */
#hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('/hero\ gurd\ sechtion.png') no-repeat center center/cover;
    color: #3d1313;
    text-align: center;
    padding: 120px 20px;
}
#hero h2 {
    font-size: 3rem;
    margin-bottom: 10px;
    animation: fadeInDown 1s ease forwards;
}
#hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease forwards;
}
.hero-btn {
    background: #ffb703;
    color: #413f3f;
    padding: 12px 25px;
    font-weight: bold;
    border-radius: 50px;
    transition: 0.3s;
}
.hero-btn:hover {
    background: #faa307;
}

/* Services */
#services {
    padding: 60px 20px;
    text-align: center;
}
.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}
.card {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
}
.card:hover {
    transform: translateY(-10px);
}

/* About Section */
#about {
    background: #e0fbfc;
    padding: 60px 20px;
    text-align: center;
}

/* Contact Section */
#contact {
    padding: 60px 20px;
    text-align: center;
}
.contact-buttons {
    margin-bottom: 20px;
}
.contact-buttons .btn {
    margin: 5px;
}
#contact form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}
#contact input, #contact textarea {
    padding: 12px;
    border-radius: 5px;
    border: 1px solid #ccc;
}
#contact button.btn {
    background: #0077b6;
    color: #fff;
    border-radius: 50px;
    padding: 12px;
    font-weight: bold;
    transition: 0.3s;
}
#contact button.btn:hover {
    background: #023e8a;
}
.auto-reply {
    margin-top: 15px;
    font-weight: bold;
    color: #ffb703;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #0077b6;
    color: #fff;
}

/* Animations */
@keyframes fadeInDown {
    0% { opacity: 0; transform: translateY(-30px); }
    100% { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}


/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
}
.float-btn {
    background: #0077b6;
    color: #fff;
    padding: 12px 18px;
    border-radius: 50px;
    font-weight: bold;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    transition: 0.3s;
}
.float-btn:hover {
    transform: translateY(-5px);
}
.float-btn.whatsapp {
    background: #25D366;
}

/* Chat Popup */
.chat-popup {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 300px;
    max-width: 90%;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 1000;
}
.chat-header {
    background: #0077b6;
    color: #fff;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.chat-body {
    padding: 10px;
    height: 200px;
    overflow-y: auto;
    background: #f4f4f4;
}
.chat-popup input {
    padding: 10px;
    border: none;
    border-top: 1px solid #a15e5e;
    outline: none;
}
.chat-popup button {
    padding: 10px;
    background: #0077b6;
    color: #fff;
    border: none;
    cursor: pointer;
}
.open-chat-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #0077b6;
    color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 24px;
    border: none;
    cursor: pointer;
    z-index: 998;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    display: flex;
    justify-content: center;
    align-items: center;
}
.open-chat-btn:hover {
    background: #023e8a;
}

/* --- previous CSS remains the same --- */

/* Animated Header Emergency Buttons */
.btn-header, .float-btn {
    position: relative;
    animation: pulse 2s infinite;
}

/* Pulse animation for emergency buttons */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(112, 107, 107, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 15px rgba(255,255,255,0.8);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(255,255,255,0.7);
    }
}

/* Slight bounce for floating buttons */
.float-btn {
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}
/* --- previous CSS remains the same --- */

/* Animated Header Emergency Buttons with Rainbow Glow */
.btn-header {
    position: relative;
    font-weight: bold;
    color: #fff;
    animation: rainbowPulse 2s infinite;
    border-radius: 8px;
    padding: 8px 15px;
    text-align: center;
    display: inline-block;
    transition: transform 0.3s;
}

/* Animated Floating Buttons with Rainbow Glow + Bounce */
.float-btn {
    position: relative;
    font-weight: bold;
    text-align: center;
    border-radius: 50px;
    padding: 12px 18px;
    animation: rainbowBounce 2s infinite;
    color: #fff;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Rainbow Glow Animation */
@keyframes rainbowPulse {
    0%   { box-shadow: 0 0 10px #ff3c3c; transform: scale(1); }
    25%  { box-shadow: 0 0 15px #ff8c00; transform: scale(1.05); }
    50%  { box-shadow: 0 0 20px #ffed00; transform: scale(1.1); }
    75%  { box-shadow: 0 0 15px #00ff2a; transform: scale(1.05); }
    100% { box-shadow: 0 0 10px #3c64ff; transform: scale(1); }
}

@keyframes rainbowBounce {
    0%, 100% { transform: translateY(0); box-shadow: 0 6px 20px #3c64ff; }
    25%      { transform: translateY(-6px); box-shadow: 0 6px 25px #ff3c3c; }
    50%      { transform: translateY(-12px); box-shadow: 0 6px 30px #ffed00; }
    75%      { transform: translateY(-6px); box-shadow: 0 6px 25px #00ff2a; }
}
/* Marquee Section */
.whatsapp-slider {
  overflow: hidden;
  width: 100%;
  background: #0dacf7;
  padding: 20px 0;
}

.slider-track {
  display: flex;
  width: max-content;
  animation: scroll 20s linear infinite;
}

.whatsapp-slider:hover .slider-track {
  animation-play-state: paused;
}

.slide {
  width: 220px;
  margin: 0 12px;
  position: relative;
  text-align: center;
  cursor: pointer;
}

.slide img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.slide p {
  margin-top: 8px;
  font-weight: 600;
  color: #353434;
}

.overlay {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #25D366;
  color: #fff;
  padding: 8px;
  border-radius: 50%;
  font-size: 18px;
}

#hero {
  position: relative;
  height: 100vh;
  background: url("/background\ new.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 20px;
}

.welcome {
  font-size: 28px;
  animation: slideDown 1.5s ease;
  color: #fbc531;
}

.hero-content h1 {
  font-size: 40px;
  margin: 10px 0;
  animation: fadeIn 2s ease;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 20px;
}

.hero-btn {
  display: inline-block;
  background: #00a8ff;
  padding: 12px 30px;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  margin-bottom: 20px;
}

.emergency-btn {
  display: block;
  margin: 15px auto;
  background: red;
  color: #fff;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  animation: pulse 1.5s infinite;
  width: fit-content;
}

.social-icons {
  margin-top: 15px;
}

.social-icons a {
  margin: 0 10px;
  color: #00ffcc;
  text-decoration: none;
  font-weight: bold;
}

.email {
  margin-top: 10px;
  font-size: 15px;
}

.email a {
  color: #fff;
  text-decoration: underline;
}

/* Animations */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,0,0,0.7); }
  70% { box-shadow: 0 0 0 20px rgba(255,0,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,0,0,0); }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

#services {
  padding: 70px 20px;
  background: linear-gradient(135deg, #f9fbff, #eef3ff);
  text-align: center;
}

.section-title {
  font-size: 38px;
  margin-bottom: 50px;
  color: #222;
  position: relative;
}

.section-title::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #007bff;
  display: block;
  margin: 12px auto 0;
  border-radius: 10px;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}

.card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  background: linear-gradient(135deg, #007bff, #00c6ff);
  bottom: 0;
  left: 0;
  z-index: 0;
  transition: 0.4s;
}

.card:hover::before {
  height: 100%;
}

.card * {
  position: relative;
  z-index: 1;
}

.card:hover {
  transform: translateY(-12px);
}

.icon {
  font-size: 45px;
  margin-bottom: 15px;
}

.card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #222;
}

.card p {
  font-size: 15px;
  color: #555;
}

.card:hover h3,
.card:hover p {
  color: #fff;
}


/* Service Images ko gol karne aur line lagane ka code */
.service-img {
    width: 180px;             /* Image ki chorai */
    height: 180px;            /* Image ki lambai */
    object-fit: cover;        /* Isse image pichkegi nahi aur fit rahegi */
    border-radius: 50%;       /* Image ko bilkul gol (circle) karne ke liye */
    border: 5px solid #28a745; /* Image ke charon taraf line (Green color) */
    display: block;           /* Center karne ke liye zaroori hai */
    margin: 15px auto;        /* Image ko card ke beech mein lane ke liye */
    box-shadow: 0 4px 15px rgba(0,0,0,0.1); /* Halka sa shadow achi look ke liye */
    transition: transform 0.3s ease; /* Hover effect ke liye */
}

/* Jab mouse card par le jayein to image thodi badi ho jaye */
.card:hover .service-img {
    transform: scale(1.08);
    border-color: #ffc107;    /* Hover karne par line ka color badal kar Gold ho jayega */
}

/* Card ka text center karne ke liye */
.card {
    text-align: center;
    cursor: pointer;
    padding: 20px;
}
<style>


  /* Section Style */
  #services {
    padding: 60px 20px;
    background: #f9f9f9;
    text-align: center;
    font-family: Arial, sans-serif;
  }

  #services h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #333;
    position: relative;
  }

  #services h2::after {
    content: '';
    width: 80px;
    height: 4px;
    background: #ff6b00;
    display: block;
    margin: 10px auto 0;
    border-radius: 2px;
  }

  /* Cards Container */
  .service-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  /* Individual Card */
  .card {
    background: #fff;
    border-radius: 15px;
    padding: 25px 20px;
    width: 250px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s forwards;
  }

  .card:nth-child(1) { animation-delay: 0.2s; }
  .card:nth-child(2) { animation-delay: 0.4s; }
  .card:nth-child(3) { animation-delay: 0.6s; }
  .card:nth-child(4) { animation-delay: 0.8s; }

  .card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 25px rgba(0,0,0,0.2);
  }

  .card h3 {
    color: #ff6b00;
    margin-bottom: 10px;
  }

  .card p {
    color: #555;
    font-size: 16px;
  }

  /* Animation */
  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Responsive */
  @media(max-width: 900px){
    .service-cards { flex-direction: column; align-items: center; }
  }
</style>

.whatsapp-marquee {
  width: 100%;
  overflow: hidden;
  background: #f9f9f9;
  padding: 15px 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeMove 20s linear infinite;
}

.marquee-item {
  position: relative;
  min-width: 200px;
  margin: 0 10px;
  cursor: pointer;
}

.marquee-item img {
  width: 200px;
  height: 140px;
  object-fit: cover;
  border-radius: 12px;
}

.wa-icon {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: #25D366;
  color: white;
  font-size: 18px;
  padding: 6px 8px;
  border-radius: 50%;
}

@keyframes marqueeMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Hover par stop */
.whatsapp-marquee:hover .marquee-track {
  animation-play-state: paused;
}


/* Services Section Styling */
.services-section {
  padding: 80px 20px;
  background: #f8f9fa;
  text-align: center;
}

.services-section .section-title {
  font-size: 36px;
  color: #0d6efd;
  margin-bottom: 10px;
  animation: fadeInDown 1s ease forwards;
}

.services-section .section-subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 50px;
  animation: fadeIn 1.2s ease forwards;
}

.services-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.services-cards .card {
  background: white;
  padding: 30px 20px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  width: 250px;
  transition: transform 0.4s, box-shadow 0.4s;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeUp 0.8s ease forwards;
}

.services-cards .card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.services-cards .card .icon {
  font-size: 50px;
  margin-bottom: 20px;
  animation: rotateIcon 2s linear infinite;
}

/* Animations */
@keyframes fadeInDown {
  0% { opacity: 0; transform: translateY(-30px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(50px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes rotateIcon {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 768px) {
  .services-cards {
    flex-direction: column;
    align-items: center;
  }
}

#contact {
  padding: 60px 20px;
  text-align: center;
  background-color: #ffffff;
}

.contact-container h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #333;
}



/* Big Icons Styling */
.contact-icon {
  font-size: 50px; /* Big icons */
  color: #007bff; /* Professional Blue */
  margin-bottom: 15px;
}

.contact-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.contact-item h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.contact-item a {
  text-decoration: none;
  color: #555;
  font-weight: bold;
  font-size: 1.1rem;
}

/* Glowing WhatsApp Button */
.btn-whatsapp-glow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #25d366;
  color: white;
  padding: 20px 40px;
  border-radius: 50px;
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.5);
  transition: 0.3s;
  animation: pulse-glow 2s infinite; /* The glowing effect */
}

.btn-whatsapp-glow i {
  font-size: 2rem;
}

/* Glow Animation Logic  contact*/
@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    transform: scale(1);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    transform: scale(1.05);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    transform: scale(1);
  }
}

.btn-whatsapp-glow:hover {
  background-color: #1ebe57;
  transform: scale(1.1);
}

/*revew*/
/* Review Button Styling */
.btn-review-animated {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    color: #ffffff;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(118, 75, 162, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

/* Hover Effect */
.btn-review-animated:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(118, 75, 162, 0.5);
    color: #fff;
}

/* The "Shine" Animation Layer */
.btn-review-animated::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: all 0.6s;
}

.btn-review-animated:hover::before {
    left: 100%;
}

/* Continuous Pulse Animation */
@keyframes pulse-glow {
    0% { box-shadow: 0 0 0 0 rgba(118, 75, 162, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(118, 75, 162, 0); }
    100% { box-shadow: 0 0 0 0 rgba(118, 75, 162, 0); }
}

.btn-review-animated {
    animation: pulse-glow 2s infinite;
}

/* Adding a small star icon effect */
.btn-review-animated::after {
    content: ' ★';
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-review-animated:hover::after {
    transform: rotate(360deg) scale(1.2);
}

