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

:root {
  --yellow: #8A9D9C;
  --black: #111;
  --white: #fff;
  --light-color: #000000;
  --light-bg: #eee;
  --box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  --border: 0.1rem solid rgba(0, 0, 0, 0.3);
}

* {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

html::-webkit-scrollbar {
  width: 1rem;
}

html::-webkit-scrollbar-track {
  background: transparent;
}

html::-webkit-scrollbar-thumb {
  background: var(--yellow);
}

section {
  padding: 5rem 10%;
}

/* ULTRA-FAST SCROLL ANIMATIONS */
.scroll-element {
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-element.animate {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-15px);
  transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in-left.animate {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(15px);
  transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in-right.animate {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scale-in.animate {
  opacity: 1;
  transform: scale(1);
}

.stagger-animation {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.stagger-animation.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Header with enhanced animation */
.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: var(--box-shadow);
  padding: 1.5rem 10%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  background: var(--white);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.header.scrolled {
  padding: 1rem 10%;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.heading {
  margin-bottom: 3rem;
  font-size: 3rem;
  color: var(--black);
  text-transform: capitalize;
  padding-left: 1rem;
  border-left: 1rem solid var(--yellow);
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 1rem 3rem;
  background: var(--black);
  color: var(--white);
  cursor: pointer;
  font-size: 1.7rem;
  text-transform: capitalize;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--yellow);
  transition: left 0.3s ease;
  z-index: -1;
}

.btn:hover::before {
  left: 0;
}

.btn:hover {
  color: var(--black);
  transform: translateY(-2px);
}

.header .logo {
  font-size: 2.5rem;
  color: var(--black);
  text-transform: capitalize;
  transition: transform 0.3s ease;
}

.header .logo-img {
  height: 4rem;
  width: auto;
  max-width: 20rem;
  object-fit: contain;
  transition: all 0.3s ease;
}

.header .logo:hover {
  transform: scale(1.05);
}

.header .logo:hover .logo-img {
  transform: scale(1.05);
}

.header .logo span {
  color: var(--yellow);
}

.header .navbar a {
  font-size: 2rem;
  color: var(--black);
  text-transform: capitalize;
  margin: 0 1rem;
  position: relative;
  transition: all 0.3s ease;
}

.header .navbar a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--yellow);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.header .navbar a:hover::after {
  width: 100%;
}

.header .navbar a:hover {
  color: var(--yellow);
  transform: translateY(-2px);
}

.header .icons div {
  height: 5rem;
  width: 5rem;
  line-height: 5rem;
  font-size: 2rem;
  background: var(--light-bg);
  color: var(--black);
  cursor: pointer;
  text-align: center;
  margin-left: 0.3rem;
  transition: all 0.3s ease;
  border-radius: 50%;
}

.header .icons div:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-3px) rotate(5deg);
}

.header #menu-btn {
  display: none;
}

.header .search-form {
  position: absolute;
  top: 120%;
  left: 50%;
  transform: translateX(-50%);
  width: 70rem;
  background: var(--white);
  box-shadow: var(--box-shadow);
  padding: 1rem;
  display: none;
  align-items: center;
  gap: 1rem;
  animation: fadeIn 0.3s ease;
}

.header .search-form.active {
  display: flex;
}

.header .search-form input {
  width: 100%;
  padding: 1.2rem 1.4rem;
  background: var(--light-bg);
  font-size: 1.6rem;
  color: var(--light-color);
  border-radius: 5px;
  transition: all 0.3s ease;
}

.header .search-form input:focus {
  transform: scale(1.02);
  box-shadow: 0 0 20px rgba(138, 157, 156, 0.3);
}

.header .search-form label {
  font-size: 2.5rem;
  color: var(--black);
  cursor: pointer;
  margin: 0 1rem;
  transition: all 0.3s ease;
}

.header .search-form label:hover {
  color: var(--yellow);
  transform: scale(1.1);
}

.contact-info {
  position: fixed;
  top: 0;
  right: 0;
  width: 35rem;
  background: var(--white);
  height: 100%;
  text-align: center;
  z-index: 1100;
  padding: 0 2rem;
  padding-top: 5rem;
  padding-bottom: 3rem;
  display: none;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow-y: auto;
  overflow-x: hidden;
}

.contact-info.active {
  box-shadow: 0 0 0 100vw rgba(0, 0, 0, 0.7);
  display: block;
  transform: translateX(0);
}

.contact-info #close-contact-info {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  cursor: pointer;
  font-size: 4rem;
  color: var(--black);
  transition: all 0.3s ease;
}

.contact-info #close-contact-info:hover {
  transform: rotate(90deg) scale(1.1);
  color: var(--yellow);
}

.contact-info .info {
  padding: 2rem 0;
  opacity: 0;
  transform: translateY(30px);
  animation: slideInUp 0.6s ease forwards;
}

.contact-info.active .info:nth-child(2) { animation-delay: 0.1s; }
.contact-info.active .info:nth-child(3) { animation-delay: 0.2s; }
.contact-info.active .info:nth-child(4) { animation-delay: 0.3s; }
.contact-info.active .info:nth-child(5) { animation-delay: 0.4s; }

@keyframes slideInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-info .info i {
  height: 5rem;
  width: 5rem;
  line-height: 5rem;
  font-size: 2rem;
  background: var(--light-bg);
  color: var(--black);
  cursor: pointer;
  text-align: center;
  margin-bottom: 0.5rem;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.contact-info .info i:hover {
  background: var(--black);
  color: var(--white);
  transform: scale(1.1) rotate(10deg);
}

.contact-info .info h3 {
  font-size: 2rem;
  color: var(--black);
  text-transform: capitalize;
  padding: 1rem 0;
}

.contact-info .info p {
  font-size: 1.5rem;
  color: var(--light-color);
  line-height: 2;
}

.contact-info .share {
  padding-top: 2rem;
  border-top: var(--border);
  margin-top: 1rem;
}

.contact-info .share a {
  height: 5rem;
  width: 5rem;
  line-height: 5rem;
  font-size: 2rem;
  background: var(--light-bg);
  color: var(--black);
  cursor: pointer;
  text-align: center;
  margin: 0 0.3rem;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.contact-info .share a:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-5px) scale(1.1);
}

/* Contact-info scrollbar styling */
.contact-info::-webkit-scrollbar {
  width: 0.8rem;
}

.contact-info::-webkit-scrollbar-track {
  background: var(--light-bg);
}

.contact-info::-webkit-scrollbar-thumb {
  background: var(--yellow);
  border-radius: 0.5rem;
}

.contact-info::-webkit-scrollbar-thumb:hover {
  background: var(--black);
}

.home {
  padding: 0;
}

.home .slide {
  min-height: 60rem;
  display: flex;
  align-items: center;
  position: relative;
  background-size: cover !important;
  background-position: center !important;
}

.home .slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--white), transparent);
}

.home .slide .content {
  width: 50rem;
  position: relative;
  opacity: 0;
  transform: translateX(-100px);
  animation: slideInFromLeft 1s ease forwards;
}

@keyframes slideInFromLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.home .slide .content h3 {
  font-size: 6rem;
  color: var(--black);
  text-transform: capitalize;
  text-transform: uppercase;
  line-height: 1.2;
}

.home .slide .content p {
  font-size: 1.4rem;
  color: var(--light-color);
  line-height: 2;
  padding: 1rem 0;
}

.home .swiper-button-next,
.home .swiper-button-prev {
  top: initial;
  bottom: 0;
  left: initial;
  right: 0;
  height: 7rem;
  width: 7rem;
  line-height: 7rem;
  background: var(--white);
  transition: all 0.3s ease;
  color: var(--black);
  border-radius: 0;
  margin-top: 0;
}

.home .swiper-button-next:hover,
.home .swiper-button-prev:hover {
  background: var(--yellow);
  transform: scale(1.1);
}

.home .swiper-button-next::after,
.home .swiper-button-prev::after {
  font-size: 2rem;
  color: var(--black);
  font-weight: bold;
}

.home .swiper-button-prev {
  right: 7rem;
}

.about .row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
}

.about .row .video {
  flex: 1 1 41rem;
}

.about .row .video video {
  width: 100%;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.about .row .video video:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about .row .content {
  flex: 1 1 41rem;
}

.about .row .content h3 {
  font-size: 3.5rem;
  color: var(--black);
  text-transform: capitalize;
}

.about .row .content p {
  font-size: 1.5rem;
  color: var(--light-color);
  line-height: 2;
  padding: 1rem 0;
}

.about .box-container {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 2rem;
  align-items: flex-end;
}

.about .box-container .box {
  text-align: center;
  background: var(--light-bg);
  padding: 3rem 2rem;
  border-radius: 10px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.about .box-container .box::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(138, 157, 156, 0.1), transparent);
  transition: left 0.6s ease;
}

.about .box-container .box:hover::before {
  left: 100%;
}

.about .box-container .box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about .box-container .box h3 {
  font-size: 4rem;
  color: var(--black);
  text-transform: capitalize;
  transition: all 0.3s ease;
}

.about .box-container .box:hover h3 {
  color: var(--yellow);
  transform: scale(1.1);
}

.about .box-container .box p {
  font-size: 1.5rem;
  color: var(--light-color);
  line-height: 2;
  padding-top: 0.5rem;
}

/* QUALIFICATIONS SECTION WITH ANIMATIONS */
.qualifications {
  margin-top: 5rem;
  text-align: center;
}

.qualifications h2 {
  font-size: 2.5rem;
  color: var(--black);
  margin-bottom: 3rem;
}

.qualification-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.qualification-box {
  background: var(--light-bg);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.qualification-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(138, 157, 156, 0.1), transparent);
  transition: left 0.8s ease;
  z-index: 1;
}

.qualification-box.animate::before {
  left: 100%;
}

.qualification-box:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.qualification-box i {
  font-size: 3rem;
  color: var(--yellow);
  margin-bottom: 1rem;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
  transform: scale(0.8);
  opacity: 0;
}

.qualification-box.animate i {
  transform: scale(1);
  opacity: 1;
  animation: iconBounce 0.6s ease forwards;
}

.qualification-box:hover i {
  transform: scale(1.2) rotate(10deg);
  color: var(--black);
}

.qualification-box h4 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.qualification-box.animate h4 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

.qualification-box p {
  font-size: 1.4rem;
  color: var(--light-color);
  line-height: 1.6;
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.qualification-box.animate p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

/* Icon bounce animation */
@keyframes iconBounce {
  0% {
    transform: scale(0.8) translateY(20px);
    opacity: 0;
  }
  50% {
    transform: scale(1.1) translateY(-5px);
    opacity: 1;
  }
  100% {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

/* Pulse effect for icons */
.qualification-box.animate i::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  border: 2px solid var(--yellow);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 1;
  animation: iconPulse 1.5s ease-out forwards;
  animation-delay: 0.3s;
}

@keyframes iconPulse {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}

.services {
  background: var(--light-bg);
}

.services .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 2rem;
}

.services .box-container .box {
  text-align: center;
  padding: 3rem;
  background: var(--white);
  box-shadow: var(--box-shadow);
  border: var(--border);
  border-radius: 15px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.services .box-container .box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--yellow), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.services .box-container .box:hover::before {
  opacity: 0.1;
}

.services .box-container .box:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.services .box-container .box:hover img {
  transform: translateY(-1rem) scale(1.1);
}

.services .box-container .box .service-icon {
  height: 7rem;
  width: 7rem;
  margin: 0 auto 2rem auto;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.services .box-container .box .service-icon i {
  font-size: 3rem;
  color: var(--white);
  transition: all 0.4s ease;
}

.services .box-container .box:hover .service-icon {
  transform: translateY(-1rem) scale(1.1);
  background: var(--black);
}

.services .box-container .box img {
  height: 7rem;
  margin-bottom: 0.5rem;
  transition: all 0.4s ease;
}

.services .box-container .box h3 {
  font-size: 1.7rem;
  color: var(--black);
  text-transform: capitalize;
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.services .box-container .box:hover h3 {
  color: var(--yellow);
}

.services .box-container .box p {
  font-size: 1.4rem;
  color: var(--light-color);
  line-height: 2;
}

.projects {
  background: var(--black);
}

.projects .heading {
  color: var(--white);
}

.projects .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 2rem;
}

.projects .box-container .box {
  cursor: initial;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.projects .box-container .box:hover {
  transform: scale(1.05);
  box-shadow: 0 25px 50px rgba(255, 255, 255, 0.1);
}

.projects .box-container .box:hover .image img {
  transform: scale(1.1);
}

.projects .box-container .box .image {
  height: 40rem;
  overflow: hidden;
}

.projects .box-container .box .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}

.projects .box-container .box .content {
  display: flex;
  background: var(--white);
  justify-content: space-between;
}

.projects .box-container .box .content .info {
  padding: 1rem 2rem;
}

.projects .box-container .box .content .info h3 {
  font-size: 1.7rem;
  color: var(--black);
  text-transform: capitalize;
}

.projects .box-container .box .content .info p {
  font-size: 1.5rem;
  color: var(--light-color);
  line-height: 2;
}

.projects .box-container .box .content i {
  width: 7.5rem;
  font-size: 3rem;
  background: var(--yellow);
  color: var(--white);
  cursor: pointer;
  text-align: center;
  line-height: 7.5rem;
  transition: all 0.3s ease;
}

.projects .box-container .box .content i:hover {
  background: var(--black);
  transform: scale(1.1);
}

.reviews .slide p {
  padding: 1.5rem;
  background: var(--light-bg);
  position: relative;
  margin-bottom: 3rem;
  font-size: 1.4rem;
  color: var(--light-color);
  line-height: 2;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.reviews .slide p:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.reviews .slide p::before {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 2rem;
  height: 2rem;
  width: 2rem;
  background: var(--light-bg);
  transform: rotate(45deg);
}

.reviews .slide .user {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.reviews .slide .user img {
  height: 7rem;
  width: 7rem;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.reviews .slide .user img:hover {
  transform: scale(1.1);
}

.reviews .slide .user h3 {
  font-size: 2rem;
  color: var(--black);
  text-transform: capitalize;
}

.reviews .slide .user .stars {
  padding-top: 0.5rem;
}

.reviews .slide .user .stars i {
  font-size: 1.4rem;
  color: var(--yellow);
  transition: all 0.3s ease;
}

.reviews .slide .user .stars i:hover {
  transform: scale(1.2);
}

.contact {
  background: var(--black);
}

.contact .heading {
  color: var(--white);
}

.contact .row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.contact .row .map {
  flex: 1 1 41rem;
  width: 100%;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.contact .row .map:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 40px rgba(255, 255, 255, 0.1);
}

.contact .row form {
  flex: 1 1 41rem;
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.contact .row form:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(255, 255, 255, 0.1);
}

.contact .row form h3 {
  font-size: 2.5rem;
  color: var(--black);
  text-transform: capitalize;
}

.contact .row form .form-description {
  font-size: 1.4rem;
  color: var(--light-color);
  margin-bottom: 2rem;
}

.contact .row form .box {
  margin: 0.7rem 0;
  width: 100%;
  padding: 1.5rem 1rem;
  border-bottom: var(--border);
  font-size: 1.6rem;
  color: var(--light-color);
  background: transparent;
  transition: all 0.3s ease;
}

.contact .row form .box:focus {
  border-color: var(--yellow);
  transform: translateY(-2px);
  outline: none;
}

.contact .row form select.box {
  appearance: none;
  cursor: pointer;
}

.contact .row form select.box option {
  background: var(--white);
  color: var(--black);
  padding: 1rem;
}

.contact .row form textarea {
  height: 15rem;
  resize: none;
}

/* CALL TO ACTION SECTION */
.cta-section {
  background: var(--black);
  padding: 5rem 10%;
  text-align: center;
}

.cta-container {
  max-width: 80rem;
  margin: 0 auto;
}

.cta-container h2 {
  font-size: 3.5rem;
  color: var(--white);
  margin-bottom: 2rem;
  text-transform: capitalize;
}

.cta-container p {
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 3rem;
  line-height: 1.8;
  opacity: 0.9;
}

.cta-boxes {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.cta-box {
  background: rgba(255,255,255,0.1);
  padding: 2rem;
  border-radius: 10px;
  min-width: 20rem;
  transition: all 0.3s ease;
}

.cta-box:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-5px);
}

.cta-box i {
  font-size: 2.5rem;
  color: var(--yellow);
  margin-bottom: 1rem;
}

.cta-box h4 {
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.cta-box p {
  color: var(--white);
  opacity: 0.8;
  font-size: 1.4rem;
  margin: 0;
}

.cta-buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--yellow) !important;
  color: var(--black) !important;
  font-weight: 600;
}

.btn-secondary {
  background: transparent !important;
  border: 2px solid var(--white) !important;
  color: var(--white) !important;
}

.btn-secondary:hover {
  background: var(--white) !important;
  color: var(--black) !important;
}

.footer {
  text-align: center;
  padding-bottom: 10rem;
}

.footer .links .btn {
  margin: 0.5rem;
}

.footer .credit {
  font-size: 2rem;
  color: var(--black);
  text-transform: capitalize;
  margin-top: 2rem;
  padding-top: 1rem;
}

.footer .credit span {
  color: var(--yellow);
}

.footer-info {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--light-bg);
  text-align: center;
}

.company-name {
  font-size: 1.4rem;
  color: var(--black);
  margin-bottom: 1rem;
}

.company-details {
  font-size: 1.2rem;
  color: var(--light-color);
}

/* SEARCH SUGGESTIONS STYLES */
.search-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border: 1px solid var(--light-bg);
  border-top: none;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  max-height: 30rem;
  overflow-y: auto;
  z-index: 1001;
}

.search-suggestion {
  padding: 1.2rem 1.4rem;
  border-bottom: 1px solid var(--light-bg);
  cursor: pointer;
  transition: all 0.2s ease;
}

.search-suggestion:hover,
.search-suggestion.selected {
  background: var(--light-bg);
  transform: translateX(3px);
}

.search-suggestion:last-child {
  border-bottom: none;
  border-radius: 0 0 8px 8px;
}

.suggestion-term {
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 0.3rem;
}

.suggestion-term strong {
  color: var(--yellow);
  background: rgba(138, 157, 156, 0.1);
  padding: 0.1rem 0.3rem;
  border-radius: 3px;
}

.suggestion-description {
  font-size: 1.3rem;
  color: var(--light-color);
  line-height: 1.4;
}

/* SEARCH RESULTS OVERLAY STYLES */
.search-results-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

.search-results-container {
  background: var(--white);
  border-radius: 10px;
  max-width: 60rem;
  width: 90%;
  max-height: 70vh;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.search-results-header {
  background: var(--yellow);
  color: var(--black);
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.search-results-header h3 {
  margin: 0;
  font-size: 1.8rem;
}

.close-search-results {
  background: none;
  border: none;
  font-size: 3rem;
  cursor: pointer;
  color: var(--black);
  padding: 0;
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.close-search-results:hover {
  background: rgba(0, 0, 0, 0.1);
}

.search-results-list {
  max-height: 40vh;
  overflow-y: auto;
  padding: 1rem;
}

.search-result-item {
  padding: 1.5rem;
  border-bottom: 1px solid var(--light-bg);
  cursor: pointer;
  transition: all 0.3s ease;
}

.search-result-item:hover {
  background: var(--light-bg);
  transform: translateX(5px);
}

.search-result-item:last-child {
  border-bottom: none;
}

.result-section {
  font-size: 1.2rem;
  color: var(--yellow);
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.result-text {
  font-size: 1.4rem;
  color: var(--light-color);
  line-height: 1.6;
}

/* ANIMATIONS */
@keyframes pulse {
  0%, 100% { background-color: transparent; }
  50% { background-color: rgba(138, 157, 156, 0.3); }
}

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

/* Parallax Effect */
.parallax-section {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Enhanced Mobile-First Responsive Design */

/* Base responsive font sizes */
@media (max-width: 1200px) {
  html {
    font-size: 58%;
  }

  .header {
    padding: 1.5rem 2rem;
  }

  section {
    padding: 3rem 5%;
  }

  .heading {
    font-size: 2.8rem;
  }
}

/* Tablet Design */
@media (max-width: 991px) {
  html {
    font-size: 55%;
  }

  section {
    padding: 3rem 2rem;
  }

  .heading {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }

  /* Mobile Header */
  .header #menu-btn {
    display: inline-block;
  }

  .header .navbar {
    position: absolute;
    top: 99%;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: var(--border);
    border-bottom: var(--border);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: all 0.3s ease;
  }

  .header .navbar.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }

  .header .navbar a {
    display: block;
    margin: 2rem;
    font-size: 1.8rem;
  }

  /* Mobile Home Slider */
  .home .slide {
    min-height: 50rem;
    justify-content: center;
    text-align: center;
  }

  .home .slide .content {
    width: 100%;
    max-width: 40rem;
    padding: 0 2rem;
  }

  .home .slide .content h3 {
    font-size: 4rem;
    line-height: 1.2;
  }

  .home .slide .content p {
    font-size: 1.6rem;
    margin: 2rem 0;
  }

  /* Mobile Navigation Buttons */
  .home .swiper-button-next,
  .home .swiper-button-prev {
    height: 6rem;
    width: 6rem;
    bottom: 2rem;
  }

  .home .swiper-button-prev {
    right: 8rem;
  }

  /* About Section Mobile */
  .about .row {
    flex-direction: column;
    gap: 2rem;
  }

  .about .row .video,
  .about .row .content {
    flex: none;
    width: 100%;
  }

  .about .row .content h3 {
    font-size: 2.8rem;
    text-align: center;
    margin-top: 2rem;
  }

  .about .box-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .qualification-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Services Mobile */
  .services .box-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .services .box-container .box {
    padding: 2rem;
  }

  /* Projects Mobile */
  .projects .box-container {
    grid-template-columns: 1fr;
  }

  /* Contact Mobile */
  .contact .row {
    flex-direction: column;
  }

  .contact .row .map,
  .contact .row form {
    flex: none;
    width: 100%;
  }

  /* CTA Mobile */
  .cta-boxes {
    flex-direction: column;
    gap: 1.5rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* Mobile Phone Design */
@media (max-width: 768px) {
  html {
    font-size: 52%;
  }

  .header {
    padding: 1rem 2rem;
  }

  .header .search-form {
    width: 90%;
  }

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

  .header .logo-img {
    height: 3.5rem;
    max-width: 18rem;
  }

  .header .icons div {
    height: 4.5rem;
    width: 4.5rem;
    line-height: 4.5rem;
    font-size: 1.8rem;
  }

  /* Mobile Home Section */
  .home .slide {
    min-height: 45rem;
    background-attachment: scroll !important;
  }

  .home .slide::before {
    background: linear-gradient(45deg, rgba(255,255,255,0.9), transparent);
  }

  .home .slide .content {
    text-align: center;
    padding: 0 1rem;
  }

  .home .slide .content h3 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
  }

  .home .slide .content p {
    font-size: 1.4rem;
    line-height: 1.8;
  }

  .home .swiper-button-next,
  .home .swiper-button-prev {
    height: 5rem;
    width: 5rem;
    bottom: 1rem;
  }

  .home .swiper-button-next::after,
  .home .swiper-button-prev::after {
    font-size: 1.8rem;
  }

  .home .swiper-button-prev {
    right: 6rem;
  }

  /* Mobile About */
  .about .row .content h3 {
    font-size: 2.5rem;
  }

  .about .box-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about .box-container .box {
    padding: 2rem;
  }

  .about .box-container .box h3 {
    font-size: 3rem;
  }

  /* Mobile Services */
  .services .box-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .services .box-container .box {
    max-width: 40rem;
    margin: 0 auto;
  }

  /* Mobile Projects */
  .projects .box-container .box .image {
    height: 30rem;
  }

  /* Mobile Reviews */
  .reviews-slider .swiper-slide {
    margin-bottom: 2rem;
  }

  .reviews .slide p {
    font-size: 1.6rem;
    padding: 2rem;
  }

  .reviews .slide .user {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .reviews .slide .user img {
    height: 8rem;
    width: 8rem;
  }

  /* Mobile Contact */
  .contact .row .map {
    height: 30rem;
  }

  .contact .row form {
    padding: 2rem;
  }

  .contact .row form h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  /* Mobile CTA */
  .cta-section {
    padding: 3rem 5%;
  }

  .cta-container h2 {
    font-size: 2.8rem;
  }

  .cta-container p {
    font-size: 1.4rem;
  }

  .cta-box {
    min-width: auto;
    width: 100%;
  }

  /* Mobile Footer */
  .footer .links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer .links .btn {
    margin: 0.5rem;
    padding: 0.8rem 2rem;
    font-size: 1.4rem;
  }

  /* Mobile Search */
  .search-suggestions {
    max-height: 25rem;
  }

  .search-suggestion {
    padding: 1rem;
  }

  .suggestion-term {
    font-size: 1.4rem;
  }

  .suggestion-description {
    font-size: 1.2rem;
  }

  .search-results-container {
    width: 95%;
    max-height: 80vh;
  }

  .search-results-header {
    padding: 1.5rem;
  }

  .search-results-header h3 {
    font-size: 1.6rem;
  }

  /* Faster mobile animations */
  .scroll-element, .fade-in-left, .fade-in-right, .scale-in, .stagger-animation {
    transition-duration: 0.3s;
  }
}

/* Small Mobile Phones */
@media (max-width: 450px) {
  html {
    font-size: 50%;
  }

  .header {
    padding: 1rem;
  }

  .header .logo {
    font-size: 1.8rem;
  }

  .header .logo-img {
    height: 3rem;
    max-width: 15rem;
  }

  .header .icons div {
    height: 4rem;
    width: 4rem;
    line-height: 4rem;
    font-size: 1.6rem;
    margin-left: 0.2rem;
  }

  /* Extra Small Mobile Home */
  .home .slide {
    min-height: 40rem;
  }

  .home .slide .content h3 {
    font-size: 2.8rem;
  }

  .home .slide .content p {
    font-size: 1.3rem;
  }

  .home .swiper-button-next,
  .home .swiper-button-prev {
    height: 4.5rem;
    width: 4.5rem;
  }

  .home .swiper-button-prev {
    right: 5.5rem;
  }

  /* Small Mobile Sections */
  section {
    padding: 2rem 1rem;
  }

  .heading {
    font-size: 2.2rem;
    padding-left: 0.5rem;
    border-left: 0.8rem solid var(--yellow);
  }

  .about .row .content h3 {
    font-size: 2.2rem;
  }

  .services .box-container .box {
    padding: 2rem 1.5rem;
  }

  .contact .row form {
    padding: 1.5rem;
  }

  .contact-info {
    width: 30rem;
  }

  /* Utility adjustments for very small screens */
  .btn {
    padding: 0.8rem 2rem;
    font-size: 1.4rem;
  }

  .cta-section {
    padding: 2rem 3%;
  }

  .cta-container h2 {
    font-size: 2.5rem;
  }
}

/* Landscape Phone Orientation */
@media (max-width: 768px) and (orientation: landscape) {
  .home .slide {
    min-height: 35rem;
  }

  .home .slide .content h3 {
    font-size: 3rem;
  }
}

/* Low height viewports (e.g., 1024x600) - ensure contact-info is scrollable */
@media (max-height: 700px) {
  .contact-info {
    overflow-y: auto;
    overflow-x: hidden;
    padding-bottom: 3rem;
  }
  
  .contact-info .share {
    margin-bottom: 2rem;
  }
}

/* Parallax fix for mobile devices */
@media (max-width: 768px) {
  .parallax-section {
    background-attachment: scroll !important;
  }
}

/* Touch device improvements */
@media (hover: none) and (pointer: coarse) {
  .services .box-container .box:hover,
  .about .box-container .box:hover,
  .projects .box-container .box:hover {
    transform: none;
  }
  
  .btn:hover {
    transform: none;
  }
  
  /* Make touch targets larger */
  .header .icons div {
    min-height: 4.4rem;
    min-width: 4.4rem;
  }
  
  .home .swiper-button-next,
  .home .swiper-button-prev {
    min-height: 5rem;
    min-width: 5rem;
  }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  .scroll-element,
  .fade-in-left,
  .fade-in-right,
  .scale-in,
  .stagger-animation {
    transition: none;
  }
}




.home-slider {
  width: 100%;
  height: 100vh;
  position: relative;
}

.home-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-button-next,
.swiper-button-prev {
  color: #fff;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  opacity: 1;
}





/* === MOBILE SEARCH FIX === */
@media (max-width: 768px) {
  .header .search-form {
    position: fixed;
    top: 8rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    z-index: 2000;
    display: none;
    background: var(--white);
    border-radius: 1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
  }

  .header .search-form.active {
    display: flex;
    animation: slideDown 0.3s ease;
  }

  .header .search-form input {
    font-size: 1.6rem;
    padding: 1.2rem 1.4rem;
    border-radius: 8px;
    border: 2px solid var(--light-bg);
    transition: all 0.3s ease;
  }

  .header .search-form input:focus {
    border-color: var(--yellow);
    outline: none;
    box-shadow: 0 0 0 3px rgba(138, 157, 156, 0.1);
  }

  .header .search-form label {
    font-size: 2rem;
    color: var(--yellow);
    cursor: pointer;
    padding: 1rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    margin-left: 1rem;
  }

  .header .search-form label:hover {
    background: var(--light-bg);
    transform: scale(1.1);
  }

  .header .search-form label:active {
    transform: scale(0.95);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}




/* === LIGHTGALLERY FIX (Vollbildmodus auf Mobile) === */
.lg-backdrop {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 99999 !important;
}

.lg-outer {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 100000 !important;
  background: rgba(0, 0, 0, 0.95) !important;
}

.lg-item, .lg-img-wrap, .lg-inner {
  height: 100vh !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.lg-image {
  max-height: 90vh !important;
  object-fit: contain !important;
}