
/* --------------------------------------------------
   Reset & Base Styles
-------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: #333333;
  line-height: 1.6;
  background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  background-color: #F7A323;
  color: #0B1221;
  padding: 12px 28px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid #F7A323;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
}

.btn:hover {
  background-color: transparent;
  color: #F7A323;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  font-size: 2.5rem;
  color: #0B1221;
}

/* --------------------------------------------------
   Hero Slider
-------------------------------------------------- */
.hero-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
}

.slide.active {
  opacity: 1;
}

.slide::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(11, 18, 33, 0.6);
}

.slide-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.slide-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: #fff;
}

.slide-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #fff;
}

.slider-controls {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  z-index: 10;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.5);
  margin: 0 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  background-color: #F7A323;
  transform: scale(1.2);
}

/* --------------------------------------------------
   Features
-------------------------------------------------- */
.features {
  background-color: #F8F9FA;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.feature-item {
  text-align: center;
  padding: 30px 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.feature-icon {
  font-size: 3rem;
  color: #F7A323;
  margin-bottom: 20px;
}

/* --------------------------------------------------
   About
-------------------------------------------------- */
.about {
  background-color: #F8F9FA;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.about-image img {
  width: 100%;
  transition: all 0.3s ease;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

/* --------------------------------------------------
   Counter Section
-------------------------------------------------- */
.stats-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-card {
  background: white;
  border-radius: 10px;
  padding: 40px 20px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: white;
}

.stat-card:nth-child(1) .stat-icon { background-color: #0B1221; }
.stat-card:nth-child(2) .stat-icon { background-color: #F7A323; }
.stat-card:nth-child(3) .stat-icon { background-color: #64D3C2; }
.stat-card:nth-child(4) .stat-icon { background-color: #FF6B6B; }

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0B1221;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1.1rem;
  color: #555;
  font-weight: 500;
}

/* --------------------------------------------------
   Services
-------------------------------------------------- */
.services {
  background-color: #ffffff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-item {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-decoration: none;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service-image {
  height: 200px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.service-item:hover .service-image img {
  transform: scale(1.1);
}

.service-content {
  padding: 25px;
}

.service-content h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #0B1221;
}

.service-content p {
  font-size: 1rem;
  margin-bottom: 5px;
  color: #0B1221;
}

.services-cta {
  text-align: center;
  margin-top: 50px;
}

/* --------------------------------------------------
   Testimonials
-------------------------------------------------- */
.testimonials {
  background-color: #F8F9FA;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.testimonial-item:hover {
  transform: translateY(-5px);
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.client-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}

.client-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-info h4 {
  margin-bottom: 5px;
  font-size: 1.2rem;
}

.client-info p {
  margin-bottom: 0;
  font-size: 0.9rem;
  opacity: 0.7;
}

.testimonial-text {
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-rating {
  color: #F7A323;
}

/* --------------------------------------------------
   FAQ Section
-------------------------------------------------- */
.faq-section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0B1221;
  margin-bottom: 15px;
}

.section-subtitle {
  color: #555;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.faq-question {
  background-color: white;
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: #0B1221;
  transition: background-color 0.3s;
}

.faq-question:hover {
  background-color: #f5f5f5;
}

.faq-question i {
  transition: transform 0.3s;
}

.faq-answer {
  background-color: #f9f9f9;
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s, padding 0.3s;
}

.faq-item.active .faq-answer {
  padding: 20px 25px;
  max-height: 500px;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* --------------------------------------------------
   CTA Section
-------------------------------------------------- */
.cta {
  background: linear-gradient(135deg, #0B1221 0%, #1a2a3a 100%);
  color: #ffffff;
  text-align: center;
  padding: 100px 20px;
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

/* --------------------------------------------------
   Brand Carousel
-------------------------------------------------- */
.carousel {
  width: 100%;
  overflow: hidden;
  padding: 30px 0;
  position: relative;
  background: #fff;
  margin-top: 10px;
}

.logo-track {
  display: flex;
  width: max-content;
}

.logo-track img {
  height: 130px;
  margin: 0 90px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.logo-track img:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* --------------------------------------------------
   Responsive Design
-------------------------------------------------- */
@media (max-width: 992px) {
  .features-grid,
  .services-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-content {
    grid-template-columns: 1fr;
  }
  .stats-section {
    padding: 60px 0;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .logo-track img {
    height: 90px;
    margin: 0 40px;
  }
  .faq-section {
    padding: 60px 0;
  }
}

@media (max-width: 576px) {
  .features-grid,
  .services-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .slide-content h1 {
    font-size: 2rem;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .hero-slider {
    margin-top: -40px;
  }
}
