/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Top bar styles */
.top-bar {
  background-color: #4a90e2;
  color: white;
  padding: 8px 0;
  font-size: 14px;
}

.top-bar a{
 text-decoration: none;
  color: white;
}


.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.contact-info,
.social-info {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.contact-info i,
.social-info i {
  font-size: 16px;
  flex-shrink: 0;
}

/* Header styles */
.header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo-img {
  height: 50px;
  width: auto;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 40px;
  margin: 0;
}

.nav-list a {
  text-decoration: none;
  color: #4a90e2;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.nav-list a:hover {
  color: #2a6cba;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: #4a90e2;
  cursor: pointer;
}

/* Hero section */
.hero {
  background: linear-gradient(135deg, #4a90e2 0%, #2a6cba 100%);
  color: white;
  padding: 80px 0;
  min-height: 500px;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 20px;
  font-weight: 400;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
  line-height: 1.6;
}

.cta-button {
  background-color: #ff6b35;
  color: white;
  border: none;
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  border-radius: 5px;
}

.cta-button:hover {
  background-color: #e55a2b;
  transform: translateY(-2px);
}

.hero-image {
  flex: 1;
  text-align: center;
}

/* Carousel styles */
.carousel-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.carousel-wrapper {
  position: relative;
  width: 100%;
  height: 400px;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Navigation arrows */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #4a90e2;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.carousel-btn:hover {
  background-color: white;
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn-prev {
  left: 15px;
}

.carousel-btn-next {
  right: 15px;
}

/* Dots indicator */
.carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid white;
  background-color: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background-color: white;
}

.carousel-dot:hover {
  transform: scale(1.2);
}

/* About section */
.about {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.section-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3.5rem;
  text-align: center;
  margin-bottom: 30px;
  color: #333;
  font-weight: 400;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: #ff6b35;
  margin: 10px auto 0 auto;
}

.about-description {
  
  font-size: 1.2rem;
  line-height: 1.9;
  color: #555;
  max-width: 950px;
  margin: 0 auto 80px auto;
  text-align: justify;
  padding: 0 20px;
 
}

.about-images {
  margin-bottom: 50px;
}

.image-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  justify-content: center;
}

.image-row img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.image-full {
  text-align: center;
}

.image-full img {
  width: 100%;
  max-width: 600px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.services-info {
  text-align: center;
}

.services-description {
  font-size: 1.2rem;
  line-height: 1.9;
  color: #555;
  max-width: 950px;
  margin: 0 auto 80px auto;
  text-align: justify;
  padding: 0 20px;
}

.equipment-list {
  display: grid;
  justify-content: center;
  flex-wrap: wrap;
}

.equipment-item {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  color: #333;
  text-align: center;
  padding: 10px 0;
  border-left: 4px solid #ff6b35;
  padding-left: 15px;
  font-weight: 400;
}

.equipment-item-2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  color: #333;
  padding: 10px 0;
  border-left: 4px solid #2a6cba;
  padding-left: 15px;
  font-weight: 400;
}

/* Contact CTA section */
.contact-cta {
  background: linear-gradient(135deg, #4a90e2 0%, #2a6cba 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
  margin-top: 80px;
}

.contact-cta h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 400;
}

.contact-cta p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

.contact-button {
  background-color: #ff6b35;
  color: white;
  border: none;
  padding: 18px 45px;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.contact-button:hover {
  background-color: #e55a2b;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
}

/* Enhanced Footer */
.footer {
  background-color: #2c3e50;
  color: white;
  padding: 60px 0 30px 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 50px;
  margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
  font-family: "Bebas Neue", sans-serif;
  color: white;
  margin-bottom: 20px;
  font-weight: 400;
}

.footer-section h3 {
  font-size: 1.8rem;
  color: #4a90e2;
}

.footer-section h4 {
  font-size: 1.4rem;
}

.footer-section p {
  color: #bdc3c7;
  margin-bottom: 15px;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section ul li a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #4a90e2;
}

.footer-bottom {
  border-top: 1px solid #34495e;
  padding-top: 30px;
  text-align: center;
}

.footer-bottom p {
  color: #95a5a6;
}

/* RESPONSIVE DESIGN - MOBILE FIRST */
@media (max-width: 768px) {
  .top-bar-content {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .mobile-menu-btn {
    display: block;
  }

  .nav-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    gap: 20px;
  }

  .nav-list.active {
    display: flex;
  }

  /* Hero section mobile */
  .hero {
    padding: 50px 0;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-text p {
    font-size: 1.1rem;
  }

  /* Carousel mobile styles */
  .hero-image {
    width: 100%;
    max-width: 100%;
  }

  .carousel-container {
    max-width: 100%;
    width: 100%;
  }

  .carousel-wrapper {
    height: 280px;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .carousel-btn-prev {
    left: 10px;
  }

  .carousel-btn-next {
    right: 10px;
  }

  .carousel-dots {
    bottom: 15px;
  }

  .carousel-dot {
    width: 10px;
    height: 10px;
  }

  /* About section mobile */
  .about {
    padding: 50px 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .image-row {
    flex-direction: column;
    align-items: center;
  }

  .image-row img {
    width: 100%;
    max-width: 300px;
  }

  .equipment-list {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .equipment-item {
    text-align: left;
  }

  /* Contact CTA mobile */
  .contact-cta {
    padding: 50px 0;
  }

  .contact-cta h2 {
    font-size: 2rem;
  }

  .contact-cta p {
    font-size: 1.1rem;
  }

  /* Footer mobile */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero {
    padding: 40px 0;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .carousel-wrapper {
    height: 220px;
  }

  .carousel-container {
    border-radius: 8px;
  }

  .carousel-btn {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }

  .carousel-btn-prev {
    left: 8px;
  }

  .carousel-btn-next {
    right: 8px;
  }

  .carousel-dots {
    bottom: 12px;
  }

  .carousel-dot {
    width: 8px;
    height: 8px;
  }

  .contact-cta h2 {
    font-size: 1.8rem;
  }

  .contact-cta p {
    font-size: 1rem;
  }

  .contact-button {
    padding: 15px 35px;
    font-size: 1rem;
  }
}
