/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
  }
  
  body, html {
    height: 100%;
  }
  
  .navbar-container {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    font-family: Arial, sans-serif;
  }
  
  .header-top {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    background: #f5f5f5;
    border-bottom: 1px solid #e0e0e0;
  }
  
  .logo-img {
    height: 90px;
    width: auto;
    object-fit: contain;
  }
  
  .header-text {
    margin-left: 20px;
  }
  
  .header-text h1 {
    font-size: 1.5rem;
    color: #333;
    margin: 0;
    font-weight: bold;
  }
  
  .header-text .tagline {
    font-size: 0.9rem;
    color: #666;
    margin: 3px 0 0;
    font-style: italic;
  }
  
  .header-text .legal {
    font-size: 0.7rem;
    color: #777;
    margin: 5px 0 0;
  }
  
  .navbar {
    width: 100%;
    padding: 0 20px;
    background: #003366;
  }
  
  .nav-links {
    display: flex;
    gap: 25px;
    padding: 10px 0;
  }
  
  .nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    padding: 8px 0;
    position: relative;
    transition: all 0.3s;
    font-weight: 500;
  }
  
  .nav-links a:hover {
    color: #f2aa4c;
  }
  
  /* Mobile Styles */
  .nav-toggle {
    display: none;
  }
  
  .hamburger {
    display: none;
    font-size: 1.8rem;
    color: #f2aa4c;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }
  
  @media (max-width: 992px) {
    .nav-links {
      gap: 15px;
    }
  }
  
  @media (max-width: 768px) {
    .header-top {
      flex-direction: column;
      align-items: flex-start;
      padding: 15px;
    }
    
    .header-text {
      margin-left: 0;
      margin-top: 10px;
    }
    
    .hamburger {
      display: block;
    }
  
    .nav-links {
      position: fixed;
      top: 160px;
      left: -100%;
      width: 100%;
      height: calc(100vh - 160px);
      background: #003366;
      flex-direction: column;
      align-items: flex-start;
      padding: 20px;
      gap: 0;
      transition: left 0.4s ease;
    }
  
    .nav-toggle:checked ~ .nav-links {
      left: 0;
    }
  
    .nav-links a {
      width: 100%;
      padding: 15px 0;
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }
  }
  
  @media (max-width: 480px) {
    .header-text h1 {
      font-size: 1.3rem;
    }
    
    .nav-links {
      top: 180px;
      height: calc(100vh - 140px);
    }
  }
  
/* Add these styles to your service.css */

/* Hero Section Enhancements */
.services-hero {
  position: relative;
  height: 90vh;
  background: url('../Assets/SERVICE/service-bg.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero-overlay h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  animation: fadeInDown 1s ease;
}

.hero-overlay p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease 0.3s both;
}

.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  color: white;
  animation: bounce 2s infinite;
  cursor: pointer;
}

/* Services Section Enhancements */
.section-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
  padding: 0 1rem;
}

.section-intro h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 1rem;
  position: relative;
}

.section-intro h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #f2aa4c;
}

.section-intro p {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1rem;
}

.service-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  opacity: 0;
  transform: translateY(30px);
}

.service-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.service-img-container {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.service-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover img {
  transform: scale(1.1);
}

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(242, 170, 76, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover .service-overlay {
  opacity: 1;
}

.service-icon {
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #f2aa4c;
}

.service-content {
  padding: 1.5rem;
}

.service-content h3 {
  font-size: 1.4rem;
  color: #333;
  margin-bottom: 1rem;
  text-align: center;
}

.service-content p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  text-align: center;
}

.service-btn {
  display: block;
  text-align: center;
  color: #f2aa4c;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-btn i {
  margin-left: 5px;
  transition: margin-left 0.3s ease;
}

.service-btn:hover {
  color: #e67e22;
}

.service-btn:hover i {
  margin-left: 10px;
}

/* CTA Section */
.service-cta {
  background: linear-gradient(135deg, #2c3e50 0%, #1a2530 100%);
  color: white;
  padding: 5rem 1rem;
  text-align: center;
  margin-top: 4rem;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.service-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.service-cta p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #ccc;
}

.cta-btn {
  display: inline-block;
  background: #f2aa4c;
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.cta-btn:hover {
  background: #e67e22;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.cta-btn i {
  margin-left: 8px;
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-20px) translateX(-50%);
  }
  60% {
    transform: translateY(-10px) translateX(-50%);
  }
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .hero-overlay h1 {
    font-size: 2.8rem;
  }
  
  .hero-overlay p {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .services-hero {
    height: 70vh;
  }
  
  .hero-overlay h1 {
    font-size: 2.2rem;
  }
  
  .hero-overlay p {
    font-size: 1.1rem;
  }
  
  .section-intro h2 {
    font-size: 2rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .service-cta h2 {
    font-size: 2rem;
  }
}


/* Footer */
/* Footer Styling */
.footer {
  background: #111;
  color: #eee;
  padding: 3rem 1rem 2rem;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer h2 {
  margin-bottom: 0.5rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: #f2aa4c;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer p {
  margin-bottom: -0.5rem;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: #ccc;
  line-height: 1.6;
}

.social-icons {
  margin: 1.5rem 0;
}

.social-icons a {
  color: #f2aa4c;
  font-size: 2.2rem;
  margin: 0 1.2rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.social-icons a:hover {
  color: #fff;
  transform: translateY(-5px);
}

/* Flexbox Layout for Footer Details */
.footer-details {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 2.5rem 0;
  text-align: left;
  gap: 2rem;
}

.footer-contact, 
.quick-links, 
.footer-services {
  flex: 1;
  min-width: 250px;
  padding: 0 1rem;
}

.footer-contact p, 
.quick-links p, 
.footer-services p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #f2aa4c;
  font-weight: 500;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-contact p::after,
.quick-links p::after,
.footer-services p::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: #f2aa4c;
}

.footer-contact p i,
.quick-links a i,
.footer-services a i {
  margin-right: 8px;
  font-size: 0.9rem;
}

.footer-contact p {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  color: #ccc;
}

.footer-contact p i {
  margin-top: 3px;
}

.quick-links ul,
.footer-services ul {
  list-style-type: none;
  padding: 0;
}

.quick-links li,
.footer-services li {
  margin-bottom: 0.8rem;
}

.quick-links a,
.footer-services a {
  color: #ccc;
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
  padding: 0.3rem 0;
  font-size: 0.95rem;
}

.quick-links a:hover,
.footer-services a:hover {
  color: #f2aa4c;
  transform: translateX(5px);
}

.copyright {
  font-size: 0.9rem;
  color: #999;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #333;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer {
    padding: 2rem 1rem;
  }
  
  .footer-details {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  
  .footer-contact p,
  .quick-links p,
  .footer-services p {
    justify-content: center;
  }
  
  .footer-contact p::after,
  .quick-links p::after,
  .footer-services p::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .quick-links a,
  .footer-services a {
    justify-content: center;
  }
  
  .social-icons a {
    font-size: 1.8rem;
    margin: 0 0.8rem;
  }
}

@media (min-width: 1024px) {
  .footer {
    padding: 4rem 2rem;
  }
}
