@import url("reset.css");

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

/* ************COMMON************ */

.logo {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: translateY(-1px);
}

.logo__image {
  height: 4.5rem;
  width: auto;
  display: block;
  transition: opacity 0.3s ease;
}

.logo__image--dark {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.header.scrolled .logo__image--light {
  opacity: 0;
}

.header.scrolled .logo__image--dark {
  opacity: 1;
}

.header__logo {
  position: relative;
  z-index: 2;
  padding: 0.75rem 0;
}

.footer__logo .logo__image {
  height: 4rem;
  filter: brightness(0) invert(1);
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  color: var(--text-dark);
  line-height: 1.6;
}

[class*="__container"] {
  max-width: 72.624rem;
  margin: 0 auto;
  padding: 0 0.938rem;
}

.button {
  font-weight: 600;
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  transition: all 0.3s;
  color: var(--text-light);
  background-color: var(--accent-color);
}

.button:hover {
  background-color: #e6006f;
  transform: translateY(-2px);
}

.title {
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--primary-color);
}

.wrapper {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
}

/* ************HEADER************ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--bg-gradient);
  z-index: 1000;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header.scrolled .menu__link {
  color: var(--primary-color);
}

.header.scrolled .menu__link:hover {
  color: var(--accent-color);
}

.header.scrolled .actions-header__button {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.header.scrolled .actions-header__button:hover {
  background-color: var(--accent-color);
  color: var(--text-light);
}

.header.scrolled .icon-menu span,
.header.scrolled .icon-menu::before,
.header.scrolled .icon-menu::after {
  background-color: var(--primary-color);
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 6.75rem;
  flex-wrap: wrap;
  max-width: 74.624rem;
  padding: 0 1.5rem;
}

.header__logo {
  position: relative;
  z-index: 2;
}

.header__navigation {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.menu__body {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.menu__link {
  font-weight: 500;
  position: relative;
  color: var(--text-light);
  transition: color 0.3s;
}

.menu__link:hover {
  color: var(--accent-color);
}

.actions-header {
  display: flex;
  align-items: center;
  gap: 0.624rem;
}

.icon-menu {
  display: none;
}

.actions-header__button {
  font-weight: 600;
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--text-light);
  border-radius: 30px;
  transition: all 0.3s;
  position: relative;
  z-index: 2;
  color: var(--text-light);
}

.actions-header__button:hover {
  background-color: var(--text-light);
  color: var(--primary-color);
}

/* ****************PAGES**************** */
.page__main {
  padding-top: 6.75rem;
}

/* *****************HOME**************** */

.main {
  background: var(--bg-gradient);
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.main::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: url("../img/home/background_placeholder.png") center / cover no-repeat;
  clip-path: polygon(25% 0, 100% 0, 100% 100%, 0 100%);
  opacity: 0.1;
  animation: fadeIn 1s ease-out;
}

.main__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 100vh;
  padding: 8rem 0;
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.main__content {
  flex: 1;
  max-width: 600px;
  color: var(--text-light);
  animation: slideInLeft 1s ease-out;
}

.main__caption {
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.1em;
  font-size: 1.1rem;
}

.main__title {
  font-size: 4.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--text-light);
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.main__text {
  margin-bottom: 3.5rem;
  max-width: 33.375rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
}

.main__button {
  font-weight: 600;
  display: inline-block;
  padding: 1.25rem 3rem;
  border-radius: 30px;
  transition: all 0.3s ease;
  color: var(--primary-color);
  background-color: var(--text-light);
  letter-spacing: 0.02em;
  font-size: 1.375rem;
  line-height: 110%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.main__button:hover {
  color: var(--accent-color);
}

.main__image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
  animation: slideInRight 1s ease-out;
}

.main__image img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.main__image img:hover {
  transform: scale(1.02);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.outro_home {
  background: url("../img/home/hero_placeholder.jpg") center / cover no-repeat;
}

/* ************ABOUT**************** */

.main_about {
  background: url("../img/about/background_placeholder.png") center / cover no-repeat;
}

.about__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 8.75rem;
  padding-bottom: 8.75rem;
}

.about__image {
  position: relative;
  max-width: 552px;
  height: 614px;
}

.about__image img {
  border-radius: 16px;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__title {
  margin-bottom: 1.5rem;
}

.about__text {
  max-width: 30rem;
  letter-spacing: 0.02em;
  line-height: 150%;
  margin-bottom: 3.5rem;
}

.about__text p:not(:last-child) {
  margin-bottom: 2.5rem;
}

.outro_about {
  background: url("../img/about/hero_placeholder.jpg") center / cover no-repeat;
}

/* **************SERVICES**************** */

.main_services {
  background: url("../img/services/background_placeholder.png") center / cover no-repeat;
}

.services {
  position: relative;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  padding: 4rem 0;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 96%);
}

.services::before,
.services::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--accent-color) 0%, transparent 100%);
  opacity: 0.05;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.services__title {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.services__title::after {
  content: '';
  position: absolute;
  bottom: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--accent-color);
}

.services__container {
  position: relative;
  z-index: 1;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.services__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.services__row:last-child {
  margin-bottom: 0;
}

.services__column {
  display: flex;
  flex-direction: column;
}

.item-services {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border-radius: 0.75rem;
  padding: 1rem;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 128, 0.1);
}

.item-services:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 128, 0.1);
}

.item-services__image {
  margin-bottom: 1rem;
  max-width: 360px;
  height: 240px;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.item-services__image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.item-services:hover .item-services__image::after {
  opacity: 0.1;
}

.item-services__image img {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.3s ease;
}

.item-services:hover .item-services__image img {
  transform: scale(1.05);
}

.item-services__title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.item-services__text {
  color: var(--text-dark);
  line-height: 1.4;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.item-services__button {
  margin-top: auto;
  background-color: inherit;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.item-services__button:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
  transform: translateY(-2px);
}

.outro_services {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  position: relative;
  overflow: hidden;
}

.outro_services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
}

/* ************TESTIMONIAL**************** */

.testimonial__container {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  padding-top: 8.75rem;
  padding-bottom: 8.75rem;
}

.testiomonial__caption {
  margin-bottom: 4rem;
  font-weight: 600;
  text-transform: uppercase;
}

.testimonial__title {
  margin-bottom: 4rem;
  font-size: 2rem;
  max-width: 40.75rem;
  line-height: 136%;
  font-weight: 500;
}

.item-testimonial__image {
  max-width: 64px;
  margin: 0 auto;
  margin-bottom: 1.063rem;
  height: 64px;
}

.item-testimonial__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.item-testimonial__title {
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.item-testimonial__caption {
  font-size: 0.938rem;
}

/* ****************OUTRO**************** */

.outro {
  padding: 8.75rem 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  position: relative;
  overflow: hidden;
}

.outro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
}

.outro__container {
  max-width: 74.624rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
  text-align: center;
}

.outro__title {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
  line-height: 1.2;
}

.outro__title.title {
  color: var(--text-light);
}

.outro__text {
  color: var(--text-light);
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 3rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.outro__buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
}

.outro__button {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.outro__button.button--outline {
  background: transparent;
  border: 2px solid var(--text-light);
  color: var(--text-light);
}

.outro__button.button--outline:hover {
  background: var(--text-light);
  color: var(--primary-color);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .outro {
    padding: 6rem 0;
}

.outro__title {
    font-size: 2rem;
}

.outro__text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  .outro__buttons {
    flex-direction: column;
    gap: 1rem;
}

.outro__button {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .outro {
    padding: 4rem 0;
  }

  .outro__title {
    font-size: 1.75rem;
  }

  .outro__text {
    font-size: 1rem;
  }
}

/* ****************FOOTER**************** */

.footer {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 2rem 0;
}

.footer__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 74.624rem;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.footer__links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer__link {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 1rem;
}

.footer__link:hover {
  color: var(--accent-color);
}

.footer__separator {
  color: rgba(255, 255, 255, 0.4);
}

.footer__copyright {
  color: var(--text-light);
  font-size: 0.875rem;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .footer__container {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1rem;
  }

  .footer__links {
    order: 2;
}

.footer__logo {
    order: 1;
}

.footer__copyright {
    order: 3;
  }
}

/* ****************ABOUT PAGE**************** */
.main__text_pages {
  max-width: 37.5rem;
}

.main__container_pages {
  min-height: auto;
  padding: 4rem 0;
  max-width: 1000px;
}

.main_pages {
  min-height: 676px !important;
}

.main__container_pages .main__content {
  max-width: 500px;
}

.main__container_pages .main__title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.main__container_pages .main__text {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.main__container_pages .main__image {
  max-width: 45%;
}

.main__container_pages .main__image img {
  max-height: 400px;
  object-fit: cover;
}

/* ****************SERVICES PAGE**************** */
.services-page__container {
  padding-top: 80px;
  padding-bottom: 80px;
}

.services-page__intro {
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.services-page__title {
  margin-bottom: 1.5rem;
  text-align: center;
  color: var(--text-light) !important;
}

.services-page__text {
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-light);
}

.services-categories {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.service-category {
  margin-bottom: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.service-category__header {
  padding: 1.5rem 2rem;
  background: var(--bg-light);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.service-category__header:hover {
  background: rgba(0, 0, 0, 0.02);
}

.service-category__title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0;
}

.service-category__icon {
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.service-category.active .service-category__icon {
  transform: rotate(45deg);
}

.service-category__content {
  padding: 2rem;
}

.service-category__description {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-dark);
}

.service-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.service-item {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.service-item__image {
  position: relative;
  padding-top: 56.25%; /* 16:9 aspect ratio */
  overflow: hidden;
}

.service-item__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-item:hover .service-item__image img {
  transform: scale(1.05);
}

.service-item__content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-item__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.service-item__description {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-dark);
  margin-bottom: 1rem;
  flex-grow: 1;
}

.service-item__features {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
}

.service-item__features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  font-size: 0.9rem;
  line-height: 1.4;
}

.service-item__features li:before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-color);
  font-weight: bold;
}

/* Service Item Badges */
.service-item__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.service-item__badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: white;
}

.service-item__badge--smart {
  background-color: var(--primary-color);
}

.service-item__badge--ai {
  background-color: #6c5ce7; /* Purple for AI */
}

.service-item__badge--ar {
  background-color: #00b894; /* Teal for AR */
}

.service-item__badge--iot {
  background-color: #e17055; /* Orange for IoT */
}

/* New badge styles for LED and LCD section */
.service-item__badge--fixed {
  background-color: #0984e3; /* Blue for fixed installations */
}

.service-item__badge--rental {
  background-color: #00b894; /* Teal for rental options */
}

.service-item__badge--touch {
  background-color: #6c5ce7; /* Purple for touch-enabled */
}

.service-item__badge--indoor {
  background-color: #00cec9; /* Cyan for indoor use */
}

.service-item__badge--outdoor {
  background-color: #fdcb6e; /* Yellow for outdoor use */
  color: #2d3436; /* Dark text for better contrast on yellow */
}

.service-item__badge--waterproof {
  background-color: #74b9ff; /* Light blue for waterproof */
}

.service-item__badge--transparent {
  background-color: #a8e6cf; /* Mint green for transparent displays */
  color: #2d3436; /* Dark text for better contrast */
}

.service-item__badge--creative {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  color: white;
  font-weight: 700;
  letter-spacing: 0.8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.service-item__badge--gdpr {
  background-color: #3498db; /* Blue for GDPR compliance */
  color: white;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Corner badge styles */
.service-item {
  position: relative;
}

.service-item__corner-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
    align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: white;
  z-index: 2;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.service-item__corner-badge--green {
  background-color: #2ecc71; /* Green color for the badge */
}

.service-item__link {
  display: inline-block;
  color: var(--accent-color);
  font-weight: 500;
  text-decoration: none;
  margin-top: auto;
  transition: color 0.3s ease;
  position: relative;
  padding-right: 1.5rem;
}

.service-item__link:after {
  content: '→';
  position: absolute;
  right: 0;
  top: 0;
  transition: transform 0.3s ease;
}

.service-item__link:hover {
  color: var(--primary-color);
}

.service-item__link:hover:after {
  transform: translateX(5px);
}

.service-item__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.service-item__badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: white;
}

.service-item__badge--smart {
  background-color: var(--primary-color);
}

.service-item__badge--ai {
  background-color: #6c5ce7; /* Purple for AI */
}

.service-item__badge--ar {
  background-color: #00b894; /* Teal for AR */
}

.service-item__badge--iot {
  background-color: #e17055; /* Orange for IoT */
}

@media (max-width: 1200px) {
  .service-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-page__container {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .service-list {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-category__header {
    padding: 1.25rem 1.5rem;
  }

  .service-category__content {
    padding: 1.5rem;
  }

  .service-category__title {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .services {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .services__container {
    padding: 0 1rem;
  }

  .services__title {
    font-size: 2.5rem;
  }

  .item-services__image {
    height: 200px;
  }

  .item-services {
    padding: 1.5rem;
  }

  .item-services__title {
    font-size: 1.5rem;
  }

  .item-services__text {
    font-size: 0.9rem;
  }
  
  /* Additional mobile optimizations for about section */
  .about__container {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  
  .about__title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .about__text {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }
  
  .about__text p:not(:last-child) {
    margin-bottom: 1.5rem;
  }
}

/* ****************CONTACT PAGE****************/

.main_contact {
  background: url("../img/contact/background_placeholder.png") center / cover no-repeat;
}

.contact {
  padding: 6rem 0;
  background-color: var(--bg-light);
}

.contact__container {
  max-width: 74.624rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.contact__content {
  max-width: 800px;
  margin: 0 auto;
}

.contact__title {
  margin-bottom: 2rem;
  color: var(--primary-color);
}

.contact__text {
  margin-bottom: 3rem;
  color: var(--text-dark);
  font-size: 1.125rem;
  line-height: 1.6;
}

.contact__text p:not(:last-child) {
  margin-bottom: 1rem;
}

.contact__form {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.contact__form iframe {
  width: 100%;
  height: 482px;
  border: none;
  border-radius: 0.5rem;
}

.connect-contact {
  display: flex;
  flex-direction: column;
  align-items: start;
  row-gap: 32px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #e1e4eb;
}

.connect-contact__item {
  display: inline-flex;
  align-items: center;
  gap: 24px;
}

.connect-contant__type {
  margin-bottom: 4px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 110%;
  text-transform: uppercase;
}

.connect-contact__label {
  font-size: 22px;
  line-height: 150%;
  letter-spacing: 0.02em;
}

.contact__links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact__text {
  max-width: 545px;
  font-size: 18px;
  line-height: 150%;
}

.contact__text p:not(:last-child) {
  margin-bottom: 15px;
}

iframe {
  width: 100vw;
  height: 482px;
  filter: grayscale(100%);
}

/* **************REVIEWS PAGE**************** */
.reviews__container {
  padding-top: 160px;
  padding-bottom: 160px;
}

.reviews__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 24px;
  row-gap: 96px;
}

.reviews__column {
  border: 1px solid #e1e4eb;
  border-radius: 8px;
}

.reviews__item {
  padding-top: 48px;
  padding-bottom: 56px;
  padding-right: 32px;
  padding-left: 32px;
}

.item-reviews {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.item-reviews__img {
  max-width: 46px;
  height: 36px;
  margin: 0 auto;
  margin-bottom: 46px;
}

.item-reviews__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.item-reviews__text {
  margin-bottom: 40px;
  font-size: 18px;
  letter-spacing: 0.02em;
  line-height: 150%;
}

.item-reviews__author {
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.01em;
  margin-bottom: 10px;
}

.item-reviews__geo {
  font-size: 14px;
  letter-spacing: 0.002em;
}

/* ******************PRICING PAGE******************** */
.pricing__container {
  padding-top: 140px;
  padding-bottom: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.pricing__caption {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 4%;
}

.pricing__title {
  font-weight: 600;
  font-size: 72px;
  margin-bottom: 24px;
}

.pricing__text {
  font-size: 22px;
  letter-spacing: 2%;
  margin-bottom: 88px;
}

.pricing__row {
  display: flex;
  align-items: start;
  gap: 24px;
}

.pricing__column {
  border: 2px solid #e1e4eb;
  border-radius: 8px;
}

.pricing__item {
  padding: 40px;
  padding-bottom: 48px;
}

.item-pricing__info {
  padding-bottom: 32px;
  border-bottom: 1px solid #e1e4eb;
  margin-bottom: 32px;
}

.item-pricing__label {
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 1%;
  margin-bottom: 16px;
}

.item-pricing__cost {
  font-size: 72px;
  font-weight: 600;
  margin-bottom: 16px;
}

.item-pricing__list {
  margin-bottom: 64px;
}

.item-pricing__item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.item-pricing__item::before {
  content: "";
  background: url("../img/pricing/check.svg") 0 0 no-repeat;
  width: 16px;
  height: 18px;
}

.item-pricing__item:not(:last-child) {
  margin-bottom: 12px;
}

.item-pricing__button {
  display: inline-block;
  font-size: 22px;
  letter-spacing: 2%;
  font-weight: 600;
  color: #fff;
  padding: 20px 82px;
  background-color: #303a4d;
  border-radius: 64px;
}

.team {
  background-color: #e1e4eb;
}

.team__container {
  padding-top: 140px;
  padding-bottom: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.team__title {
  text-align: center;
  margin-bottom: 96px;
  max-width: 483px;
}

.team__row {
  display: grid;
  column-gap: 24px;
  row-gap: 96px;
  grid-template-columns: repeat(3, 1fr);
}

.team__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.item-team__img {
  max-width: 360px;
  height: 363px;
  margin-bottom: 40px;
}

.item-team__img img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.item-team__name {
  max-width: 186px;
  font-size: 32px;
  font-weight: 600;
  line-height: 120%;
  text-align: center;
  margin-bottom: 12px;
}

.item-team__role {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 26px;
  letter-spacing: 2%;
}

.item-team__role span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.item-team__role span::after {
  content: "";
  background: url("../img/team/icons/star.svg") 0 0 no-repeat;
  width: 12px;
  height: 12px;
}

.item-team__text {
  font-size: 16px;
  text-align: center;
  letter-spacing: 2%;
  line-height: 150%;
  max-width: 328px;
  margin-bottom: 20px;
}

.item-team__icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* *************FAQ PAGE************** */
.faqs__container {
  padding-top: 140px;
  padding-bottom: 140px;
}

.faqs__title {
  text-align: center;
  margin-bottom: 80px;
}

.spollers-faq__item {
  width: 100%;
}

.spollers-faq__item:not(:last-child) {
  margin-bottom: 24px;
}

.spollers-faq__button {
  display: inline-block;
  border: 2px solid #e1e4eb;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border-radius: 8px;
}

.spollers-faq__button span {
  padding-left: 40px;
  padding-top: 32px;
  padding-bottom: 32px;
  font-weight: 600;
}

.spollers-faq__button img {
  padding-right: 34.5px;
}

.spollers-faq__text {
  max-height: 0;
  overflow: hidden;
  width: 100%;
  display: block;
}

.spollers-faq__item.active .spollers-faq__text {
  max-height: 1000px;
  max-height: calc(1000px + 16px);
}

.spollers-faq__item.active .spollers-faq__button {
  border-bottom: none;
  border-radius: 8px 8px 0px 0px;
}

.spollers-faq__item.active .spollers-faq__button span {
  padding-bottom: 32px;
}

.spollers-faq__item.active .spollers-faq__button img {
  transform: translate(-34px, 0px) rotate(180deg);
}

.spollers-faq__inner {
  padding-top: 20px;
  padding-left: 40px;
  border: 2px solid #e1e4eb;
  border-radius: 0px 0px 8px 8px;
  line-height: 150%;
  padding-bottom: 20px;
  border-top: none;
  padding-right: 100px;
}

/* ****************TEAM PAGE**************** */
.director__container {
  padding-top: 140px;
  padding-bottom: 140px;
  display: flex;
  align-items: center;
  gap: 96px;
}

.director__title {
  margin-bottom: 16px;
}

.director__role {
  font-size: 22px;
  letter-spacing: 2%;
  margin-bottom: 40px;
}

.director__text {
  letter-spacing: 2%;
  line-height: 150%;
  max-width: 480px;
}

.director__text p:not(:last-child) {
  margin-bottom: 20px;
}

.director__img {
  max-width: 552px;
  height: 614px;
}

.director__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

/* ****************GALLERY**************** */
.gallery__container {
  padding-bottom: 140px;
  padding-top: 140px;
}

.gallery__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 24px;
  row-gap: 96px;
  margin-bottom: 96px;
  justify-items: center;
}

.gallery__item {
  max-width: 360px;
  height: 407px;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.gallery__paggination {
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: center;
  gap: 42px;
}

.gallery__paggination button:first-child {
  transform: translate(0px, 5px);
}

.gallery__paggination button:last-child {
  transform: rotate(-180deg) translate(0px, 5px);
}

.gallery_active {
  color: #fff;
  padding: 10px 15px;
  background-color: #303a4d;
  border-radius: 100px;
  display: inline-block;
}

/* ****************RESOURCES**************** */
.resources__container {
  padding-top: 140px;
  padding-bottom: 140px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 24px;
  row-gap: 96px;
  justify-items: center;
}

.resources__img {
  max-width: 360px;
  height: 330px;
  margin-bottom: 32px;
}

.resources__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.resources__title {
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 12px;
}

.resources__text {
  letter-spacing: 2%;
  line-height: 150%;
  max-width: 243px;
  margin-bottom: 32px;
}

.resources__button {
  background-color: #fff;
  color: #303a4d;
  font-weight: 600;
  letter-spacing: 2%;
  border: 2px solid #303a4d;
  border-radius: 64px;
}

/* ****************ADAPTIVE**************** */

@media (max-width: 992px) {
  .services__row {
    grid-template-columns: 1fr;
    gap: 6rem;
    justify-items: center;
  }

  .item-services {
    text-align: center;
    align-items: center;
  }

  .page__main {
    padding-bottom: 80px;
  }

  .main__container {
    flex-direction: column;
    text-align: center;
    padding: 6rem 1rem;
  }

  .main__content {
    max-width: 100%;
    margin-bottom: 3rem;
  }

  .main__title {
    font-size: 3.5rem;
  }

  .main__text {
    margin: 0 auto 2rem;
    font-size: 1.1rem;
  }

  .main__image {
    max-width: 80%;
    margin: 0 auto;
  }

  /* Make about section mobile-friendly */
  .about__container {
    flex-direction: column;
    padding-top: 4rem;
    padding-bottom: 4rem;
    text-align: center;
  }
  
  .about__image {
    max-width: 100%;
    height: auto;
    margin-bottom: 2rem;
  }
  
  .about__text {
    max-width: 100%;
    margin: 0 auto 2.5rem;
  }
  
  .about__button {
    margin: 0 auto;
  }

  .logo__image {
    height: 4rem;
  }
  
  .footer__logo .logo__image {
    height: 3.5rem;
  }

  .header__container {
    min-height: 6rem;
  }

  .main__container_pages {
    padding: 3rem 1rem;
  }

  .main__container_pages .main__content {
    max-width: 100%;
    margin-bottom: 2rem;
  }

  .main__container_pages .main__image {
    max-width: 80%;
  }
}

@media (min-width: 47.999rem) {
  .menu__list {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
  }
}

@media (max-width: 995px) {
  .item-pricing__button {
    font-size: 19px;
  }
}

@media (max-width: 62.6875rem) {
  .resources__container {
    padding-top: 70px;
    padding-bottom: 70px;
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery__paggination {
    gap: 27px;
  }

  .gallery__row {
    grid-template-columns: repeat(2, 1fr);
  }

  .team__row {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 30px;
  }

  .director__container {
    flex-direction: column;
    padding-top: 70px;
    padding-bottom: 70px;
    gap: 10px;
    text-align: center;
  }

  .item-pricing {
    padding: 20px;
    padding-bottom: 30px;
  }

  .pricing__title {
    font-size: 39px;
  }

  .pricing__text {
    margin-bottom: 25px;
  }

  .item-pricing__button {
    padding: 16px 42px;
  }

  .footer__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
  }

  .footer__policy,
  .footer__copyright {
    justify-self: center;
    text-align: center;
    margin: 0.5rem 0;
  }

  .footer__logo {
    margin-bottom: 1rem;
  }

  .services-page__column {
    gap: 30px;
    font-size: 15px;
  }

  .services-page__title {
    font-size: 29px;
  }

  .reviews__row {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 30px;
    column-gap: 10px;
  }

  .reviews__item {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    padding-top: 20px;
    display: inline-block;
  }

  .item-reviews__text {
    font-size: 16px;
  }

  .item-reviews__author {
    font-size: 16px;
  }
}

@media (max-width: 47.999rem) {
  .spollers-faq__item.active .spollers-faq__button img {
    transform: translate(-10px, -10px) rotate(180deg);
  }

  .spollers-faq__button span {
    padding-top: 15px;
    padding-left: 10px;
    padding-bottom: 15px;
    font-weight: 600;
    font-size: 14px;
  }

  .spollers-faq__button img {
    padding-right: 10px;
  }

  .spollers-faq__inner {
    font-size: 16px;
    padding-left: 10px;
    line-height: 130%;
  }

  .pricing__container {
    text-align: center;
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .pricing__row {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .item-pricing__button {
    font-size: 17px;
    padding: 15px 32px;
  }

  .reviews__container {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .icon-menu {
    display: block;
    position: relative;
    flex: 0 0 1.875rem;
    width: 1.875rem;
    height: 1.125rem;
    cursor: pointer;
    z-index: 5;
    transition: transform 0.3s ease;
  }

  .icon-menu span,
  .icon-menu::before,
  .icon-menu::after {
    content: "";
    transition: all 0.3s ease;
    right: 0;
    position: absolute;
    width: 100%;
    height: 0.125rem;
    background-color: var(--text-light);
    transform-origin: right;
  }

  .icon-menu::before {
    top: 0;
  }

  .icon-menu::after {
    bottom: 0;
  }

  .menu-open .icon-menu span {
    transform: scale(0);
  }

  .menu-open .icon-menu::before {
    top: 50%;
    transform: rotate(-45deg);
  }

  .menu-open .icon-menu::after {
    bottom: 50%;
    transform: rotate(45deg);
  }

  .menu__body {
    background-color: var(--bg-gradient);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    padding: 9.375rem 1.875rem 1.875rem 1.875rem;
    overflow-y: auto;
    flex-direction: column;
    row-gap: 1rem;
    transition: left 0.3s ease;
    z-index: 4;
    display: flex;
    justify-content: flex-start;
  }

  .menu__body::before {
    content: "";
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    min-height: 5.75rem;
    background-color: var(--bg-gradient);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 2;
    transition: left 0.3s ease;
  }

  .menu-open .menu__body {
    left: 0;
  }

  .menu-open .menu__body::before {
    left: 0;
  }

  .menu__item {
    text-align: center;
    opacity: 1;
    transform: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    margin-bottom: 0.5rem;
  }

  .menu__link {
    font-size: 1.5rem;
    color: #ffffff !important;
    position: relative;
    padding: 0.75rem 0;
    display: inline-block;
    width: 100%;
  }

  .menu__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
  }

  .menu__link:hover::after {
    width: 100%;
  }

  .menu__link:hover {
    color: #ffffff !important;
  }

  .actions-header__button {
    padding: 0.75rem 1.5rem;
    border-color: #ffffff;
    color: #ffffff;
    transition: all 0.3s ease;
    margin-top: 1rem;
  }

  .actions-header__button:hover {
    background-color: #ffffff;
    color: var(--primary-color);
    transform: translateY(-2px);
  }

  /* Add backdrop overlay */
  .menu-open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 3;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .menu-open::before {
    opacity: 1;
  }
}

@media (max-width: 61.936rem) {
  .footer__container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    row-gap: 0.938rem;
  }

  .logo {
    font-size: 2rem;
  }
}

@media (max-width: 530px) {
  .reviews__row {
    grid-template-columns: 1fr;
  }

  .team__row {
    grid-template-columns: 1fr;
  }

  .gallery__row {
    grid-template-columns: 1fr;
  }

  .resources__container {
    grid-template-columns: 1fr;
  }
}

/* Update brand colors */
:root {
  --primary-color: #000080;    /* Navy blue */
  --accent-color: #ff007f;     /* Hot pink */
  --text-dark: #2D3436;
  --text-light: #fff;
  --bg-light: #F5F6FA;
  --bg-gradient: linear-gradient(135deg, var(--primary-color) 0%, #000066 100%);
}

/* Update button styles */
.button {
  background-color: var(--accent-color);
  color: var(--text-light);
  transition: all 0.3s;
}

.button:hover {
  background-color: #e6006f;
  transform: translateY(-2px);
}

/* Update header styles */
.menu__link:hover {
  color: var(--accent-color);
}

.actions-header__button {
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
}

.actions-header__button:hover {
  background-color: var(--accent-color);
  color: var(--text-light);
}

/* Update main section styles */
.main {
  background: var(--bg-gradient);
}

.main__button {
  color: var(--primary-color);
  background-color: var(--text-light);
}

.main__button:hover {
  color: var(--accent-color);
}

/* Update services section */
.services {
  position: relative;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  padding: 4rem 0;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 90%);
}

.services::before,
.services::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--accent-color) 0%, transparent 100%);
  opacity: 0.05;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.services__title {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.services__title::after {
  content: '';
  position: absolute;
  bottom: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--accent-color);
}

.services__container {
  position: relative;
  z-index: 1;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.services__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.services__row:last-child {
  margin-bottom: 0;
}

.services__column {
    display: flex;
    flex-direction: column;
  }

.item-services {
  display: flex;
    flex-direction: column;
  height: 100%;
  background: #fff;
  border-radius: 0.75rem;
  padding: 1rem;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 128, 0.1);
}

.item-services:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 128, 0.1);
}

.item-services__image {
  margin-bottom: 1rem;
  max-width: 360px;
  height: 240px;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.item-services__image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.item-services:hover .item-services__image::after {
  opacity: 0.1;
}

.item-services__image img {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.3s ease;
}

.item-services:hover .item-services__image img {
  transform: scale(1.05);
}

.item-services__title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.item-services__text {
  color: var(--text-dark);
  line-height: 1.4;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.item-services__button {
  margin-top: auto;
  background-color: inherit;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.item-services__button:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
  transform: translateY(-2px);
}

.outro_services {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  position: relative;
  overflow: hidden;
}

.outro_services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
}

/* Update footer styles */
.footer {
  background-color: var(--primary-color);
}

.footer__policy:hover {
  color: var(--accent-color);
}

/* Update testimonial section */
  .testimonial__title {
  color: var(--text-dark);
}

.item-testimonial__title {
  color: var(--primary-color);
}

/* Update about section */
.about__button:hover {
  background-color: var(--accent-color);
}

/* Update mobile menu */
@media (max-width: 47.999rem) {
  .icon-menu {
    display: block;
    position: relative;
    flex: 0 0 1.875rem;
    width: 1.875rem;
    height: 1.125rem;
    cursor: pointer;
    z-index: 5;
    transition: transform 0.3s ease;
  }

  .icon-menu span,
  .icon-menu::before,
  .icon-menu::after {
    content: "";
    transition: all 0.3s ease;
    right: 0;
    position: absolute;
    width: 100%;
    height: 0.125rem;
    background-color: var(--text-light);
    transform-origin: right;
  }

  .icon-menu::before {
    top: 0;
  }

  .icon-menu::after {
    bottom: 0;
  }

  .menu-open .icon-menu span {
    transform: scale(0);
  }

  .menu-open .icon-menu::before {
    top: 50%;
    transform: rotate(-45deg);
  }

  .menu-open .icon-menu::after {
    bottom: 50%;
    transform: rotate(45deg);
  }

  .menu__body {
    background-color: var(--bg-gradient);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    padding: 9.375rem 1.875rem 1.875rem 1.875rem;
    overflow-y: auto;
    flex-direction: column;
    row-gap: 1rem;
    transition: left 0.3s ease;
    z-index: 4;
    display: flex;
    justify-content: flex-start;
  }

  .menu__body::before {
    content: "";
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    min-height: 5.75rem;
    background-color: var(--bg-gradient);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 2;
    transition: left 0.3s ease;
  }

  .menu-open .menu__body {
    left: 0;
  }

  .menu-open .menu__body::before {
    left: 0;
  }

  .menu__item {
    text-align: center;
    opacity: 1;
    transform: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    margin-bottom: 0.5rem;
  }

  .menu__link {
    font-size: 1.5rem;
    color: #ffffff !important;
    position: relative;
    padding: 0.75rem 0;
    display: inline-block;
    width: 100%;
  }

  .menu__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
  }

  .menu__link:hover::after {
    width: 100%;
  }

  .menu__link:hover {
    color: #ffffff !important;
  }

  .actions-header__button {
    padding: 0.75rem 1.5rem;
    border-color: #ffffff;
    color: #ffffff;
    transition: all 0.3s ease;
    margin-top: 1rem;
  }

  .actions-header__button:hover {
    background-color: #ffffff;
    color: var(--primary-color);
    transform: translateY(-2px);
  }

  /* Add backdrop overlay */
  .menu-open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 3;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .menu-open::before {
    opacity: 1;
  }
}

/* Update animations */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Update service items */
.item-services__title {
  color: var(--primary-color);
}

.item-services__text {
  color: var(--text-dark);
}

/* Update CTA sections */
.outro__button {
  background-color: var(--accent-color);
}

.outro__button:hover {
  background-color: #e6006f;
}

/* Update title colors */
  .title {
  color: var(--primary-color);
}

.main__title {
  color: var(--text-light);
}

/* Contact phone section */
.contact__info {
    margin-bottom: 2rem;
  }

.contact__phone {
    display: flex;
    align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-light);
  border-radius: 0.5rem;
  transition: transform 0.3s ease;
}

.contact__phone:hover {
  transform: translateY(-2px);
}

.contact__phone i {
    font-size: 1.5rem;
  color: var(--accent-color);
}

.contact__phone-text h3 {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.contact__phone-text a {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact__phone-text a:hover {
  color: var(--accent-color);
}

@media (max-width: 768px) {
  .contact__phone {
    padding: 1rem;
  }

  .contact__phone i {
    font-size: 1.25rem;
  }

  .contact__phone-text h3 {
    font-size: 1rem;
  }

  .contact__phone-text a {
    font-size: 1.1rem;
  }
}

@media (max-width: 1200px) {
  .services__row {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .services {
    padding: 4rem 0;
  }

  .services__container {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .services__title {
    margin-bottom: 1.5rem;
  }

  .services__row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }

  .item-services__image {
    height: 240px;
  }

  .item-services {
    padding: 1.25rem;
  }
}

@media (max-width: 480px) {
  .services {
    padding-top: 60px;
    padding-bottom: 150px;
  }

  .services__container {
    padding: 0 1rem;
  }

  .services__title {
    font-size: 2.5rem;
  }

  .item-services__image {
    height: 200px;
  }

  .item-services {
    padding: 1.5rem;
  }

  .item-services__title {
    font-size: 1.5rem;
  }

  .item-services__text {
    font-size: 0.9rem;
  }
  
  /* Additional mobile optimizations for about section */
  .about__container {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  
  .about__title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .about__text {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

  .about__text p:not(:last-child) {
    margin-bottom: 1.5rem;
  }
}

/* **************CASE STUDIES**************** */
.case-studies {
  padding: 6rem 0;
}

.case-studies__container {
  max-width: 74.624rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.case-studies__title {
    text-align: center;
  margin-bottom: 4rem;
  color: var(--primary-color);
  }

.case-studies__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.case-studies__column {
  display: flex;
    flex-direction: column;
}

.item-case-study {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.item-case-study:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 128, 0.1);
}

.item-case-study__image {
  position: relative;
  padding-top: 60%;
  overflow: hidden;
}

.item-case-study__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.item-case-study:hover .item-case-study__image img {
  transform: scale(1.05);
}

.item-case-study__content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.item-case-study__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.item-case-study__text {
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.item-case-study__button {
  align-self: flex-start;
  background-color: var(--accent-color);
  color: var(--text-light);
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.item-case-study__button:hover {
  background-color: #e6006f;
  transform: translateY(-2px);
}

@media (max-width: 1200px) {
  .case-studies__row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .case-studies {
    padding: 4rem 0;
  }

  .case-studies__title {
    margin-bottom: 3rem;
  }

  .case-studies__row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .item-case-study__content {
    padding: 1.25rem;
  }
}

@media (max-width: 480px) {
  .case-studies {
    padding: 3rem 0;
  }

  .case-studies__title {
    margin-bottom: 2rem;
  }

  .item-case-study__title {
    font-size: 1.1rem;
  }

  .item-case-study__text {
    font-size: 0.9rem;
  }
}

/* Service Categories Styles */
.services-categories {
  margin-top: 3rem;
}

.service-category {
  margin-bottom: 1.5rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.service-category__header {
  display: flex;
  justify-content: space-between;
    align-items: center;
  padding: 1.5rem 2rem;
  background-color: var(--bg-light);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.service-category__header:hover {
  background-color: rgba(var(--primary-rgb), 0.05);
}

.service-category__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0;
}

.service-category__icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.service-category.active .service-category__icon {
  transform: rotate(45deg);
}

.service-category__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.3s ease;
  padding: 0 2rem;
  scroll-behavior: smooth;
}

.service-category.active .service-category__content {
  max-height: 2000px;
  padding: 1.5rem 2rem;
  overflow-y: auto;
}

.service-category__description {
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  line-height: 1.6;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  padding-right: 0.5rem;
}

/* Apply scrolling only to service lists with more than 6 items */
.service-list.scrollable {
  max-height: 80vh;
  overflow-y: auto;
}

/* Custom scrollbar for service list - only when scrollable */
.service-list.scrollable::-webkit-scrollbar {
  width: 6px;
}

.service-list.scrollable::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.service-list.scrollable::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 3px;
  opacity: 0.7;
}

.service-list.scrollable::-webkit-scrollbar-thumb:hover {
  background: var(--accent-color);
  opacity: 1;
}

.service-item {
  padding: 1.25rem;
  background-color: var(--bg-light);
  border-radius: 6px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
    flex-direction: column;
  height: 100%;
}

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

.service-item__image {
  margin-bottom: 1rem;
  border-radius: 4px;
  overflow: hidden;
  height: 160px;
  position: relative;
}

.service-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-item:hover .service-item__image img {
  transform: scale(1.05);
}

.service-item__title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

.service-item__description {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-dark);
  margin-bottom: 1rem;
  flex-grow: 1;
}

.service-item__link {
  display: inline-block;
  color: var(--accent-color);
  font-weight: 500;
  text-decoration: none;
  margin-top: auto;
  transition: color 0.3s ease;
  position: relative;
  padding-right: 1.5rem;
}

.service-item__link:after {
  content: '→';
  position: absolute;
  right: 0;
  top: 0;
  transition: transform 0.3s ease;
}

.service-item__link:hover {
  color: var(--primary-color);
}

.service-item__link:hover:after {
  transform: translateX(5px);
}

.service-item__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.service-item__badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: white;
}

.service-item__badge--smart {
  background-color: var(--primary-color);
}

.service-item__badge--ai {
  background-color: #6c5ce7; /* Purple for AI */
}

.service-item__badge--ar {
  background-color: #00b894; /* Teal for AR */
}

.service-item__badge--iot {
  background-color: #e17055; /* Orange for IoT */
}

/* New badge styles for LED and LCD section */
.service-item__badge--fixed {
  background-color: #0984e3; /* Blue for fixed installations */
}

.service-item__badge--rental {
  background-color: #00b894; /* Teal for rental options */
}

.service-item__badge--touch {
  background-color: #6c5ce7; /* Purple for touch-enabled */
}

.service-item__badge--indoor {
  background-color: #00cec9; /* Cyan for indoor use */
}

.service-item__badge--outdoor {
  background-color: #fdcb6e; /* Yellow for outdoor use */
  color: #2d3436; /* Dark text for better contrast on yellow */
}

.service-item__badge--waterproof {
  background-color: #74b9ff; /* Light blue for waterproof */
}

.service-item__badge--transparent {
  background-color: #a8e6cf; /* Mint green for transparent displays */
  color: #2d3436; /* Dark text for better contrast */
}

.service-item__badge--creative {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  color: white;
  font-weight: 700;
  letter-spacing: 0.8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.service-item__badge--gdpr {
  background-color: #3498db; /* Blue for GDPR compliance */
  color: white;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Corner badge styles */
.service-item {
  position: relative;
}

.service-item__corner-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
    align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: white;
  z-index: 2;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.service-item__corner-badge--green {
  background-color: #2ecc71; /* Green color for the badge */
}

.service-item__link {
  display: inline-block;
  color: var(--accent-color);
  font-weight: 500;
  text-decoration: none;
  margin-top: auto;
  transition: color 0.3s ease;
  position: relative;
  padding-right: 1.5rem;
}

.service-item__link:after {
  content: '→';
  position: absolute;
  right: 0;
  top: 0;
  transition: transform 0.3s ease;
}

.service-item__link:hover {
  color: var(--primary-color);
}

.service-item__link:hover:after {
  transform: translateX(5px);
}

.service-item__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.service-item__badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: white;
}

.service-item__badge--smart {
  background-color: var(--primary-color);
}

.service-item__badge--ai {
  background-color: #6c5ce7; /* Purple for AI */
}

.service-item__badge--ar {
  background-color: #00b894; /* Teal for AR */
}

.service-item__badge--iot {
  background-color: #e17055; /* Orange for IoT */
}

@media (max-width: 768px) {
  .service-list {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 1rem;
    width: calc(100% + 2rem);
    margin-left: -1rem;
    margin-right: -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
    position: relative;
  }

  .service-item {
    flex: 0 0 300px;
    width: 300px;
    margin-right: 1rem;
    scroll-snap-align: start;
    position: relative;
  }

  .service-item:first-child::before {
    content: 'Swipe to see more';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 2;
    animation: pulse 2s infinite;
  }

  .service-item:last-child {
    margin-right: 0;
  }

  .service-category__content {
    width: 100%;
    overflow: hidden;
    position: relative;
  }

  /* Hide scrollbar but keep functionality */
  .service-list::-webkit-scrollbar {
    height: 4px;
  }

  .service-list::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 2px;
  }

  .service-list::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 2px;
  }
  
  /* Scroll indicator overlay */
  .service-category__content::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.8));
    pointer-events: none;
    z-index: 1;
  }
  
  @keyframes pulse {
    0% {
      opacity: 1;
    }
    50% {
      opacity: 0.7;
    }
    100% {
      opacity: 1;
    }
  }
}

@media (max-width: 480px) {
  .service-item {
    flex: 0 0 280px;
    width: 280px;
  }
}

.service-item__badge--window {
  background-color: #00b894; /* Teal for window displays */
  color: white;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.service-item__badge--android {
  background-color: #3ddc84; /* Android green */
  color: white;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.service-item__badge--windows {
  background-color: #00b894; /* Teal for window displays */
  color: white;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Service Features Section */
.service-features {
  padding: 80px 0;
  background-color: var(--color-background);
}

.service-features__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.service-features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.service-feature {
  background: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-feature:hover {
  transform: translateY(-5px);
}

.service-feature__image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.service-feature__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-feature:hover .service-feature__image img {
  transform: scale(1.05);
}

.service-feature__content {
  padding: 24px;
}

.service-feature__title {
  font-size: 24px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 16px;
}

.service-feature__description {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin-bottom: 20px;
}

.service-feature__list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.service-feature__list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 16px;
  color: var(--color-text-secondary);
}

.service-feature__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

.service-feature__button {
  display: inline-block;
  padding: 12px 24px;
  background-color: var(--color-primary);
  color: var(--color-white);
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.service-feature__button:hover {
  background-color: var(--color-primary-dark);
}

/* Service Benefits Section */
.service-benefits {
  padding: 80px 0;
  background-color: var(--color-background-alt);
}

.service-benefits__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.service-benefits__title {
    text-align: center;
  font-size: 36px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 48px;
}

.service-benefits__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}

.service-benefit {
  text-align: center;
  padding: 32px;
  background: var(--color-white);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-benefit:hover {
  transform: translateY(-5px);
}

.service-benefit__icon {
  font-size: 48px;
  margin-bottom: 24px;
}

.service-benefit__title {
    font-size: 20px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 16px;
}

.service-benefit__description {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-secondary);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .service-features,
  .service-benefits {
    padding: 60px 0;
  }

  .service-features__grid,
  .service-benefits__grid {
    gap: 24px;
  }

  .service-feature__title,
  .service-benefits__title {
    font-size: 28px;
  }

  .service-benefit {
    padding: 24px;
  }
}

/* Case Study Hero Section */
.main_case-study {
  min-height: auto !important;
  padding: 4rem 0;
}

.main_case-study .main__container {
  min-height: auto;
  padding: 2rem 0;
}

.main_case-study .main__title {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.main_case-study .main__text {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.main_case-study .main__image {
  max-height: 400px;
}

.main_case-study .main__image img {
  max-height: 400px;
  object-fit: cover;
}

@media (max-width: 992px) {
  .main_case-study {
    padding: 3rem 0;
  }
  
  .main_case-study .main__container {
    padding: 1.5rem 0;
  }
  
  .main_case-study .main__title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .main_case-study {
    padding: 2rem 0;
  }
  
  .main_case-study .main__container {
    padding: 1rem 0;
  }
  
  .main_case-study .main__title {
    font-size: 2rem;
  }
  
  .main_case-study .main__text {
    font-size: 1rem;
  }
  
  .main_case-study .main__image {
    max-height: 300px;
  }
  
  .main_case-study .main__image img {
    max-height: 300px;
  }
}

/* Case Study Project Overview Styles */
.case-study-content__info {
  background: linear-gradient(135deg, var(--primary-color) 0%, #000066 100%);
  padding: 2rem;
  border-radius: 12px;
  color: var(--text-light);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.case-study-content__info-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--text-light);
  position: relative;
  padding-bottom: 1rem;
}

.case-study-content__info-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
}

.case-study-content__info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.case-study-content__info-list li {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.case-study-content__info-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-size: 1.2rem;
}

.case-study-content__info-list li strong {
  color: var(--accent-color);
  font-weight: 600;
  display: block;
  margin-bottom: 0.25rem;
}

@media (max-width: 768px) {
  .case-study-content__info {
    padding: 1.5rem;
  }
  
  .case-study-content__info-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
  
  .case-study-content__info-list li {
    margin-bottom: 0.75rem;
  }
}

/* Case Study Content Layout */
.case-study-content__container {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 2rem;
  position: relative;
  margin-top: 4rem;
}

.case-study-content__sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
  display: flex;
    flex-direction: column;
  gap: 1.5rem;
}

.case-study-content__info,
.case-study-content__cta {
  position: sticky;
}

.case-study-content__info {
  top: 100px;
}

.case-study-content__cta {
  top: calc(100px + 2rem);
}

.case-study-content__info {
  background: linear-gradient(135deg, var(--primary-color) 0%, #000066 100%);
  padding: 2rem;
  border-radius: 12px;
  color: var(--text-light);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
}

.case-study-content__cta {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.case-study-content__cta-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.case-study-content__cta-text {
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.case-study-content__cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--accent-color);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.case-study-content__cta-button:hover {
  background: #e6006f;
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .case-study-content__container {
    grid-template-columns: 1fr;
  }
  
  .case-study-content__sidebar {
    position: relative;
    top: 0;
  }
  
  .case-study-content__info,
  .case-study-content__cta {
    position: relative;
    top: 0;
  }
}

@media (max-width: 768px) {
  .case-study-content__info,
  .case-study-content__cta {
    padding: 1.5rem;
  }
  
  .case-study-content__cta-title {
    font-size: 1.25rem;
  }
}

/* Case Study Section Spacing and Challenges Box */
.case-study-content__section {
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.case-study-content__section:first-child {
  margin-top: 0;
}

.case-study-content__section-title {
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem;
}

.case-study-content__section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
}

.case-study-content__challenges {
  background: var(--bg-light);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-top: 2rem;
}

.case-study-content__challenges-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.case-study-content__challenges-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.case-study-content__challenges-list li {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
  position: relative;
  line-height: 1.6;
}

.case-study-content__challenges-list li::before {
  content: "!";
  position: absolute;
  left: 0;
  top: 0;
  width: 1.5rem;
  height: 1.5rem;
  background: var(--accent-color);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
    justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
}

.case-study-content__challenges-list li:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .case-study-content__section {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
  
  .case-study-content__section-title {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
  }
  
  .case-study-content__challenges {
    padding: 1.5rem;
  }
  
  .case-study-content__challenges-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
  
  .case-study-content__challenges-list li {
    margin-bottom: 1rem;
    padding-left: 1.75rem;
  }
}

/* Partnership Page Styles */
.main_partnership {
  min-height: 75vh;
  padding: 6rem 0;
}

.main_partnership .main__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.main_partnership .main__title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: var(--text-light);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  position: relative;
  padding-bottom: 1.5rem;
}

.main_partnership .main__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 4px;
  background: var(--accent-color);
  border-radius: 2px;
}

@media (max-width: 992px) {
  .main_partnership .main__title {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .main_partnership .main__title {
    font-size: 2.5rem;
    text-align: center;
  }
  
  .main_partnership .main__title::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

.main_partnership .main__text {
  font-size: 1.1rem;
  line-height: 1.6;
}

.main_partnership .main__image img {
  max-height: 400px;
  width: 100%;
  object-fit: cover;
  border-radius: 1rem;
}

@media (max-width: 992px) {
  .main_partnership .main__container {
    grid-template-columns: 1fr;
  }
  
  .main_partnership .main__title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .main_partnership {
    min-height: auto;
    padding: 4rem 0;
  }
  
  .main_partnership .main__image img {
    max-height: 300px;
  }
}

/* Partnership Benefits Section */
.partnership-benefits {
  padding: 80px 0;
  background-color: var(--light-bg);
}

.partnership-benefits__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.partnership-benefits__title {
    text-align: center;
  font-size: 36px;
  margin-bottom: 48px;
  color: var(--primary-color);
}

.partnership-benefits__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.partnership-benefit {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

.partnership-benefit:hover {
  transform: translateY(-5px);
}

.partnership-benefit__icon {
  font-size: 40px;
  margin-bottom: 20px;
}

.partnership-benefit__title {
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--primary-color);
}

.partnership-benefit__description {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
}

/* Display Solutions Section */
.display-solutions {
  padding: 80px 0;
}

.display-solutions__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.display-solutions__title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 48px;
  color: var(--primary-color);
}

.display-solutions__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.display-solution {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.display-solution__image {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.display-solution__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.display-solution:hover .display-solution__image img {
  transform: scale(1.05);
}

.display-solution__content {
  padding: 30px;
}

.display-solution__title {
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--primary-color);
}

.display-solution__description {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: var(--text-color);
}

.display-solution__features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.display-solution__features li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 16px;
  color: var(--text-color);
}

.display-solution__features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .main_partnership .main__container {
    grid-template-columns: 1fr;
  }

  .display-solutions__grid {
    grid-template-columns: 1fr;
  }

  .main_partnership .main__title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .main_partnership {
    padding: 100px 0 40px;
  }

  .partnership-benefits,
  .display-solutions {
    padding: 60px 0;
  }

  .partnership-benefits__title,
  .display-solutions__title {
    font-size: 28px;
    margin-bottom: 36px;
  }

  .display-solution__image {
    height: 250px;
  }
}

/* Partnership Value Proposition */
.partnership-value {
  padding: 5rem 0;
  background-color: var(--color-background);
}

.partnership-value__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.partnership-value__title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--color-text);
}

.partnership-value__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.partnership-value__item {
  background: var(--color-white);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.partnership-value__item:hover {
  transform: translateY(-5px);
}

.partnership-value__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--accent-color);
}

.partnership-value__title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-text);
}

.partnership-value__text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text-light);
}

/* Technical Specifications */
.tech-specs {
  padding: 5rem 0;
  background-color: var(--color-background-alt);
}

.tech-specs__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.tech-specs__title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--color-text);
}

.tech-specs__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.tech-specs__item {
  background: var(--color-white);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.tech-specs__subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--color-text);
}

.tech-specs__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tech-specs__list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text-light);
}

.tech-specs__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .partnership-value__grid,
  .tech-specs__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .partnership-value,
  .tech-specs {
    padding: 3rem 0;
  }

  .partnership-value__title,
  .tech-specs__title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .partnership-value__grid,
  .tech-specs__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .partnership-value__item,
  .tech-specs__item {
    padding: 1.5rem;
  }
}

/* Partnership Logos */
.partnership-logos {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2rem;
  margin: 2rem 0;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  backdrop-filter: blur(10px);
}

.partnership-logo {
  flex: 0 0 160px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 0.5rem;
  padding: 1rem;
  transition: transform 0.3s ease;
}

.partnership-logo:hover {
  transform: translateY(-2px);
}

.partnership-logo__img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  width: auto;
  height: auto;
}

.partnership-logo__plus {
  font-size: 2rem;
  font-weight: 300;
  color: var(--text-light);
  opacity: 0.8;
}

@media (max-width: 768px) {
  .partnership-logos {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
  }

  .partnership-logo {
    flex: 0 0 140px;
    height: 70px;
    width: 140px;
  }

  .partnership-logo__img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
  }

  .partnership-logo__plus {
    transform: rotate(90deg);
  }
}

/* **************USE CASES**************** */
.use-cases {
  padding: 6rem 0;
  background-color: var(--color-background-alt);
}

.use-cases__container {
  max-width: 74.624rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.use-cases__title {
  text-align: center;
  margin-bottom: 4rem;
  color: var(--primary-color);
}

.use-cases__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.use-cases__column {
  display: flex;
  flex-direction: column;
}

.item-use-case {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.item-use-case:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 128, 0.1);
}

.item-use-case__image {
  position: relative;
  padding-top: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  display: flex;
  align-items: center;
  justify-content: center;
}

.item-use-case__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.item-use-case:hover .item-use-case__image img {
  transform: scale(1.05);
}

.item-use-case__content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.item-use-case__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.item-use-case__description {
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.item-use-case__features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.item-use-case__features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.item-use-case__features li:before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-color);
  font-weight: bold;
}

@media (max-width: 1200px) {
  .use-cases__row {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .use-cases {
    padding: 4rem 0;
  }

  .use-cases__title {
    margin-bottom: 3rem;
  }

  .use-cases__row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .item-use-case__content {
    padding: 1.25rem;
  }

  .item-use-case__title {
    font-size: 1.125rem;
  }
}

@media (max-width: 480px) {
  .use-cases {
    padding: 3rem 0;
  }

  .use-cases__title {
    margin-bottom: 2rem;
  }

  .item-use-case__content {
    padding: 1rem;
  }
}