/* RESET */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #f8f9fa;
}

/* HERO SECTION */
/* HERO */
.hero-area {
  position: relative;
  height: calc(100vh - 120px); /* adjust based on header height */
}
.hero-slider,
.hero-slide {
  height: 100%;
}
.hero-area {
  border: 5px solid blue;
}
.hero-area {
  border: 3px solid red;
}
.hero-slider {
  height: 100%;
  position: relative;
}
.hero-slide {
  height: 100vh;
  background-size: cover;
  background-position: center;
  display: none;
  position: relative;
}

.hero-slide.active {
  display: block;
  animation: fade 1s ease-in-out;
}

.hero-slide {
  height: 100vh;
  display: none;
}

.hero-slide.active {
  display: block;
}

@keyframes fade {
  from {opacity: 0;}
  to {opacity: 1;}
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.65);
}

/* CONTENT */
.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  color: #fff;
  position: relative;
}

/* LEFT TEXT */
.hero-left {
  max-width: 55%;
}

.hero-left h1 {
  font-size: 42px;
  font-weight: 700;
}

.hero-left p {
  margin-top: 15px;
  line-height: 1.6;
}

/* FORM */
.hero-form {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  width: 320px;
  color: #000;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.hero-form h3 {
  margin-bottom: 15px;
  color: #ff6600;
}

.hero-form input,
.hero-form select {
  width: 100%;
  margin-bottom: 10px;
  padding: 8px;
}

.hero-form button {
  width: 100%;
  background: #ff6600;
  color: #fff;
  border: none;
  padding: 10px;
  font-weight: 600;
}

.hero-form button:hover {
  background: #0d1b2a;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-content {
      flex-direction: column;
      text-align: center;
  }

  .hero-left {
      max-width: 100%;
  }

  .hero-form {
      width: 100%;
      margin-top: 20px;
  }
}

.hero-slide {
  background-size: cover;
  background-position: center;
}

/* QUOTE BOX */
.quote-box {
  background: #fff;
  border-radius: 10px;
}

.btn-quote {
  background: #ff6600;
  color: #fff;
  border: none;
  padding: 10px;
  font-weight: 600;
  cursor: pointer;
}

.btn-quote:hover {
  background: #0d1b2a;
}
/* SLIDER ARROWS FIX */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;

  background: #ff6600;
  color: #fff;
  border: none;
  padding: 12px 16px;
  font-size: 22px;
  cursor: pointer;
  border-radius: 6px;
}

/* LEFT ARROW */
.prev {
  left: 20px;
}

/* RIGHT ARROW */
.next {
  right: 20px;
}

/* HOVER EFFECT */
.slider-btn:hover {
  background: #e65c00;
}
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;

  background: #ff6600;
  color: #fff;
  border: none;
  padding: 12px 16px;
  font-size: 22px;
  cursor: pointer;
}

/* FEATURES */
/* PREMIUM FEATURES */
.premium-features {
  padding: 90px 20px;
  background: linear-gradient(135deg, #eef3f9, #f8fbff);
  text-align: center;
}

/* TITLE */
.section-title {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
}

/* SUBTITLE */
.section-subtitle {
  max-width: 750px;
  margin: 0 auto 50px;
  color: #666;
  font-size: 15px;
}

/* ROW */
.features-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* BOX */
.feature-box {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  padding: 35px;
  width: 320px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: 0.4s;
  position: relative;
  overflow: hidden;
}

/* GLOW BORDER EFFECT */
.feature-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(45deg, #ff6600, #ffb347);
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
}

/* HOVER */
.feature-box:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

/* ICON */
.icon-box {
  width: 75px;
  height: 75px;
  margin: auto;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6600, #ff7b00);
  color: #fff;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 10px 25px rgba(255,102,0,0.4);
  transition: 0.3s;
}

/* ICON HOVER */
.feature-box:hover .icon-box {
  transform: rotate(10deg) scale(1.1);
}

/* TEXT */
.feature-box h4 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #222;
}

.feature-box p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}

/* MOBILE */
@media (max-width: 768px) {
  .feature-box {
    width: 100%;
  }

  .section-title {
    font-size: 26px;
  }
}
/* ABOUT */
.about-section {
  padding: 60px 20px;
  background: #fff;
}

/* SERVICES */
.service-section {
  padding: 60px 20px;
  text-align: center;
}

.service-section h4 {
  background: #fff;
  padding: 20px;
  margin: 10px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* LOCAL SEO */
.local-seo {
  padding: 50px 20px;
  background: #eef2f7;
  text-align: center;
}

.local-seo ul {
  list-style: none;
  padding: 0;
}

.local-seo li {
  padding: 5px;
  font-weight: 500;
}

/* CTA */
.cta-section {
  padding: 50px;
  background: #0d1b2a;
  color: #fff;
}

.cta-section .btn {
  margin-top: 15px;
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .hero-txt h1 {
      font-size: 28px;
  }

  .single-hero-item {
      height: 450px;
  }

}


/* TOP BAR */
/* ================= TOP BAR PREMIUM ================= */
/* ================= TOP BAR PREMIUM ================= */

.top-bar {
  background: linear-gradient(90deg, #0f2027, #203a43, #2c5364);
  padding: 10px 0;
  color: #fff;
  font-size: 14px;
  overflow: hidden;
}

/* FLEX ROW */
.top-bar-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 15px;
}

/* ITEMS */
.top-item {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  font-weight: 500;
}

/* LINKS */
.top-item a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

/* HOVER */
.top-item a:hover {
  color: #ff7b00;
}

/* RIGHT HIGHLIGHT TEXT */
.top-item.highlight {
  color: #ffd166;
  font-weight: 600;
}

/* ICON STYLE */
.top-item span {
  font-size: 16px;
}

/* PREMIUM HOVER EFFECT */
.top-item:hover {
  transform: translateY(-1px);
}

/* ================= MOBILE FIX ================= */

/* Instead of breaking into rows → allow scroll */
@media (max-width: 768px) {

  .top-bar-inner {
    overflow-x: auto;
    justify-content: flex-start;
  }

  .top-bar-inner::-webkit-scrollbar {
    display: none;
  }

  .top-item {
    min-width: max-content;
  }
}
/* ================= NAVBAR PREMIUM ================= */

.header-area {
  width: 100%;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  padding: 1px 0;
  transition: 0.3s;
  z-index: 999;
}

/* STICKY */
.header-area.sticky {
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* CONTAINER */
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO BIG */
/* LOGO BIGGER */
.logo img {
  height: 130px;   /* 🔥 increased size */
  width: auto;
  object-fit: contain;
  transition: 0.3s;
}

/* HOVER EFFECT */
.logo img:hover {
  transform: scale(1.08);
}

/* MENU */
.nav-menu ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.nav-menu ul li {
  position: relative;
}

.nav-menu ul li a {
  text-decoration: none;
  color: #222;
  font-weight: 600;
  font-size: 15px;
  padding: 10px 5px;
  position: relative;
  transition: 0.3s;
}

/* UNDERLINE HOVER EFFECT */
.nav-menu ul li a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: #ff6600;
  left: 0;
  bottom: 0;
  transition: 0.3s;
}

.nav-menu ul li a:hover::after {
  width: 100%;
}

.nav-menu ul li a:hover {
  color: #ff6600;
}

/* DROPDOWN */
.dropdown-menu {
  position: absolute;
  top: 120%;
  left: 0;
  background: #fff;
  min-width: 220px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s;
}

.dropdown-menu li {
  display: block;
}

.dropdown-menu li a {
  padding: 12px 15px;
  display: block;
  font-size: 14px;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* CTA BUTTON */
.nav-cta a {
  background: linear-gradient(45deg, #ff6600, #ff3300);
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.nav-cta a:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255,102,0,0.4);
}

/* HAMBURGER */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 90px;
    left: 0;
    width: 100%;
    background: #fff;
    display: none;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  }

  .nav-menu.active {
    display: block;
  }

  .nav-menu ul {
    flex-direction: column;
  }

  .nav-menu ul li a {
    padding: 15px;
    border-bottom: 1px solid #eee;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    display: none;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }

  .nav-cta {
    display: none;
  }
}

/* WHATSAPP BUTTON */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: #fff;
  font-size: 28px;
  padding: 12px 15px;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* ================= ABOUT PREMIUM ================= */
/* ================= ABOUT ULTRA PREMIUM ================= */

.premium-about {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa, #eef3f9);
}

/* CONTENT */
.about-content {
  padding-right: 20px;
}

/* TAG */
.about-tag {
  display: inline-block;
  background: linear-gradient(45deg, #ff6600, #ff8533);
  color: #fff;
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 13px;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

/* TITLE */
.about-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #0d1b2a;
  line-height: 1.3;
}

/* PARAGRAPH */
.about-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
}

/* FEATURES GRID */
.about-features {
  margin-top: 25px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

/* FEATURE BOX */
.about-features div {
  background: #fff;
  padding: 12px 15px;
  border-radius: 10px;
  font-size: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ICON */
.about-features i {
  color: #ff6600;
  font-size: 16px;
}

/* HOVER */
.about-features div:hover {
  transform: translateY(-5px);
  background: #ff6600;
  color: #fff;
}

.about-features div:hover i {
  color: #fff;
}

/* RIGHT LOGO SECTION */
.about-img {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* LOGO CARD */
.logo-card {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  position: relative;
  transition: 0.4s;
}

/* LOGO IMAGE */
.logo-card img {
  max-width: 100%;
  height: auto;
}

/* HOVER EFFECT */
.logo-card:hover {
  transform: translateY(-10px) scale(1.03);
}

/* GLOW EFFECT */
.logo-card::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: linear-gradient(45deg, #ff6600, #00c6ff);
  z-index: -1;
  opacity: 0.2;
  filter: blur(20px);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .about-content {
    padding-right: 0;
  }

  .about-title {
    font-size: 28px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .logo-card {
    margin-top: 30px;
  }
}
/* FORCE SIDE-BY-SIDE */
.about-row {
  display: flex;
  align-items: center;
}

/* PREVENT BREAKING */
.about-row > div {
  flex: 0 0 50%;
  max-width: 50%;
}

/* RIGHT SIDE FIX */
.about-img {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

/* LOGO SIZE CONTROL */
.logo-card {
  max-width: 400px;
  width: 100%;
}

/* IMAGE FIX */
.logo-card img {
  width: 100%;
  height: auto;
}

/* MOBILE FIX */
@media (max-width: 992px) {
  .about-row {
    flex-direction: column;
  }

  .about-row > div {
    max-width: 100%;
  }

  .about-img {
    margin-top: 30px;
  }
}
/* ================= SERVICES SECTION ================= */

.service-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f7f9fc, #eef3f9);
  text-align: center;
}

/* TITLE */
.service-section .title {
  display: inline-block;
  background: #ff6600;
  color: #fff;
  padding: 6px 18px;
  border-radius: 25px;
  font-size: 13px;
  margin-bottom: 10px;
}

.service-section .subtitle {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
}

/* CARD */
.single-service {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.4s;
  position: relative;
}

/* HOVER EFFECT */
.single-service:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

/* IMAGE */
.img-wrapper {
  overflow: hidden;
}

.img-wrapper img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: 0.5s;
}

/* IMAGE ZOOM */
.single-service:hover img {
  transform: scale(1.1);
}

/* CONTENT */
.service-txt {
  padding: 20px;
  text-align: left;
}

/* TITLE */
.service-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #0d1b2a;
}

/* TEXT */
.service-para {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* READ MORE BUTTON */
.readmore {
  display: inline-block;
  color: #ff6600;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  transition: 0.3s;
}

/* UNDERLINE ANIMATION */
.readmore::after {
  content: "";
  width: 0%;
  height: 2px;
  background: #ff6600;
  position: absolute;
  left: 0;
  bottom: -3px;
  transition: 0.3s;
}

.readmore:hover::after {
  width: 100%;
}

/* HOVER COLOR */
.readmore:hover {
  color: #0d1b2a;
}

/* CAROUSEL SPACING */
.service-carousel .owl-stage-outer {
  padding: 10px 0;
}

/* DOTS */
.owl-dots {
  margin-top: 20px;
}

.owl-dot span {
  background: #ccc !important;
}

.owl-dot.active span {
  background: #ff6600 !important;
}
/* MOBILE */
@media (max-width: 768px) {
  .service-section .subtitle {
      font-size: 24px;
  }

  .service-txt {
      text-align: center;
  }
}

/* ================= SERVICES GRID ================= */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.single-service {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.4s;
  display: flex;
  flex-direction: column;
}

/* HOVER */
.single-service:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* IMAGE */
.img-wrapper img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* CONTENT */
.service-txt {
  padding: 20px;
  text-align: left;
  flex-grow: 1;
}

/* TITLE */
.service-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* TEXT */
.service-para {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* BUTTON */
.readmore {
  margin-top: auto;
  display: inline-block;
  color: #ff6600;
  font-weight: 600;
}

/* ================= RESPONSIVE ================= */

/* TABLET */
@media (max-width: 992px) {
  .services-grid {
      grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .services-grid {
      grid-template-columns: 1fr;
  }
}
/* SECTION BACKGROUND */


/* ================= TRUST SECTION ================= */

.trust-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0d1b2a, #1b263b);
  color: #fff;
}

/* WRAPPER */
.trust-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: rgba(255,255,255,0.05);
  padding: 40px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

/* BADGES */
.trust-badge {
  text-align: center;
}

.trust-badge img {
  width: 130px;
  background: #fff;
  padding: 10px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transition: 0.4s;
}

.trust-badge span {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: #ccc;
}

/* SMALL BADGES (RIGHT SIDE) */
.trust-badges-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.trust-badge.small img {
  width: 90px;
}

/* HOVER */
.trust-badge img:hover {
  transform: scale(1.1) rotate(2deg);
}

/* CONTENT */
.trust-content {
  flex: 1;
  text-align: center;
}

/* TITLE */
.trust-content h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffcc00;
}

/* TEXT */
.trust-content p {
  font-size: 15px;
  color: #ddd;
  line-height: 1.7;
}

/* STARS */
.stars {
  font-size: 24px;
  color: gold;
  margin: 10px 0;
}

/* HIGHLIGHT */
.trust-highlight {
  margin-top: 15px;
  font-size: 14px;
  font-weight: 600;
  color: #00e5ff;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .trust-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .trust-badges-right {
    flex-direction: row;
    justify-content: center;
  }
}



/* ================= PREMIUM SEO SECTION ================= */

.local-seo {
  padding: 80px 0;
  background: linear-gradient(135deg, #eef2f7, #f9fbff);
  position: relative;
  overflow: hidden;
}

/* subtle background glow */
.local-seo::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255, 102, 0, 0.08);
  border-radius: 50%;
  top: -100px;
  left: -100px;
}

.local-seo::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(0, 123, 255, 0.08);
  border-radius: 50%;
  bottom: -100px;
  right: -100px;
}

/* HEADER */
.local-seo h2 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 15px;
  text-align: center;
  color: #222;
}

.local-seo p {
  text-align: center;
  color: #666;
  margin-bottom: 40px;
  font-size: 16px;
}

/* GRID */
.seo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
}

/* CARD STYLE */
.seo-grid ul {
  list-style: none;
  padding: 25px;
  margin: 0;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.4s;
  border: 1px solid rgba(255,255,255,0.4);
}

/* HOVER EFFECT */
.seo-grid ul:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* LIST ITEMS */
.seo-grid ul li {
  padding: 10px 0;
  font-size: 14.5px;
  color: #333;
  border-bottom: 1px dashed #e5e5e5;
  position: relative;
  padding-left: 25px;
  transition: 0.3s;
}

/* ICON BULLET */
.seo-grid ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #ff6600;
  font-weight: bold;
}

/* HOVER TEXT */
.seo-grid ul li:hover {
  color: #ff6600;
  transform: translateX(6px);
}

/* LAST ITEM BORDER REMOVE */
.seo-grid ul li:last-child {
  border-bottom: none;
}

/* ================= SECTION VARIANTS ================= */

/* NEARBY */
.nearby-seo {
  background: linear-gradient(135deg, #f1f5ff, #eef7ff);
}

/* MAIN CITY */
.main-seo {
  background: linear-gradient(135deg, #fff7f0, #fffdf9);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .seo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .seo-grid {
    grid-template-columns: 1fr;
  }

  .local-seo h2 {
    font-size: 26px;
  }
}

.seo-grid ul:hover {
  box-shadow: 0 0 25px rgba(255,102,0,0.3);
}

/* ================= FOOTER ================= */

.footer-area {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: #fff;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
}

/* 🔥 FORCE ROW */
.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: nowrap; /* IMPORTANT */
}

/* 3 EQUAL COLUMNS */
.footer-col {
  flex: 1;
  min-width: 0;
}

/* LOGO */
.footer-logo {
  width: 200px;
  margin-bottom: 15px;
}

/* TEXT */
.footer-col p {
  font-size: 14px;
  color: #ddd;
  line-height: 1.6;
}

/* SEO TEXT */
.seo-text {
  font-size: 13px;
  color: #aaa;
}

/* HEADING */
.footer-col h4 {
  color: #ff7b00;
  margin-bottom: 15px;
}

/* LIST */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 14px;
  color: #ccc;
}

/* MAP */
.footer-map {
  width: 100%;
  height: 140px;
  border: none;
  border-radius: 10px;
  margin-top: 10px;
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 15px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
  color: #bbb;
}

/* ❗ MOBILE (STACK ONLY WHEN VERY SMALL) */
@media (max-width: 768px) {
  .footer-row {
    flex-wrap: wrap; /* allow stacking */
  }

  .footer-col {
    width: 100%;
  }

  .footer-logo {
    margin: auto;
    display: block;
  }
}
/* FOOTER LINKS FIX */
.footer-links a {
  color: #ffffff !important;   /* force white */
  text-decoration: none;
  transition: 0.3s;
  font-size: 14px;
}

/* HOVER EFFECT (premium) */
.footer-links a:hover {
  color: #ff7b00 !important;   /* orange highlight */
  padding-left: 5px;
  text-shadow: 0 0 8px rgba(255,123,0,0.4);
}
.footer-links li {
  margin-bottom: 8px;
}



/* CTA SECTION */
.cta-section-premium {
  position: relative;
  background: url('images/cta-bg.jpg') center/cover no-repeat;
  padding: 90px 20px;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

/* DARK OVERLAY */
.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
}

/* CONTENT */
.cta-content {
  position: relative;
  max-width: 900px;
  margin: auto;
  z-index: 2;
}

/* TITLE */
.cta-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* TEXT */
.cta-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #ddd;
  margin-bottom: 15px;
}

.cta-sub {
  font-size: 15px;
  color: #bbb;
}

/* BUTTONS */
.cta-buttons {
  margin-top: 25px;
}

/* COMMON BTN */
.cta-btn {
  display: inline-block;
  padding: 14px 28px;
  margin: 10px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

/* CALL BUTTON */
.call-btn {
  background: #ff6600;
  color: #fff;
  box-shadow: 0 10px 25px rgba(255,102,0,0.4);
}

.call-btn:hover {
  background: #ff7b00;
  transform: translateY(-3px);
}

/* WHATSAPP BUTTON */
.whatsapp-btn {
  background: #25D366;
  color: #fff;
  box-shadow: 0 10px 25px rgba(37,211,102,0.4);
}

.whatsapp-btn:hover {
  background: #1ebe5d;
  transform: translateY(-3px);
}

/* MOBILE */
@media (max-width: 768px) {
  .cta-content h2 {
    font-size: 24px;
  }

  .cta-content p {
    font-size: 14px;
  }
}

/*GOOGLE REVIEWS */

.google-reviews {
  padding: 70px 20px;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: #fff;
  text-align: center;
}

.google-reviews h2 {
  font-size: 32px;
  font-weight: 700;
}

.review-subtitle {
  margin-bottom: 40px;
  color: #ddd;
}

/* SLIDER */
.review-slider {
  overflow: hidden;
  position: relative;
}

.review-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scrollReviews 25s linear infinite;
}

/* REVIEW BOX */
.review-box {
  background: #fff;
  color: #000;
  padding: 20px;
  width: 280px;
  border-radius: 12px;
  flex-shrink: 0;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  text-align: left;
}

/* GOOGLE LOGO */
.google-logo {
  width: 40px;
  margin-bottom: 10px;
}

/* NAME */
.review-box h4 {
  margin: 5px 0;
}

/* STARS */
.stars {
  color: #ffcc00;
  margin-bottom: 10px;
}

/* TEXT */
.review-box p {
  font-size: 14px;
  color: #444;
}

/* AUTO SCROLL */
@keyframes scrollReviews {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* MOBILE */
@media (max-width: 768px) {
  .review-box {
    width: 240px;
  }
}


/*FAQ SECTION */

.faq-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8f9fa, #eef3f9);
}

.faq-title {
  text-align: center;
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 10px;
}

.faq-subtitle {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 50px;
  color: #555;
}

/* CONTAINER */
.faq-container {
  max-width: 900px;
  margin: auto;
}

/* ITEM */
.faq-item {
  background: #fff;
  margin-bottom: 15px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
}

/* ACTIVE */
.faq-item.active {
  border-left: 5px solid #ff6600;
}

/* QUESTION */
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
}

.faq-question h4 {
  font-size: 18px;
  font-weight: 600;
}

.faq-question span {
  font-size: 22px;
  font-weight: bold;
  color: #ff6600;
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: 0.4s ease;
  padding: 0 25px;
}

.faq-answer p {
  padding-bottom: 20px;
  color: #555;
}

/* OPEN */
.faq-item.active .faq-answer {
  max-height: 200px;
}

/* HOVER */
.faq-item:hover {
  transform: translateY(-3px);
}

/* MOBILE */
@media (max-width: 768px) {
  .faq-title {
    font-size: 26px;
  }
}

.stats-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  text-align: center;
  color: #fff;
}

/* TITLE */
.stats-title {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 10px;
}

.stats-subtitle {
  max-width: 750px;
  margin: 0 auto 50px;
  color: #ccc;
}

/* ROW */
.stats-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* BOX */
.stat-box {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  padding: 40px 25px;
  width: 230px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transition: 0.4s;
  position: relative;
  overflow: hidden;
}

/* HOVER EFFECT */
.stat-box:hover {
  transform: translateY(-10px) scale(1.05);
  background: rgba(255,255,255,0.2);
}

/* NUMBER */
.stat-box h3 {
  font-size: 42px;
  font-weight: 800;
  color: #ff7b00;
}

/* TEXT */
.stat-box p {
  margin-top: 10px;
  font-size: 16px;
  color: #eee;
}

/* PLUS SIGN */
.stat-box h3::after {
  content: "+";
  font-size: 20px;
  margin-left: 5px;
}

/* MOBILE */
@media (max-width: 768px) {
  .stats-title {
    font-size: 26px;
  }

  .stat-box {
    width: 100%;
  }
}


/*about.html*/



/* COMMON */
.container {
  width: 90%;
  margin: auto;
}

/* ================= ABOUT ================= */
.about-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f5f7fa, #e4ecf7);
}

.about-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.about-text {
  width: 55%;
}

.about-text h1 {
  font-size: 36px;
  margin-bottom: 20px;
}

.about-text p {
  line-height: 1.7;
  margin-bottom: 15px;
}

.about-logo img {
  width: 300px;
}

/* ================= FORM ================= */
.contact-section {
  padding: 70px 0;
  background: #0d1b2a;
  color: #fff;
  text-align: center;
}

.contact-form {
  max-width: 500px;
  margin: auto;
}

.contact-form input,
.contact-form select {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
}

.contact-form button {
  width: 100%;
  padding: 12px;
  background: #ff6600;
  color: #fff;
  border: none;
  font-weight: bold;
}

/* ONLY FOR ABOUT PAGE SERVICES */
.about-services {
  padding: 70px 0;
  background: linear-gradient(135deg, #f8f9fa, #eef2f7);
  text-align: center;
}

.about-services h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
}

/* GRID */
.about-services .services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* BOX */
.about-services .service-box {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: 0.3s;
}

/* HOVER */
.about-services .service-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

/* TITLE */
.about-services .service-box h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #ff6600;
}

/* TEXT */
.about-services .service-box p {
  font-size: 14px;
  color: #555;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .about-services .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .about-services .services-grid {
    grid-template-columns: 1fr;
  }
}
/* ================= SEO ================= */
.seo-section {
  padding: 70px 0;
  text-align: center;
}

/* ================= MOBILE ================= */
@media(max-width:768px){
  .about-flex {
    flex-direction: column;
  }

  .about-text {
    width: 100%;
  }

  .about-logo img {
    margin-top: 20px;
  }
}


/*whatsapp floating */

/* FLOATING BUTTON CONTAINER */
.floating-buttons {
  position: fixed;
  right: 20px;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

/* COMMON STYLE */
.floating-buttons a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 50px;
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

/* ICON */
.floating-buttons i {
  font-size: 18px;
}

/* WHATSAPP BUTTON */
.whatsapp-btn {
  background: linear-gradient(135deg, #25d366, #1ebe5d);
}

/* CALL BUTTON */
.call-btn {
  background: linear-gradient(135deg, #ff6600, #ff3300);
}

/* HOVER EFFECT */
.floating-buttons a:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

/* PULSE ANIMATION */
.whatsapp-btn::before,
.call-btn::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  background: rgba(255,255,255,0.2);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.6; }
  70% { transform: scale(1.4); opacity: 0; }
  100% { opacity: 0; }
}

/* MOBILE */
@media (max-width: 768px) {
  .floating-buttons {
    right: 15px;
    bottom: 20px;
  }

  .floating-buttons a span {
    display: none; /* only icon on mobile */
  }

  .floating-buttons a {
    padding: 14px;
    border-radius: 50%;
  }
}


/* ================= EASYSHIFT GALLERY ================= */
.easyshift-gallery {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa, #eef3f9);
  text-align: center;
}

/* TITLE */
.easyshift-gallery .gallery-title {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* SUBTITLE */
.easyshift-gallery .gallery-subtitle {
  max-width: 800px;
  margin: 0 auto 40px;
  color: #555;
  font-size: 15px;
}

/* GRID */
.easyshift-gallery .gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  padding: 0 20px;
}

/* ITEM */
.easyshift-gallery .gallery-item {
  overflow: hidden;
  border-radius: 15px;
  position: relative;
}

/* IMAGE */
.easyshift-gallery .gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: 0.4s;
  border-radius: 15px;
}

/* HOVER EFFECT */
.easyshift-gallery .gallery-item:hover img {
  transform: scale(1.1);
}

/* OVERLAY EFFECT */
.easyshift-gallery .gallery-item::after {
  content: "Easy Shift Packers & Movers";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 13px;
  opacity: 0;
  transition: 0.3s;
}

.easyshift-gallery .gallery-item:hover::after {
  opacity: 1;
}

/* MOBILE */
@media (max-width: 768px) {
  .easyshift-gallery .gallery-title {
    font-size: 26px;
  }
}

/* HERO */
.contact-hero {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, #0d1b2a, #1b263b);
  color: #fff;
}

.contact-hero h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

/* MAIN GRID */
.contact-section-main {
  padding: 70px 20px;
}

.contact-grid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

/* LEFT */
.contact-info-box {
  flex: 1;
}

.contact-item {
  margin: 15px 0;
  font-size: 16px;
}

.contact-item a {
  text-decoration: none;
  color: #ff6600;
}

/* BUTTONS */
.contact-buttons {
  margin-top: 20px;
}

.call-btn,
.whatsapp-btn {
  display: inline-block;
  padding: 10px 20px;
  margin-right: 10px;
  border-radius: 5px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.call-btn {
  background: #ff6600;
}

.whatsapp-btn {
  background: #25d366;
}

/* FORM */
.contact-form-box {
  flex: 1;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.contact-form-box input,
.contact-form-box select,
.contact-form-box textarea {
  width: 100%;
  margin-bottom: 12px;
  padding: 10px;
}

.contact-form-box button {
  width: 100%;
  padding: 12px;
  background: #ff6600;
  color: #fff;
  border: none;
  font-weight: bold;
}

/* MAP */
.map-section {
  margin-top: 40px;
}

/* MOBILE */
@media(max-width:768px){
  .contact-grid {
    flex-direction: column;
  }
}


/* ===== CONTACT PAGE ONLY ===== */
.contact-page {
  font-family: 'Segoe UI', sans-serif;
}

/* SECTION */
.contact-page .contact-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f5f7fa, #e4ecf7);
}

/* TITLE */
.contact-page .contact-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-page .contact-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 40px;
}

/* GRID */
.contact-page .contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* LEFT INFO */
.contact-page .contact-info {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-page .contact-info h3 {
  margin-bottom: 20px;
  color: #ff6600;
}

.contact-page .contact-info p {
  margin-bottom: 15px;
  font-size: 15px;
}

.contact-page .contact-info a {
  color: #ff6600;
  text-decoration: none;
}

/* FORM */
.contact-page .contact-form {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-page .contact-form h3 {
  margin-bottom: 20px;
  color: #ff6600;
}

/* INPUTS */
.contact-page .contact-form input,
.contact-page .contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
}

/* BUTTON */
.contact-page .contact-form button {
  width: 100%;
  padding: 12px;
  background: linear-gradient(45deg, #ff6600, #ff3300);
  color: #fff;
  border: none;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-page .contact-form button:hover {
  background: #0d1b2a;
}

/* MAP */
.contact-page .contact-map {
  margin-top: 30px;
  border-radius: 15px;
  overflow: hidden;
}

/* MOBILE */
@media (max-width: 768px) {
  .contact-page .contact-container {
    grid-template-columns: 1fr;
  }
}
.contact-page .contact-form input,
.contact-page .contact-form textarea {
  border: 2px solid transparent; /* reserve space */
  outline: none;
}

.contact-page .contact-form input:focus,
.contact-page .contact-form textarea:focus {
  border: 2px solid #ff6600; /* no size change now */
}


/*HOME SHIFITNG CSS*/

/* HERO */
.home-shifting-hero {
  background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.7)),
              url('images/easyshift-bg.png') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 120px 20px;
}

.home-shifting-hero h1 {
  font-size: 42px;
  font-weight: 700;
}

.home-shifting-hero p {
  max-width: 750px;
  margin: auto;
  line-height: 1.7;
}

/* ABOUT */
.home-shifting-about {
  padding: 80px 0;
  text-align: center;
  background: #fff;
}

.home-shifting-about h2 {
  font-size: 32px;
}

.home-shifting-about p {
  max-width: 900px;
  margin: 0 auto 15px;
  color: #555;
}

/* DETAILS */
.home-shifting-details {
  padding: 80px 0;
  background: #f5f7fb;
  text-align: center;
}

.home-shifting-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.home-shifting-box {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.home-shifting-box:hover {
  transform: translateY(-8px);
}

/* WHY */
.home-shifting-why {
  background: #0d1b2a;
  color: #fff;
  text-align: center;
  padding: 70px 20px;
}

.home-shifting-why ul {
  list-style: none;
  padding: 0;
}

.home-shifting-why li {
  margin: 10px 0;
}

/* LOCAL SEO */
.home-shifting-local {
  padding: 80px 0;
  text-align: center;
  background: #fff;
}

/* CTA */
.home-shifting-cta {
  background: linear-gradient(135deg, #ff6600, #ff8533);
  color: #fff;
  text-align: center;
  padding: 70px 20px;
}

.home-shifting-cta a {
  display: inline-block;
  margin: 10px;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
}

.home-shifting-cta .call-btn {
  background: #fff;
  color: #ff6600;
}

.home-shifting-cta .whatsapp-btn {
  background: #25D366;
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .home-shifting-grid {
    grid-template-columns: 1fr;
  }
}

.home-shifting-box h4 {
  font-size: 18px;
  font-weight: 600;
  color: #0d1b2a;
}

.home-shifting-box p {
  font-size: 14px;
  color: #666;
}

/* Add hover glow */
.home-shifting-box:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}


/* SECTION */
.car-faq-section {
  padding: 80px 20px;
  background: #f8f9fb;
}

/* TITLE */
.car-faq-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
}

/* CONTAINER */
.car-faq-container {
  max-width: 800px;
  margin: auto;
}

/* ITEM */
.car-faq-item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  overflow: hidden;
}

/* QUESTION */
.car-faq-question {
  width: 100%;
  padding: 18px 20px;
  border: none;
  outline: none;
  background: none;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* PLUS ICON */
.car-faq-question span {
  font-size: 22px;
  color: #ff6600;
}

/* ANSWER */
.car-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s ease;
  padding: 0 20px;
}

.car-faq-answer p {
  padding: 10px 0 20px;
  font-size: 14px;
  color: #555;
}

/* ACTIVE */
.car-faq-item.active .car-faq-answer {
  max-height: 200px;
}
/* SECTION */
.nashik-google-reviews {
  padding: 80px 20px;
  background: #f72702e8;
  color: #fff;
  text-align: center;
}

.nashik-google-subtitle {
  color: #cbd5f5;
  margin-bottom: 40px;
}

/* SLIDER */
.nashik-google-slider {
  overflow: hidden;
  position: relative;
}

.nashik-google-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: nashikScroll 25s linear infinite;
}

/* CARD */
.nashik-google-box {
  min-width: 280px;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 20px;
  text-align: left;
  transition: 0.3s;
  border: 1px solid rgba(255,255,255,0.1);
}

.nashik-google-box:hover {
  transform: translateY(-8px);
  border-color: #ff6600;
}

/* LOGO */
.nashik-google-logo {
  width: 30px;
  margin-bottom: 10px;
}

/* TEXT */
.nashik-google-box h4 {
  margin: 5px 0;
}

.stars {
  color: #ffcc00;
  margin-bottom: 10px;
}

.nashik-google-box p {
  font-size: 14px;
  color: #e5e7eb;
}

/* ANIMATION */
@keyframes nashikScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/*IGAtpuri css*/

/* HERO */
.igatpuri-hero {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.7)),
              url('images/easyshift-bg.png') center/cover;
  color: #fff;
  padding: 120px 20px;
  text-align: center;
}

.igatpuri-hero h1 {
  font-size: 36px;
  margin-bottom: 15px;
}

.igatpuri-btn {
  display: inline-block;
  margin-top: 20px;
  background: #ff6600;
  color: #fff;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
}

/* SERVICES */
/* SECTION */
.igatpuri-services {
  padding: 90px 20px;
  background: linear-gradient(135deg, #020617, #0f172a);
  color: #fff;
  text-align: center;

  border: 2px solid #ffffff;
  border-radius: 12px;
  margin: 40px;
}
.igatpuri-services {
  padding: 90px 20px;
  background: linear-gradient(135deg, #020617, #0f172a);
  color: #fff;
  text-align: center;
}

.igatpuri-title {
  font-size: 34px;
  margin-bottom: 10px;
}

.igatpuri-sub {
  max-width: 800px;
  margin: auto;
  color: #cbd5f5;
  margin-bottom: 50px;
  line-height: 1.6;
}

/* GRID */
.igatpuri-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

/* CARD */
.igatpuri-card {
  position: relative;
  padding: 30px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  overflow: hidden;
  transition: 0.4s;
  z-index: 1;
}

/* ⚡ THUNDER BORDER EFFECT */
.igatpuri-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 14px;
  background: linear-gradient(120deg, transparent, #ff6600, transparent);
  animation: thunderMove 3s linear infinite;
  z-index: -1;
}

/* INNER BG */
.igatpuri-card::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 12px;
  background: #020617;
  z-index: -1;
}

/* HOVER GLOW */
.igatpuri-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 0 25px rgba(255, 102, 0, 0.5);
}

/* TEXT */
.igatpuri-card h3 {
  color: #ff6600;
  margin-bottom: 10px;
}

.igatpuri-card p {
  color: #e5e7eb;
  font-size: 14px;
  line-height: 1.6;
}

/* ANIMATION */
@keyframes thunderMove {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 300% 50%;
  }
}

/* WHY */
/* SECTION BACKGROUND */
.igatpuri-why {
  padding: 90px 20px;
  background: linear-gradient(135deg, #f7f8f8, #f8f8fa);
  color: #01052b;
  text-align: center;
}

/* TITLE */
.igatpuri-why-title {
  font-size: 34px;
  margin-bottom: 10px;
}

.igatpuri-why-sub {
  max-width: 800px;
  margin: auto;
  margin-bottom: 50px;
  color: #021964;
  line-height: 1.6;
}

/* GRID */
.igatpuri-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 25px;
}

/* CARD */
.igatpuri-why-card {
  background: rgba(250, 246, 246, 0.05);
  border-radius: 14px;
  padding: 25px;
  text-align: left;
  transition: 0.4s;
  position: relative;
  border: 1px solid rgba(255,255,255,0.1);
}

/* ORANGE LINE EFFECT */
.igatpuri-why-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: #ff6600;
  border-radius: 10px;
}

/* HOVER EFFECT */
.igatpuri-why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(255, 102, 0, 0.4);
}

/* TEXT */
.igatpuri-why-card h3 {
  color: #ff6600;
  margin-bottom: 10px;
}

.igatpuri-why-card p {
  color: #021964;
  font-size: 14px;
  line-height: 1.6;
}
/* PROCESS */
/* SECTION */
.igatpuri-process {
  padding: 90px 20px;
  background: linear-gradient(135deg, #020617, #1e293b);
  color: #fff;
  text-align: center;
}

.igatpuri-process-title {
  font-size: 32px;
  margin-bottom: 10px;
}

.igatpuri-process-sub {
  max-width: 800px;
  margin: auto;
  margin-bottom: 50px;
  color: #cbd5f5;
  line-height: 1.6;
}

/* GRID */
.igatpuri-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 25px;
}

/* CARD */
.igatpuri-step-card {
  background: rgba(255,255,255,0.05);
  padding: 25px;
  border-radius: 14px;
  position: relative;
  transition: 0.4s;
  border: 1px solid rgba(255,255,255,0.1);
  text-align: left;
}

/* NUMBER BADGE */
.igatpuri-step-card span {
  position: absolute;
  top: -15px;
  left: 20px;
  background: #ff6600;
  color: #fff;
  font-size: 14px;
  padding: 6px 10px;
  border-radius: 50%;
}

/* HOVER */
.igatpuri-step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(255,102,0,0.4);
  border-color: #ff6600;
}

/* TEXT */
.igatpuri-step-card h3 {
  margin-top: 15px;
  color: #ff6600;
  font-size: 18px;
}

.igatpuri-step-card p {
  font-size: 14px;
  color: #e5e7eb;
  line-height: 1.6;
}

/* LOCAL */
/* SECTION */
.igatpuri-local {
  padding: 90px 20px;
  background: linear-gradient(135deg, #0f172a, #020617);
  color: #fff;
  text-align: center;
}

.igatpuri-local-title {
  font-size: 32px;
  margin-bottom: 10px;
}

.igatpuri-local-sub {
  max-width: 800px;
  margin: auto;
  margin-bottom: 50px;
  color: #cbd5f5;
  line-height: 1.6;
}

/* GRID */
.igatpuri-local-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 25px;
}

/* CARD */
.igatpuri-local-card {
  background: rgba(255,255,255,0.05);
  padding: 25px;
  border-radius: 14px;
  text-align: left;
  transition: 0.4s;
  border: 1px solid rgba(255,255,255,0.1);
  position: relative;
}

/* ORANGE TOP BORDER */
.igatpuri-local-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #ff6600;
}

/* HOVER */
.igatpuri-local-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(255,102,0,0.4);
}

/* TEXT */
.igatpuri-local-card h3 {
  color: #ff6600;
  margin-bottom: 15px;
}

.igatpuri-local-card ul {
  list-style: none;
  padding: 0;
}

.igatpuri-local-card ul li {
  margin-bottom: 8px;
  color: #e5e7eb;
  font-size: 14px;
}

/* SEO LINE */
.seo-line {
  font-size: 14px;
  color: #cbd5f5;
  margin-bottom: 10px;
}
.igatpuri-local {
  padding: 90px 20px;
  background: linear-gradient(135deg, #0f172a, #020617);
  color: #fff;
  text-align: center;

  /* 👇 WHITE THIN OUTER BORDER */
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;

  /* optional spacing */
  margin: 40px 20px;
}
/* CTA */
.igatpuri-cta {
  background: #ff6600;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

.igatpuri-cta a {
  display: inline-block;
  margin-top: 15px;
  background: #fff;
  color: #ff6600;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
}

