/* ================================================== */
/* Sectors Section Styles */
/* ================================================== */

.sectors-section {
  background: #fff;
  padding: 80px 0;
}

.sectors-header {
  text-align: center;
  margin-bottom: 50px;
}

.sectors-header h2 {
  font-size: 36px;
  font-weight: bold;
  color: var(--heading-font-color, #333);
  margin-bottom: 20px;
  font-family: var(--heading-font, "Inter Tight", Helvetica, Arial, sans-serif);
}

.sectors-header p {
  font-size: 16px;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
  font-family: var(--body-font, "Manrope", Helvetica, Arial, sans-serif);
}

.sector-card {
  background: #fff;
  border-radius: var(--rounded-1, 15px);
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.sector-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}

.sector-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 25px;
  background: var(--primary-color, #417c24);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.sector-card:hover .sector-icon {
  transform: scale(1.1);
}

.sector-icon i {
  font-size: 40px;
  color: #fff;
}

.sector-card h3 {
  font-size: 20px;
  font-weight: bold;
  color: var(--heading-font-color, #333);
  text-transform: uppercase;
  margin-bottom: 15px;
  font-family: var(--heading-font, "Inter Tight", Helvetica, Arial, sans-serif);
}

.sector-card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 25px;
  flex-grow: 1;
  font-family: var(--body-font, "Manrope", Helvetica, Arial, sans-serif);
}

.btn-sector {
  background: var(--primary-color, #417c24);
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--btn-rounded, 8px);
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  display: inline-block;
  text-align: center;
  transition: all 0.3s ease;
  font-family: var(--btn-font-family, var(--body-font));
  border: none;
  cursor: pointer;
}

.btn-sector:hover {
  background: #2d5a19;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(65, 124, 36, 0.3);
  color: #fff;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .sectors-header h2 {
    font-size: 28px;
  }
  
  .sector-card {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .sectors-section {
    padding: 60px 0;
  }
  
  .sectors-header h2 {
    font-size: 24px;
  }
  
  .sectors-header p {
    font-size: 14px;
  }
  
  .sector-card {
    padding: 30px 20px;
  }
  
  .sector-icon {
    width: 80px;
    height: 80px;
  }
  
  .sector-icon i {
    font-size: 32px;
  }
  
  .sector-card h3 {
    font-size: 18px;
  }
  
  .btn-sector {
    font-size: 12px;
    padding: 10px 16px;
  }
}

/* ================================================== */
/* Services CTA Section Styles */
/* ================================================== */

.services-cta-section {
  background: var(--bg-light, #F8F9FA);
  padding: 80px 0;
}

.cta-buttons-wrapper {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.btn-cta {
  padding: 15px 40px;
  border-radius: var(--btn-rounded, 8px);
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-family: var(--btn-font-family, var(--body-font));
  min-width: 200px;
  text-align: center;
}

.btn-cta-primary {
  background: var(--primary-color, #417c24);
  color: #fff;
  border: 2px solid var(--primary-color, #417c24);
}

.btn-cta-primary:hover {
  background: #2d5a19;
  border-color: #2d5a19;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(65, 124, 36, 0.3);
  color: #fff;
}

.btn-cta-secondary {
  background: transparent;
  color: var(--primary-color, #417c24);
  border: 2px solid var(--primary-color, #417c24);
}

.btn-cta-secondary:hover {
  background: var(--primary-color, #417c24);
  color: #fff;
  border-color: var(--primary-color, #417c24);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(65, 124, 36, 0.3);
}

.btn-cta i {
  font-size: 18px;
}

/* Responsive Styles for CTA */
@media (max-width: 767px) {
  .services-cta-section {
    padding: 60px 0;
  }
  
  .cta-buttons-wrapper {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-cta {
    width: 100%;
    max-width: 300px;
    padding: 12px 30px;
    font-size: 14px;
  }
}

/* ================================================== */
/* Contact CTA Banner Styles */
/* ================================================== */

.contact-cta-banner {
  background: linear-gradient(135deg, #1B1663 0%, #120d4f 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.contact-cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='1200' height='400' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.15'%3E%3Cpath d='M150,100 Q200,80 250,100 T350,100 T450,100 T550,100 T650,100 T750,100 T850,100 T950,100' stroke='%23ffffff' stroke-width='1.5' fill='none'/%3E%3Cpath d='M100,150 Q150,130 200,150 T300,150 T400,150 T500,150 T600,150 T700,150 T800,150 T900,150' stroke='%23ffffff' stroke-width='1.5' fill='none'/%3E%3Cpath d='M200,200 Q250,180 300,200 T400,200 T500,200 T600,200 T700,200 T800,200' stroke='%23ffffff' stroke-width='1.5' fill='none'/%3E%3Cpath d='M50,250 Q100,230 150,250 T250,250 T350,250 T450,250 T550,250 T650,250 T750,250 T850,250' stroke='%23ffffff' stroke-width='1.5' fill='none'/%3E%3Cpath d='M300,300 Q350,280 400,300 T500,300 T600,300 T700,300 T800,300' stroke='%23ffffff' stroke-width='1.5' fill='none'/%3E%3Ccircle cx='200' cy='120' r='8' fill='%23ffffff'/%3E%3Ccircle cx='400' cy='180' r='6' fill='%23ffffff'/%3E%3Ccircle cx='600' cy='140' r='7' fill='%23ffffff'/%3E%3Ccircle cx='800' cy='160' r='6' fill='%23ffffff'/%3E%3Ccircle cx='300' cy='220' r='5' fill='%23ffffff'/%3E%3Ccircle cx='700' cy='240' r='6' fill='%23ffffff'/%3E%3Ccircle cx='500' cy='280' r='7' fill='%23ffffff'/%3E%3C/g%3E%3C/svg%3E");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  opacity: 1;
  z-index: 1;
}

.contact-cta-banner .container {
  position: relative;
  z-index: 2;
}

.cta-content {
  color: #fff;
}

.cta-tagline {
  color: var(--primary-color, #417c24);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  font-family: var(--body-font, "Manrope", Helvetica, Arial, sans-serif);
}

.cta-heading {
  color: #fff;
  font-size: 36px;
  font-weight: bold;
  line-height: 1.3;
  margin: 0;
  font-family: var(--heading-font, "Inter Tight", Helvetica, Arial, sans-serif);
}

.btn-cta-banner {
  background: var(--primary-color, #417c24);
  color: #fff;
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  font-family: var(--body-font, "Manrope", Helvetica, Arial, sans-serif);
  border: none;
  cursor: pointer;
}

.btn-cta-banner:hover {
  background: #2d5a19;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(65, 124, 36, 0.4);
  color: #fff;
}

.btn-cta-banner .arrow {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.btn-cta-banner:hover .arrow {
  transform: translateX(5px);
}

/* Responsive Styles for CTA Banner */
@media (max-width: 991px) {
  .contact-cta-banner {
    padding: 50px 0;
  }
  
  .cta-heading {
    font-size: 28px;
  }
  
  .cta-tagline {
    font-size: 14px;
  }
  
  .btn-cta-banner {
    margin-top: 20px;
  }
}

@media (max-width: 767px) {
  .contact-cta-banner {
    padding: 40px 0;
  }
  
  .cta-heading {
    font-size: 24px;
  }
  
  .cta-tagline {
    font-size: 13px;
  }
  
  .btn-cta-banner {
    padding: 12px 30px;
    font-size: 14px;
    width: 100%;
    justify-content: center;
  }
  
  .contact-cta-banner .row {
    text-align: center;
  }
  
  .contact-cta-banner .col-lg-5 {
    text-align: center !important;
  }
}

