body {
  font-family: 'Poppins', sans-serif;
}

/* Header */
.main-header {
  position: absolute;
  width: 100%;
  background: transparent;
  z-index: 999;
}

.header-nav .nav-link {
  color: #fff;
  margin: 0 10px;
}

/* Hero */
.hero-section {
  background: url('assets/images/new-bg.jpg') center/cover no-repeat;
  padding: 80px 0;
  color: #fff;
}
.service-box h4 {
  font-size: 16px;
  font-weight: bold;
}
.hero-form input,
.hero-form textarea {
  margin-bottom: 15px;
}

/* Sections */
.about-section,
.services-section,
.contact-section {
  padding: 80px 0;
}

.service-box {
  text-align: center;
  padding: 30px;
  box-shadow: 0 0 20px rgba(0,0,0,0.08);
  border-radius: 10px;
}

.icon-box {
  font-size: 40px;
  color: #f9a825;
  margin-bottom: 15px;
}

/* Counter */
.counter-section {
  background: #f9f9f9;
  padding: 60px 0;
}

.counter-box h3 {
  font-size: 40px;
  color: #f9a825;
}

/* Footer */


.hero-section h1 {
  font-size: 48px;
  font-weight: 700;
}

.hero-section .btn {
  transition: all 0.3s ease;
}

.hero-section .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}


.main-header.scrolled {
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}


.service-box {
  transition: all 0.4s ease;
  background: #fff;
}

.service-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

.service-box .icon-box {
  transition: all 0.4s ease;
}

.service-box:hover .icon-box {
  transform: scale(1.15) rotate(5deg);
  color: #ff9800;
}

.about-image img {
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.counter-box {
  transition: all 0.3s ease;
}

.counter-box:hover {
  transform: translateY(-6px);
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(220,53,69,0.6); }
  70% { box-shadow: 0 0 0 18px rgba(220,53,69,0); }
  100% { box-shadow: 0 0 0 0 rgba(220,53,69,0); }
}

.contact-section .btn {
  animation: pulse 2s infinite;
}




/* Services Section */
.services-section {
  padding-bottom: 20px;
  padding-top: 80px;
  background: #f9f9f9;
}

/* Section Heading */
.services-heading {
  margin-bottom: 50px;
}

.section-subtitle {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--solar-yellow);
  letter-spacing: 1px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-desc {
  max-width: 650px;
  margin: 0 auto;
  color: #666;
}

/* Service Box */
.service-box {
  background: #fff;
  padding: 35px 25px;
  border-radius: 14px;
  text-align: left;
  height: 100%;
  transition: all 0.35s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.service-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 45px rgba(0,0,0,0.12);
}

/* Icon Box */
.icon-box {
  width: 80px;
  height: 80px;
  background: rgba(249,168,37,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.icon-box i {
  font-size: 38px;
  color: var(--solar-yellow);
}

/* Button */
.service-box .btn {
  margin-top: 10px;
}



/* Call Now Button */
.call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 12px 28px;
  border-radius: 50px;

  background: linear-gradient(135deg, #f9a825, #ffb300);
  color: #111;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;

  border: none;
  box-shadow: 0 8px 25px rgba(249,168,37,0.45);
  transition: all 0.35s ease;
}

/* Icon */
.call-btn i {
  font-size: 18px;
  animation: phoneShake 1.8s infinite;
}

/* Hover Effect */
.call-btn:hover {
  color: #111;
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 18px 40px rgba(249,168,37,0.6);
}

/* Click */
.call-btn:active {
  transform: scale(0.98);
}

/* Phone Icon Animation */
@keyframes phoneShake {
  0% { transform: rotate(0); }
  10% { transform: rotate(15deg); }
  20% { transform: rotate(-15deg); }
  30% { transform: rotate(10deg); }
  40% { transform: rotate(-10deg); }
  50% { transform: rotate(0); }
}


/* Counter Section */
.counter-section {
  padding: 90px 0;
  background: #ffffff;
}

/* Counter Box */
.counter-box {
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(249,168,37,0.12),
    rgba(249,168,37,0.04)
  );
  border-radius: 18px;
  padding: 35px 20px;
  height: 100%;

  backdrop-filter: blur(10px);
  border: 1px solid rgba(249,168,37,0.25);

  transition: all 0.4s ease;
  overflow: hidden;
}

/* Glossy Shine */
.counter-box::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.4),
    transparent
  );
  transform: rotate(25deg);
  transition: all 0.6s ease;
  opacity: 0;
}

/* Hover Effects */
.counter-box:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(249,168,37,0.35);
}

.counter-box:hover::before {
  left: 100%;
  opacity: 1;
}

/* Icon */
.counter-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: #f9a825;
  display: flex;
  align-items: center;
  justify-content: center;
}

.counter-icon i {
  font-size: 30px;
  color: #111;
}

/* Counter Text */
.counter-box h3 {
  font-size: 40px;
  font-weight: 700;
  color: #f9a825;
  margin-bottom: 5px;
}

.counter-box p {
  margin: 0;
  font-weight: 500;
  color: #444;
}



/* Contact Section */
.contact-section {
  padding: 90px 0;
  background: #f9f9f9;
}

/* LEFT BOX */
.contact-info-box {
  background: #111;
  color: #fff;
  padding: 40px;
  border-radius: 18px;
  height: 100%;
}

.contact-info-box h2 {
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-info-box p {
  color: #ccc;
  margin-bottom: 30px;
}

/* Contact Items */
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 22px;
}

.contact-item i {
  font-size: 26px;
  color: var(--solar-yellow);
}

.contact-item span {
  display: block;
  font-size: 13px;
  color: #aaa;
}

.contact-item a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.whatsapp-item i {
  color: #25D366;
}

/* RIGHT FORM */
.contact-form-box {
  background: #fff;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.contact-form-box h3 {
  font-weight: 700;
}

.contact-form-box p {
  color: #666;
  margin-bottom: 25px;
}

.contact-form-box .form-control,
.contact-form-box .form-select {
  height: 48px;
  border-radius: 8px;
}


.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 60px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  z-index: 9999;
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
  animation: pulseGlow 2.5s infinite;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.6); }
  70% { box-shadow: 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}


/* About Section */
.about-section {
  padding: 100px 0;
  background: #ffffff;
}

/* Image Wrapper */
.about-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.about-image-wrapper img {
  width: 100%;
  transition: transform 0.6s ease;
}

.about-image-wrapper:hover img {
  transform: scale(1.05);
}

/* Badge */
.about-image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #f9a825;
  color: #111;
  padding: 10px 18px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.about-image-badge i {
  font-size: 18px;
}

/* Content */
.about-content {
  padding-left: 30px;
}

.about-subtitle {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--solar-yellow);
  letter-spacing: 1px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.about-content h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 15px;
}

.about-text {
  color: #666;
  line-height: 1.8;
  margin-bottom: 25px;
}

/* Features */
.about-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-weight: 500;
}

.about-features i {
  color: var(--solar-yellow);
  font-size: 18px;
}


/* Premium Hero Form */
.hero-form-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 35px;
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
  max-width: 420px;
  margin-left: auto;
}

.form-title {
  font-weight: 700;
  margin-bottom: 5px;
  color: #111;
}

.form-title i {
  color: var(--solar-yellow);
  margin-right: 8px;
}

.form-subtitle {
  font-size: 14px;
  color: #666;
  margin-bottom: 25px;
}

/* Form Group with Icons */
.hero-form .form-group {
  position: relative;
  margin-bottom: 16px;
}

.hero-form .form-group i {
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  color: #f9a825;
  font-size: 14px;
}

.hero-form .form-control {
  padding: 12px 12px 12px 42px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 14px;
}

.hero-form .form-control:focus {
  border-color: var(--solar-yellow);
  box-shadow: 0 0 0 3px rgba(249,168,37,0.25);
}

/* Submit Button */
.btn-submit {
  background: linear-gradient(135deg, #f9a825, #ffb300);
  color: #111;
  font-weight: 700;
  padding: 12px;
  border-radius: 12px;
  border: none;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(249,168,37,0.6);
}

/* Trust Note */
.form-note {
  text-align: center;
  font-size: 12px;
  color: #777;
  margin-top: 12px;
}

.form-note i {
  color: #4caf50;
}


/* Header Layout */
.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.header-logo {
  text-decoration: none;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-link {
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  opacity: 0.9;
}

.header-link i {
  color: var(--solar-yellow);
  margin-right: 6px;
}

.header-call-btn {
  backgroun

  /* Footer */
.footer-section {
  background: #0b0b0b;
  padding: 25px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-text {
  margin: 0;
  font-size: 14px;
  color: #bbb;
}

.footer-links {
  list-style: none;
  display: flex;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.footer-links a {
  color: #bbb;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--solar-yellow);
}


/* Header */
.main-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background: rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.main-header.scrolled {
  background: rgba(17, 17, 17, 0.9);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

/* Logo */
.header-logo {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.5px;
}

.header-logo span {
  color: var(--solar-yellow);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-action-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 30px;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.header-action-btn i {
  font-size: 14px;
}

.header-action-btn:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-2px);
}

/* Call Now Highlight */
.header-action-btn.primary {
  background: linear-gradient(135deg, #f9a825, #ffb300);
  color: #111;
}

.header-action-btn.primary:hover {
  box-shadow: 0 10px 30px rgba(249,168,37,0.6);
}


d: var(--solar-yellow);
  color: #111;
  font-weight: 600;
  border-radius: 30px;
  padding: 10px 22px;
  transition: all 0.3s ease;
}

.header-call-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(249,168,37,0.5);
}


/* Footer */
.footer-section {
  background: #0b0b0b;
  padding: 25px 0;
  color: #fff;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-text {
  margin: 0;
  font-size: 14px;
  color: #bbb;
}

.footer-links {
  list-style: none;
  display: flex;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.footer-links a {
  color: #bbb;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--solar-yellow);
}


/* Header */
.main-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background: rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.main-header.scrolled {
  background: rgba(17, 17, 17, 0.9);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

/* Logo */
.header-logo {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.5px;
}

.header-logo span {
  color: var(--solar-yellow);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-action-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 30px;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.header-action-btn i {
  font-size: 14px;
}

.header-action-btn:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-2px);
}

/* Call Now Highlight */
.header-action-btn.primary {
  background: linear-gradient(135deg, #f9a825, #ffb300);
  color: #111;
}

.header-action-btn.primary:hover {
  box-shadow: 0 10px 30px rgba(249,168,37,0.6);
}


/* Service box */
.service-box {
  background: #fff;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.15);
}

/* Image container */
.service-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 18px;
}

/* Image */
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  animation: floatImage 4s ease-in-out infinite;
}

/* Hover zoom effect */
.service-box:hover .service-img img {
  transform: scale(1.08);
}

/* Floating animation */
@keyframes floatImage {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

/* Why Choose Section */
.why-choose-section {
 padding-top: 20px;
 padding-bottom: 20px;
  background: linear-gradient(135deg, #f8f8f8, #ffffff);
}

/* Cards */
.why-choose-card,
.service-area-card {
  background: #fff;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
  height: 100%;
}

/* Headings */
.section-heading {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 30px;
}

.section-heading span {
  color: var(--solar-yellow);
}

.section-subheading {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 25px;
}

/* Why Items */
.why-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 12px;
  background: #f9f9f9;
  font-weight: 600;
  transition: all 0.3s ease;
}

.why-item i {
  color: var(--solar-yellow);
  font-size: 18px;
}

.why-item:hover {
  background: #fff7e0;
  transform: translateX(4px);
}

/* CTA */
.why-cta {
  margin-top: 30px;
}

.btn-why {
  background: linear-gradient(135deg, #f9a825, #ffb300);
  color: #111;
  font-weight: 700;
  padding: 14px 26px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.btn-why:hover {
  box-shadow: 0 15px 35px rgba(249,168,37,0.5);
  transform: translateY(-2px);
}

/* Service Areas */
.service-area-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-area-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  font-weight: 600;
  border-bottom: 1px dashed #ddd;
}

.service-area-list li:last-child {
  border-bottom: none;
}

.service-area-list i {
  color: var(--solar-yellow);
}


/* CTA Highlight Section */
.cta-highlight-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #111, #1a1a1a);
  position: relative;
  overflow: hidden;
}

/* Glow Animation Background */
.cta-highlight-section::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(249,168,37,0.25);
  top: -100px;
  right: -100px;
  border-radius: 50%;
  filter: blur(120px);
  animation: glowMove 6s infinite alternate ease-in-out;
}

@keyframes glowMove {
  from { transform: translate(0, 0); }
  to { transform: translate(-60px, 60px); }
}

/* CTA Card */
.cta-card {
  background: linear-gradient(135deg, #f9a825, #ffb300);
  border-radius: 24px;
  padding: 60px;
  box-shadow: 0 30px 80px rgba(249,168,37,0.5);
  text-align: center;
  animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Content */
.cta-content h2 {
  font-size: 34px;
  font-weight: 800;
  color: #111;
  margin-bottom: 15px;
}

.cta-content h2 i {
  margin-right: 8px;
}

.cta-text {
  font-size: 16px;
  font-weight: 500;
  color: #222;
  margin-bottom: 35px;
}

/* Buttons */
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Phone Button */
.phone-btn {
  background: #111;
  color: #fff;
}

.phone-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

/* Website Button */
.web-btn {
  background: rgba(255,255,255,0.35);
  color: #111;
}

.web-btn:hover {
  background: rgba(255,255,255,0.6);
  transform: translateY(-3px);
}


.phone-ring-glow {
  display: inline-block;
  color: #111;
  animation: ringGlow 2s infinite ease-in-out;
}

@keyframes ringGlow {
  0% {
    transform: rotate(0deg);
    box-shadow: 0 0 0 0 rgba(0,0,0,0.3);
  }
  25% {
    transform: rotate(15deg);
  }
  50% {
    transform: rotate(-15deg);
    box-shadow: 0 0 0 18px rgba(0,0,0,0);
  }
  75% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(0deg);
    box-shadow: 0 0 0 0 rgba(0,0,0,0);
  }
}



.mobile-cta {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #163300;
    text-align: center;
    display: block;
    padding: 15px;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    z-index: 1111111;
}

