/* Hero CTA Section */
.hero-cta-section {
  position: relative;
  padding: 70px 0;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-cta-section .hero-bg-layer {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  z-index: 0;
  overflow: hidden;
}

.hero-cta-section .gradient-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(135deg, #0f172a 0%, #1e293b 25%, #334155 50%, #1e293b 75%, #0f172a 100%); */
   background-size: cover;

  /* animation: gradientShift 15s ease infinite; */
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.hero-cta-section .grid-pattern {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  /* background-image: 
    linear-gradient(rgba(45, 212, 191, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 212, 191, 0.03) 1px, transparent 1px); */
  background-size: 50px 50px;
  opacity: 0.5;
}

.hero-cta-section::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;

}

.hero-cta-section .auto-container {
  position: relative;
  z-index: 2;
}

.hero-cta-section .content-box {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 15px;
}

.hero-cta-section .hero-title {
  font-size: 56px;
  line-height: 1.2;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.hero-cta-section .hero-title .highlight {
  color: #e6ac35;
}

.hero-cta-section .hero-description {
  font-size: 18px;
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.95;
}

.hero-cta-section .btn-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-cta-section .theme-btn {
  padding: 16px 36px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.hero-cta-section .btn-primary {
  background-color: #0b26b6;
  color: #ffffff;
  border-color: #0b26b6;
}

.hero-cta-section .btn-primary:hover {
  background-color: #0b26b6;
  border-color: #0b26b6;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(45, 212, 191, 0.3);
}

.hero-cta-section .btn-secondary {
  background-color: #ffffff;
  color: #1e293b;
  border-color: #e6ac35;
}

.hero-cta-section .btn-secondary:hover {
  background-color: #e6ac35;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(45, 212, 191, 0.3);
}

.hero-cta-section .contact-info-row {
  display: flex;
  gap: 60px;
  justify-content: center;
  flex-wrap: wrap;
 
}

.hero-cta-section .contact-info-item {
  text-align: center;
  min-width: 200px;
}

.hero-cta-section .icon-circle {
  width: 64px;
  height: 64px;
  background-color: transparent;
  border: 2px solid #e6ac35;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: all 0.3s ease;
}

.hero-cta-section .contact-info-item:hover .icon-circle {
  background-color: #e6ac35;
  transform: scale(1.1);
}

.hero-cta-section .icon-circle i {
  font-size: 24px;
  color: #e6ac35;
  transition: all 0.3s ease;
}

.hero-cta-section .contact-info-item:hover .icon-circle i {
  color: #ffffff;
}

.hero-cta-section .contact-info-item h5 {
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-cta-section .contact-info-item p {
  font-size: 16px;
  color: #ffffff;
  margin: 0;
  opacity: 0.95;
}

.hero-cta-section .contact-info-item a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.hero-cta-section .contact-info-item a:hover {
  color: #ffd700;
}

/* Responsive Design */
@media only screen and (max-width: 1199px) {
  .hero-cta-section .hero-title {
    font-size: 48px;
  }
}

@media only screen and (max-width: 991px) {
  .hero-cta-section {
    padding: 80px 0;
    min-height: 600px;
  }

  .hero-cta-section .hero-title {
    font-size: 42px;
  }

  .hero-cta-section .hero-description {
    font-size: 16px;
  }

  .hero-cta-section .contact-info-row {
    gap: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .hero-cta-section {
    padding: 60px 0;
    min-height: auto;
  }

  .hero-cta-section .hero-title {
    font-size: 36px;
  }

  .hero-cta-section .hero-description {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .hero-cta-section .btn-group {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
  }

  .hero-cta-section .theme-btn {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .hero-cta-section .contact-info-row {
    flex-direction: column;
    gap: 30px;
  }

  .hero-cta-section .contact-info-item {
    min-width: auto;
  }
}

@media only screen and (max-width: 575px) {
  .hero-cta-section .hero-title {
    font-size: 28px;
  }
}

