/* ===== HOMEPAGE CUSTOM STYLES ===== */
/* Note: Hero slider is handled by Elementor's Simple Slider widget */

/* ===== GENERAL SECTION STYLES ===== */
.homepage-wrapper section {
  padding: 100px 0;
}

@media (max-width: 991px) {
  .homepage-wrapper section {
    padding: 80px 0;
  }
}

@media (max-width: 767px) {
  .homepage-wrapper section {
    padding: 60px 0;
  }
}

.section-header {
  margin-bottom: 60px;
}

.section-subtitle-tag {
  display: inline-block;
  color: var(--e-global-color-primary);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.section-title {
  font-size: 42px;
  font-weight: 800;
  color: var(--e-global-color-accent);
  margin-bottom: 20px;
  line-height: 1.2;
}

@media (max-width: 767px) {
  .section-title {
    font-size: 32px;
  }
}

.section-subtitle {
  font-size: 16px;
  color: var(--e-global-color-text);
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

/* ===== COMPANY INTRO SECTION ===== */
.company-intro-section {
  background: #f8f9fa;
  padding: 80px 0;
}

@media (max-width: 991px) {
  .company-intro-section {
    padding: 60px 0;
  }
}

@media (max-width: 767px) {
  .company-intro-section {
    padding: 50px 0;
  }
}

.company-logo-big {
  position: relative;
}

.company-logo-big .logo-wrapper {
  background: linear-gradient(135deg, #0d0d3f 0%, #1a1a5e 100%);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(13, 13, 63, 0.15);
  display: inline-block;
  transition: all 0.3s ease;
}

.company-logo-big .logo-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(13, 13, 63, 0.25);
}

.company-logo-big img {
  max-width: 120px;
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 991px) {
  .company-logo-big .logo-wrapper {
    padding: 25px;
  }

  .company-logo-big img {
    max-width: 100px;
  }
}

@media (max-width: 767px) {
  .company-logo-big .logo-wrapper {
    padding: 20px;
    margin: 0 auto;
  }

  .company-logo-big img {
    max-width: 90px;
  }
}

.intro-content .section-title {
  font-size: 28px;
  color: #0d0d3f;
  margin-bottom: 20px;
  line-height: 1.3;
}

@media (max-width: 991px) {
  .intro-content .section-title {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .intro-content .section-title {
    font-size: 22px;
    text-align: center;
  }
}

.intro-text {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
}

@media (max-width: 991px) {
  .intro-text {
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .intro-text {
    font-size: 14px;
    text-align: center;
    line-height: 1.7;
  }
}

/* ===== STATS SECTION ===== */
.stats-section {
  background: linear-gradient(135deg, #0d0d3f 0%, #1a1a5e 100%);
  position: relative;
  overflow: hidden;
  padding: 60px 0;
}

@media (max-width: 991px) {
  .stats-section {
    padding: 50px 0;
  }
}

@media (max-width: 767px) {
  .stats-section {
    padding: 40px 0;
  }
}

.stats-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.03)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>')
    no-repeat bottom center;
  opacity: 0.5;
}

.stats-row {
  position: relative;
  z-index: 2;
}

.stat-item {
  text-align: center;
  color: #fff;
  padding: 20px 15px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

@media (max-width: 991px) {
  .stat-item {
    min-height: 180px;
    padding: 15px 10px;
  }
}

@media (max-width: 767px) {
  .stat-item {
    min-height: 160px;
    padding: 15px 10px;
  }
}

.stat-icon {
  font-size: 42px;
  color: var(--e-global-color-primary);
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

@media (max-width: 991px) {
  .stat-icon {
    font-size: 36px;
    margin-bottom: 12px;
  }
}

@media (max-width: 767px) {
  .stat-icon {
    font-size: 32px;
    margin-bottom: 10px;
  }
}

.stat-item:hover .stat-icon {
  transform: scale(1.1);
}

.stat-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 10px;
}

.stat-number {
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

@media (max-width: 991px) {
  .stat-number {
    font-size: 40px;
  }
}

@media (max-width: 767px) {
  .stat-number {
    font-size: 36px;
  }
}

.stat-plus,
.stat-suffix {
  font-size: 32px;
  font-weight: 800;
  color: var(--e-global-color-primary);
  margin-left: 4px;
  line-height: 1;
}

@media (max-width: 991px) {
  .stat-plus,
  .stat-suffix {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  .stat-plus,
  .stat-suffix {
    font-size: 24px;
  }
}

.stat-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
}

@media (max-width: 991px) {
  .stat-label {
    font-size: 12px;
    letter-spacing: 1px;
  }
}

@media (max-width: 767px) {
  .stat-label {
    font-size: 11px;
    letter-spacing: 0.8px;
  }
}

/* ===== QUICK SERVICES SECTION ===== */
.quick-services-section {
  background:
    linear-gradient(
      135deg,
      rgba(248, 249, 250, 0.98) 0%,
      rgba(233, 236, 239, 0.95) 100%
    ),
    url("http://localhost/wordpress/wp-content/uploads/2024/05/image-32.jpg")
      center/cover no-repeat fixed;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

@media (max-width: 991px) {
  .quick-services-section {
    padding: 60px 0;
    background-attachment: scroll;
  }
}

@media (max-width: 767px) {
  .quick-services-section {
    padding: 50px 0;
  }
}

.quick-services-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(13,13,63,0.05)" d="M0,160L48,144C96,128,192,96,288,90.7C384,85,480,107,576,128C672,149,768,171,864,165.3C960,160,1056,128,1152,122.7C1248,117,1344,139,1392,149.3L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>')
    no-repeat bottom center;
  opacity: 0.4;
  z-index: 1;
}

.quick-services-section .container {
  position: relative;
  z-index: 2;
}

.quick-services-section .section-header {
  margin-bottom: 50px;
}

.quick-services-section .section-subtitle-tag {
  color: var(--e-global-color-primary);
}

.quick-services-section .section-title {
  color: #0d0d3f;
}

.quick-service-item {
  background: #ffffff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 35px 25px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s ease;
  border: 2px solid rgba(13, 13, 63, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  box-shadow: 0 5px 20px rgba(13, 13, 63, 0.08);
}

@media (max-width: 991px) {
  .quick-service-item {
    min-height: 260px;
    padding: 30px 20px;
  }
}

@media (max-width: 767px) {
  .quick-service-item {
    min-height: 240px;
    padding: 30px 20px;
  }
}

.quick-service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(13, 13, 63, 0.15);
  border-color: var(--e-global-color-primary);
  background: #ffffff;
}

.service-icon-wrap {
  width: 80px;
  height: 80px;
  background: var(--e-global-color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.4s ease;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

@media (max-width: 991px) {
  .service-icon-wrap {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .service-icon-wrap {
    width: 65px;
    height: 65px;
  }
}

.service-icon-wrap i {
  font-size: 36px;
  color: #fff;
  transition: all 0.4s ease;
}

@media (max-width: 991px) {
  .service-icon-wrap i {
    font-size: 32px;
  }
}

@media (max-width: 767px) {
  .service-icon-wrap i {
    font-size: 28px;
  }
}

.quick-service-item:hover .service-icon-wrap {
  transform: rotateY(360deg) scale(1.1);
  background: #fff;
}

.quick-service-item:hover .service-icon-wrap i {
  color: var(--e-global-color-primary);
}

.quick-service-item h4 {
  font-size: 17px;
  font-weight: 700;
  color: #0d0d3f;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 991px) {
  .quick-service-item h4 {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .quick-service-item h4 {
    font-size: 15px;
    line-height: 1.6;
  }
}

/* ===== MAIN SERVICES SECTION ===== */
.main-services-section {
  background: #f8f9fa;
}

.service-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-card-inner {
  padding: 40px 30px;
  position: relative;
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    var(--e-global-color-primary) 0%,
    var(--e-global-color-secondary) 100%
  );
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.service-icon i {
  font-size: 32px;
  color: #fff;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-number {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 48px;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.05);
  line-height: 1;
}

.service-title {
  font-size: 22px;
  font-weight: 700;
  color: #0d0d3f;
  margin-bottom: 15px;
  line-height: 1.3;
}

.service-description {
  font-size: 15px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 25px;
}

.service-link {
  color: var(--e-global-color-primary);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.service-link:hover {
  gap: 12px;
  color: #0d0d3f;
}

.service-link i {
  transition: transform 0.3s ease;
}

.service-link:hover i {
  transform: translateX(5px);
}

.service-card-featured {
  background: linear-gradient(135deg, #0d0d3f 0%, #1a1a5e 100%);
  position: relative;
}

.service-card-featured .service-title,
.service-card-featured .service-description {
  color: #fff;
}

.service-card-featured .service-link {
  color: var(--e-global-color-primary);
}

.service-card-featured .service-number {
  color: rgba(255, 255, 255, 0.1);
}

.featured-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--e-global-color-primary);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 6px 15px;
  border-radius: 20px;
  letter-spacing: 1px;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  background: #fff;
  padding: 100px 0;
  overflow: hidden;
}

@media (max-width: 991px) {
  .about-section {
    padding: 70px 0;
  }
}

@media (max-width: 767px) {
  .about-section {
    padding: 60px 0;
  }
}

.about-image-wrapper {
  position: relative;
  z-index: 2;
}

.about-image-main {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-image-main img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  transition: transform 0.5s ease;
}

.about-image-wrapper:hover .about-image-main img {
  transform: scale(1.05);
}

.about-experience-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(
    135deg,
    var(--e-global-color-primary) 0%,
    var(--e-global-color-secondary) 100%
  );
  border-radius: 20px;
  padding: 4px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  z-index: 3;
  animation: float 3s ease-in-out infinite;
}

@media (max-width: 767px) {
  .about-experience-badge {
    bottom: 20px;
    right: 20px;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.badge-inner {
  background: #fff;
  border-radius: 16px;
  padding: 25px 30px;
  text-align: center;
}

@media (max-width: 991px) {
  .badge-inner {
    padding: 20px 25px;
  }
}

@media (max-width: 767px) {
  .badge-inner {
    padding: 18px 20px;
  }
}

.badge-inner i {
  font-size: 32px;
  color: var(--e-global-color-primary);
  margin-bottom: 10px;
  display: block;
}

@media (max-width: 767px) {
  .badge-inner i {
    font-size: 28px;
  }
}

.badge-inner h3 {
  font-size: 36px;
  font-weight: 800;
  color: #0d0d3f;
  margin: 0;
  line-height: 1;
}

@media (max-width: 767px) {
  .badge-inner h3 {
    font-size: 32px;
  }
}

.badge-inner p {
  font-size: 13px;
  font-weight: 700;
  color: var(--e-global-color-text);
  margin: 8px 0 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 767px) {
  .badge-inner p {
    font-size: 11px;
  }
}

.about-shape-1,
.about-shape-2 {
  position: absolute;
  border-radius: 20px;
  z-index: 1;
}

.about-shape-1 {
  width: 200px;
  height: 200px;
  background: var(--e-global-color-primary);
  opacity: 0.1;
  top: -30px;
  left: -30px;
}

.about-shape-2 {
  width: 150px;
  height: 150px;
  background: var(--e-global-color-secondary);
  opacity: 0.1;
  bottom: -20px;
  right: -20px;
}

@media (max-width: 767px) {
  .about-shape-1,
  .about-shape-2 {
    display: none;
  }
}

.about-content {
  padding-left: 0;
}

@media (max-width: 991px) {
  .about-content {
    padding-left: 0;
    margin-top: 40px;
  }
}

.about-content .section-subtitle-tag {
  color: var(--e-global-color-primary);
}

.about-content .section-title {
  font-size: 38px;
  color: #0d0d3f;
  margin-bottom: 20px;
}

@media (max-width: 991px) {
  .about-content .section-title {
    font-size: 32px;
  }
}

@media (max-width: 767px) {
  .about-content .section-title {
    font-size: 28px;
  }
}

.about-highlight {
  font-size: 20px;
  font-weight: 600;
  color: var(--e-global-color-primary);
  line-height: 1.6;
  margin-bottom: 20px;
}

@media (max-width: 991px) {
  .about-highlight {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .about-highlight {
    font-size: 17px;
  }
}

.about-text {
  font-size: 16px;
  color: var(--e-global-color-text);
  line-height: 1.8;
  margin-bottom: 15px;
}

@media (max-width: 991px) {
  .about-text {
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .about-text {
    font-size: 14px;
    line-height: 1.7;
  }
}

.about-features {
  margin-top: 30px;
}

@media (max-width: 767px) {
  .about-features {
    margin-top: 25px;
  }
}

.about-feature-item {
  display: flex;
  align-items: center;
  padding: 12px 0;
}

@media (max-width: 767px) {
  .about-feature-item {
    padding: 10px 0;
  }
}

.about-feature-item i {
  font-size: 20px;
  color: var(--e-global-color-primary);
  margin-right: 12px;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .about-feature-item i {
    font-size: 18px;
    margin-right: 10px;
  }
}

.about-feature-item span {
  font-size: 15px;
  font-weight: 600;
  color: #0d0d3f;
  line-height: 1.4;
}

@media (max-width: 767px) {
  .about-feature-item span {
    font-size: 14px;
  }
}

.about-content .btn {
  margin-top: 30px;
}

@media (max-width: 767px) {
  .about-content .btn {
    margin-top: 25px;
    width: 100%;
    text-align: center;
  }
}

/* ===== WHY CHOOSE US SECTION ===== */
.why-choose-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
  position: relative;
  padding: 90px 0;
  overflow: hidden;
}

@media (max-width: 991px) {
  .why-choose-section {
    padding: 70px 0;
  }
}

@media (max-width: 767px) {
  .why-choose-section {
    padding: 60px 0;
  }
}

.why-choose-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(13,13,63,0.02)" d="M0,64L48,80C96,96,192,128,288,128C384,128,480,96,576,90.7C672,85,768,107,864,128C960,149,1056,171,1152,165.3C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>')
    no-repeat bottom center;
  opacity: 0.5;
  z-index: 1;
}

.why-choose-section .container {
  position: relative;
  z-index: 2;
}

.why-choose-section .section-header {
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .why-choose-section .section-header {
    margin-bottom: 30px;
  }
}

.subsection-title {
  font-size: 26px;
  font-weight: 700;
  color: #0d0d3f;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
}

@media (max-width: 991px) {
  .subsection-title {
    font-size: 24px;
    margin-bottom: 35px;
  }
}

@media (max-width: 767px) {
  .subsection-title {
    font-size: 22px;
    margin-bottom: 30px;
  }
}

.subsection-title:after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--e-global-color-primary);
}

.features-row {
  margin-bottom: 50px;
}

@media (max-width: 767px) {
  .features-row {
    margin-bottom: 40px;
  }
}

.feature-item {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  gap: 20px;
  border: 2px solid transparent;
}

@media (max-width: 991px) {
  .feature-item {
    padding: 25px;
    gap: 18px;
  }
}

@media (max-width: 767px) {
  .feature-item {
    padding: 25px 20px;
    gap: 15px;
  }
}

.feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--e-global-color-primary);
}

.feature-icon-wrap {
  flex-shrink: 0;
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    var(--e-global-color-primary) 0%,
    var(--e-global-color-secondary) 100%
  );
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  box-shadow: 0 8px 20px rgba(13, 13, 63, 0.15);
}

@media (max-width: 991px) {
  .feature-icon {
    width: 65px;
    height: 65px;
  }
}

@media (max-width: 767px) {
  .feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
  }
}

.feature-icon i {
  font-size: 32px;
  color: #fff;
  transition: transform 0.4s ease;
}

@media (max-width: 991px) {
  .feature-icon i {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  .feature-icon i {
    font-size: 26px;
  }
}

.feature-item:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-item:hover .feature-icon i {
  transform: scale(1.1);
}

.feature-content {
  flex: 1;
}

.feature-title {
  font-size: 19px;
  font-weight: 700;
  color: #0d0d3f;
  margin-bottom: 12px;
  line-height: 1.4;
}

@media (max-width: 991px) {
  .feature-title {
    font-size: 18px;
    margin-bottom: 10px;
  }
}

@media (max-width: 767px) {
  .feature-title {
    font-size: 17px;
  }
}

.feature-description {
  font-size: 15px;
  color: var(--e-global-color-text);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 991px) {
  .feature-description {
    font-size: 14px;
    line-height: 1.6;
  }
}

@media (max-width: 767px) {
  .feature-description {
    font-size: 14px;
  }
}

.cta-box {
  background: linear-gradient(135deg, #0d0d3f 0%, #1a1a5e 100%);
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(13, 13, 63, 0.2);
  position: relative;
  overflow: hidden;
}

@media (max-width: 991px) {
  .cta-box {
    padding: 40px 30px;
  }
}

@media (max-width: 767px) {
  .cta-box {
    padding: 35px 25px;
    border-radius: 15px;
  }
}

.cta-box:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.03)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>')
    no-repeat bottom center;
  opacity: 0.3;
  z-index: 1;
}

.cta-box > * {
  position: relative;
  z-index: 2;
}

.cta-icon {
  width: 80px;
  height: 80px;
  background: var(--e-global-color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: pulse 2s ease-in-out infinite;
}

@media (max-width: 767px) {
  .cta-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.cta-icon i {
  font-size: 36px;
  color: #fff;
}

@media (max-width: 767px) {
  .cta-icon i {
    font-size: 32px;
  }
}

.cta-title {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 991px) {
  .cta-title {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .cta-title {
    font-size: 20px;
    letter-spacing: 0.5px;
  }
}

.cta-text {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

@media (max-width: 991px) {
  .cta-text {
    font-size: 16px;
    margin-bottom: 25px;
  }
}

@media (max-width: 767px) {
  .cta-text {
    font-size: 15px;
    margin-bottom: 25px;
  }
}

.cta-box .btn-light {
  background: #fff;
  color: var(--e-global-color-primary);
  font-weight: 700;
  padding: 18px 40px;
  border-radius: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  border: none;
}

@media (max-width: 767px) {
  .cta-box .btn-light {
    padding: 16px 35px;
    font-size: 15px;
    width: 100%;
  }
}

.cta-box .btn-light:hover {
  background: var(--e-global-color-primary);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

/* ===== TRUST SECTION ===== */
.trust-section {
  background: #fff;
  padding: 90px 0;
  position: relative;
}

@media (max-width: 991px) {
  .trust-section {
    padding: 70px 0;
  }
}

@media (max-width: 767px) {
  .trust-section {
    padding: 60px 0;
  }
}

.trust-section .section-header {
  margin-bottom: 50px;
}

@media (max-width: 767px) {
  .trust-section .section-header {
    margin-bottom: 40px;
  }
}

.trust-row {
  display: flex;
  align-items: stretch;
}

.trust-item {
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s ease;
  height: 100%;
  border: 2px solid transparent;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
}

@media (max-width: 991px) {
  .trust-item {
    padding: 35px 25px;
  }
}

@media (max-width: 767px) {
  .trust-item {
    padding: 30px 20px;
  }
}

.trust-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--e-global-color-primary);
  background: #fff;
}

.trust-icon-wrap {
  margin-bottom: 25px;
}

@media (max-width: 767px) {
  .trust-icon-wrap {
    margin-bottom: 20px;
  }
}

.trust-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(
    135deg,
    var(--e-global-color-primary) 0%,
    var(--e-global-color-secondary) 100%
  );
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(13, 13, 63, 0.2);
  position: relative;
}

@media (max-width: 991px) {
  .trust-icon {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 767px) {
  .trust-icon {
    width: 75px;
    height: 75px;
  }
}

.trust-icon:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid var(--e-global-color-primary);
  opacity: 0;
  transform: scale(1.2);
  transition: all 0.4s ease;
}

.trust-item:hover .trust-icon:before {
  opacity: 0.3;
  transform: scale(1.4);
}

.trust-icon i {
  font-size: 40px;
  color: #fff;
  transition: transform 0.4s ease;
}

@media (max-width: 991px) {
  .trust-icon i {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  .trust-icon i {
    font-size: 34px;
  }
}

.trust-item:hover .trust-icon {
  transform: rotateY(360deg);
}

.trust-title {
  font-size: 22px;
  font-weight: 700;
  color: #0d0d3f;
  margin-bottom: 20px;
  line-height: 1.3;
}

@media (max-width: 991px) {
  .trust-title {
    font-size: 20px;
    margin-bottom: 18px;
  }
}

@media (max-width: 767px) {
  .trust-title {
    font-size: 19px;
    margin-bottom: 15px;
  }
}

.trust-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.trust-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.trust-list li {
  font-size: 16px;
  color: var(--e-global-color-text);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.3s ease;
}

@media (max-width: 991px) {
  .trust-list li {
    font-size: 15px;
    margin-bottom: 12px;
    gap: 10px;
  }
}

@media (max-width: 767px) {
  .trust-list li {
    font-size: 15px;
  }
}

.trust-list li:last-child {
  margin-bottom: 0;
}

.trust-list li:hover {
  color: var(--e-global-color-primary);
  transform: translateX(5px);
}

.trust-list li i {
  color: var(--e-global-color-primary);
  font-size: 18px;
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .trust-list li i {
    font-size: 16px;
  }
}

.trust-list li span {
  line-height: 1.5;
}

.trust-description {
  font-size: 16px;
  color: var(--e-global-color-text);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 991px) {
  .trust-description {
    font-size: 15px;
    line-height: 1.6;
  }
}

@media (max-width: 767px) {
  .trust-description {
    font-size: 15px;
  }
}

.trust-description strong {
  color: var(--e-global-color-primary);
  font-weight: 700;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
  background: linear-gradient(135deg, #0d0d3f 0%, #1a1a5e 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

@media (max-width: 991px) {
  .testimonials-section {
    padding: 80px 0;
  }
}

@media (max-width: 767px) {
  .testimonials-section {
    padding: 70px 0;
  }
}

.testimonials-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.03)" d="M0,160L48,176C96,192,192,224,288,224C384,224,480,192,576,165.3C672,139,768,117,864,128C960,139,1056,181,1152,202.7C1248,224,1344,224,1392,224L1440,224L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z"></path></svg>')
    no-repeat top center;
  opacity: 0.5;
  z-index: 1;
}

.testimonials-section .container {
  position: relative;
  z-index: 2;
  overflow: visible;
}

.testimonials-section .section-header {
  margin-bottom: 60px;
}

@media (max-width: 767px) {
  .testimonials-section .section-header {
    margin-bottom: 45px;
  }
}

.testimonials-section .section-title.light,
.testimonials-section .section-subtitle.light,
.testimonials-section .section-subtitle-tag.light {
  color: #fff;
}

.testimonials-section .section-subtitle.light {
  opacity: 0.9;
}

.testimonials-grid {
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-card {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  position: relative;
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

@media (max-width: 991px) {
  .testimonial-card {
    padding: 35px;
  }
}

@media (max-width: 767px) {
  .testimonial-card {
    padding: 30px 25px;
    border-radius: 15px;
  }
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.quote-icon-top {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--e-global-color-primary) 0%,
    var(--e-global-color-secondary) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  box-shadow: 0 10px 25px rgba(13, 13, 63, 0.2);
}

@media (max-width: 767px) {
  .quote-icon-top {
    width: 55px;
    height: 55px;
    margin-bottom: 20px;
  }
}

.quote-icon-top i {
  font-size: 26px;
  color: #fff;
}

@media (max-width: 767px) {
  .quote-icon-top i {
    font-size: 24px;
  }
}

.rating-stars {
  display: flex;
  gap: 6px;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .rating-stars {
    gap: 5px;
    margin-bottom: 18px;
  }
}

.rating-stars i {
  font-size: 18px;
  color: #ffd700;
}

@media (max-width: 767px) {
  .rating-stars i {
    font-size: 16px;
  }
}

.testimonial-quote {
  font-size: 17px;
  line-height: 1.8;
  color: var(--e-global-color-text);
  font-style: italic;
  margin-bottom: 30px;
  flex: 1;
}

@media (max-width: 991px) {
  .testimonial-quote {
    font-size: 16px;
    line-height: 1.7;
  }
}

@media (max-width: 767px) {
  .testimonial-quote {
    font-size: 15px;
    margin-bottom: 25px;
  }
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-top: 25px;
  border-top: 2px solid #f0f0f0;
}

@media (max-width: 767px) {
  .testimonial-footer {
    gap: 15px;
    padding-top: 20px;
  }
}

.author-avatar {
  flex-shrink: 0;
}

.author-avatar i {
  font-size: 55px;
  color: var(--e-global-color-primary);
}

@media (max-width: 767px) {
  .author-avatar i {
    font-size: 50px;
  }
}

.author-details {
  text-align: left;
}

.author-name {
  font-size: 19px;
  font-weight: 700;
  color: #0d0d3f;
  margin: 0 0 5px 0;
  line-height: 1.3;
}

@media (max-width: 767px) {
  .author-name {
    font-size: 18px;
  }
}

.author-role {
  font-size: 14px;
  color: var(--e-global-color-text);
  margin: 0;
  opacity: 0.8;
}

@media (max-width: 767px) {
  .author-role {
    font-size: 13px;
  }
}

@media (max-width: 991px) {
  .service-card-inner {
    padding: 30px 25px;
  }

  .service-title {
    font-size: 20px;
  }
}

/* ===== FAQ SECTION ===== */
.faq-section {
  background: #f8f9fa;
  padding: 90px 0;
}

@media (max-width: 991px) {
  .faq-section {
    padding: 70px 0;
  }
}

@media (max-width: 767px) {
  .faq-section {
    padding: 60px 0;
  }
}

.faq-section .section-header {
  margin-bottom: 50px;
}

@media (max-width: 767px) {
  .faq-section .section-header {
    margin-bottom: 40px;
  }
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (max-width: 767px) {
  .faq-accordion {
    gap: 15px;
  }
}

.faq-item {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.faq-question {
  padding: 25px 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

@media (max-width: 991px) {
  .faq-question {
    padding: 22px 25px;
    gap: 18px;
  }
}

@media (max-width: 767px) {
  .faq-question {
    padding: 20px;
    gap: 15px;
  }
}

.faq-item.active .faq-question {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.faq-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(
    135deg,
    var(--e-global-color-primary) 0%,
    var(--e-global-color-secondary) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

@media (max-width: 767px) {
  .faq-icon {
    width: 40px;
    height: 40px;
  }
}

.faq-icon i {
  font-size: 22px;
  color: #fff;
}

@media (max-width: 767px) {
  .faq-icon i {
    font-size: 20px;
  }
}

.faq-item.active .faq-icon {
  transform: scale(1.1);
}

.faq-title {
  flex: 1;
  font-size: 18px;
  font-weight: 700;
  color: #0d0d3f;
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 991px) {
  .faq-title {
    font-size: 17px;
  }
}

@media (max-width: 767px) {
  .faq-title {
    font-size: 16px;
  }
}

.faq-toggle {
  width: 35px;
  height: 35px;
  background: #f8f9fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

@media (max-width: 767px) {
  .faq-toggle {
    width: 32px;
    height: 32px;
  }
}

.faq-toggle i {
  font-size: 16px;
  color: var(--e-global-color-primary);
  transition: transform 0.3s ease;
}

@media (max-width: 767px) {
  .faq-toggle i {
    font-size: 14px;
  }
}

.faq-item.active .faq-toggle {
  background: var(--e-global-color-primary);
  transform: rotate(45deg);
}

.faq-item.active .faq-toggle i {
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 30px 25px 95px;
}

@media (max-width: 991px) {
  .faq-item.active .faq-answer {
    padding: 0 25px 22px 85px;
  }
}

@media (max-width: 767px) {
  .faq-item.active .faq-answer {
    padding: 0 20px 20px 20px;
  }
}

.faq-answer p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--e-global-color-text);
  margin: 0;
}

@media (max-width: 767px) {
  .faq-answer p {
    font-size: 15px;
    line-height: 1.6;
  }
}

/* ===== CONTACT CTA SECTION ===== */
.contact-cta-section {
  background: linear-gradient(135deg, #0d0d3f 0%, #1a1a5e 100%);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

@media (max-width: 991px) {
  .contact-cta-section {
    padding: 70px 0;
  }
}

@media (max-width: 767px) {
  .contact-cta-section {
    padding: 60px 0;
  }
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.03)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>')
    no-repeat bottom center;
  opacity: 0.4;
  z-index: 1;
}

.contact-cta-section .container {
  position: relative;
  z-index: 2;
}

.cta-content {
  color: #fff;
}

.cta-icon-large {
  width: 80px;
  height: 80px;
  background: var(--e-global-color-primary);
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  animation: pulse 2s ease-in-out infinite;
}

@media (max-width: 767px) {
  .cta-icon-large {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }
}

.cta-icon-large i {
  font-size: 40px;
  color: #fff;
}

@media (max-width: 767px) {
  .cta-icon-large i {
    font-size: 36px;
  }
}

.cta-heading {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.2;
}

@media (max-width: 991px) {
  .cta-heading {
    font-size: 32px;
  }
}

@media (max-width: 767px) {
  .cta-heading {
    font-size: 28px;
    margin-bottom: 18px;
  }
}

.cta-description {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  .cta-description {
    font-size: 17px;
  }
}

@media (max-width: 767px) {
  .cta-description {
    font-size: 16px;
    margin-bottom: 25px;
  }
}

.cta-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

@media (max-width: 767px) {
  .cta-features {
    gap: 12px;
  }
}

.cta-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 17px;
  color: #fff;
}

@media (max-width: 767px) {
  .cta-features li {
    font-size: 16px;
    gap: 10px;
  }
}

.cta-features li i {
  font-size: 20px;
  color: var(--e-global-color-primary);
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .cta-features li i {
    font-size: 18px;
  }
}

.cta-features li span {
  line-height: 1.5;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (max-width: 767px) {
  .cta-buttons {
    gap: 18px;
  }
}

.cta-btn-primary,
.cta-btn-secondary {
  padding: 18px 35px;
  border-radius: 10px;
  font-size: 17px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.3s ease;
  text-decoration: none;
  width: 100%;
}

@media (max-width: 767px) {
  .cta-btn-primary,
  .cta-btn-secondary {
    padding: 16px 30px;
    font-size: 16px;
    gap: 10px;
  }
}

.cta-btn-primary {
  background: #fff;
  color: var(--e-global-color-primary);
  border: 2px solid #fff;
}

.cta-btn-primary:hover {
  background: var(--e-global-color-primary);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cta-btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.cta-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  transform: translateY(-3px);
}

.contact-info-list {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

@media (max-width: 767px) {
  .contact-info-list {
    margin-top: 25px;
    padding-top: 20px;
    gap: 12px;
  }
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 767px) {
  .contact-info-item {
    font-size: 14px;
    gap: 10px;
  }
}

.contact-info-item i {
  font-size: 18px;
  color: var(--e-global-color-primary);
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .contact-info-item i {
    font-size: 16px;
  }
}

.contact-info-item span {
  line-height: 1.5;
}

@media (max-width: 767px) {
  .stats-section {
    padding: 60px 0;
  }

  .stat-item {
    margin-bottom: 40px;
  }

  .stat-item:last-child {
    margin-bottom: 0;
  }

  .quick-service-item {
    min-height: auto;
  }
}
