/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
  }
  .navbar-brand img {
    height: 50px;
  }

  /* Hero Section */
  .hero {
    position: relative;
    background: url('/image/iStock-1238641452-1146x600-1.jpg') no-repeat center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
  }
  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(2, 26, 250, 0.7), rgba(0,0,0,0.7));

  }
  .navbar-nav li a{
    color: white !important;
    /* background-color: red; */
  }
  .navbar-nav li a:hover{
    color: white;
    background-color: #6c6a68 !important;
  }
  .hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1.5s ease;
  }
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .wave {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100px;
  }
  h1 span {
    border-right: 3px solid #fff;
    animation: typing 3s steps(22) infinite alternate, blink 0.7s infinite;
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
  }
  @keyframes typing {
    from { width: 0 }
    to { width: 100% }
  }
  @keyframes blink {
    50% { border-color: transparent }
  }

  .service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 25px rgba(0,0,0,0.1);
}
.service-card .icon {
  transition: transform 0.3s ease;
}
.service-card:hover .icon {
  transform: rotate(10deg) scale(1.1);
}

#why-us .bg-white {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#why-us .bg-white:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 20px rgba(0,0,0,0.1);
}

/* #about-big {
  min-height: 100vh;
  background-color: lightyellow;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: zoomIn 15s ease-in-out infinite alternate;
} */
@keyframes zoomIn {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}
.about-content {
  animation: fadeInRight 1s ease-in-out;
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}
 
 /* Full Section Styling */
 .hero-unique {
  min-height: 50vh;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
              url('https://images.') center/cover no-repeat;
  padding: 60px 0;
}

/* Icon Grid Styling */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.icon-box {
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease-in-out;
}
.icon-box i {
  font-size: 2.5rem;
  color: #d3961b;
  margin-bottom: 10px;
  display: block;
}
.icon-box span {
  font-size: 1.1rem;
  font-weight: 500;
}
.icon-box:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-unique {
    text-align: center;
  }
  .icon-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Section Styling */
.hero-modern {
  min-height: 100vh;
  background: linear-gradient(135deg, rgba(2, 26, 250, 0.7), rgba(0,0,0,0.7));


  padding: 60px 0;
  overflow: hidden;
}

/* Gradient Button */
.btn-gradient {
    background: linear-gradient(135deg, rgba(182, 186, 216, 0.7), rgba(0,0,0,0.7));


  border: none;
  color: white;
  transition: all 0.3s ease;
}
.btn-gradient:hover {
    background: linear-gradient(135deg, rgba(2, 26, 250, 0.7), rgba(0,0,0,0.7));


  transform: scale(1.05);
}

/* Image Frame + Icons */
.image-frame {
  position: relative;
  display: inline-block;
}
.floating-icons {
  position: absolute;
  top: 10%;
  left: -50px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  animation: floatIcons 5s infinite ease-in-out;
}
.floating-icons .icon-box {
  background: rgba(255,255,255,0.2);
  padding: 15px;
  border-radius: 50%;
  backdrop-filter: blur(4px);
  font-size: 1.5rem;
  color: white;
  transition: transform 0.3s ease;
  background: #f9f9f9;
}
.floating-icons .icon-box:hover {
  transform: scale(1.2);
  background: rgba(255,255,255,0.4);
  /* background-color: red; */
  background: #f9f9f9;
  background: rgba(255,255,255,0.2);

}

/* Floating Animation */
@keyframes floatIcons {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-modern {
    text-align: center;
  }
  .floating-icons {
    position: static;
    flex-direction: row;
    justify-content: center;
    margin-top: 20px;
  }
}
.top-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1031;
}
.nav-big {
  font-size: 1.15rem; /* thoda bada font */
  font-weight: 500;
  /* transition: 0.9 ease; */

}

.navbar-nav .nav-link {
  padding: 0.5rem 1rem; /* har link ke andar spacing */
  /* transition: 0.9 ease; */

 

}


.navbar-nav .nav-link:hover {
  color: #f5f5ee !important; /* hover effect */
  /* background: linear-gradient(135deg, rgba(2, 26, 250, 0.7), rgba(0,0,0,0.7)); */

border-top-left-radius: 20px;
border-bottom-right-radius: 20px;
  /* transition: 0.9 ease; */
}

.stats-section {
  background: url("./image/iStock-1238641452-1146x600-1.jpg") no-repeat center center/cover; /* 👈 apna electrician bg yaha dalna */
  position: relative;
  color: #fff;
}

/* Dark overlay */
.stats-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.6); /* dark overlay */
  z-index: 0;
}

.stat-wrap {
  position: relative;
  padding: 40px 20px;
  z-index: 1;
  transition: transform 0.3s ease;
}

.stat-wrap:hover {
  transform: translateY(-8px);
}

.stat-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, rgba(2, 26, 250, 0.7), rgba(0,0,0,0.7));


  margin: 0 auto 15px;
  border-radius: 5px;
}

.stat-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  color: #ffcc00;
  background: rgba(255,255,255,0.1);
  border: 2px solid #ffcc00;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: #fff;
}

.stat-text {
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.testimonial-section {
    background: linear-gradient(135deg, rgba(2, 26, 250, 0.7), rgba(0,0,0,0.7));


  color: #fff;
  position: relative;
}

.section-title h2 {
  color: #fff;
  font-weight: 700;
}

.section-title p {
  color: #f8f9fa;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.15);
  padding: 25px;
  border-radius: 15px;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease, background 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.25);
}

.testimonial-content p {
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #fff;
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: 20px;
  gap: 15px;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid #fff;
}

.testimonial-author h5 {
  margin: 0;
  font-size: 1.2rem;
  color: #fff;
}

.testimonial-author span {
  font-size: 0.9rem;
  color: #f1f1f1;
}

.cta-section {
  background: linear-gradient(120deg, #6c6a68, #0b0a09);

  position: relative;
  overflow: hidden;
}

/* Decorative background shapes */
.cta-section::before,
.cta-section::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  z-index: 0;
}
.cta-section::before {
  top: -50px; left: -50px;
}
.cta-section::after {
  bottom: -50px; right: -50px;
}

.cta-section h2 {
  font-size: 2rem;
  z-index: 1;
  position: relative;
}

.cta-section p {
  font-size: 1.1rem;
  z-index: 1;
  position: relative;
}

/* CTA Buttons */
.btn-cta {
  display: inline-block;
  padding: 12px 25px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: #222;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 0 0 rgba(0,0,0,0);
  z-index: 1;
  position: relative;
}

.btn-cta.alt {
  background: transparent;
  border: 2px solid #fff;
}

.btn-cta:hover {
  background: #fff;
  color: #ff6600;
  box-shadow: 0 0 15px rgba(255,255,255,0.6);
  transform: translateY(-3px);
}

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



.service-box {
  transition: all 0.4s ease;
  background: #f9f9f9;
}
.service-box:hover {
  transform: translateY(-10px);
  background: #fff8f0;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.service-box .btn {
  transition: 0.3s ease;
  background-color: #f1f1f1;
}
.service-box .btn:hover {
  background: #b5aeae;
  color: #fff;
}


.footer-link {
  color: #bbb;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  transition: color 0.3s ease, transform 0.2s ease;
}
.footer-link:hover {
  color: #ff9900;
  transform: translateX(5px);
}
.social {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff9900;
  transition: all 0.3s ease;
  text-decoration: none;
}
.social:hover {
  background: #ff9900;
  color: #111;
  transform: rotate(360deg);
}