html {
  width: 100%;
  overflow-x: hidden;
  font-size: 100%; /* usually 16px */
  scroll-behavior: smooth; /* smooth scrolling */
}

body {
  margin: 0;
  padding-top:100px;
  min-height: 100vh; /* full viewport height */
  font-family: "Arial", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  /* color: #333; */
  width: 100%;
  overflow-x: hidden;
   background-color: #F5F7FA;
}

:root {
  --primary: #f39c12; /* Orange - CTA Buttons, Highlights */
  --secondary: #212529; /* Dark Gray - Navbar, Footer */
  --accent: #ffc107; /* Yellow - Hovers, Warnings */
  --background: #ffffff; /* Page Background */
  --text: #333333; /* Main Text */
}

/* navbar */


 .navbar {
  background-color: var(--secondary);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  position: fixed;      /* navbar ko fix karega */
  top: 0;               /* upar chipka dega */
  left: 0;
  width: 100%;          /* poori screen ki width lega */
  z-index: 1000;        /* content ke upar rahega */
}


  .navbar-brand {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.5rem;
  }

  .navbar-brand img{
    height:80px;
    width:auto;
  }

  .nav-link {
    color: var(--background) !important;
    font-weight: 500;
    margin-right: 15px;
    transition: color 0.3s;
  }



  .contact-link {
    color: var(--background) !important;
    background-color: var(--primary);
    border-radius: 8px;
    padding: 6px 15px;
    font-weight: 500;
    transition: background-color 0.3s, transform 0.2s;
  }

  .contact-link:hover {
    background-color: var(--accent);
    transform: translateY(-2px);
  }

  /* Custom Hamburger */
.navbar-toggler {
  border: none;
  background: transparent;
  width: 30px;
  height: 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between; 
}

.navbar-toggler span {
  display: block;
  height: 3px;
  width: 25px;
  background-color: var(--background);
  border-radius: 2px;
  transition: transform 0.4s ease, opacity 0.4s ease;
  /* transform-origin: center; */
}
/* Only for mobile */
@media (max-width: 992px) {
  .navbar-collapse {
    position: absolute;   /* menu overlays content */
    top: 100%;            /* starts just below navbar */
    left: 0;
    width: 100%;
    background-color: var(--secondary); 
    z-index: 999;          /* make sure it’s above content */
  }
}

.navbar-toggler.active span:nth-child(1) {
  transform: rotate(45deg) translate(0, 9px);
}

.navbar-toggler.active span:nth-child(2) {
  opacity: 0;
}

.navbar-toggler.active span:nth-child(3) {
  transform: rotate(-45deg) translate(0, -9px);
}

  /* Mobile menu vertical layout */
  @media (max-width: 991px) {
    .navbar-nav {
      flex-direction: column;
      text-align: center;
    }
    .nav-link {
      margin: 10px 0;
      
    }
    .contact-link {
      margin-top: 10px;
    }
  }
  /* navbar-end */
   .flex-cards-section {
    background-color: var(--background);
    padding: 60px 0;
  }
  /* consultation button */
.consultation-btn {
  background: linear-gradient(90deg, #f39c12, #ff6b6b);
  color: #fff;
  font-weight: 600;
  padding: 0.6rem 1.5rem;
  border: none;
  border-radius: 50px;
  transition: background 0.5s, transform 0.3s, box-shadow 0.3s;
}

.consultation-btn:hover {
  background: linear-gradient(90deg, #ff6b6b, #f39c12);
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
/* Call Button */
.float-call {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 120px; /* WhatsApp ke upar space */
    right: 20px;
    background-color: #e11546;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 24px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}
.float-call:hover {
    background-color: #c10f3b;
}

/* WhatsApp Button */
.float-whatsapp {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 50px;
    right: 20px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 24px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}
.float-whatsapp:hover {
    background-color: #1ebe5b;
}
/* YouTube floating button CSS */
.float-youtube {
  position: fixed;
  right: 20px;
  bottom: 190px;              /* change as needed */
  width: 50px;
  height: 50px;
  background: linear-gradient(#ff2d2d, #e60000); /* subtle gradient */
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25), inset 0 -2px 6px rgba(0,0,0,0.06);
  z-index: 10000;
  transform: translateZ(0);
  transition: transform 180ms cubic-bezier(.2,.9,.3,1), box-shadow 180ms;
  -webkit-tap-highlight-color: transparent;
  will-change: transform;
  outline: none;
}


/* Active (tap) feedback */
.float-youtube:active {
  transform: translateY(-2px) scale(.98);
  box-shadow: 0 6px 14px rgba(0,0,0,0.22);
}

/* SVG icon sizing and white fill */
.float-youtube .fy-icon {
  width: 36px;
  height: 36px;
  display: block;
  fill: #fff;
  flex-shrink: 0;
}

/* header page end css */
/* index page  start css */
   .stats-card {
    min-height: 120px;                  /* sabhi cards ek size ke */
    display: flex;
    flex-direction: column;
    justify-content: center;            /* vertical center */
    align-items: center;                /* horizontal center */
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    background: #fff;
    transition: transform 0.3s ease;
  }
  .stats-card:hover {
    transform: translateY(-5px);
  }
  .stats-card i {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
 
  }
.flex-cards-section {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  padding: 2rem 1rem;
}

/* Default (Desktop) – 4 cards per row */
.flex-cards-section .flex-card {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.25);
  flex: 1 1 22%; /* ~4 cards */
  min-width: 250px;
  max-width: 320px;
  padding: 2rem 1.5rem;
  transition: transform 0.1s, box-shadow 0.1s;
  position: relative;
  color: #fff;
}




/* Hover */
.flex-cards-section .flex-card:hover {
  transform: translateY(0px) scale(1.05);
  box-shadow: 0 25px 60px rgba(0,0,0,0.35);
}

/* Content */
.flex-cards-section .flex-card h5 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
.flex-cards-section .flex-card p {
  font-size: 1rem;
  line-height: 1.5;
}

/* Button */
.flex-cards-section .flex-card .btn,
.learn-more-btn {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  font-weight: 600;
  border-radius: 50px;
  padding: 0.6rem 2rem;
  border: none;
  transition: 0.3s;
}
.flex-cards-section .flex-card .btn:hover,
.learn-more-btn:hover {
  background: linear-gradient(90deg, var(--accent), var(--primary));
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* ============================= */
/* 📱 RESPONSIVE BREAKPOINTS */
/* ============================= */

/* Tablet (max-width: 992px) – 2 cards per row */
@media (max-width: 992px) {
  .flex-cards-section .flex-card {
    flex: 1 1 45%;
    transform: translateY(0); /* remove stagger for better balance */
  }
}

/* Mobile (max-width: 576px) – 1 card per row */
@media (max-width: 576px) {
  .flex-cards-section {
    gap: 1rem;
    padding: 1.5rem 0.5rem;
  }
  .flex-cards-section .flex-card {
    flex: 1 1 100%;
    max-width: 100%;

  }
  .flex-cards-section .flex-card h5 {
    font-size: 1.1rem;
  }
  .flex-cards-section .flex-card p {
    font-size: 0.95rem;
  }
  .learn-more-btn {
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
  }

}
 /* Gallery Section */
    .gallery-section { padding:3rem 2rem; text-align:center; }
    .gallery-section h2 { font-size:2.5rem; margin-bottom:2rem; }
    .gallery-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap:2rem; }
    .gallery-item { position:relative; overflow:hidden; border-radius:15px; box-shadow:0 8px 20px rgba(0,0,0,0.15); transition: transform 0.3s, box-shadow 0.3s; }
    .gallery-item:hover { transform: translateY(-5px); box-shadow:0 15px 30px rgba(0,0,0,0.25); }
    .gallery-item img { width:100%; height:300px; object-fit:cover; display:block; }
    .gallery-item img:hover{
      transition: all 0.3s ease-in-out;
      transform:scale(1.1);
    }
    .gallery-item .overlay {
      position:absolute; bottom:0; left:0; right:0; background: rgba(0,0,0,0.6);
      color:#fff; padding:8px; text-align:left; opacity:1; transition: opacity 0.3s;
    }
    .gallery-item:hover .overlay { opacity:0; }
    .overlay h3 { margin-bottom:0.5rem; font-size:1.2rem; }
    .overlay p { font-size:0.9rem; }

    /* Reviews Carousel */
    .review-section { padding:3rem 2rem; text-align:center; }
    .review-container { position: relative; max-width:600px; margin:0 auto; overflow:hidden; border-radius:10px; background:#f9f9f9; padding:2rem; box-shadow:0 4px 15px rgba(0,0,0,0.1); }
    .review-slide { display:none; text-align:center; }
    .review-slide.active { display:block; }
    .review-slide p { font-size:1rem; margin-bottom:1rem; }
    .review-slide span { color:#f1c40f; font-size:1.2rem; }
    .review-nav { margin-top:1rem; text-align:center; }
    .review-nav button { background:var(--primary); border:none; padding:0.5rem 1rem; color:#fff; margin:0 0.5rem; cursor:pointer; border-radius:5px; transition:0.3s; }
    .review-nav button:hover { background:var(--accent); color:#212529; }

    @media(max-width:768px){
      .gallery-item img { height:250px; }
    }

  [data-aos] {
  overflow: hidden; /* ensure extra space create na ho */
}


[data-aos] {
  overflow: hidden; /* ensure extra space create na ho */
}
#Gallery {
  overflow: hidden;
}
.why-choose-us{
  overflow:hidden;
}
#featured-blogs{
 overflow:hidden;
}

 /* General card styling */
#Gallery .card,
#Gallery .view-more-card {
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    height: 250px; /* Fixed height for all cards */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Card image styling */
#Gallery .card img {
    width: 100%;
    height: auto; /* Fixed height for images */
    object-fit: cover;
    transition: transform 0.3s;
}

#Gallery .card:hover img {
    transform: scale(1.05);
}

/* Overlay description always visible */
#Gallery .card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.65); /* transparent black bg */
    color: #fff;
    padding: 0.6rem;
    font-size: 0.9rem;
    text-align: center;
    opacity: 1; /* always visible */
}

/* 8th box styling */
#Gallery .view-more-card {
    background: #007bff; /* Blue background for View More */
    color: #fff;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: background 0.3s, transform 0.3s;
}

#Gallery .view-more-card:hover {
    background: #0056b3; 
    transform: translateY(-6px);
}

#Gallery .view-more-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

#Gallery .view-more-card .btn {
    font-weight: 500;
    color: #333;
    border: 1px solid #fff;
}

@media (max-width: 576px) {
    #Gallery .card,
    #Gallery .view-more-card {
        height: auto; /* let them adjust on small screens */
    }

    #Gallery .card img {
        height: 150px;
    }
}
#why_choose {
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}

#why_choose h2 {
  color: var(--background);
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

#why_choose p {
  color: var(--text);
  font-size: 1.05rem;
  text-align: center;
  margin-bottom: 40px;
}

/* Feature Cards */
.feature-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 25px 20px;
  text-align: center;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  border-color: var(--primary);
}

.feature-card i {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.feature-card h5 {
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Button */
#why_choose .btn-primary {
  background: var(--primary);
  border: none;
  border-radius: 50px;
  padding: 10px 25px;
  font-weight: 500;
  transition: 0.3s;
}

#why_choose .btn-primary:hover {
  background: var(--accent);
  transform: scale(1.05);
}
.step-list li {
  padding: 12px 15px;
  margin-bottom: 10px;
  background: #fff;
  border-radius: 8px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: 0.3s;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.step-list li span {
  display: inline-block;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  text-align: center;
  line-height: 28px;
  margin-right: 12px;
  font-size: 0.9rem;
}
.step-list li.active, .step-list li:hover {
  background: var(--primary);
  color: #fff;
}
.step-list li.active span, .step-list li:hover span {
  background: #fff;
  color: var(--primary);
}

.step-content { display: none; animation: fadeIn 0.6s ease-in-out; }
.step-content.active { display: block; }

@keyframes fadeIn {
  from { opacity:0; transform: translateY(10px); }
  to { opacity:1; transform: translateY(0); }
}
.blog-card {
  transition: all 0.3s ease;
  border-radius: 15px;
  overflow: hidden;
}
.blog-card img {
  transition: transform 0.4s ease;
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.15);
}
.blog-card:hover img {
  transform: scale(1.05);
}
.blog-card .card-footer span {
  transition: color 0.3s ease;
}
.blog-card:hover .card-footer span {
  color: #f39c12;
}
.contact-form {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  max-width: 600px;
  margin: auto;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-form h3 {
  margin-bottom: 20px;
  color: var(--primary);
  text-align: center;
  font-size: 1.8rem;
}

.contact-form .form-group {
  margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: none;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  color: var(--text);
  transition: all 0.3s ease;
  outline: none;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border: 2px solid var(--primary);
  box-shadow: 0 0 12px rgba(243, 156, 18, 0.6);
}

.contact-form textarea {
  resize: none;
  min-height: 120px;
}

.contact-form button {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: 0.4s ease;
  letter-spacing: 1px;
}

.contact-form button:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, var(--accent), var(--primary));
  box-shadow: 0 5px 20px rgba(243, 156, 18, 0.5);
}


  /* according button */
  .accordion-button {
  color: #333;
  background-color: #fff;
  transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
  color: #f39c12;
  background-color: #fff8e5;
  box-shadow: none;
}

.accordion-button:focus {
  border-color: #f39c12;
  box-shadow: 0 0 5px rgba(243, 156, 18, 0.5);
}
  /* index page end css */
  /* Google Logo */
.google-logo {
  font-size: 48px;
  font-weight: bold;
  letter-spacing: -2px;
}
.google-logo .g { color:#4285F4; }
.google-logo .o1{ color:#EA4335; }
.google-logo .o2{ color:#FBBC05; }
.google-logo .g2{ color:#4285F4; }
.google-logo .l { color:#34A853; }
.google-logo .e { color:#EA4335; }

/* Rating */
.rating-display .score{
  font-size: 64px;
  font-weight: 800;
  color:#000;
}
.rating-display .stars{
  font-size: 22px;
  color:#FBBC05;
  margin: 6px 0;
}
.rating-display .subtext{
  color:#666;
  font-size:14px;
}

/* Divider */
.divider{
  width:2px;
  background:#000;
  height:100%;
  border-radius:2px;
}

/* Reviews Carousel */
/* Fixed height for review items */
.review-item {
  padding: 20px;
  min-height: 300px;   /* yaha height set kar lo according to design */
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-y: auto;    /* agar text jyada ho to scroll ho */
}

/* Scrollbar style thoda clean karne ke liye */
.review-item::-webkit-scrollbar {
  width: 6px;
}
.review-item::-webkit-scrollbar-thumb {
  background: #999;
  border-radius: 4px;
}
.review-item::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.review-item .name{
  font-size:20px;
  font-weight:700;
  margin-bottom:8px;
  color:#000;
}
.review-item .desc{
  font-size:15px;
  line-height:1.6;
  color:#444;
}

/* Carousel Controls */
.carousel-control-prev-icon,
.carousel-control-next-icon{
  width: 32px;
  height: 32px;
  background-size: 70%;
}
.google-review-btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  /* background: linear-gradient(90deg, #4285F4, #EA4335, #FBBC05, #34A853); */
  background:linear-gradient(90deg, #f39c12, #ff6b6b);
  background-size: 300% 100%;
  transition: all 0.4s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.google-review-btn:hover {
  background-position: 100% 0;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
  background:linear-gradient(90deg, #ff6b6b, #f39c12);
}
