/* ============================================================
   MOHAMMADI POWER SERVICE - style.css
   Colors: #31312F (dark bg), #F17E01 (orange), 
           #7FD100 (green), #3E5BA0 (blue), #ffffff (white)
   Fonts: Oswald (headings), Inter (body)
============================================================ */

/* ---------- ROOT VARIABLES ---------- */
:root {
  --dark: #31312F;
  --orange: #F17E01;
  --green: #7FD100;
  --blue: #3E5BA0;
  --white: #ffffff;
  --light-bg: #f8f9fa;
  --border-light: rgba(255, 255, 255, 0.12);
  --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.16);
  --radius: 10px;
  --radius-lg: 16px;
  --transition: all 0.3s ease;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

.container,
.container-fluid {
  overflow: hidden;
}

img,
video {
  max-width: 100%;
  height: auto;
}

/* ---------- BASE ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #333;
  background: #fff;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Oswald', sans-serif;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  transition: var(--transition);
}

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--orange);
  border-radius: 10px;
}

/* ============================================================
   TOP BAR
============================================================ */
.topbar {
  background: var(--dark);
  padding: 8px 0;
  font-size: 13px;
  font-weight: 500;
}

.topbar-link {
  color: rgba(255, 255, 255, 0.75);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.topbar-link:hover {
  color: var(--orange);
}

.topbar-link i {
  color: var(--orange);
}

.topbar-gstin {
  color: var(--green);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.5px;
}

.topbar-gstin i {
  color: var(--green);
}

/* ============================================================
   HEADER / NAVBAR
============================================================ */
.site-header {
  background: var(--dark);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
  z-index: 1000;
}

.site-header .navbar {
  padding: 10px 0;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-icon {
  background: var(--orange);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-main {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
}

.brand-sub {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: var(--orange);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Nav Links */
.site-header .nav-link {
  color: rgba(255, 255, 255, 0.8) !important;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.8px;
  padding: 8px 10px !important;
  text-transform: uppercase;
  position: relative;
}

.site-header .nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 10px;
  right: 10px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transition: var(--transition);
}

.site-header .nav-link:hover,
.site-header .nav-link.active {
  color: var(--orange) !important;
}

.site-header .nav-link:hover::after {
  transform: scaleX(1);
}

/* CTA Button in Nav */
.btn-cta-header {
  background: var(--orange);
  color: #fff !important;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.8px;
  padding: 8px 18px !important;
  border-radius: 6px;
  border: 2px solid var(--orange);
  text-transform: uppercase;
}

.btn-cta-header:hover {
  background: transparent;
  color: var(--orange) !important;
}

/* Toggler */
.toggler-icon {
  color: var(--orange);
  font-size: 22px;
}

.navbar-toggler {
  border: none;
  box-shadow: none;
  padding: 4px 8px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

@media (max-width: 991px) {
  .navbar-collapse {
    background: var(--dark);
    padding: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 8px;
    border-radius: 0 0 8px 8px;
  }

  .site-header .nav-link::after {
    display: none;
  }

  .btn-cta-header {
    margin-top: 8px;
    display: inline-block;
  }
}

/* ============================================================
   HERO CAROUSEL
============================================================ */
#home {
  margin: 0;
  padding: 0;
  line-height: 0;
  font-size: 0;
}

#heroCarousel {
  background: var(--dark);
  margin: 0;
  padding: 0;
  display: block;
}

.hero-slide {
  position: relative;
  height: 90vh;
  min-height: 550px;
  max-height: 750px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(0, 0, 0, 0.623) 45%, rgba(0, 0, 0, 0.185) 100%);
}

.hero-slide .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  padding: 20px 0;
}

.hero-eyebrow {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 3px;
  margin-bottom: 18px;
}

.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 18px;
}

.text-accent-orange {
  color: var(--orange);
}

.text-accent-green {
  color: var(--green);
}

.text-accent-blue {
  color: #6da0ff;
}

.hero-desc {
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  max-width: 500px;
  margin-bottom: 30px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Buttons */
.btn-primary-custom {
  background: var(--orange);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 6px;
  border: 2px solid var(--orange);
  display: inline-block;
  transition: var(--transition);
}

.btn-primary-custom:hover {
  background: transparent;
  color: var(--orange);
}

.btn-outline-custom {
  background: transparent;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 6px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  display: inline-block;
  transition: var(--transition);
}

.btn-outline-custom:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

/* Carousel Controls */
.carousel-arrow {
  background: var(--orange);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  transition: var(--transition);
}

.carousel-arrow:hover {
  background: var(--white);
  color: var(--dark);
}

.carousel-control-prev,
.carousel-control-next {
  width: 60px;
}

.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
}

.carousel-indicators .active {
  background: var(--orange);
  width: 28px;
  border-radius: 5px;
}

/* Hero animate on active slide */
.carousel-item.active .animate-hero .hero-eyebrow {
  animation: fadeUp 0.6s 0.1s both;
}

.carousel-item.active .animate-hero .hero-title {
  animation: fadeUp 0.6s 0.25s both;
}

.carousel-item.active .animate-hero .hero-desc {
  animation: fadeUp 0.6s 0.4s both;
}

.carousel-item.active .animate-hero .hero-btns {
  animation: fadeUp 0.6s 0.55s both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 576px) {
  .hero-slide {
    height: 80vh;
    min-height: 480px;
  }
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ============================================================
   MARQUEE STRIP
============================================================ */
.marquee-strip {
  background: var(--orange);
  overflow: hidden;
  padding: 0;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  animation: marqueeScroll 30s linear infinite;
  padding: 11px 0;
}

.marquee-track span {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.marquee-track span i {
  font-size: 13px;
}

.marquee-strip:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ============================================================
   SECTION COMMON
============================================================ */
section {
  padding: 80px 0;
}

.section-label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  border: 1px solid var(--orange);
  padding: 4px 14px;
  border-radius: 3px;
  margin-bottom: 14px;
}

.section-label-light {
  border-color: rgba(241, 126, 1, 0.5);
}

.section-heading {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 14px;
}

.highlight-text {
  color: var(--orange);
}

.section-subtext {
  color: #666;
  font-size: 15px;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-para {
  color: #555;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 14px;
}

/* ============================================================
   ABOUT SECTION
============================================================ */
.section-about {
  background: #fff;
}

.about-img-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}

.about-main-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  height: 420px;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  left: -15px;
  background: var(--orange);
  color: #fff;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 8px 24px rgba(241, 126, 1, 0.4);
  border: 4px solid #fff;
}

.badge-num {
  font-family: 'Oswald', sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
}

.badge-txt {
  font-size: 10px;
  font-weight: 600;
  line-height: 1.3;
}

.about-cert-tag {
  position: absolute;
  top: 20px;
  right: -10px;
  background: var(--green);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 7px 14px;
  border-radius: 6px;
  box-shadow: 0 4px 14px rgba(127, 209, 0, 0.35);
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 22px 0;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #444;
}

.highlight-item i {
  color: var(--green);
  font-size: 18px;
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .about-img-wrapper {
    margin-bottom: 40px;
  }

  .about-badge {
    left: 20px;
  }
}

/* ============================================================
   SERVICES SECTION
============================================================ */
.section-services {
  background: #f6f7fb;
}

.service-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid #eee;
  transition: var(--transition);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}

.service-img-top {
  width: 100%;
  height: 300px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.service-img-top img {
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}

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

.service-img-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--orange);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}

.service-content-col {
  padding: 24px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-icon-wrap {
  background: rgba(241, 126, 1, 0.1);
  color: var(--orange);
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 12px;
}

.service-icon-wrap.icon-green {
  background: rgba(127, 209, 0, 0.12);
  color: var(--green);
}

.service-icon-wrap.icon-blue {
  background: rgba(62, 91, 160, 0.1);
  color: var(--blue);
}

.service-icon-wrap.icon-dark {
  background: rgba(49, 49, 47, 0.1);
  color: var(--dark);
}

.service-content-col h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.service-content-col p {
  font-size: 13.5px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 10px;
  flex: 1;
}

.service-list {
  list-style: none;
  padding: 0;
  margin-bottom: 14px;
}

.service-list li {
  font-size: 13px;
  color: #555;
  display: flex;
  align-items: center;
}

.service-list li i {
  color: var(--orange);
  font-size: 20px;
  margin-right: 2px;
}

.btn-service-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--orange);
  border: 1.5px solid var(--orange);
  padding: 6px 16px;
  border-radius: 5px;
  margin-top: auto;
  width: fit-content;
  transition: var(--transition);
}

.btn-service-cta:hover {
  background: var(--orange);
  color: #fff;
}

@media (max-width: 576px) {
  .service-img-top {
    height: 240px;
  }
}

/* ============================================================
   WHY CHOOSE US
============================================================ */
.section-why {
  background: var(--dark);
}

.section-why .section-heading {
  color: #fff;
}

.why-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  transition: var(--transition);
}

.why-card:hover {
  background: rgba(241, 126, 1, 0.08);
  border-color: var(--orange);
  transform: translateY(-5px);
}

.why-icon {
  background: rgba(241, 126, 1, 0.15);
  color: var(--orange);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 16px;
  transition: var(--transition);
}

.why-icon.icon-green {
  background: rgba(127, 209, 0, 0.15);
  color: var(--green);
}

.why-icon.icon-blue {
  background: rgba(62, 91, 160, 0.2);
  color: #6da0ff;
}

.why-icon.icon-dark {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
}

.why-card:hover .why-icon {
  transform: scale(1.1);
}

.why-card h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}

.why-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   COUNTER SECTION
============================================================ */
.section-counter {
  background: var(--orange);
  padding: 60px 0;
}

.counter-card {
  text-align: center;
  padding: 20px 10px;
}

.counter-icon {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 14px;
}

.counter-icon.icon-green {
  background: rgba(127, 209, 0, 0.25);
}

.counter-icon.icon-blue {
  background: rgba(62, 91, 160, 0.3);
}

.counter-icon.icon-dark {
  background: rgba(49, 49, 47, 0.25);
}

.counter-number {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  display: inline-block;
}

.counter-plus {
  font-family: 'Oswald', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  display: inline-block;
  vertical-align: top;
  margin-top: 4px;
}

.counter-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 6px;
}

/* ============================================================
   GALLERY
============================================================ */
.section-gallery {
  background: #fff;
}

.gallery-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  border: 1px solid #eee;
}

.gallery-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-card:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(241, 126, 1, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: #fff;
  font-size: 28px;
}

@media (max-width: 768px) {
  .gallery-card img {
    height: 150px;
  }
}

/* ============================================================
   FAQs
============================================================ */
.section-faq {
  background: #f6f7fb;
}

.faq-item {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: var(--radius) !important;
  margin-bottom: 10px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--orange);
}

.faq-btn {
  background: #fff !important;
  color: var(--dark) !important;
  font-family: 'Oswald', sans-serif;
  font-size: 17px;
  font-weight: 600;
  padding: 18px 20px;
  border: none;
  box-shadow: none !important;
}

.faq-btn:not(.collapsed) {
  color: var(--orange) !important;
}

.faq-btn::after {
  filter: none;
}

.faq-btn:not(.collapsed)::after {
  filter: invert(50%) sepia(90%) saturate(400%) hue-rotate(0deg);
}

.faq-body {
  font-size: 14.5px;
  color: #555;
  line-height: 1.8;
  padding: 0 20px 18px;
  background: #fff;
  border-top: 1px solid #f0f0f0;
}

/* ============================================================
   CONTACT SECTION
============================================================ */
.section-contact {
  background: var(--dark);
}

.contact-info-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  height: 100%;
}

.contact-form-box {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-lg);
}

.contact-box-title {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--orange);
}

.contact-form-box .contact-box-title {
  color: var(--dark);
}

.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.contact-info-icon {
  background: rgba(241, 126, 1, 0.15);
  color: var(--orange);
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-info-icon.icon-green {
  background: rgba(127, 209, 0, 0.12);
  color: var(--green);
}

.contact-info-icon.icon-blue {
  background: rgba(62, 91, 160, 0.15);
  color: #6da0ff;
}

.contact-info-icon.icon-dark {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}

.contact-info-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 4px;
}

.contact-info-value {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  line-height: 1.6;
}

a.contact-info-value:hover {
  color: var(--orange);
}

.contact-social-row {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.social-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 10px 14px;
  border-radius: 7px;
  transition: var(--transition);
}

.btn-call {
  background: var(--orange);
  color: #fff !important;
  border: 2px solid var(--orange);
}

.btn-call:hover {
  background: transparent;
  color: var(--orange) !important;
}

.btn-whatsapp {
  background: #25D366;
  color: #fff !important;
  border: 2px solid #25D366;
}

.btn-whatsapp:hover {
  background: transparent;
  color: #25D366 !important;
}

/* Form */
.form-label {
  font-size: 13px;
  font-weight: 600;
  color: #444;
  margin-bottom: 5px;
  display: block;
}

.custom-input {
  border: 1.5px solid #e0e0e0;
  border-radius: 7px;
  font-size: 14px;
  color: #333;
  padding: 10px 14px;
  transition: var(--transition);
  background: #fafafa;
}

.custom-input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(241, 126, 1, 0.12);
  background: #fff;
  outline: none;
}

.custom-input::placeholder {
  color: #aaa;
}

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
  background: #222220;
}

.footer-main {
  padding: 60px 0 40px;
}

.footer-about-text {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  margin-bottom: 14px;
}

.footer-gstin-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(127, 209, 0, 0.12);
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 6px 14px;
  border-radius: 5px;
  border: 1px solid rgba(127, 209, 0, 0.25);
}

.footer-heading {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a::before {
  content: '›';
  color: var(--orange);
  font-size: 16px;
}

.footer-links a:hover {
  color: var(--orange);
  padding-left: 4px;
}

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-list li {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  align-items: flex-start;
}

.footer-contact-list li i {
  color: var(--orange);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-list a,
.footer-contact-list span {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.footer-contact-list a:hover {
  color: var(--orange);
}

.footer-bottom {
  background: #1a1a19;
  padding: 16px 0;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
  margin: 0;
}

/* ============================================================
   FLOATING BUTTONS
============================================================ */
.float-btn {
  position: fixed;
  bottom: 80px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  z-index: 999;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  overflow: hidden;
}

.float-label {
  position: absolute;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  white-space: nowrap;
  opacity: 0;
  transform: scale(0.8);
  transition: var(--transition);
  background: inherit;
  padding: 4px 10px;
  border-radius: 4px;
}

.float-btn:hover .float-label {
  opacity: 0;
}

.float-whatsapp {
  left: 20px;
  background: #25D366;
  color: #fff;
}

.float-whatsapp:hover {
  background: #1da851;
  color: #fff;
  width: 140px;
  border-radius: 30px;
}

.float-whatsapp:hover i {
  margin-right: 6px;
}

.float-whatsapp:hover .float-label {
  opacity: 1;
  position: relative;
  transform: scale(1);
}

.float-call {
  right: 20px;
  background: var(--orange);
  color: #fff;
}

.float-call:hover {
  background: #d96d00;
  color: #fff;
  width: 130px;
  border-radius: 30px;
}

.float-call:hover i {
  margin-right: 6px;
}

.float-call:hover .float-label {
  opacity: 1;
  position: relative;
  transform: scale(1);
}

/* Pulse animation */
.float-whatsapp::before,
.float-call::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: inherit;
  opacity: 0.3;
  animation: pulse 2s ease infinite;
}

.float-btn:hover::before {
  animation: none;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.3;
  }

  50% {
    transform: scale(1.3);
    opacity: 0;
  }
}

/* ============================================================
   BACK TO TOP
============================================================ */
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--dark);
  color: #fff;
  border: 2px solid var(--orange);
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  transition: var(--transition);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--orange);
  border-color: var(--orange);
}

/* ============================================================
   SCROLL REVEAL (via JS class)
============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE UTILITIES
============================================================ */
@media (max-width: 767px) {
  section {
    padding: 60px 0;
  }

  .about-main-img {
    height: 280px;
  }

  .float-btn {
    width: 46px;
    height: 46px;
    font-size: 20px;
    bottom: 70px;
  }

  .float-whatsapp:hover,
  .float-call:hover {
    width: 46px;
    border-radius: 50%;
  }

  .float-btn:hover .float-label {
    display: none;
  }
}

@media (max-width: 575px) {

  .hero-btns .btn-primary-custom,
  .hero-btns .btn-outline-custom {
    font-size: 13px;
    padding: 10px 20px;
  }

  .contact-info-box,
  .contact-form-box {
    padding: 24px 18px;
  }
}