
/* General Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  scroll-behavior: smooth;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  padding-top: 50px;
}

.nav-link.active {
  font-weight: bold;
  color: #f7c600 !important;
  border-bottom: 2px solid #f7c600;
}

/* Hero Section with Background Slideshow */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  color: #fff;
}

.hero .carousel-inner {
  height: 100%;
}

.hero-slide {
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(17, 17, 17, 0.6); /* dark overlay */
  z-index: 1;
}

.hero-content {
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Hero Heading & Button */
.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

.hero .btn {
  margin-top: 1.5rem;
  font-weight: 500;
}

/* Section Titles and Subtitles */
.section-title {
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #f7c600;
  margin: 0.5rem auto 0;
}

.section-subtitle {
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  color: #555;
}

.footer-section-header{
  color: #f7c600;
}

/* Enhanced Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
  padding: 0 1rem;
}

.service-card {
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
  border: 1px solid rgba(247, 198, 0, 0.1);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #f7c600, #ffd700, #f7c600);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { background-position: -200% 0; }
  50% { background-position: 200% 0; }
}

/* Hover effects removed per user request */

.service-card-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.service-icon-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #333 0%, #555 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 3;
  transition: all 0.3s ease;
}

.service-icon i {
  font-size: 2rem;
  color: #f7c600;
  transition: all 0.3s ease;
}

.service-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(247, 198, 0, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 1;
}

/* All hover effects removed per user request */

.service-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.service-description {
  color: #666;
  line-height: 1.6;
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* Overlay styles removed - no hover interactions */

/* Hide portfolio section per user request */
#portfolio {
  display: none;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

/* Enhanced Button Styles */
.btn-enhanced {
  background: linear-gradient(135deg, #333 0%, #555 100%);
  color: white;
  border: none;
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.btn-enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-enhanced:hover::before {
  left: 100%;
}

.btn-enhanced:hover {
  background: linear-gradient(135deg, #f7c600 0%, #ffd700 100%);
  color: #333;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-icon {
  transition: transform 0.3s ease;
}

.btn-enhanced:hover .btn-icon {
  transform: translateX(5px);
}

/* About Section */
#about img {
  border-radius: 8px;
}

#about .btn {
  background-color: #333;
  border: none;
  padding: 10px 24px;
}

/* Portfolio Section */
#portfolio img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#portfolio img:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.what-we-do {
  background-color: #fff;
}

/* Legacy service styles - keeping for backward compatibility but hidden */
.arrow-flow,
.service-item,
.circle,
.circle-icon,
.service-label {
  display: none;
}

#services .btn-container {
  display: flex;
  justify-content: center;
  margin-top: 2rem; 
}

#services .btn-container .btn {
  background-color: #333;
  border: none;
  padding: 10px 24px;
  color: #fff;
}

footer i {
  min-width: 30px;
  text-align: center;
}

#services .btn-container .btn:hover {
  background-color: #f7c600;
}

.work_section {
  .work_container {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1%;

    .box {
      min-width: 300px;
      display: flex;
      align-items: stretch;

      img {
        width: 100%;
      }

      &.b-2,
      &.b-3 {
        width: 43.5%;
      }


      &.b-1,
      &.b-4 {
        width: 56.5%;
      }
    }
  }

}

.heading_container {
  align-items: center;
  margin-bottom: 45px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

#portfolio .container{
  padding-bottom: 100px;
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
  }

  .service-card {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 767.98px) {
  .section-title {
    font-size: 1.5rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  /* Enhanced Services Mobile Styles */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
    padding: 0 0.5rem;
  }

  .service-card {
    padding: 2rem 1.5rem;
    margin: 0 auto;
    max-width: 350px;
  }

  .service-icon {
    width: 70px;
    height: 70px;
  }

  .service-icon i {
    font-size: 1.8rem;
  }

  .service-title {
    font-size: 1.2rem;
  }

  .service-description {
    font-size: 0.9rem;
  }

  .btn-enhanced {
    padding: 12px 30px;
    font-size: 0.9rem;
  }

  /* Legacy styles for compatibility */
  .service-item {
    width: 80%; 
    margin: 0 auto 2rem auto; 
    right: 0;
  }

  .circle,
  .service-label {
    right: 0; 
    bottom: 0;
    text-align: center;
  }

  footer p {
    font-size: 0.9rem;
  }

    #about .row {
    flex-direction: column;
    text-align: center;
  }

  #about .col-lg-6 {
    max-width: 100%;
    flex: 0 0 100%;
  }

  #about img {
    margin-bottom: 1.5rem;
    max-width: 100%;
    height: auto;
  }

  #portfolio .heading_container{
    flex-direction: column;
    text-align: center;
  }

    #portfolio .work_container .box {
    width: 100%;
  }

  #contact .row {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .contact-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .contact-form form {
    width: 90%;
    max-width: 400px;
  }
  
  .form-label{
    display: none;
  }

  .google-map-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
  }

    .footer-services,
  .footer-links {
    display: none;
  }

  .footer-bottom-text {
    font-size: 0.8rem;
    text-align: center;
  }

  .footer-social-icons {
    text-align: center;
    margin-top: 0.5rem;
  }

}

