/* Hero Section */
.hero {
  height: 80vh;
  min-height: 600px;
  background: linear-gradient(rgba(0, 61, 122, 0.8), rgba(0, 61, 122, 0.8)), url("../images/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: var(--white);
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  animation: fadeInDown 1s ease;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
  animation: fadeInUp 1s ease;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  animation: fadeIn 1.5s ease;
}

/* About Section */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-image img {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-text h3 {
  font-size: 1.5rem;
  color: var(--primary-blue);
  margin-bottom: 15px;
  margin-top: 25px;
}

.about-text h3:first-child {
  margin-top: 0;
}

.about-text p {
  margin-bottom: 15px;
  line-height: 1.7;
}

.about-text .btn {
  margin-top: 20px;
}

/* Services Section */
.services-section {
  background-color: var(--light-gray);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: var(--white);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  text-align: center;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 70px;
  height: 70px;
  background-color: var(--light-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.service-icon i {
  font-size: 30px;
  color: var(--primary-blue);
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--secondary-blue);
}

.service-card p {
  margin-bottom: 20px;
  color: var(--dark-gray);
}

.btn-link {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  transition: var(--transition);
}

.btn-link i {
  margin-left: 5px;
  transition: var(--transition);
}

.btn-link:hover {
  color: var(--secondary-blue);
}

.btn-link:hover i {
  transform: translateX(5px);
}

/* AI Solutions Section */
.ai-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.ai-text p {
  margin-bottom: 25px;
  line-height: 1.7;
}

.ai-features {
  list-style: none;
  margin-bottom: 30px;
}

.ai-features li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.ai-features i {
  color: var(--primary-blue);
  margin-right: 10px;
  font-size: 18px;
}

.ai-image img {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Projects Section */
.projects-section {
  background-color: var(--light-gray);
}

.projects-slider {
  position: relative;
  overflow: hidden;
}

.project-slide {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  height: 500px;
}

.project-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: var(--white);
}

.project-info h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.project-info p {
  margin-bottom: 15px;
  opacity: 0.9;
}

.project-info .btn-link {
  color: var(--white);
}

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.slider-prev,
.slider-next {
  background-color: var(--white);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.slider-prev:hover,
.slider-next:hover {
  background-color: var(--primary-blue);
  color: var(--white);
}

.slider-dots {
  display: flex;
  margin: 0 20px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ccc;
  margin: 0 5px;
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background-color: var(--primary-blue);
}

/* Industries Section */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}

.industry-card {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.industry-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.industry-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.industry-card h3 {
  font-size: 1.3rem;
  margin: 20px 20px 10px;
  color: var(--secondary-blue);
}

.industry-card p {
  margin: 0 20px 20px;
  color: var(--dark-gray);
}

.industry-card .btn-link {
  margin: 0 20px 20px;
  display: inline-block;
}

/* Testimonials Section */
.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonial-slide {
  padding: 20px;
}

.testimonial-content {
  background-color: var(--white);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-quote {
  margin-bottom: 20px;
}

.testimonial-quote i {
  font-size: 30px;
  color: var(--primary-blue);
  opacity: 0.3;
  margin-bottom: 15px;
  display: block;
}

.testimonial-quote p {
  font-style: italic;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
}

.testimonial-author h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--secondary-blue);
}

.testimonial-author p {
  font-size: 0.9rem;
  color: #777;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(rgba(0, 61, 122, 0.9), rgba(0, 61, 122, 0.9)), url("../images/cta-bg.jpg");
  background-size: cover;
  background-position: center;
  color: var(--white);
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.btn-large {
  padding: 15px 30px;
  font-size: 1.1rem;
}

/* Utility Classes */
.mt-40 {
  margin-top: 40px;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
/* Enhanced Responsive Styles */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .about-content,
  .ai-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-image,
  .ai-image {
    order: -1;
  }

  .project-slide {
    height: 400px;
  }

  .services-grid,
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-buttons,
  .ai-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .hero {
    height: 70vh;
    min-height: 500px;
  }

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

  .hero p {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .hero-buttons .btn {
    width: 100%;
    text-align: center;
  }

  .project-slide {
    height: 350px;
  }

  .services-grid,
  .industries-grid {
    grid-template-columns: 1fr;
  }

  .about-buttons,
  .ai-buttons {
    flex-direction: column;
    width: 100%;
  }

  .about-buttons .btn,
  .ai-buttons .btn {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }

  .testimonial-slide {
    padding: 10px;
  }

  .testimonial-content {
    padding: 20px;
  }

  .cta-content h2 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .service-card,
  .industry-card {
    margin-bottom: 20px;
  }

  .slider-controls {
    margin-top: 20px;
  }

  .slider-prev,
  .slider-next {
    width: 35px;
    height: 35px;
  }

  .project-slide {
    height: 300px;
  }

  .project-info {
    padding: 20px;
  }

  .project-info h3 {
    font-size: 1.3rem;
  }

  .cta-content h2 {
    font-size: 1.6rem;
  }

  .cta-content p {
    font-size: 1rem;
  }
}

