body {
  height: 100vh;
  width: 100%;
  margin: 0px;
  padding: 0px;
  background: #0d0d0d;
  font-family: "Segoe UI", sans-serif;
  box-sizing: border-box;
}

/* NAVBAR */
.navbar {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
}

/* HERO */
.hero-carousel {
  height: 100vh;
}

.carousel-item {
  height: 100vh;
  position: relative;
}

.carousel-item img {
  height: 100vh;
  object-fit: cover;
  transform: scale(1.1);
  transition: transform 6s ease;
}

.carousel-item.active img {
  transform: scale(1);
}

/* DARK OVERLAY */
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.carousel-caption {
  z-index: 2;
  bottom: 30%;
}

/* TEXT ANIMATION */
.animate-text {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease;
}

.carousel-item.active .animate-text {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.3s;
}
.delay-2 {
  transition-delay: 0.6s;
}

/* GOLD BUTTON */
.btn-gold {
  background: #ffb400;
  color: black;
  padding: 12px 30px;
  border-radius: 30px;
  transition: 0.3s;
}

.btn-gold:hover {
  background: white;
  transform: scale(1.05);
}

/* GLASSMORPHISM CARD */

.glass-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: 0.4s;
}

.glass-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border: 3px solid white;
}

/*  SERVICES SECTION */

.services-section {
  background: #111;
}

.service-card {
  background: #1a1a1a;
  padding: 20px 25px;
  border-radius: 20px;
  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid #222;
}

.service-card h4 {
  color: white;
  margin-top: 20px;
}

.service-card p {
  color: #aaa;
  font-size: 14px;
}

/* Icon Style */
.service-icon {
  font-size: 45px;
  color: #ffb400;
  transition: 0.4s ease;
}

/* Hover Effects */
.service-card:hover {
  transform: translateY(-10px);
  border-color: #ffb400;
  box-shadow: 0 10px 30px rgba(255, 180, 0, 0.2);
}

.service-card:hover .service-icon {
  transform: scale(1.2);
}

/* Glow Animation Effect */
.service-card::before {
  content: "";
  position: absolute;
  top: -100%;
  left: -100%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 180, 0, 0.08),
    transparent
  );
  transform: rotate(45deg);
  transition: 0.7s;
}

.service-card:hover::before {
  top: 100%;
  left: 100%;
}

.about-section-image {
  background-image: url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?q=80&w=1600");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100vh;
  min-height: 400px;
}

/* about section image */
@media (max-width: 768px) {
  .about-section-image {
    height: 60vh;
  }
}

.projects-section-image {
  background-image: url("https://www.maplacp.com/wp-content/uploads/2025/06/modern-home-exterior-black-acp-sheet-design.webp ");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100vh;
  min-height: 400px;
}

/* project section image */
@media (max-width: 768px) {
  .projects-section-image {
    height: 60vh;
  }
}

@media (max-width: 768px) {
  .about-section-image {
    height: 60vh;
  }
}

/* blog section image */
.blog-section-image {
  background-image: url("/image/blog.png ");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 93vh;
  min-height: 400px;
}

/* Optional: Adjust height for smaller devices */
@media (max-width: 768px) {
  .blog-section-image {
    height: 60vh; /* Reduces height on tablets/mobile for better responsiveness */
  }
}

/* blog section image */
.contact-section-image {
  background-image: url("https://webbuilderzone.com/wp-content/uploads/2019/04/contact-us-banner.jpg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 93vh;
  min-height: 400px;
}

/* Optional: Adjust height for smaller devices */
@media (max-width: 768px) {
  .contact-section-image {
    height: 60vh; /* Reduces height on tablets/mobile for better responsiveness */
  }
}
