/* FONTS */

@font-face {
  font-family: 'Galyon-Bold';
  src: url('/assets/fonts/Galyon-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'RoundedMplus1c-Bold';
  src: url('/assets/fonts/RoundedMplus1c-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'WorkSans';
  src: url('/assets/fonts/Work_Sans/static/WorkSans-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'WorkSans';
  src: url('/assets/fonts/Work_Sans/static/WorkSans-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'WorkSans';
  src: url('/assets/fonts/Work_Sans/static/WorkSans-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'WorkSans';
  src: url('/assets/fonts/Work_Sans/static/WorkSans-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #141212;
  overflow-x: hidden;
}

/* ANIMATIONS */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 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);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

/* Scroll reveal classes */
.fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in {
  animation: fadeIn 0.8s ease-out forwards;
}

.slide-in-left {
  animation: slideInLeft 0.8s ease-out forwards;
}

.slide-in-right {
  animation: slideInRight 0.8s ease-out forwards;
}

.scale-in {
  animation: scaleIn 0.6s ease-out forwards;
}

.page {
  max-width: auto;
  margin: 0 auto;
}

/* HEADER */
header {
  height: 970px;
  width: 100%;
  background-image: url('../assets/pictures/header.jpg');
  background-size: cover;
  background-position: left;
  color: #191715;
}

/* --> Navigation Menu */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 100%);
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 30px 0;
}

.navbar {
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}

.nav-logo {
  flex-shrink: 0;
}

.nav-logo a {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-shadow: 0 0 20px rgba(253, 196, 0, 0.5);
  display: inline-block;
  padding: 5px 10px;
}

.nav-logo a:hover {
  transform: scale(1.05);
  text-shadow: 0 0 30px rgba(253, 196, 0, 0.8);
}

.close-menu {
  display: none;
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: 2px solid #fdc400;
  color: #fdc400;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.close-menu:hover {
  background: rgba(253, 196, 0, 0.1);
  transform: rotate(90deg);
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.navbar #links {
  display: flex;
  gap: 30px;
  align-items: center;
  flex-wrap: nowrap;
}

.navbar a {
  color: #D9D9D9;
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  text-decoration: none;
  font-size: 15px;
  padding: 10px 5px;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  flex-shrink: 0;
}

.navbar a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #fdc400, #ffc100);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar a:hover::after {
  width: 100%;
}

.navbar a:hover {
  color: #fdc400;
  transform: translateY(-2px);
}

.navbar a.icon {
  display: none;
  background-color: transparent;
  color: #fdc400;
  padding: 10px;
  font-size: 24px;
  border: 2px solid #fdc400;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar a.icon:hover {
  background-color: rgba(253, 196, 0, 0.1);
  transform: rotate(90deg);
}

/* Hamburger Animation */
.navbar a.icon i {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Tablet/Small Desktop - Optional breakpoint for better spacing */
@media only screen and (max-width: 1024px) {
  .navbar #links {
    gap: 20px;
  }

  .navbar a {
    font-size: 14px;
    padding: 10px 3px;
  }

  /* Center hero content on tablet screens */
  .hero {
    padding: 200px 5% 80px 5% !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .hero-content {
    max-width: 100% !important;
    width: 100% !important;
    text-align: center !important;
    margin: 130px auto !important;
  }

  .hero-content h2 {
    font-size: 2.5rem !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-bottom: 20px;
  }

  .hero-content h1 {
    font-size: 3.5rem !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-bottom: 30px;
  }

  .hero-content p {
    font-size: 1.35rem !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-bottom: 35px;
    padding: 0 8%;
    line-height: 1.6;
  }

  .hero-button {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* Contact section adjustments for tablet */
  .contact {
    padding: 60px 40px;
  }

  .info-group {
    flex-wrap: wrap;
  }

  .contact-link {
    font-size: 1rem;
    word-break: break-word;
  }
}

/* Mobile Menu */
@media only screen and (max-width: 768px) {
  nav {
    padding: 20px 0;
  }

  nav.scrolled {
    padding: 15px 0;
  }

  .navbar {
    padding: 0 20px;
    justify-content: center;
    position: relative;
  }

  .nav-logo {
    margin-right: 0;
    position: relative;
    z-index: 1001;
  }

  .nav-logo a {
    font-size: 20px;
  }

  .navbar a.icon {
    display: block;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }

  .navbar #links {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.98), rgba(25, 23, 21, 0.98));
    backdrop-filter: blur(20px);
    flex-direction: column;
    gap: 0;
    padding: 80px 0 40px 0;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 2px solid rgba(253, 196, 0, 0.3);
  }

  .navbar #links.active {
    display: flex;
    right: 0;
  }

  .navbar #links.active ~ a.icon {
    opacity: 0;
    pointer-events: none;
  }

  .navbar #links .close-menu {
    display: block;
  }

  .navbar #links a {
    width: 100%;
    padding: 20px 40px;
    text-align: left;
    font-size: 18px;
    border-bottom: 1px solid rgba(253, 196, 0, 0.1);
  }

  .navbar #links a::after {
    display: none;
  }

  .navbar #links a:hover {
    background: linear-gradient(90deg, rgba(253, 196, 0, 0.1), transparent);
    transform: translateX(10px);
    border-left: 3px solid #fdc400;
  }
}
/* <-- Navigation Menu */

.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 280px 0 100px 150px;
  margin-top: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 50%;
  color:#D9D9D9;
  text-align: left;
}

.hero-content h2 {
  font-family: 'Galyon-Bold', sans-serif;
  font-size: 2.3rem;
  color:#fdc400;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-left: 145px;
  margin-top: 0;
  margin-bottom: 10px;
  animation: slideInLeft 1s ease-out;
  text-shadow: 2px 2px 8px rgba(253, 196, 0, 0.3);
}

.hero-content h1 {
  font-family: 'Galyon-Bold', sans-serif;
  font-size: 3.72rem;
  margin-bottom: 40px;
  text-transform: uppercase;
  margin-left: 145px;
  animation: slideInLeft 1s ease-out 0.2s both;
  text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-family: 'WorkSans', sans-serif;
  font-weight: 500;
  font-size: 1.3em;
  margin-bottom: 40px;
  margin-left: 145px;
  animation: slideInLeft 1s ease-out 0.4s both;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-button {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-variant: small-caps;
  font-size: 1rem;
  text-transform: lowercase;
  text-decoration: none;
  background: linear-gradient(135deg, #fbcc01 0%, #fdc400 100%);
  color: #000;
  display: inline-block;
  width: 193px;
  height: 56px;
  padding: 10px 20px;
  margin-left: 145px;
  line-height: 38px;
  text-align: center;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(253, 196, 0, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  animation: fadeInUp 1s ease-out 0.6s both;
  position: relative;
  overflow: hidden;
}

.hero-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.hero-button:hover::before {
  left: 100%;
}

.hero-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(253, 196, 0, 0.5);
  background: linear-gradient(135deg, #fdc400 0%, #e4a900 100%);
}

.hero-button:active {
  transform: translateY(0);
  box-shadow: 0 4px 15px rgba(253, 196, 0, 0.3);
}

.hero-button .big-majuscule {
  text-transform: uppercase;
  font-size: 1.1em;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 55%;
  height: 970px;
  background: linear-gradient(90deg, hsla(30, 9%, 9%, 0.7) 0%, hsla(30, 9%, 9%, 0.3) 70%, transparent 100%);
  backdrop-filter: blur(2px);
}

/* INTRO SECTION */
.intro {
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1715 50%, #0a0a0a 100%);
  padding: 60px 5% 80px 5%;
  position: relative;
  overflow: hidden;
}

.intro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(253, 196, 0, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(253, 196, 0, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.intro::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #fdc400 50%, transparent 100%);
}

.intro-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.text-content {
  width: 100%;
  max-width: 800px;
  text-align: center;
  margin-bottom: 50px;
}

.intro-container h3 {
  font-family: 'Galyon-Bold', sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  color: #fdc400;
  margin-bottom: 25px;
  line-height: 1.3;
  animation: fadeInUp 0.8s ease-out;
  text-shadow: 0 0 30px rgba(253, 196, 0, 0.3);
  letter-spacing: 0.5px;
}

.intro-container p {
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  font-size: 1.05rem;
  color: #c4c4c4;
  line-height: 1.8;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

.intro-container p:nth-child(2) {
  animation-delay: 0.2s;
}

.intro-container p:nth-child(3) {
  animation-delay: 0.4s;
  display: none;
}

.intro-container p:nth-child(4) {
  animation-delay: 0.5s;
  font-weight: 600;
  font-size: 1.15rem;
  color: #fdc400;
  margin-top: 20px;
  text-shadow: 0 0 20px rgba(253, 196, 0, 0.2);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  width: 100%;
}

.feature-card {
  background: linear-gradient(145deg, rgba(25, 23, 21, 0.8), rgba(20, 18, 18, 0.9));
  backdrop-filter: blur(10px);
  padding: 35px 25px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid rgba(253, 196, 0, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease-out forwards;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #fdc400, transparent);
  transform: scaleX(0);
  transition: transform 0.4s;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(253, 196, 0, 0.1), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(253, 196, 0, 0.4);
  box-shadow: 0 20px 50px rgba(253, 196, 0, 0.2), 0 0 40px rgba(253, 196, 0, 0.15);
}

.feature-icon {
  font-size: 3rem;
  background: linear-gradient(135deg, #fdc400, #e4a900);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 15px rgba(253, 196, 0, 0.4));
  transition: all 0.4s;
}

.feature-card:hover .feature-icon {
  transform: scale(1.15) rotate(5deg);
  filter: drop-shadow(0 0 25px rgba(253, 196, 0, 0.6));
}

.feature-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.feature-title {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #fdc400;
  letter-spacing: 0.3px;
}

.feature-description {
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  font-size: 0.95rem;
  color: #a8a8a8;
  line-height: 1.6;
}

.image-container {
  display: none;
}

.image-container img {
  display: none;
}

/* SERVICES SECTION */
.services {
  height: 570px;
  padding: 40px 0;
  background: linear-gradient(180deg, #141212 0%, #1a1715 50%, #141212 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(253, 196, 0, 0.03) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(253, 196, 0, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.carousel-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.carousel {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: calc(100% - 60px);
  height: 100%;
  align-items: center;
}

.service-item {
  flex: 0 0 calc(33.33% - 20px);
  padding: 70px;
  border-radius: 15px;
  text-align: center;
  margin: 0 10px;
  scroll-snap-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 90%;
  box-sizing: border-box;
  background: linear-gradient(145deg, rgba(25, 23, 21, 0.6), rgba(20, 18, 18, 0.9));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(253, 196, 0, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.service-item::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(253, 196, 0, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
}

.service-item:hover::before {
  opacity: 1;
}

.service-item:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(253, 196, 0, 0.4);
  box-shadow: 0 15px 45px rgba(253, 196, 0, 0.2), 0 0 30px rgba(253, 196, 0, 0.1);
}

.service-item .big-majuscule {
  text-transform: uppercase;
  font-size: 1.25em;
  font-weight: 700;
}

.service-item h4 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 1.1em;
  margin-top: 10px;
  color: #d9d9d9;
  font-variant: small-caps;
  padding-bottom: 29px;
}

.service-item p {
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  font-size: calc(1rem - 0.1vw);
  color: #d9d9d9;
  margin-top: 10px;
}

.service-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-icon::after {
  content: '';
  position: absolute;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 2px solid #fdc400;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-item:hover .service-icon {
  transform: translateY(-5px) rotate(5deg);
}

.service-item:hover .service-icon::after {
  opacity: 0.6;
  transform: scale(1.1);
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(253, 196, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-item:hover .service-icon img {
  box-shadow: 0 8px 25px rgba(253, 196, 0, 0.5);
}

.carousel-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
  padding: 0 20px;
  z-index: 10;
}

.carousel-controls .carousel-btn {
  background: rgba(253, 196, 0, 0.9);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  padding: 0;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.carousel-controls .carousel-btn:hover {
  background: rgba(253, 196, 0, 1);
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.carousel-controls .carousel-btn i {
  font-size: 20px;
  color: #191715;
}

/* CTA SECTION */
.cta {
  display: flex;
  align-items: stretch;
  background-color: #191715;
  color: #d9d9d9;
  height: auto;
  min-height: 50vh;
  box-sizing: border-box;
}

.cta-content {
  max-width: 50%;
  display: flex;
  flex-direction: column;
  margin-left: 5%;
  padding: 60px 0;
  justify-content: center;
  width: 120%;
  box-sizing: border-box;
}

.cta-content h2 {
  font-family: 'Galyon-Bold', sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  color: #d9d9d9;
  margin-bottom: 30px;
  margin-right: 60px;
  line-height: 1.2;
}

.cta-content p {
  font-family: 'Work Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.2;
  margin-bottom: 50px;
  margin-right: 50px;
  text-align: justify;
}

.highlight {
  color: #EECD21;
}

.cta-button .big-majuscule {
  text-transform: uppercase;
  font-size: 1.1em;
  font-weight: 700;
}

.button-container {
  width: 85%;
  display: flex;
  gap: 5%;
}

.cta-button, .cta-box {
  width: 173px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-variant: small-caps;
  text-decoration: none;
  font-family: 'Work Sans', sans-serif;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
  white-space: nowrap;
}

.cta-button {
  background: linear-gradient(135deg, #ffc100 0%, #fdc400 100%);
  color: #000;
  font-weight: 800;
  flex-direction: column;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(253, 196, 0, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button .line {
  display: block;
  line-height: 1;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(253, 196, 0, 0.5);
  background: linear-gradient(135deg, #fdc400 0%, #e4a900 100%);
}

.cta-button:active {
  transform: translateY(-1px);
}

.cta-box {
  background-color: #ffc100;
  color: #000;
  font-weight: 800;
}

.cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CONTACT SECTION */
.contact {
  display: flex;
  justify-content: space-between;
  padding: 80px 60px;
  background: linear-gradient(135deg, #ffc100 0%, #fdc400 50%, #ffb700 100%);
  color: #191715;
  position: relative;
  overflow: hidden;
  min-height: 600px;
  align-items: center;
}

.contact::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.contact::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 183, 0, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-30px) translateX(20px);
  }
}

.contact-form {
  width: 58%;
  position: relative;
  z-index: 2;
}

.tally-wrapper {
  background: linear-gradient(145deg,
    rgba(255, 250, 230, 0.95) 0%,
    rgba(255, 245, 210, 0.95) 50%,
    rgba(255, 240, 200, 0.95) 100%);
  border-radius: 20px;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.15),
    0 10px 30px rgba(253, 196, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  padding: 35px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(0);
  animation: slideUp 0.8s ease-out;
  border: 2px solid rgba(255, 215, 100, 0.4);
  position: relative;
  overflow: hidden;
}

.tally-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(253, 196, 0, 0.6) 20%,
    rgba(255, 193, 7, 0.8) 50%,
    rgba(253, 196, 0, 0.6) 80%,
    transparent 100%);
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tally-wrapper:hover {
  transform: translateY(-5px);
  box-shadow:
    0 25px 70px rgba(0, 0, 0, 0.2),
    0 15px 40px rgba(253, 196, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border-color: rgba(253, 196, 0, 0.6);
}

.contact-form iframe {
  background: transparent !important;
  border: none;
  width: 100%;
}

.contact-form form {
  display: flex;
  flex-wrap: wrap;
}

.form-group {
  padding: 10px;
}

.full-width {
  width: 100%;
}

.half-width {
  width: 50%;
}

.contact-form label {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  display: block;
  margin-bottom: 5px;
  font-size: 1rem;
}

.contact-form input,
.contact-form textarea {
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 10px;
  border: 2px solid #fff2ae;
  background-color: #fbd875;
  font-size: 1rem;
  box-sizing: border-box;
  border-radius: 6px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #ffc100;
  background-color: #fce89d;
  box-shadow: 0 0 0 3px rgba(253, 196, 0, 0.2), 0 4px 12px rgba(253, 196, 0, 0.15);
  transform: translateY(-2px);
}

.contact-form textarea {
  height: 150px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(0, 0, 0, 0.5);
  transition: color 0.3s;
}

.contact-form input:focus::placeholder,
.contact-form textarea:focus::placeholder {
  color: rgba(0, 0, 0, 0.3);
}

.contact-form button {
  width: 173px;
  height: 58px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #000 0%, #191715 100%);
  color: #fdc400;
  border: 2px solid #fdc400;
  border-radius: 6px;
  cursor: pointer;
  text-transform: uppercase;
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  display: block;
  margin-left: auto;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(253, 196, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.contact-form button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(253, 196, 0, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.contact-form button:hover::before {
  width: 300px;
  height: 300px;
}

.contact-form button:hover {
  background: linear-gradient(135deg, #fdc400 0%, #ffc100 100%);
  color: #000;
  border-color: #fdc400;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(253, 196, 0, 0.4);
}

.contact-form button:active {
  transform: translateY(-1px);
}

/* Popup container */
.popup {
  display: none;
  position: fixed;
  z-index: 9;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid #888;
  width: 300px;
  padding: 20px;
  background-color: white;
  box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);
  text-align: center;
}

/* The Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.vertical-line {
  width: 2px;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.3) 20%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.3) 80%,
    transparent 100%);
  margin: 0 30px;
  position: relative;
  z-index: 2;
}

.contact-info {
  width: 38%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  position: relative;
  z-index: 2;
  animation: slideUp 0.8s ease-out 0.2s both;
}

.info-group {
  display: flex;
  align-items: center;
  margin-bottom: 35px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 15px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
}

.info-group:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.info-group .icon {
  width: 78px;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.info-group:hover .icon {
  background: rgba(255, 255, 255, 0.5);
  transform: rotate(10deg) scale(1.1);
}

.info-group .icon i {
  font-size: 32px;
  color: #191715;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-group:hover .icon i {
  color: #000;
  transform: scale(1.1);
}

.info-group img {
  width: 68px;
  height: 68px;
}

.info-group p {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding-left: 10px;
}

.contact-link {
  word-break: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}

.social-links {
  margin-top: auto;
  text-align: center;
  padding: 25px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-links:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.social-links p {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  margin-bottom: 15px;
  font-style: italic;
  font-size: 1.05rem;
  color: #191715;
}

.social-links a {
  margin: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-links a:hover {
  background: rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transform: scale(1.15) rotate(5deg);
}

.social-links a i {
  font-size: 24px;
  color: #191715;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-links a:hover i {
  color: #000;
  transform: scale(1.1);
}

.social-links img {
  width: 45px;
  height: 45px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 8px;
  filter: brightness(0.9);
}

.social-links img:hover {
  background-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transform: scale(1.15) rotate(5deg);
  filter: brightness(1.1);
}

/* PROJECTS SECTION */
.projects {
  padding: 100px 0;
  text-align: center;
  background-color: #fff;
  user-select: none;
}

.projects h3 {
  font-size: 2.8rem;
  font-family: 'Galyon-Bold', sans-serif;
  font-weight: 400;
  color: #191715;
  margin-bottom: 40px;
}

.carousel-projects {
  display: flex;
  overflow-x: scroll;
  overflow-y: hidden;
  scroll-behavior: smooth;
  cursor: grab;
  padding: 0 40px;
  user-select: none;
}

.carousel-projects.active {
  cursor: grabbing;
  user-select: none;
}

.project-item {
  flex: 0 0 30%;
  padding: 35px;
  text-align: left;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(249, 249, 249, 1));
  border-radius: 12px;
  border: 1px solid rgba(228, 169, 0, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.project-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(253, 196, 0, 0.1), transparent);
  transition: left 0.6s;
}

.project-item:hover::before {
  left: 100%;
}

.project-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(228, 169, 0, 0.2), 0 0 20px rgba(253, 196, 0, 0.1);
  border-color: rgba(228, 169, 0, 0.3);
}

.project-item p {
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  text-align: justify;
  font-size: 1rem;
  color: #333;
  line-height: 1.3;
  margin-bottom: 20px;
}

.project-item h2 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 10px;
  font-family: 'Work Sans', sans-serif;
  font-weight: bold;
}

.underline {
  width: 70px;
  height: 4px;
  background-color: #e4a900;
  margin-bottom: 35px;
}

/* Vertical Scrollbar */
.carousel-projects::-webkit-scrollbar {
  width: 5px;
  height: 8px;
}

.carousel-projects::-webkit-scrollbar-thumb {
  background-color: #e4a900;
  border-radius: 5px;
}

.carousel-projects::-webkit-scrollbar-track {
  background-color: #f4f4f4;
  border-radius: 5px;
}

/* ABOUT ME SECTION */
.about-me {
  padding: 80px 60px;
  background: linear-gradient(135deg, #141212 0%, #191715 50%, #1a1614 100%);
  position: relative;
  overflow: hidden;
}

.about-me::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(253, 196, 0, 0.08) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  border-radius: 50%;
  pointer-events: none;
}

.about-me::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(253, 196, 0, 0.05) 0%, transparent 70%);
  bottom: -80px;
  left: -80px;
  border-radius: 50%;
  pointer-events: none;
}

.about-me h2 {
  font-family: 'RoundedMplus1c-Bold', sans-serif;
  font-weight: 700;
  font-size: 2.8rem;
  text-transform: uppercase;
  color: #fff;
  margin-top: 0;
  margin-bottom: 20px;
  text-align: center;
  position: relative;
  display: inline-block;
  width: 100%;
}

.about-me h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #fdc400, transparent);
  border-radius: 2px;
}

.about-me > p {
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  font-size: 1.15rem;
  color: #d9d9d9;
  margin-bottom: 50px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-style: italic;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.about-me-content {
  display: flex;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
  background: linear-gradient(145deg, #ffffff 0%, #f5f5f5 100%);
  border-radius: 25px;
  overflow: hidden;
  box-shadow:
    0 25px 80px rgba(0, 0, 0, 0.4),
    0 0 0 2px rgba(253, 196, 0, 0.2);
  position: relative;
  z-index: 1;
}

.about-me-content::before {
  content: '';
  position: absolute;
  top: 0;
  right: 40%;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg,
    transparent 0%,
    #fdc400 20%,
    #fdc400 80%,
    transparent 100%
  );
  z-index: 10;
  box-shadow: 0 0 20px rgba(253, 196, 0, 0.5);
}

.text-box {
  flex: 1;
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: transparent;
  position: relative;
  z-index: 1;
}

.highlight-quote {
  color: #333;
  line-height: 1.8;
}

.highlight-quote strong {
  font-family: 'RoundedMplus1c-Bold', sans-serif;
  font-weight: 700;
  color: #191715;
  font-size: 2.2rem;
  display: block;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.highlight-quote strong::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #fdc400, #ffb700);
  border-radius: 2px;
}

.highlight-quote p {
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  color: #333;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 1.05rem;
  text-align: left;
  line-height: 1.9;
}

.highlight-quote p:last-child {
  margin-bottom: 0;
}

.about-me-image {
  flex: 0 0 40%;
  position: relative;
  overflow: hidden;
}

.about-me-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.about-me-image:hover img {
  transform: scale(1.05);
}

/* FOOTER */
footer {
  padding: 50px 0;
  background-color: #191715;
  color: #fff;
  text-align: left;
  border-top: 2px solid #000;
  position: relative;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-brand {
  display: flex;
  align-items: center;
  flex-basis: 25%;
}

.footer-brand img {
  max-width: 100%;
}

.footer-brand p {
  font-family: 'RoundedMplus1c-Bold', sans-serif;
  font-size: 2rem;
  text-transform: capitalize;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

.footer-all-content {
  display: flex;
  justify-content: space-between;
  flex-basis: 73%;
  position: relative;
}

.footer-name {
  font-family: 'RoundedMplus1c-Bold', sans-serif;
  font-size: 2rem;
  text-transform: capitalize;
  font-weight: 600;
  color: #fff;
  margin-bottom: 22px;
}

.footer-tva {
  font-family: 'Work Sans', sans-serif;
  color: #d9d9d9;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-links,
.footer-social {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-links {
  margin-left: 4%;
  margin-bottom: 43px;
}

.footer-social {
  margin-bottom: 140px;
}

.footer-links h4,
.footer-social h4 {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #e4a900;
  margin-bottom: 40px;
  font-variant: small-caps;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-social a {
  font-family: 'Work Sans', sans-serif;
  margin-bottom: 10px;
}

.footer-links a,
.footer-social a {
  font-family: 'Work Sans', sans-serif;
  color: #d9d9d9;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-social a:hover {
  color: #e4a900;
}

.underline-footer {
  position: absolute;
  width: 80%;
  height: 2px;
  background-color: #e4a900;
  left: 50%;
  transform: translateX(-50%);
  bottom: 5%;
}

/* ACCESSIBILITY */
.contact-link {
  color: unset;
  font-family: 'Work Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
}

/* Focus indicators for keyboard navigation */
*:focus {
  outline: 2px solid #fdc400;
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 2px solid #fdc400;
  outline-offset: 2px;
}

/* Skip to main content link */
.skip-to-main {
  position: absolute;
  top: -40px;
  left: 0;
  background: #fdc400;
  color: #141212;
  padding: 8px;
  text-decoration: none;
  z-index: 100;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
}

.skip-to-main:focus {
  top: 0;
}

/* Media Query - 1150px */
@media only screen and (max-width: 1150px) {
    .carousel-container {
    padding: 25px 0 !important;
  }

  .service-item {
	padding: 15px 10px 15px 10px;
  }

  .about-me {
	padding: 70px 40px;
  }

  .about-me > p {
	font-size: 1.1rem;
  }

  .text-box {
	padding: 50px 40px;
  }

  .highlight-quote strong {
	font-size: 2rem;
  }

  .highlight-quote p {
	font-size: 1rem;
  }
}

/* Media Query - 768px */
@media only screen and (max-width: 768px) {
  .page {
	max-width: 100%;
	padding: 0 15px;
	box-sizing: border-box;
  }

  header {
	height: 100vh;
	min-height: 500px;
	width: 100%;
	background-position: center;
	background-size: cover;
	position: relative;
  }

  .hero {
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 0;
	margin: 0;
	width: 100%;
	height: 100%;
	display: flex;
  }

  .hero-content {
	max-width: 100%;
	margin-left: 0;
	margin-top: 0;
	padding: 0 15px;
	text-align: center;
  }

  .hero-content h2,
  .hero-content h1,
  .hero-content p,
  .hero-button {
	margin-left: 0;
	margin-right: 0;
  }

  .hero-content h2 {
	font-size: 1.3rem;
	margin-top: 0;
	margin-bottom: 6px;
	letter-spacing: 2px;
  }

  .hero-content h1 {
	font-size: 1.75rem;
	margin-bottom: 12px;
  }

  .hero-content p {
	font-size: 0.9rem;
	margin-bottom: 20px;
	line-height: 1.3;
  }

  .hero-button {
	width: 160px;
	height: 48px;
	font-size: 0.85rem;
	line-height: 30px;
	padding: 8px 15px;
	margin: 0 auto;
  }

  .hero-overlay {
	width: 100%;
	height: 100%;
  }

  .intro {
	padding: 60px 20px 100px 20px;
  }

  .intro-container {
	flex-direction: column;
	padding: 20px;
	align-items: center;
  }

  .text-content {
	max-width: 100%;
	margin: 0 auto 30px auto;
  }

  .intro-container h3 {
	font-size: calc(2.1rem - 7px);
  }

  .intro-container p {
	font-size: calc(1.2rem - 5px);
  }

  .features-grid {
	grid-template-columns: 1fr;
	gap: 20px;
	width: 100%;
	max-width: 400px;
	margin: 0 auto;
  }

  .feature-card {
	padding: 30px 20px;
	width: 100%;
	box-sizing: border-box;
  }

  .image-container {
	display: none;
  }

  .image-container img {
	width: 100%;
	height: auto;
	margin-top: 3%;
	box-shadow: -10px 5px 20px rgba(0, 0, 0, 0.5);
  }

  .services {
	height: auto;
	padding: 20px 0;
  }

  .service-item {
	flex: 0 0 calc(100% - 20px);
	padding: 40px 20px;
  }

  .service-item p {
	font-size: 0.9rem;
	line-height: 1.2;
  }

  .service-icon {
	width: 80px;
	height: 80px;
  }

  .carousel-controls {
	padding: 0 25px;
  }

  .carousel-controls .carousel-btn {
	width: 15px;
	height: 15px;
  }

  .cta {
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
  }

  .cta-content {
	max-width: 90%;
	padding-top: 20px;
	padding-left: 2%;
  }

  .cta-content h2 {
	margin-bottom: 20px;
	padding-top: 50px;
  }

  .cta-content p {
	font-size: 0.93rem;
	margin-bottom: 40px;
	padding-top: 20px;
  }

  .button-container {
	justify-content: center;
	gap: 20px;
	margin-bottom: 20px;
  }

  .cta-image img {
	height: auto;
	margin-top: 20px;
	box-sizing: border-box;
  }

  .contact {
	flex-direction: column;
	padding: 40px 20px;
	align-items: center;
	min-height: auto;
  }

  .contact::before,
  .contact::after {
	width: 300px;
	height: 300px;
  }

  .contact-form {
	width: 100%;
	max-width: auto;
	margin-bottom: 30px;
  }

  .tally-wrapper {
	padding: 25px;
  }

  .contact-form iframe {
	padding: 0;
  }

  .contact-form button {
	width: 128px;
	height: 43px;
  }

  .vertical-line {
	width: 90%;
	height: 2px;
	margin: 30px 0;
	background: linear-gradient(to right,
	  transparent 0%,
	  rgba(0, 0, 0, 0.3) 20%,
	  rgba(0, 0, 0, 0.4) 50%,
	  rgba(0, 0, 0, 0.3) 80%,
	  transparent 100%);
  }

  .contact-info {
	width: 95%;
  }

  .info-group {
	padding: 12px;
	margin-bottom: 20px;
  }

  .info-group .icon {
	width: 68px;
	height: 68px;
  }

  .info-group img {
	width: 58px;
	height: 58px;
  }

  .info-group p {
	font-family: 'Work Sans', sans-serif;
	font-weight: 700;
	font-size: 1rem;
	padding-left: 10px;
  }

  .social-links {
	margin-top: 20px;
	padding: 20px;
  }

  .social-links p {
	font-family: 'Work Sans', sans-serif;
	font-weight: 500;
	margin-bottom: 10px;
	font-style: italic;
	font-size: 0.9rem;
  }

  .projects {
	padding: 60px 20px;
  }

  .projects h3 {
	font-size: 2rem;
	margin-bottom: 30px;
  }

  .carousel-wrapper {
	padding-bottom: 15px;
  }

  .carousel-projects {
	padding: 0 20px;
  }

  .project-item {
	flex: 0 0 55%;
	padding: 30px;
  }

  .project-item p {
	font-size: 0.95rem;
	margin-bottom: 15px;
  }

  .project-item h2 {
	margin-bottom: 8px;
  }

  .underline {
	width: 100%;
	margin-bottom: 20px;
  }

  .project-item img {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
  }

  .about-me h2 {
	font-weight: 600;
	font-size: 2.6rem;
  }

  .about-me p {
	font-size: 1rem;
	padding: 10px 50px;
  }

  .about-me {
	padding: 60px 30px;
  }

  .about-me-content {
	flex-direction: column;
  }

  .about-me-content::before {
	display: none;
  }

  .about-me-image {
	flex: 0 0 auto;
	max-height: 400px;
  }

  .text-box {
	padding: 40px 35px;
  }

  .highlight-quote strong {
	font-size: 1.8rem;
  }

  .highlight-quote p {
	font-size: 1rem;
  }

  footer {
	padding: 30px 20px;
	text-align: center;
  }

  .footer-content {
	flex-direction: column;
	align-items: center;
	padding: 0 20px;
  }

  .footer-brand {
	margin-bottom: 20px;
	flex-basis: auto;
  }

  .footer-brand img {
	max-width: 100px;
	margin-bottom: 10px;
	margin-left: 10%;
  }

  .footer-all-content {
	flex-direction: column;
	align-items: center;
  }

  .footer-name {
	font-size: 1.7rem;
	margin-bottom: 20px;
  }

  .footer-links,
  .footer-social {
	align-items: center;
	margin: 10px 0;
  }

  .footer-links h4,
  .footer-social h4 {
	font-size: 1.1rem;
	margin-bottom: 20px;
  }

  .footer-links li,
  .footer-social a {
	margin-bottom: 8px;
  }

  .footer-links a,
  .footer-social a {
	font-size: 1rem;
  }
}

/* Media Query - 450px */
@media only screen and (max-width: 450px) {
  .page {
	padding: 0 10px;
  }

  header {
	height: 500px;
  }

  .hero {
	padding: 100px 0;
  }

  .hero-content {
	margin-left: 10px;
	margin-top: 10px;
  }

  .hero-content h2,
  .hero-content h1,
  .hero-content p,
  .hero-button {
	margin-left: 20px;
  }

  .hero-content h2 {
	font-size: calc(2.1rem - 15px);
	margin-top: 10px;
  }

  .hero-content h1 {
	font-size: calc(2.6rem - 15px);
  }

  .hero-content p {
	font-size: calc(1.1rem - 2px);
	margin-right: 30px;
  }

  .service-item p {
	font-size: clamp(1rem - 0.1vw);
  }

  .intro-container {
	padding-left: 10px;
  }

  .image-container img {
	width: 100%;
	max-width: 250px;
  }

  .cta-content {
	margin-left: 40px;
  }

  .cta-content h2 {
	margin-bottom: 15px;
	padding-top: 40px;
  }

  .button-container {
	gap: 15px;
	margin-left: -20px;
  }

  .vertical-line {
	margin: 15px 0;
  }

  .projects {
	padding: 55px 15px;
  }

  .projects h3 {
	font-size: 1.8rem;
  }

  .project-item {
	padding: 25px;
  }

  .project-item p {
	font-size: 0.9rem;
  }

  .about-me {
	padding: 50px 25px;
  }

  .about-me h2 {
	font-size: 2.2rem;
  }

  .about-me > p {
	font-size: 1rem;
	padding: 0 20px;
  }

  .about-me-image {
	max-height: 350px;
  }

  .text-box {
	padding: 35px 30px;
  }

  .highlight-quote strong {
	font-size: 1.7rem;
  }

  .highlight-quote p {
	font-size: 0.98rem;
  }

  .footer-content {
	padding: 0 15px;
  }

  .footer-brand img {
	max-width: 90px;
	margin-left: 15%;
  }
}


/* Media Query - 375px */
@media only screen and (max-width: 375px) {
  .hero-content h2 {
	font-size: calc(2.1rem - 17px);
  }

  .hero-content h1 {
	font-size: calc(2.6rem - 17px);
  }

  .hero-content p {
	font-size: calc(1.1rem - 3px);
  }

  .intro {
	padding: 6%;
  }

  .intro-container {
	margin-left: 2%;
  }

  .intro-container h3 {
	font-size: calc(2.1rem - 12px);
  }

  .project-item {
	flex: 0 0 90%;
	padding: 25px;
  }

  .projects h3 {
	font-size: 1.7rem;
  }

  .project-item p {
	font-size: 0.9rem;
  }

  .about-me {
	padding: 40px 15px;
  }

  .about-me h2 {
	font-size: 1.7rem;
  }

  .about-me > p {
	font-size: 0.9rem;
	padding: 0 15px;
  }

  .about-me-content {
	border-radius: 20px;
  }

  .about-me-image {
	max-height: 300px;
  }

  .text-box {
	padding: 30px 25px;
  }

  .highlight-quote strong {
	font-size: 1.5rem;
  }

  .highlight-quote p {
	font-size: 0.95rem;
  }
}