
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#hero-15 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  padding: 6rem 0;
  background-size: cover;
  background-position: center;
  text-align: center;
  overflow: hidden;
  color: #ffffff;
  --hero-overlay-color: rgba(0, 0, 0, 0.5);
}
#hero-15::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--hero-overlay-color);
  z-index: 1;
}
#hero-15 .container {
  position: relative;
  z-index: 2;
}
#hero-15 .hero-content-wrapper-15 {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}
#hero-15 .hero-title-15,
#hero-15 .hero-subtitle-15,
#hero-15 .hero-cta-button-15 {
  opacity: 0;
  animation-name: fadeInUp;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
}
#hero-15 .hero-title-15 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  animation-delay: 0.2s;
}
#hero-15 .hero-subtitle-15 {
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 2rem;
  opacity: 0.9;
  animation-delay: 0.4s;
}
#hero-15 .hero-cta-button-15 {
  display: inline-block;
  padding: 0.8rem 2.2rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  background-color: #0d6efd;
  color: #ffffff;
  animation-delay: 0.6s;
}
#hero-15 .hero-cta-button-15:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}
@media (max-width: 767.98px) {
  #hero-15 {
    min-height: 60vh;
    padding: 4rem 0;
  }
  #hero-15 .hero-title-15 {
    font-size: 2.5rem;
  }
  #hero-15 .hero-subtitle-15 {
    font-size: 1.1rem;
  }
}



#portfolio-7 {
  padding-top: 70px;
  padding-bottom: 70px;
  background-color: #ffffff;
}
#portfolio-7 .section-title-container {
  margin-bottom: 50px;
}
#portfolio-7 .section-main-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: #2c3e50;
}
#portfolio-7 .section-main-subtitle {
  font-size: 1.1rem;
  color: #5a677d;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
#portfolio-7 .portfolio-hover-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  aspect-ratio: 4 / 3;
  background-color: #e9ecef;
}
#portfolio-7 .portfolio-hover-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#portfolio-7 .portfolio-hover-item .item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.4) 40%,
    rgba(0, 0, 0, 0.9) 100%
  );
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  padding: 25px 20px;
  color: #ffffff;
}
#portfolio-7 .portfolio-hover-item:hover img {
  transform: scale(1.1);
}
#portfolio-7 .portfolio-hover-item:hover .item-overlay {
  opacity: 1;
}
#portfolio-7 .item-overlay .overlay-content {
  transform: translateY(30px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s,
    opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s;
}
#portfolio-7 .portfolio-hover-item:hover .item-overlay .overlay-content {
  transform: translateY(0);
  opacity: 1;
}
#portfolio-7 .overlay-title {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 5px;
}
#portfolio-7 .overlay-category {
  font-size: 0.8rem;
  font-weight: 300;
  margin-bottom: 10px;
  display: block;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
#portfolio-7 .overlay-description {
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 15px;
  max-height: 65px;
  overflow: hidden;
}
#portfolio-7 .btn-view-details {
  padding: 8px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 50px;
  background-color: #0d6efd;
  border-color: #0d6efd;
  color: #fff;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
#portfolio-7 .btn-view-details:hover {
  background-color: #0b5ed7;
  transform: scale(1.05);
}
@media (max-width: 767.98px) {
  #portfolio-7 .portfolio-hover-item {
    aspect-ratio: 16 / 11;
  }
  #portfolio-7 .overlay-title {
    font-size: 1.1rem;
  }
  #portfolio-7 .overlay-description {
    font-size: 0.8rem;
    max-height: 50px;
  }
}



#text-block-16 {
  padding: 80px 0;
  background-color: var(--section-bg-color, #f9f6f1);
  background-image: var(--section-bg-texture);
  background-repeat: repeat;
  color: var(--text-color, #4a4a4a);
  font-family: "Georgia", serif;
}
#text-block-16 .container {
  max-width: 800px;
}
#text-block-16 .paper-content-box {
  background-color: var(--container-bg-color, rgba(255, 255, 255, 0.6));
  padding: 40px 50px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
#text-block-16 .section-title-optional {
  text-align: center;
  font-size: 1rem;
  font-weight: normal;
  font-style: italic;
  color: var(--text-color, #4a4a4a);
  opacity: 0.8;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}
#text-block-16 .text-heading {
  text-align: center;
  font-size: 2.3rem;
  font-weight: bold;
  color: var(--text-color, #4a4a4a);
  margin-bottom: 35px;
  line-height: 1.3;
}
#text-block-16 .text-paragraph {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-color, #4a4a4a);
  opacity: 0.9;
  margin-bottom: 1.4rem;
  text-align: justify;
}
#text-block-16 .text-paragraph:last-child {
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  #text-block-16 {
    padding: 60px 0;
  }
  #text-block-16 .paper-content-box {
    padding: 30px 25px;
  }
  #text-block-16 .text-heading {
    font-size: 1.9rem;
  }
  #text-block-16 .text-paragraph {
    font-size: 1rem;
    line-height: 1.8;
  }
}



#portfolio-11 {
  padding-top: 70px;
  padding-bottom: 70px;
  background-color: #f0f4f8;
}
#portfolio-11 .section-title-container {
  margin-bottom: 50px;
}
#portfolio-11 .section-main-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: #1a2533;
}
#portfolio-11 .section-main-subtitle {
  font-size: 1.1rem;
  color: #4a5568;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
#portfolio-11 .project-result-card {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
#portfolio-11 .project-result-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}
#portfolio-11 .project-header-info {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}
#portfolio-11 .project-visual {
  flex-shrink: 0;
  margin-right: 20px;
}
#portfolio-11 .project-visual img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
}
#portfolio-11 .project-visual .project-icon-display {
  font-size: 3rem;
  color: #0d6efd;
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  background-color: #e7f1ff;
  border-radius: 8px;
}
#portfolio-11 .project-title-stats {
  font-size: 1.4rem;
  font-weight: 600;
  color: #0d6efd;
  margin-bottom: 5px;
}
#portfolio-11 .project-brief-desc {
  font-size: 0.9rem;
  color: #555e68;
  line-height: 1.6;
  margin-bottom: 20px;
}
#portfolio-11 .key-stats-area {
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid #e9ecef;
}
#portfolio-11 .key-stats-title {
  font-size: 1rem;
  font-weight: 500;
  color: #343a40;
  margin-bottom: 15px;
}
#portfolio-11 .stats-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 15px;
}
#portfolio-11 .stat-item {
  background-color: #f8f9fa;
  padding: 10px;
  border-radius: 6px;
  text-align: center;
}
#portfolio-11 .stat-item .stat-icon {
  font-size: 1.3rem;
  color: #0d6efd;
  margin-bottom: 5px;
  display: block;
}
#portfolio-11 .stat-item .stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #28a745;
  display: block;
}
#portfolio-11 .stat-item .stat-label {
  font-size: 0.8rem;
  color: #6c757d;
  display: block;
  line-height: 1.2;
}
#portfolio-11 .project-details-link {
  margin-top: 20px;
  text-align: right;
}
#portfolio-11 .project-details-link a {
  font-size: 0.9rem;
  font-weight: 500;
}
@media (max-width: 575.98px) {
  #portfolio-11 .project-header-info {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  #portfolio-11 .project-visual {
    margin-right: 0;
    margin-bottom: 10px;
  }
  #portfolio-11 .project-title-stats {
    font-size: 1.2rem;
  }
  #portfolio-11 .stats-list {
    grid-template-columns: 1fr;
  }
}



#text-block-14 {
  padding: 120px 0;
  position: relative;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
#text-block-14 .container {
  position: relative;
  z-index: 2;
}
#text-block-14 .frosted-glass-box {
  background-color: var(--text-container-bg, rgba(255, 255, 255, 0.15));
  backdrop-filter: blur(var(--blur-amount, 10px));
  -webkit-backdrop-filter: blur(var(--blur-amount, 10px));
  padding: 45px 50px;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--text-color, #ffffff);
  text-align: center;
}
#text-block-14 .text-heading {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text-color, #ffffff);
  margin-bottom: 25px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}
#text-block-14 .text-paragraph {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-color, #ffffff);
  opacity: 0.9;
  margin-bottom: 1rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}
#text-block-14 .text-paragraph:last-child {
  margin-bottom: 0;
}
@media (max-width: 991.98px) {
  #text-block-14 {
    padding: 100px 0;
  }
  #text-block-14 .text-heading {
    font-size: 2.4rem;
  }
  #text-block-14 .text-paragraph {
    font-size: 1.1rem;
  }
}
@media (max-width: 767.98px) {
  #text-block-14 {
    padding: 80px 15px;
    background-attachment: scroll;
  }
  #text-block-14 .frosted-glass-box {
    padding: 35px 30px;
  }
  #text-block-14 .text-heading {
    font-size: 2rem;
  }
  #text-block-14 .text-paragraph {
    font-size: 1rem;
  }
}



#call-to-action-15 {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  padding: 60px 0;
}
#call-to-action-15 .left-side,
#call-to-action-15 .right-side {
  flex: 1 1 50%;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  padding: 40px;
}
#call-to-action-15 .left-side {
  background-color: #007bff;
}
#call-to-action-15 .right-side {
  background-color: #28a745;
}
#call-to-action-15 h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}
#call-to-action-15 p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}
#call-to-action-15 .btn {
  display: inline-block;
  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-15 .left-side .btn {
  background-color: #fff;
  color: #007bff;
}
#call-to-action-15 .left-side .btn:hover {
  background-color: #e0f2f7;
}
#call-to-action-15 .right-side .btn {
  background-color: #fff;
  color: #28a745;
}
#call-to-action-15 .right-side .btn:hover {
  background-color: #e3f2fd;
}
#call-to-action-15::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom right, #007bff 50%, #28a745 50%);
  z-index: -1;
}
@media (max-width: 768px) {
  #call-to-action-15::before {
    background: linear-gradient(to bottom, #007bff 50%, #28a745 50%);
  }
}


