:root {
  --font-size: clamp(1rem, 2vw, 2.3rem);
}

@font-face {
  font-family: "Galyon Bold";
  font-style: bold;
  src: local("Galyon"), local("Galyon-Bold"), url(../assets/fonts/galyon-bold.woff) format("woff"), url(../assets/fonts/galyon-bold.otf) format("otf");
}
@font-face {
  font-family: "Galyon Regular";
  font-style: regular;
  src: local("Galyon"), local("Galyon-Regular"), url(../assets/fonts/galyon-regular.woff) format("woff");
}
body,
html {
  margin: 0;
  padding: 0;
}

body.splash-active {
  overflow: hidden;
}

.splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 1000;
  transition: opacity 3s ease, visibility 3s ease;
}
.splash-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.splash-logo {
  width: 100vw;
  height: 100vh;
  object-fit: contain;
  animation: shrinkFade 3s ease forwards;
}

@keyframes shrinkFade {
  0% {
    transform: scale(1.2);
    opacity: 1;
  }
  70% {
    transform: scale(0.3);
    opacity: 1;
  }
  100% {
    transform: scale(0.2);
    opacity: 0;
  }
}
.vertical-text {
  animation: verticalSlideIn 2.5s ease 0.8s forwards;
}

@keyframes verticalSlideIn {
  0% {
    transform: rotate(180deg) translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: rotate(180deg) translateY(0);
    opacity: 0.7;
  }
}
@keyframes fadeText {
  to {
    opacity: 1;
  }
}
.main-content {
  opacity: 0;
  animation: showContent 0.5s ease-in-out 0.3s forwards;
}

@keyframes showContent {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 20px;
  opacity: 0;
  transform: translateX(-50px);
  animation: slideIn 1.5s cubic-bezier(0.23, 1, 0.32, 1) 3.5s forwards;
}

@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.hero {
  opacity: 0;
  transform: translateY(50px) scale(1.1);
  animation: fadeInUp 1.5s ease-out 3s forwards;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(50px) scale(1.1);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.btn {
  display: inline-block;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: bold;
  color: #ffffff;
  background: #5bc0de;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}
.btn:hover {
  background: rgb(48.5431472081, 175.6903553299, 213.4568527919);
  transform: scale(1.05);
}
.btn.outline {
  background: transparent;
  border: 2px solid #5bc0de;
  color: #5bc0de;
}
.btn.outline:hover {
  background: #5bc0de;
  color: #ffffff;
}
.btn.secondary {
  background: #000000;
  color: #ffffff;
}
.btn.secondary:hover {
  background: rgb(38.25, 38.25, 38.25);
}

.packages {
  padding: 50px 20px;
}
.packages h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.3rem);
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
}

.package-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  padding: 40px 20px;
  justify-items: center;
  align-items: stretch;
}

.package {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 400px;
  position: relative;
  border-radius: 20px;
  background: rgba(222, 226, 227, 0.8117647059);
  box-shadow: 0 7px 15px rgba(0, 0, 0, 0.3);
}
.package-inner-frame {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  flex-grow: 1;
  background: transparent;
  width: 225px;
  border-radius: 20px;
  padding: 20px 15px;
  margin: 20px;
  box-shadow: inset 0 0 0 2px #fdfdfd;
}
.package-banner {
  background: linear-gradient(to right, #2fb1ac, #41c7c0);
  color: white;
  text-align: center;
  font-weight: bold;
  font-size: 1.2rem;
  padding: 12px 0;
  border-radius: 5px;
  position: relative;
  z-index: 1;
  width: 150%;
}
.package-content {
  text-align: center;
  color: #333;
  font-size: 1rem;
  margin: 10px 0;
}

.btn-secondary {
  text-align: center;
}

.btn.btn-secondary:hover {
  background-color: #26918f;
}

@media (max-width: 768px) {
  .packages-container {
    grid-template-columns: 1fr;
    padding: 20px 10px;
  }
}
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  z-index: 1000;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.whatsapp-float img {
  width: 65%;
  transition: transform 0.3s ease-in-out;
}
.whatsapp-float:hover {
  transform: scale(1.1);
}

.marquee {
  --marquee-item-width: 260px;
  --marquee-gap: 40px;
  --marquee-speed: 25s;
  --container-width: 100vw;
  --item-width-plus-gap: calc(var(--marquee-item-width) + var(--marquee-gap));
  overflow: hidden;
  max-width: 100%;
  position: relative;
}
.marquee.fadeout-horizontal {
  position: relative;
  mask-image: linear-gradient(to right, transparent 0%, black 20%, black 80%, transparent 100%);
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
}

.marquee-track {
  --track-width: calc(var(--item-width-plus-gap) * calc(var(--num-items)));
  --single-slide-speed: calc(var(--marquee-speed) / var(--num-items));
  width: max-content;
  display: grid;
  grid-template-columns: var(--track-width) [track] 0px [resting];
  container-type: inline-size;
}

.marquee-item {
  grid-area: resting;
  display: flex;
  justify-content: center;
  align-items: center;
  width: var(--marquee-item-width);
  flex: 0 0 var(--marquee-item-width);
  text-align: left;
  padding-inline: 10px;
}
.marquee-item img {
  width: 120px;
  height: auto;
}
.marquee-item p {
  font-size: 1rem;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  margin-left: -13px;
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-1 * var(--track-width)));
  }
}
.marquee-track:hover .marquee-item {
  animation-play-state: paused;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

html,
body {
  padding: 0;
  margin: 0;
  min-height: 100vh;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul[role=list],
ol[role=list] {
  list-style: none;
  padding: 0;
  margin: 0;
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

svg {
  max-height: 100%;
}

button {
  padding: 0;
  cursor: pointer;
  border: none;
  background-color: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

a {
  text-decoration: none;
  color: inherit;
}

a:focus,
a:active {
  outline: none;
}

a, a:link, a:visited {
  text-decoration: none;
}

ul,
li {
  list-style: none;
  padding: 0;
  margin: 0;
}

input::-ms-clear {
  display: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  padding: 0;
  font-weight: 400;
}

html {
  position: relative;
  overflow-x: hidden;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
  font-family: "Figtree", serif;
  font-size: var(--font-size);
  background: #ffffff;
  color: #000000;
}

.visually-hidden {
  position: fixed;
  transform: scale(0);
}

.wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 1 auto;
}

.vertical-text {
  writing-mode: vertical-rl;
  position: fixed;
  right: 25px;
  top: 50%;
  z-index: 999;
  transform: translate(-50%, -50%) rotate(180deg);
  transform-origin: right center;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 2px;
  font-size: 14px;
  color: #000;
  opacity: 0;
  pointer-events: none;
}

.brand-color {
  color: #5bc0de;
}

.container {
  max-width: 1404px;
  padding: 0 52px;
  margin: 0 auto;
}
@media (min-width: 1600px) {
  .container {
    max-width: 1600px;
    padding: 0 60px;
  }
}
@media (max-width: 940px) {
  .container {
    padding: 0 46px;
  }
}
@media (max-width: 520px) {
  .container {
    padding: 0 14px;
  }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #06090E;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #ffffff;
}
header nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0;
  margin: 0;
  text-transform: uppercase;
}
header nav ul li a {
  color: #ffffff;
  font-size: clamp(0.5rem, 1.5vw, 0.7rem);
  transition: color 0.3s, font-weight 0.3s;
}
header nav ul li a:hover {
  color: #5bc0de;
  font-weight: bold;
}
header nav ul li a.active {
  color: #5bc0de;
  font-weight: bold;
}

.logo {
  width: 155px;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 0 5vw;
  background: url("../assets/img/png/resized-image.png") no-repeat center top 40px/cover;
  color: #ffffff;
}
.hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}
.hero__content {
  max-width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}
.hero__content h1 {
  font-size: clamp(2rem, 4vw, 4rem);
  color: #5bc0de;
  font-weight: 700;
}
.hero__description {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  z-index: 2;
}
.hero__description p {
  font-size: clamp(1rem, 2vw, 1.5rem);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}
.hero__description .btn {
  display: inline-block;
  padding: 10px 20px;
  background: #ffffff;
  color: #5bc0de;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
  border-radius: 20px;
  transition: background 0.3s ease-in-out;
}
.hero__description .btn:hover {
  border: 2px solid #5bc0de;
}
@media (max-width: 768px) {
  .hero {
    background-position: 68% 50%;
  }
}
@media (max-width: 440px) {
  .hero {
    background-position: 68% 50%;
  }
  .hero__content {
    max-width: 100%;
    align-items: center;
    text-align: center;
  }
  .hero__description {
    align-items: center;
    text-align: center;
  }
}

.about {
  background: #06090E;
  padding: 50px 20px;
  text-align: center;
  margin-top: 70px;
}
.about h2 {
  font-family: "Galyon Bold", sans-serif;
  width: 45%;
  font-size: 8rem;
  font-weight: 600;
  line-height: 0.85;
  color: #ffffff;
}
.about p {
  font-size: 1.1rem;
  color: rgb(229.5, 229.5, 229.5);
  max-width: 800px;
  margin: 0 auto 20px;
  line-height: 1.6;
}
.about-content {
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 20px;
  margin-top: 100px;
}
.about img {
  max-width: 150px;
  height: auto;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .about .text {
    max-width: 50%;
    text-align: left;
  }
}

.animated-tagline {
  font-size: 3rem;
  font-weight: bold;
  color: white;
  text-align: left;
}

.word-container {
  position: relative;
  display: inline-block;
  width: auto;
  height: 1em; /* adjust to fit your font size */
}

.word {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  white-space: nowrap;
  color: #5bc0de; /* replace with your variable */
  font-size: 7rem;
}

.word.active {
  opacity: 1;
  z-index: 1;
}

.word.next {
  z-index: 0;
}

.benefits {
  margin-bottom: 50px;
}

.marquee {
  background: #5bc0de;
}

.industries {
  background: #e7e8e9;
  padding: 0 20px;
  text-align: center;
}
.industries h2 {
  max-width: 50%;
  padding: 0 1.5rem;
  margin-bottom: 20px;
  font-size: clamp(2rem, 2.5vw, 2.3rem);
  font-weight: 800;
  color: #5bc0de;
  text-align: left;
}
.industries .tabs {
  display: flex;
  gap: 1rem;
  padding: 0 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.industries .tabs .tab {
  padding: 0.6rem 1.4rem;
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid #ddd;
  background: white;
  border-radius: 2rem;
  cursor: pointer;
  transition: 0.3s ease;
  text-transform: uppercase;
}
.industries .tabs .tab.active {
  background: #bfd7d6;
  color: #000;
}
.industries .tabs .tab:hover {
  background: #bfd7d6;
}
.industries .tab-panels {
  position: relative;
  min-height: 215px;
}
.industries .tab-panels .tab-panel {
  opacity: 0;
  transform: translateY(20px);
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.industries .tab-panels .tab-panel.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.industries .tab-panels .tab-panel.fade-in {
  opacity: 1;
  transform: translateY(0);
}
.industries .tab-panels .tab-panel.fade-out {
  opacity: 0;
  transform: translateY(20px);
}
.industries .panel-grid {
  display: grid;
  grid-template-columns: 100px 1fr 1fr 1fr;
  gap: 15px;
  background: #ffffff;
  border-radius: 20px;
}
.industries .panel-grid figure {
  border-right: 3px solid #06090E;
  margin-block: 10px;
  padding: 0px 0 0px 10px;
}
.industries .panel-grid figure img {
  width: 100%;
  height: 100%;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
  object-fit: cover;
}
.industries .panel-item {
  padding: 35px 20px;
}
.industries .panel-item h3 {
  margin: 0 0 0.5rem;
  font-size: 1.3rem;
  color: #333;
  font-weight: 800;
  text-align: left;
}
.industries .panel-item p {
  margin: 0;
  font-size: 0.95rem;
  color: #555;
  text-align: left;
}

@media (max-width: 440px) {
  h2 {
    max-width: 100%;
    align-items: center;
    text-align: center;
  }
}
.application {
  padding: 50px;
}
.application h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.3rem);
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
}

.application-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  justify-items: center;
  gap: 20px;
  text-align: center;
}
.application-grid h2 {
  grid-column: 1/-1;
  text-align: center;
}
.application-grid .app-item {
  background: rgb(69.7715736041, 183.845177665, 217.7284263959);
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s;
}
.application-grid .app-item:hover {
  transform: scale(1.05);
}
.application-grid .app-item h3 {
  color: #000000;
}
.application-grid .app-item p {
  color: #333333;
}

.features-item {
  position: relative;
  width: 200px;
  height: 300px;
  background: #e7e8e9;
  margin: 20px;
  border-radius: 25px;
  overflow: hidden;
}
.features-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
}
.features-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
}

.item-icon {
  position: relative;
  width: 100%;
  height: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #5bc0de;
}
.item-icon img {
  max-width: 100px;
  z-index: 10;
}
.item-icon::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: #bfd7d6;
}
.item-icon::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: #5bc0de;
  border-bottom-left-radius: 50px;
}

.features-item:nth-child(1) .icon,
.features-item:nth-child(1) .item-icon::after,
.features-item:nth-child(1) .item-content::before {
  background: #5bc0de;
}

.item-content {
  position: relative;
  width: 100%;
  height: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #bfd7d6;
}
.item-content .text {
  z-index: 10;
  padding: 20px 30px;
}
.item-content h3 {
  color: #000000;
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.item-content p {
  color: #333333;
  font-size: 0.9rem;
  text-align: center;
}
.item-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: #5bc0de;
}
.item-content::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: #bfd7d6;
  border-top-right-radius: 50px;
}

.experience {
  background: #e7e8e9;
  margin-bottom: 60px;
  padding: 0 20px;
  text-align: center;
}
.experience h2 {
  max-width: 50%;
  padding: 0 1.5rem;
  margin-bottom: 20px;
  font-size: clamp(2rem, 2.5vw, 2.3rem);
  font-weight: 800;
  color: #5bc0de;
  text-align: left;
}

.animation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 5px;
  justify-items: center;
  text-align: center;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animation-card {
  width: 160px;
  height: 300px;
  text-align: center;
  margin-top: 1rem;
  border-radius: 12px;
  position: relative;
  transition: none;
  opacity: 0;
  transform: translateY(30px);
  animation: none;
  animation-fill-mode: forwards;
}
.animation-card.animate {
  animation: fadeUp 1.8s ease-out forwards;
}

.card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 20px;
}
.card-number {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 30px;
  font-weight: bold;
  color: #ffffff;
  margin: 0 auto 0.5rem;
  background: #06090E;
}
.card-title {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 600;
  color: #000000;
  margin-bottom: 0.5rem;
}
.card-desc {
  font-size: 0.9rem;
  color: black;
}
.card img {
  width: 150px;
  display: block;
  margin: 0 auto;
}

.animation-card:nth-child(1).animate {
  animation-delay: 0s;
}

.animation-card:nth-child(2).animate {
  animation-delay: 0.4s;
}

.animation-card:nth-child(3).animate {
  animation-delay: 0.8s;
}

.animation-card:nth-child(4).animate {
  animation-delay: 1.2s;
}

.animation-card:nth-child(5).animate {
  animation-delay: 1.6s;
}

.animation-card:nth-child(6).animate {
  animation-delay: 2s;
}

@media (max-width: 600px) {
  .animation-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  .animation-card {
    max-width: 340px;
    height: auto;
    min-height: 220px;
    padding: 0.7rem;
  }
  .animation-card.animate {
    animation-duration: 1s !important;
  }
  .animation-card:nth-child(1).animate {
    animation-delay: 0s !important;
  }
  .animation-card:nth-child(2).animate {
    animation-delay: 0.2s !important;
  }
  .animation-card:nth-child(3).animate {
    animation-delay: 0.4s !important;
  }
  .animation-card:nth-child(4).animate {
    animation-delay: 0.6s !important;
  }
  .animation-card:nth-child(5).animate {
    animation-delay: 0.8s !important;
  }
  .animation-card:nth-child(6).animate {
    animation-delay: 1s !important;
  }
}
.glow {
  animation: glow 1.5s infinite;
}

@keyframes glow {
  0% {
    box-shadow: 0 0 -10px #fff;
  }
  40% {
    box-shadow: 0 0 20px #fff;
  }
  60% {
    box-shadow: 0 0 20px #fff;
  }
  100% {
    box-shadow: 0 0 -10px #fff;
  }
}
.business {
  background: #5bc0de;
  width: 100%;
  padding: 30px 20px;
  display: flex;
  justify-content: center;
}
.business-container {
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.business-content {
  color: #ffffff;
  max-width: 50%;
  text-align: left;
}
.business-content h2 {
  max-width: 90%;
  padding: 0;
  color: #ffffff;
}
.business-content h3 {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 700;
}
.business-content p {
  font-size: 18px;
}

.container-right {
  position: relative;
}

.growth-visual {
  position: absolute;
  right: -260px;
  top: 50%;
  transform: translateY(-50%);
  width: 790px;
}
.growth-visual img {
  width: 90%;
  height: auto;
  display: block;
}

@media (max-width: 940px) {
  .business {
    margin: 30px 0;
    padding: 20px 15px;
  }
  .business-container {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
  }
  .business-content {
    max-width: 100%;
    padding: 0;
  }
  .business-content h2 {
    max-width: 100%;
  }
  .business-content p {
    font-size: 16px;
  }
  .container-right {
    height: 175px;
  }
  .growth-visual {
    width: 500px;
  }
}
.contact {
  background: #ffffff;
  padding: 50px 20px;
  text-align: center;
}
.contact h2 {
  font-size: clamp(2rem, 2vw, 2.3rem);
  font-weight: 800;
  color: #000000;
  margin-bottom: 20px;
}
.contact p {
  font-size: 1.1rem;
  color: rgb(25.5, 25.5, 25.5);
  margin-bottom: 15px;
}
.contact-container {
  display: grid;
  max-width: 800px;
  margin: 0 auto;
  gap: 20px;
}
.contact form {
  background: #e7e8e9;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.contact form label {
  grid-column: span 2;
  font-size: 1rem;
  font-weight: bold;
  color: #000000;
  text-align: left;
}
.contact form select,
.contact form input,
.contact form textarea {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 20px;
  font-size: 1rem;
  font-family: inherit;
  transition: 0.3s;
}
.contact form select:focus,
.contact form input:focus,
.contact form textarea:focus {
  border-color: #5bc0de;
  outline: none;
  box-shadow: 0px 0px 5px rgba(0, 123, 255, 0.3);
}
.contact form select {
  grid-column: span 2;
  font-family: inherit;
}
.contact form textarea {
  resize: none;
  height: 120px;
}
.contact form .submit-btn {
  grid-column: span 2;
  justify-self: center;
  background: #5bc0de;
  color: white;
  padding: 12px;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.3s;
}
.contact form .submit-btn:hover {
  background: rgb(48.5431472081, 175.6903553299, 213.4568527919);
}
.contact #name,
.contact #business {
  grid-column: span 1;
}
.contact #email,
.contact #contact-info {
  grid-column: span 1;
}
.contact #message {
  grid-column: span 2;
  min-height: 150px;
  resize: vertical;
}
.contact .contact-info {
  text-align: center;
  margin-top: 20px;
  color: black;
}
.contact .contact-info a {
  color: #5bc0de;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}
.contact .contact-info a:hover {
  color: rgb(39.616751269, 160.8680203046, 196.883248731);
}
@media (min-width: 768px) {
  .contact .contact-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  text-align: center;
  padding: 20px;
  background: #e7e8e9;
  color: #000000;
}
.footer p {
  margin-top: 75px;
  font-size: clamp(0.5rem, 2vw, 0.9rem);
  color: #333333;
}
.footer-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.5rem;
  padding-right: 20px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  text-align: left;
  text-transform: uppercase;
}
.footer-links a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  font-size: 0.95rem;
}
.footer-links a:hover {
  color: #0099a5;
}

.logo-oiio {
  width: 85px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
}
.social-icons a {
  width: 30px;
  color: #000000;
  text-decoration: none;
  font-size: 1.5em;
  transition: color 0.3s;
}
.social-icons a:hover {
  color: rgb(175.9137055838, 224.6192893401, 239.0862944162);
}

.testimonials {
  background: #e7e8e9;
  padding: 60px 20px;
  text-align: center;
}
.testimonials h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.3rem);
  font-weight: 600;
  color: #000000;
  margin-bottom: 30px;
}
.testimonials .testimonial-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.testimonials .testimonial {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  text-align: left;
  max-width: 600px;
  transition: transform 0.3s ease-in-out;
}
.testimonials .testimonial:hover {
  transform: translateY(-5px);
}
.testimonials .testimonial .quote {
  font-size: 1.2rem;
  font-style: italic;
  color: black;
}
.testimonials .testimonial .author {
  display: flex;
  align-items: center;
  margin-top: 15px;
}
.testimonials .testimonial .author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 10px;
}
.testimonials .testimonial .author .name {
  font-weight: bold;
  color: #000000;
}
.testimonials .testimonial .author .role {
  font-size: 0.9rem;
  color: #333333;
}
@media (min-width: 768px) {
  .testimonials .testimonial-container {
    flex-direction: row;
    justify-content: center;
  }
}/*# sourceMappingURL=index.css.map */