
#hero-18 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 68vh;
  padding: 5rem 0;
  background-size: cover;
  background-position: center;
  text-align: right;
}
#hero-18 .hero-overlay-18 {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
#hero-18 .container {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
#hero-18 .hero-content-wrapper-18 {
  max-width: 680px;
  margin-right: 0;
  margin-left: auto;
}
#hero-18 .hero-title-18 {
  font-size: 3.1rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1rem;
}
#hero-18 .hero-subtitle-18 {
  font-size: 1.15rem;
  font-weight: 300;
  margin-bottom: 2rem;
  opacity: 0.9;
}
#hero-18 .hero-cta-button-18 {
  display: inline-block;
  padding: 0.8rem 2.1rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 6px;
  text-decoration: none;
  border: none;
  transition: transform 0.2s ease, filter 0.2s ease;
}
#hero-18 .hero-cta-button-18:hover {
  transform: translateY(-2px);
  filter: brightness(110%);
}
@media (max-width: 767.98px) {
  #hero-18 {
    min-height: 60vh;
    padding: 4rem 0;
    text-align: center;
    justify-content: center;
  }
  #hero-18 .container {
    justify-content: center;
  }
  #hero-18 .hero-content-wrapper-18 {
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  #hero-18 .hero-title-18 {
    font-size: 2.4rem;
  }
  #hero-18 .hero-subtitle-18 {
    font-size: 1.1rem;
  }
}



#features-7 {
  padding: 60px 0;
  background-color: #f1f3f5;
  text-align: center;
}
#features-7 .section-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
}
#features-7 .section-subtitle {
  font-size: 18px;
  color: #6c757d;
  margin-bottom: 40px;
}
#features-7 .flip-card {
  background-color: transparent;
  width: 100%;
  height: 250px;
  perspective: 1000px;
  margin-bottom: 30px;
}
#features-7 .flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}
#features-7 .flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}
#features-7 .flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 8px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#features-7 .flip-card-front {
  background-color: #ffffff;
  color: #17a2b8;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
#features-7 .flip-card-back {
  background-color: #17a2b8;
  color: #ffffff;
  transform: rotateY(180deg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
#features-7 .flip-card-icon {
  font-size: 40px;
  margin-bottom: 20px;
}
#features-7 .flip-card-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}
#features-7 .flip-card-description {
  font-size: 14px;
}



#portfolio-13 {
  padding-top: 70px;
  padding-bottom: 70px;
  background-color: #f0f2f5;
}
#portfolio-13 .section-title-container {
  margin-bottom: 50px;
}
#portfolio-13 .section-main-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: #1e2b3c;
}
#portfolio-13 .section-main-subtitle {
  font-size: 1.1rem;
  color: #525f7f;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
#portfolio-13 .project-item-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#portfolio-13 .project-item-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
#portfolio-13 .project-thumbnail-container {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  background-color: #e9ecef;
  overflow: hidden;
}
#portfolio-13 .project-thumbnail-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
#portfolio-13 .project-item-card:hover .project-thumbnail-container img {
  transform: scale(1.05);
}
#portfolio-13 .thumbnail-overlay-general {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
#portfolio-13 .project-item-card:hover .thumbnail-overlay-general {
  opacity: 1;
}
#portfolio-13 .thumbnail-overlay-general i {
  font-size: 2.5rem;
  color: rgba(255, 255, 255, 0.8);
}
#portfolio-13 .project-info-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
#portfolio-13 .project-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #343a40;
  margin-bottom: 8px;
  line-height: 1.3;
}
#portfolio-13 .project-card-title a {
  color: inherit;
  text-decoration: none;
}
#portfolio-13 .project-card-title a:hover {
  color: #0d6efd;
}
#portfolio-13 .project-card-client {
  font-size: 0.85rem;
  color: #6c757d;
  margin-bottom: 10px;
}
#portfolio-13 .project-card-client i {
  margin-right: 5px;
}
#portfolio-13 .project-card-description {
  font-size: 0.9rem;
  color: #495057;
  line-height: 1.6;
  margin-bottom: 0;
  flex-grow: 1;
}



#content-block-13 {
  padding: 60px 15px;
  margin: 0 auto;
  max-width: 1000px;
  text-align: center;
}
#content-block-13 .header {
  margin-bottom: 40px;
}
#content-block-13 .header h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
#content-block-13 .items-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
#content-block-13 .item-card {
  flex: 1 1 calc(33.333% - 20px);
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}
#content-block-13 .item-card i {
  font-size: 2.5rem;
  color: #007bff;
  margin-bottom: 10px;
}
#content-block-13 .item-card h5 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}
#content-block-13 .item-card p {
  font-size: 0.95rem;
  color: #555;
}
@media (max-width: 992px) {
  #content-block-13 .item-card {
    flex: 1 1 calc(50% - 20px);
  }
}
@media (max-width: 576px) {
  #content-block-13 .item-card {
    flex: 1 1 100%;
  }
}



#text-block-23 {
  padding: 120px 0;
  position: relative;
  background-size: cover;
  background-position: center center;
  min-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
#text-block-23 .container {
  position: relative;
  z-index: 2;
}
#text-block-23 .color-wash-box {
  background-color: var(--text-box-bg, rgba(0, 50, 100, 0.75));
  color: var(--text-color, #ffffff);
  padding: 45px 50px;
  border-radius: var(--box-radius, 8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
}
#text-block-23 .text-heading {
  font-size: 2.7rem;
  font-weight: 700;
  color: inherit;
  margin-bottom: 25px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}
#text-block-23 .text-paragraph {
  font-size: 1.1rem;
  line-height: 1.8;
  color: inherit;
  opacity: 0.9;
  margin-bottom: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
#text-block-23 .text-paragraph:last-child {
  margin-bottom: 0;
}
@media (max-width: 991.98px) {
  #text-block-23 {
    padding: 100px 0;
  }
  #text-block-23 .text-heading {
    font-size: 2.3rem;
  }
  #text-block-23 .text-paragraph {
    font-size: 1.05rem;
  }
}
@media (max-width: 767.98px) {
  #text-block-23 {
    padding: 80px 15px;
    min-height: auto;
  }
  #text-block-23 .color-wash-box {
    padding: 35px 30px;
  }
  #text-block-23 .text-heading {
    font-size: 2rem;
  }
  #text-block-23 .text-paragraph {
    font-size: 1rem;
  }
}



#how-it-works-3 {
  padding: 60px 15px;
  max-width: 1200px;
  margin: 0 auto;
}
#how-it-works-3 .section-hero {
  background-size: cover;
  background-position: center;
  padding: 80px;
  border-radius: 8px;
  text-align: center;
  color: #fff;
  margin-bottom: 30px;
}
#how-it-works-3 .carousel-item {
  text-align: center;
  padding: 40px;
}
#how-it-works-3 .carousel-item h4 {
  font-size: 1.75rem;
  color: #007bff;
  margin-bottom: 10px;
}
#how-it-works-3 .carousel-item p {
  font-size: 1rem;
  color: #555;
}



#call-to-action-11 {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  min-height: 400px;
}
#call-to-action-11 .left-col,
#call-to-action-11 .right-col {
  flex: 1 1 50%;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px;
  text-align: left;
}
#call-to-action-11 .left-col {
  background-color: #f8f9fa;
  color: #333;
}
#call-to-action-11 .left-col h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}
#call-to-action-11 .left-col p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}
#call-to-action-11 .left-col .btn {
  display: inline-block;
  background-color: #007bff;
  color: #fff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem;
  transition: background-color 0.3s ease-in-out;
}
#call-to-action-11 .left-col .btn:hover {
  background-color: #0056b3;
  color: #fff;
}
#call-to-action-11 .right-col {
  background-size: cover;
  background-position: center;
}
@media (max-width: 768px) {
  #call-to-action-11 {
    flex-direction: column;
  }
  #call-to-action-11 .left-col,
  #call-to-action-11 .right-col {
    flex: 1 1 100%;
    min-height: auto;
  }
  #call-to-action-11 .left-col {
    text-align: center;
  }
}


