.elementor-10208 .elementor-element.elementor-element-a6eb011{--display:flex;--min-height:0px;}.elementor-10208 .elementor-element.elementor-element-9887c8e{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-10208 .elementor-element.elementor-element-5428912{--display:flex;}.elementor-10208 .elementor-element.elementor-element-64a9a3c{--display:flex;}.elementor-10208 .elementor-element.elementor-element-31bc73a{--display:flex;}.elementor-10208 .elementor-element.elementor-element-2afbfb97{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-eb83861 *//* Hero Section */
.startly-hero-section {
  width: 100%;
  background-color: #f4f8fc; /* Light, professional background */
  padding: 80px 20px; /* Spacing for wide layout */
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Arial, sans-serif;
  margin-top: -90px
}

.startly-hero-container {
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; /* Ensures responsiveness */
  gap: 30px;
}

/* Left Content */
.startly-hero-content {
  flex: 1;
  max-width: 600px;
}

.hero-title {
  font-size: 48px;
  font-weight: bold;
  line-height: 1.2;
  color: #0d1a36; /* Dark blue */
  margin-bottom: 20px;
}

.hero-description {
  font-size: 18px;
  color: #5b6673;
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-cta-button {
  display: inline-block;
  padding: 15px 30px;
  background-color: #18cb96; /* Startly green */
  color: white;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.hero-cta-button:hover {
  background-color: #0ba677;
}

/* Right Image */
.startly-hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.startly-hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px; /* Rounded corners for a sleek look */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

/* Responsive Design */
@media (max-width: 768px) {
  .startly-hero-container {
    flex-direction: column; /* Stack content vertically */
  }

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

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

  .hero-cta-button {
    font-size: 14px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-ba096ee */.services-offered-section {
  /*background-color: #f8f9fa;*/
  padding: 60px 20px;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

.services-title {
  font-size: 36px;
  font-weight: bold;
  color: #0056d2;
  margin-bottom: 10px;
}

.services-subtitle {
  font-size: 18px;
  color: #333;
  margin-bottom: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.service-item {
  /*background: #ffffff;*/
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.service-icon {
  font-size: 40px;
  margin-bottom: 20px;
  color: #18cb96;
}

.service-item h3 {
  font-size: 20px;
  color: ##18cb96;
  margin-bottom: 10px;
}

.service-item p {
  font-size: 16px;
  color: #555;
  margin-bottom: 15px;
}

.service-link {
  font-size: 14px;
  color: #18cb96;
  text-decoration: none;
  font-weight: bold;
}

.service-link:hover {
  text-decoration: underline;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-477519b3 *//* Main CTA Section */
.cta-section {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 700px; /* Ensure height consistency */
    background-image: url('http://startly.ng/wp-content/uploads/2025/01/co-workers-collaborating-on-a-project.png'); /* Replace with your image URL */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 50px;
    font-family: Arial, sans-serif;
}

/* Content Area */
.cta-content {
    max-width: 600px;
    background-color: rgba(0, 0, 0, 0.6); /* Slight dark overlay for readability */
    padding: 30px;
    border-radius: 10px;
    text-align: left;
}

.cta-content h1 {
    font-size: 68px;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.2;
    color: white;
}

.cta-content p {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 30px;
}

.cta-button1 {
    display: inline-block;
    padding: 6px 30px;
    background-color: #18cb96;
    color: white;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: #14a87c;
    transform: scale(1.05);
}

/* Responsive Design */
@media only screen and (max-width: 768px) {
    .cta-section {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 20px;
    }

    .cta-content {
        max-width: 100%;
    }

    .cta-content h1 {
        font-size: 36px;
    }

    .cta-content p {
        font-size: 16px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-f8fcd71 */<style>
.startly-results-wrapper {
  padding: 60px 20px;
  background-color: #eef4fc;
  font-family: Arial, sans-serif;
}

.startly-results-container {
  max-width: 1200px;
  margin: 0 auto;
}

.startly-results-header {
  text-align: center;
  margin-bottom: 40px;
}

.startly-results-title {
  font-size: 32px;
  color: #333;
  margin-bottom: 10px;
    text-align: left;

}

.startly-results-description {
  font-size: 18px;
  color: #555;
}

.startly-process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.startly-process-item {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
   text-align: left;

}

.startly-process-icon {
  font-size: 40px;
  color: #0056d2;
  margin-bottom: 15px;
}

.startly-process-title {
  font-size: 20px;
  color: #0056d2;
  margin-bottom: 10px;
}

.startly-process-text {
  font-size: 16px;
  color: #666;
}

@media screen and (max-width: 768px) {
  .startly-results-wrapper {
    padding: 40px 10px;
  }

  .startly-results-title {
    font-size: 28px;
  }

  .startly-process-title {
    font-size: 18px;
  }

  .startly-process-text {
    font-size: 14px;
  }

  .startly-process-icon {
    font-size: 30px;
  }
}
</style>/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-cecc5f2 */<style>
.startly-testimonials-wrapper {
  padding: 60px 20px;
  background-color: #f3f6fa;
  font-family: Arial, sans-serif;
}

.startly-testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.startly-testimonials-header {
  margin-bottom: 40px;
}

.startly-testimonials-title {
  font-size: 32px;
  color: #333;
  margin-bottom: 10px;
}

.startly-testimonials-description {
  font-size: 18px;
  color: #555;
}

.startly-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.startly-testimonial-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: left;
}

.startly-testimonial-text {
  font-size: 16px;
  color: #555;
  margin-bottom: 15px;
  font-style: italic;
}

.startly-client-name {
  font-size: 18px;
  color: #0056d2;
  margin-bottom: 5px;
}

.startly-client-company {
  font-size: 14px;
  color: #666;
}

@media screen and (max-width: 768px) {
  .startly-testimonials-wrapper {
    padding: 40px 10px;
  }

  .startly-testimonials-title {
    font-size: 28px;
  }

  .startly-testimonial-text {
    font-size: 14px;
  }

  .startly-client-name {
    font-size: 16px;
  }

  .startly-client-company {
    font-size: 12px;
  }
}
</style>/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-98fd08d */.startly-cta-wrapper {
  text-align: center;
  margin-top: 40px;
}

.startly-cta-button {
  display: inline-block;
  padding: 15px 30px;
  background-color: #18cb96;
  color: white;
  font-size: 16px;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.startly-cta-button:hover {
  background-color: #12876f;
}/* End custom CSS */