* {
  -webkit-tap-highlight-color: #fff0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
p,
h1,
h2,
h3, 
h4,
h5,
h6,
span,
div.text-content {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}
*:focus {
  outline: none;
  box-shadow: none;
}
button:focus,
input:focus,
textarea:focus,
select:focus {
  outline: none;
  box-shadow: none;
}
::selection {
  background: #fff0;
}
::-moz-selection {
  background: #fff0;
}
html,
body {
  height: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}
body {
  font-family: "Poppins", sans-serif;
  color: #333;
  background-color: #fcfcfc;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  padding-bottom: 20px;
  text-align: center;
}
p {
  font-family: "Roboto", sans-serif;
  line-height: 1.6;
}
a {
  text-decoration: none;
  color: #fcfcfc;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 5%;
  color: #fff;
  background-color: rgb(0 0 0 / 0.95);
  position: fixed;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 82%;
  max-width: 1260px;
  border-radius: 24px;
  box-shadow: 0 4px 30px rgb(0 0 0 / 0.2);
  z-index: 1000;
  transition: all 0.3s ease;
  -webkit-transform: translateX(-50%);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform;
}
.navbar:hover {
  box-shadow: 0 4px 25px rgb(0 0 0 / 0.12);
}
.logo {
  width: 160px;
  height: 50px;
  position: relative;
}
.logo img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.nav-links {
  display: flex;
  gap: 25px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links li {
  display: inline-block;
}
.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 500;
  padding: 8px 15px;
  border-radius: 12px;
  transition: all 0.2s ease;
}
.nav-links a:hover {
  background-color: rgb(255 255 255 / 0.1);
  color: #fff;
}
.cntct {
  background-color: rgb(255 255 255 / 0.1);
  color: #fff;
}
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1001;
  width: 30px;
  height: 30px;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hamburger-line {
  width: 25px;
  height: 3px;
  background-color: #fff;
  border-radius: 3px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.hamburger-line:nth-child(1) {
  margin-bottom: 4px;
}
.hamburger-line:nth-child(2) {
  margin-bottom: 4px;
}
.hamburger-line:nth-child(3) {
  margin-bottom: 0;
}
.menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}
.menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}
.menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(
    135deg,
    rgb(0 0 0 / 0.95) 0%,
    rgb(0 0 0 / 0.98) 100%
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: scale(1.1);
}
.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.mobile-menu-container {
  width: 100%;
  height: 100%;
  max-width: 100%;
  padding: 60px 40px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}
.mobile-menu-logo img {
  width: 120px;
  height: auto;
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s ease;
  transition-delay: 0.2s;
}
.mobile-menu-overlay.active .mobile-menu-logo img {
  opacity: 1;
  transform: translateX(0);
}
.mobile-menu-close {
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 50%;
  background: rgb(255 255 255 / 0.1);
  transition: all 0.3s ease;
}
.mobile-menu-close:hover {
  background: rgb(255 255 255 / 0.2);
  transform: rotate(90deg);
}
.close-line {
  position: absolute;
  width: 20px;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.close-line:nth-child(1) {
  transform: rotate(45deg);
}
.close-line:nth-child(2) {
  transform: rotate(-45deg);
}
.mobile-menu-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
  width: 100%;
}
.mobile-nav-links li {
  margin: 0 0 40px 0;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.mobile-menu-overlay.active .mobile-nav-links li:nth-child(1) {
  transition-delay: 0.3s;
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu-overlay.active .mobile-nav-links li:nth-child(2) {
  transition-delay: 0.4s;
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu-overlay.active .mobile-nav-links li:nth-child(3) {
  transition-delay: 0.5s;
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu-overlay.active .mobile-nav-links li:nth-child(4) {
  transition-delay: 0.6s;
  opacity: 1;
  transform: translateY(0);
}
.mobile-nav-link {
  color: #fff;
  text-decoration: none;
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 300;
  font-family: "Poppins", sans-serif;
  letter-spacing: -0.02em;
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
  padding: 10px 0;
}
.mobile-nav-link:hover {
  color: rgb(255 255 255 / 0.7);
  transform: translateX(10px);
}
.mobile-nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #fff, rgb(255 255 255 / 0.5));
  transition: width 0.4s ease;
}
.mobile-nav-link:hover::after {
  width: 100%;
}
.mobile-menu-footer {
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
  transition-delay: 0.7s;
}
.mobile-menu-overlay.active .mobile-menu-footer {
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu-footer p {
  color: rgb(255 255 255 / 0.6);
  font-size: 0.9rem;
  margin-bottom: 20px;
  font-weight: 300;
}
.mobile-menu-social {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.mobile-social-link {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgb(255 255 255 / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.mobile-social-link:hover {
  background: rgb(255 255 255 / 0.2);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgb(0 0 0 / 0.3);
}
.mobile-social-link i {
  font-size: 20px;
}
.fa-bars {
  font-size: 24px;
  color: #fff;
}
.hero-section {
  height: 100vh;
  background-color: #000;
  display: flex;
  align-items: center;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.hero-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  height: 100%;
  align-items: center;
}
.hero-text {
  padding: 0 60px 0 80px;
  padding-top: 5vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}
.hero-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 20px 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.hero-subtitle {
  font-family: "Inter", sans-serif;
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 400;
  color: rgb(255 255 255 / 0.8);
  margin: 0 0 40px 0;
  line-height: 1.4;
}
.hero-buttons {
  display: flex;
  gap: 20px;
  align-items: center;
}
.cta-button {
  padding: 16px 32px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.01em;
}
.cta-button.primary {
  background-color: #fff;
  color: #000;
  box-shadow: 0 4px 12px rgb(255 255 255 / 0.15);
}
.cta-button.primary:hover {
  background-color: rgb(255 255 255 / 0.95);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgb(255 255 255 / 0.2);
}
.cta-button.secondary {
  background-color: #fff0;
  color: #fff;
  border: 1px solid rgb(255 255 255 / 0.4);
}
.cta-button.secondary:hover {
  background-color: rgb(255 255 255 / 0.05);
  border-color: rgb(255 255 255 / 0.7);
  transform: translateY(-1px);
}
.cta-button a {
  color: inherit;
  text-decoration: none;
}
.hero-image {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  overflow: hidden;
}
.hero-image img {
  height: 100%;
  width: auto;
  object-fit: contain;
  object-position: center center;
  max-width: 100%;
  position: absolute;
  right: 0;
  bottom: 0;
  min-width: auto;
}
.about-section {
  padding: 120px 0 180px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.about-image {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}
.about-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
}
.about-content {
  padding: 20px 0;
}
.about-heading {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 40px;
  line-height: 1.2;
  position: relative;
}
.about-paragraph {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 25px;
  font-weight: 400;
  text-align: left;
}
p.about-paragraph:last-child {
  margin-bottom: 30px;
}
.highlight-brand {
  color: #000;
  font-weight: 700;
  text-decoration: none;
}
.highlight-accent {
  color: #333;
  font-weight: 600;
  font-style: italic;
}
.highlight-achievement {
  color: #000;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 8px;
}
.highlight-location {
  color: #222;
  font-weight: 600;
}
@media (max-width: 1024px) and (min-width: 769px) {
  .services-section {
    padding: 60px 30px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 900px;
    padding: 0 20px;
  }
  .service-card {
    padding: 24px 18px;
    min-height: 220px;
  }
  .service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }
  .service-card p {
    font-size: 0.85rem;
    line-height: 1.5;
  }
  .section-description {
    max-width: 80%;
    font-size: 0.9rem;
    padding: 0 5%;
  }
}
@media (max-width: 768px) {
  .services-section {
    padding: 50px 20px;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
    max-width: 500px;
  }
  .service-card {
    padding: 20px 15px;
    min-height: 180px;
    margin: 0 auto;
    max-width: 100%;
  }
  .service-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
  }
  .service-card p {
    font-size: 0.8rem;
    line-height: 1.4;
  }
  .service-card .fas {
    font-size: 28px;
    margin-bottom: 10px;
  }
  .section-description {
    max-width: 95%;
    font-size: 0.85rem;
    padding: 0 10px;
    margin-bottom: 30px;
  }
  .services-buttons {
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 10px;
  }
  .service-button {
    padding: 10px 16px;
    font-size: 0.85rem;
  }
  .service-button::before {
    font-size: 0.65rem;
    margin-right: 5px;
  }
  .about-section {
    padding: 80px 0;
  }
  .about-container {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 0 30px;
    text-align: center;
  }
  .about-image {
    order: -1;
    margin-bottom: 20px;
  }
  .about-heading {
    text-align: center;
  }
  .about-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (max-width: 480px) {
  .services-section {
    padding: 40px 15px;
  }
  .services-grid {
    gap: 15px;
    padding: 0 10px;
    max-width: 400px;
  }
  .service-card {
    padding: 18px 12px;
    min-height: 160px;
    border-radius: 10px;
  }
  .service-card h3 {
    font-size: 0.9rem;
    margin-bottom: 6px;
  }
  .service-card p {
    font-size: 0.75rem;
    line-height: 1.3;
  }
  .service-card .fas {
    font-size: 24px;
    margin-bottom: 8px;
  }
  .section-description {
    font-size: 0.8rem;
    padding: 0 5px;
    margin-bottom: 25px;
  }
  .services-buttons {
    margin-top: 25px;
    gap: 8px;
  }
  .service-button {
    padding: 8px 12px;
    font-size: 0.8rem;
  }
  .service-button::before {
    font-size: 0.6rem;
    margin-right: 4px;
  }
  .about-section {
    padding: 60px 0 180px 0;
  }
  .about-container {
    padding: 0 20px;
    gap: 40px;
  }
  .about-paragraph {
    font-size: 1rem;
    line-height: 1.7;
  }
}
.services-section {
  padding: 80px 20px;
  text-align: center;
  background-color: #fff;
  width: 100%;
  overflow-x: hidden;
  position: relative;
  max-width: 100vw;
}
.tagline {
  font-size: 0.72rem;
  color: #666;
  margin-bottom: 4px;
}
.section-description {
  font-size: 0.8rem;
  color: #666;
  max-width: 560px;
  margin: 0 auto 40px auto;
  padding: 0 12%;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
  margin-bottom: 40px;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 10px;
}
.service-card {
  padding: 20px;
  color: #333;
  background-color: #fff;
  border-radius: 12px;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 8px rgb(0 0 0 / 0.1);
  text-align: center;
  height: auto;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.service-card .fas {
  font-size: 32px;
  color: #333;
  margin-bottom: 12px;
}
.service-card h3 {
  font-size: 0.96rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
}
.service-card p {
  font-size: 0.72rem;
  color: #666;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgb(0 0 0 / 0.2);
}
.services-buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 12px;
}
.service-button {
  padding: 8px 20px;
  border: 1px solid #333;
  background-color: #fff;
  color: #333;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 2px 4px rgb(0 0 0 / 0.1);
  text-transform: capitalize;
  letter-spacing: 0.3px;
}
.service-button::before {
  content: "🔍";
  margin-right: 6px;
  font-size: 0.7rem;
  opacity: 0.7;
}
.service-button:hover {
  background-color: #333;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgb(0 0 0 / 0.2);
}
.service-button.active {
  background-color: #333;
  color: #fff;
  border-color: #333;
  box-shadow: 0 4px 12px rgb(0 0 0 / 0.3),
    inset 0 2px 4px rgb(255 255 255 / 0.1);
  transform: translateY(-1px);
  font-weight: 600;
}
.service-button.active::before {
  content: "✓";
  color: #4caf50;
  font-weight: 700;
  opacity: 1;
}
.service-button.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, #4caf50, #45a049);
  border-radius: 1px;
}
.why-choose-section {
  padding: 32px 16px;
  background: #393e46;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1024px) and (min-width: 769px) {
  .why-choose-section {
    padding: 24px 16px;
  }
  .why-choose-container {
    margin: 12px auto;
    padding: 36px 24px;
    border-radius: 16px;
    box-shadow: 0 16px 48px rgb(0 0 0 / 0.5), 0 6px 20px rgb(0 0 0 / 0.3),
      inset 0 1px 0 rgb(255 255 255 / 0.04);
  }
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 28px;
  }
  .highlight-card {
    padding: 20px 16px;
  }
  .section-title-block {
    margin-bottom: 28px;
  }
}
.why-choose-container {
  max-width: 880px;
  margin: 16px auto;
  background: linear-gradient(145deg, #000000 0%, #111111 100%);
  border-radius: 19px;
  padding: 40px 28px;
  box-shadow: 0 20px 64px rgb(0 0 0 / 0.6), 0 8px 24px rgb(0 0 0 / 0.4),
    inset 0 1px 0 rgb(255 255 255 / 0.05);
  border: 1px solid rgb(255 255 255 / 0.08);
  position: relative;
  backdrop-filter: blur(10px);
}
.section-title-block {
  margin-bottom: 32px;
}
.section-label {
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #ccc;
  margin-bottom: 10px;
  font-family: "Inter", "Plus Jakarta Sans", sans-serif;
}
.section-title {
  font-size: clamp(1.76rem, 3.2vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  margin: 0;
  font-family: "Inter", "Plus Jakarta Sans", sans-serif;
  line-height: 1.2;
}
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.highlight-card {
  background: rgb(255 255 255 / 0.02);
  padding: 24px 16px;
  border-radius: 13px;
  border: 1px solid rgb(255 255 255 / 0.1);
  text-align: center;
  backdrop-filter: blur(15px);
  position: relative;
  overflow: hidden;
}
.highlight-icon {
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}
.highlight-icon i {
  font-size: 1.76rem;
  color: #ccc;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  position: relative;
}
.highlight-heading {
  font-size: 0.96rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.3;
  font-family: "Inter", "Plus Jakarta Sans", sans-serif;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}
.highlight-description {
  font-size: 0.72rem;
  color: #d4d4d4;
  line-height: 1.5;
  margin-bottom: 13px;
  font-family: "Roboto", sans-serif;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}
.section-footer-text {
  max-width: 600px;
  margin: 0 auto;
  padding: 24px 0;
}
.section-footer-text p {
  font-size: 1rem;
  color: #d4d4d4;
  line-height: 1.6;
  font-style: italic;
  font-family: "Roboto", sans-serif;
}
.clients-section {
  text-align: center;
  padding: 40px 20px;
  background-color: #f5f5f5;
}
.client-grid {
  width: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.client-grid-main {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.clients-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(4, 1fr);
  grid-column-gap: 4px;
  grid-row-gap: 4px;
}
.clients-container div {
  padding: 0;
  margin: 0;
}
.client-logo {
  flex: 1 1 150px;
  max-width: 150px;
}
.client-logo img {
  width: 100%;
  max-height: 300px;
  height: 100%;
  border-radius: 10px;
  transition: transform 0.5s;
}
.projects-carousel-section {
  padding: 64px 20px;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  position: relative;
  overflow: hidden;
}
.projects-carousel-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.projects-carousel-section .section-title {
  color: #000;
}
.projects-carousel-section .section-label {
  color: #666;
}
.carousel-wrapper {
  position: relative;
  margin: 50px 0;
  perspective: 1200px;
}
.carousel-container {
  position: relative;
  width: 100%;
  height: 500px;
  margin: 0 auto;
}
.carousel-slides {
  position: relative;
  width: 100%;
  height: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-slide {
  position: absolute;
  width: 350px;
  height: 350px;
  background: #1a1a2e;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  box-shadow: 0 20px 40px rgb(0 0 0 / 0.1);
  transform-style: preserve-3d;
  opacity: 0.7;
  transform: scale(0.85) rotateY(15deg);
}
.carousel-slide.active {
  opacity: 1;
  transform: scale(1) rotateY(0deg);
  z-index: 10;
  box-shadow: 0 30px 60px rgb(0 0 0 / 0.2);
}
.carousel-slide.prev {
  transform: translateX(-180px) scale(0.85) rotateY(15deg);
  opacity: 0.7;
  z-index: 5;
}
.carousel-slide.next {
  transform: translateX(180px) scale(0.85) rotateY(-15deg);
  opacity: 0.7;
  z-index: 5;
}
.carousel-slide.hidden {
  opacity: 0;
  transform: scale(0.6);
  pointer-events: none;
}
.slide-content {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.slide-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  border-radius: 20px;
}
.carousel-slide:hover .slide-content img {
  transform: scale(1.05);
}
.carousel-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 20;
}
.carousel-nav {
  width: 50px;
  height: 50px;
  background: rgb(0 0 0 / 0.8);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: all;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 25px rgb(0 0 0 / 0.2);
}
.carousel-nav:hover {
  background: #000;
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgb(0 0 0 / 0.3);
}
.carousel-nav i {
  font-size: 1.2rem;
  color: #fff;
}
.carousel-nav.prev {
  margin-left: -25px;
}
.carousel-nav.next {
  margin-right: -25px;
}
.carousel-dots {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 20;
}
.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgb(0 0 0 / 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}
.dot.active {
  background: #000;
  transform: scale(1.2);
}
.dot:hover {
  background: rgb(0 0 0 / 0.7);
  transform: scale(1.1);
}
.carousel-footer {
  margin-top: 80px;
}
.view-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgb(0 0 0 / 0.3);
}
.view-more-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgb(0 0 0 / 0.4);
  color: #fff;
  background: #333;
}
.view-more-btn i {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}
.view-more-btn:hover i {
  transform: translateX(3px);
}
@media (max-width: 768px) {
  .projects-carousel-section {
    padding: 40px 15px;
  }
  .carousel-container {
    height: 400px;
  }
  .carousel-slide {
    width: 280px;
    height: 280px;
  }
  .carousel-slide.prev {
    transform: translateX(-140px) scale(0.8) rotateY(15deg);
  }
  .carousel-slide.next {
    transform: translateX(140px) scale(0.8) rotateY(-15deg);
  }
  .carousel-nav {
    width: 40px;
    height: 40px;
  }
  .carousel-nav i {
    font-size: 1rem;
  }
  .carousel-dots {
    bottom: -50px;
  }
  .view-more-btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
}
@media (max-width: 480px) {
  .carousel-container {
    height: 350px;
  }
  .carousel-slide {
    width: 250px;
    height: 250px;
  }
  .carousel-slide.prev {
    transform: translateX(-125px) scale(0.75) rotateY(20deg);
  }
  .carousel-slide.next {
    transform: translateX(125px) scale(0.75) rotateY(-20deg);
  }
  .carousel-nav {
    width: 35px;
    height: 35px;
  }
  .carousel-nav.prev {
    margin-left: -15px;
  }
  .carousel-nav.next {
    margin-right: -15px;
  }
  .dot {
    width: 10px;
    height: 10px;
  }
  .carousel-footer {
    margin-top: 60px;
  }
}
.contact-section-new {
  background-color: #000;
  color: #fff;
  padding: 128px 0;
}
.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.contact-header {
  margin-bottom: 56px;
}
.contact-title-new {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.2;
  color: #fff;
}
.contact-description-new {
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  color: #a1a1aa;
  max-width: 600px;
  margin: 0;
  line-height: 1.6;
}
.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-bottom: 80px;
}
.contact-card {
  text-align: left;
  transition: transform 0.2s ease;
}
.contact-card:hover {
  transform: translateY(-4px);
}
.contact-icon-wrapper {
  display: flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #18181b;
  margin-bottom: 12px;
  transition: background-color 0.2s ease;
}
.contact-card:hover .contact-icon-wrapper {
  background-color: #27272a;
}
.contact-icon-new {
  font-size: 24px;
  color: #fff;
}
.contact-card-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #fff;
}
.contact-card-description {
  font-size: 1rem;
  color: #a1a1aa;
  margin-bottom: 12px;
  line-height: 1.5;
}
.contact-link {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease;
  display: inline-block;
}
.contact-link:hover {
  color: #d4d4d8;
  text-decoration: underline;
}
.contact-social-section {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid #27272a;
}
.social-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 32px;
  color: #fff;
}
.social-icons-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  max-width: 700px;
  margin: 0 auto;
}
.social-icon-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  transition: transform 0.2s ease;
  padding: 12px 8px;
  border-radius: 12px;
  background-color: #09090b;
  border: 1px solid #18181b;
}
.social-icon-link:hover {
  transform: translateY(-2px);
  background-color: #18181b;
  border-color: #27272a;
}
.social-icon-wrapper {
  display: flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #18181b;
  margin-bottom: 8px;
  transition: all 0.2s ease;
}
.social-icon-link:hover .social-icon-wrapper {
  background-color: #27272a;
  transform: scale(1.05);
}
.social-icon-wrapper i {
  font-size: 20px;
  color: #fff;
}
.social-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #a1a1aa;
  transition: color 0.2s ease;
}
.social-icon-link:hover .social-label {
  color: #fff;
}
.social-icon-link[href*="instagram"]:hover .social-icon-wrapper {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
}
.social-icon-link[href*="wa"]:hover .social-icon-wrapper {
  background-color: #25d366;
}
.social-icon-link[href*="facebook"]:hover .social-icon-wrapper {
  background-color: #1877f2;
}
.social-icon-link[href*="twitter"]:hover .social-icon-wrapper {
  background-color: #1da1f2;
}
.social-icon-link[href*="linkedin"]:hover .social-icon-wrapper {
  background-color: #0077b5;
}
@media (max-width: 768px) {
  .contact-section-new {
    padding: 80px 0;
  }
  .contact-container {
    padding: 0 20px;
  }
  .contact-header {
    margin-bottom: 50px;
  }
  .contact-title-new {
    margin-bottom: 20px;
  }
  .contact-description-new {
    margin-bottom: 15px;
  }
  .contact-cards-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 70px;
  }
  .contact-card {
    padding: 20px;
    border-radius: 12px;
    background-color: rgb(255 255 255 / 0.02);
  }
  .contact-social-section {
    padding-top: 50px;
  }
  .social-title {
    margin-bottom: 40px;
  }
  .social-icons-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
  .social-icon-link {
    padding: 16px;
  }
}
@media (max-width: 480px) {
  .contact-section-new {
    padding: 60px 0;
  }
  .contact-container {
    padding: 0 15px;
  }
  .contact-header {
    margin-bottom: 40px;
  }
  .contact-cards-grid {
    gap: 30px;
    margin-bottom: 50px;
  }
  .contact-card {
    padding: 18px;
  }
  .contact-card-title {
    font-size: 1rem;
    margin-bottom: 10px;
  }
  .contact-card-description {
    font-size: 0.9rem;
    margin-bottom: 10px;
  }
  .contact-link {
    font-size: 0.9rem;
  }
  .contact-social-section {
    padding-top: 40px;
  }
  .social-title {
    font-size: 1.3rem;
    margin-bottom: 30px;
  }
  .social-icons-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .social-icon-link {
    padding: 12px;
  }
  .social-icon-wrapper {
    width: 35px;
    height: 35px;
  }
  .social-icon-wrapper i {
    font-size: 16px;
  }
  .social-label {
    font-size: 0.8rem;
  }
}
footer {
  text-align: center;
  max-height: 30px;
  background-color: hsl(0 0% 25%);
  color: #fcfcfc;
  padding: 0.7rem;
}
footer p {
  margin: 0;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .hero-image img {
    height: 100%;
    width: auto;
    object-fit: contain;
    object-position: center center;
    max-width: 100%;
    min-width: auto;
    transform: none;
  }
  .hero-text {
    padding: 0 40px 0 60px;
  }
  .hero-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
  }
  .hero-subtitle {
    font-size: clamp(1rem, 2.2vw, 1.4rem);
  }
}
@media (min-width: 1025px) and (max-width: 1200px) {
  .hero-image img {
    height: 100%;
    width: auto;
    object-fit: contain;
    object-position: center center;
    max-width: 100%;
    min-width: auto;
    transform: none;
  }
}
@media (max-width: 768px) {
  .clients-container {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    grid-template-rows: auto !important;
    grid-gap: 12px !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    position: relative !important;
    overflow: visible !important;
    padding: 0 15px !important;
  }
  .client-logo {
    flex: none !important;
    max-width: 100% !important;
    max-height: none !important;
    opacity: 1 !important;
    transition: transform 0.3s ease !important;
    position: relative !important;
    top: auto !important;
    left: auto !important;
    padding: 8px !important;
    background: #dddddd !important;
    border-radius: 10px !important;
    box-shadow: 0 2px 8px rgb(0 0 0 / 0.1) !important;
  }
  .client-logo img {
    border-radius: 8px !important;
    height: auto !important;
    width: 100% !important;
    aspect-ratio: 1 !important;
    object-fit: contain !important;
    max-height: 140px !important;
  }
  .client-logo:hover {
    transform: translateY(-2px) !important;
  }
  .client-logo.active {
    opacity: 1 !important;
  }
}
@media (max-width: 480px) {
  .clients-container {
    grid-gap: 8px !important;
    padding: 0 10px !important;
  }
  .client-logo {
    padding: 6px !important;
    border-radius: 8px !important;
  }
  .client-logo img {
    border-radius: 6px !important;
    max-height: 120px !important;
  }
  .client-logo:hover {
    transform: translateY(-1px) !important;
  }
}
@media (max-width: 768px) {
  .hero-section {
    height: 100vh;
  }
  .hero-content {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
  }
  .hero-text {
    padding: 60px 40px 40px 40px;
    text-align: center;
    order: 2;
  }
  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
    margin-bottom: 15px;
  }
  .hero-subtitle {
    font-size: clamp(0.9rem, 3vw, 1.1rem);
    margin-bottom: 30px;
  }
  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
  }
  .cta-button {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
  .hero-image {
    height: 50vh;
    order: 1;
  }
  .hero-image img {
    height: 100%;
    width: auto;
    object-fit: contain;
    object-position: center center;
    max-width: 100%;
    min-width: auto;
  }
  .projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-top: 28px;
    max-width: 100%;
    padding: 0 25px;
  }
  .services-section {
    padding: 65px 25px;
  }
  .section-description {
    font-size: 0.92rem;
    max-width: 85%;
    margin: 0 auto 32px auto;
    line-height: 1.5;
  }
  .service-card {
    padding: 20px 16px;
    min-height: 200px;
  }
  .service-card h3 {
    font-size: 1.05rem;
    margin-bottom: 9px;
  }
  .service-card p {
    font-size: 0.82rem;
    line-height: 1.4;
  }
  .service-card .fas {
    font-size: 30px;
    margin-bottom: 11px;
  }
  .navbar {
    top: 10px;
    padding: 10px 4%;
    width: 84%;
    position: fixed;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
  }
  .nav-links {
    display: none;
  }
  .menu-toggle {
    display: flex;
    z-index: 1001;
  }
  .mobile-menu-overlay {
    display: flex !important;
  }
  .mobile-menu-container {
    padding: 40px 20px 30px;
  }
  .mobile-nav-link {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
  }
  .mobile-menu-social {
    gap: 15px;
  }
  .mobile-social-link {
    width: 45px;
    height: 45px;
  }
  .logo {
    width: 140px;
    height: 40px;
  }
  .navbar img {
    margin: 0;
    width: 100%;
    height: 100%;
  }
  .service-card {
    padding: 18px;
    transform: scale(0.9);
    transform-origin: center;
  }
  .service-card .fas {
    font-size: 36px;
    margin-bottom: 12px;
  }
  .service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }
  .service-card p {
    font-size: 0.85rem;
  }
  .why-choose-section {
    padding: 25px 15px;
  }
  .why-choose-container {
    margin: 10px auto;
    padding: 40px 25px;
    border-radius: 18px;
    box-shadow: 0 18px 50px rgb(0 0 0 / 0.4), 0 8px 20px rgb(0 0 0 / 0.3),
      inset 0 1px 0 rgb(255 255 255 / 0.03);
  }
  .section-title-block {
    margin-bottom: 30px;
  }
  .highlights-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 30px;
  }
  .highlight-card {
    padding: 25px 20px;
    margin: 0 auto;
    max-width: 380px;
  }
  .section-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }
  .section-footer-text {
    padding: 25px 0;
  }
  .section-footer-text p {
    font-size: 0.95rem;
    padding: 0 10px;
  }
}
@media (max-width: 480px) {
  .hero-text {
    padding: 60px 20px 30px 20px;
  }
  .hero-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
    margin-bottom: 15px;
  }
  .hero-subtitle {
    font-size: clamp(0.8rem, 3.5vw, 1rem);
    margin-bottom: 30px;
  }
  .hero-buttons {
    gap: 15px;
  }
  .cta-button {
    padding: 10px 20px;
    font-size: 0.85rem;
  }
  .mobile-menu-container {
    padding: 30px 15px 25px;
  }
  .mobile-nav-link {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
  }
  .mobile-menu-header {
    margin-bottom: 40px;
  }
  .mobile-nav-links li {
    margin-bottom: 30px;
  }
  .mobile-menu-social {
    gap: 12px;
  }
  .mobile-social-link {
    width: 40px;
    height: 40px;
  }
  .mobile-social-link i {
    font-size: 16px;
  }
  .why-choose-section {
    padding: 20px 10px;
  }
  .why-choose-container {
    margin: 8px auto;
    padding: 35px 20px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgb(0 0 0 / 0.4), 0 6px 15px rgb(0 0 0 / 0.3),
      inset 0 1px 0 rgb(255 255 255 / 0.02);
  }
  .section-title-block {
    margin-bottom: 25px;
  }
  .section-label {
    font-size: 0.7rem;
    letter-spacing: 1.5px;
  }
  .section-title {
    font-size: clamp(1.5rem, 8vw, 2rem);
  }
  .highlights-grid {
    gap: 15px;
    margin-bottom: 25px;
  }
  .highlight-card {
    padding: 20px 15px;
    max-width: 340px;
  }
  .highlight-icon {
    margin-bottom: 12px;
  }
  .highlight-icon i {
    font-size: 1.8rem;
  }
  .highlight-heading {
    font-size: 1.05rem;
    margin-bottom: 10px;
  }
  .highlight-description {
    font-size: 0.85rem;
    margin-bottom: 14px;
  }
  .highlight-link {
    font-size: 0.8rem;
  }
  .section-footer-text {
    padding: 20px 0;
  }
  .section-footer-text p {
    font-size: 0.9rem;
    padding: 0 5px;
  }
}
@media (max-width: 584px) {
  .about-content {
    flex-wrap: wrap;
  }
}
@media (max-width: 500px) {
  .services-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    padding: 0 5px !important;
    max-width: 350px !important;
  }
  .services-section {
    padding: 45px 15px !important;
  }
  .service-card {
    padding: 16px 12px !important;
    min-height: 150px !important;
  }
  .service-card h3 {
    font-size: 0.85rem !important;
  }
  .service-card p {
    font-size: 0.7rem !important;
  }
  .service-card .fas {
    font-size: 22px !important;
  }
  .section-description {
    margin: 0 auto 20px auto !important;
    padding: 0 8px !important;
    font-size: 0.78rem !important;
  }
}
@media (max-width: 426px) {
  .home-section,
  .about-section,
  .services-section,
  .projects-carousel-section,
  .contact-section,
  .cta-section {
    padding: 0 15px;
    margin: 0;
  }
  .home-content {
    margin-top: 48px;
    padding: 0;
  }
  .about-content {
    padding: 0;
  }
  .services-grid,
  .projects-grid {
    padding: 0;
    margin: 0;
  }
  .section-description {
    margin: 0 auto 20px auto;
    font-size: 0.85rem;
    padding: 0 10px;
  }
  .services-section {
    padding: 35px 15px;
  }
  .services-grid {
    gap: 12px !important;
    margin-top: 20px !important;
  }
  .service-card {
    padding: 15px !important;
    margin: 0 !important;
  }
  .projects-carousel-section {
    padding: 30px 12px;
  }
  .contact-section {
    padding: 30px 12px;
  }
  .cta-section {
    padding: 30px 12px;
  }
  .home-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0;
  }
  .home-text {
    flex: 1 1 100%;
    text-align: center;
    order: 2;
  }
  .home-image {
    flex: 1 1 100%;
    order: 1;
  }
  h2 {
    font-size: clamp(1.3rem, 1.4vw, 1rem);
  }
  .home-text {
    flex: 1 1 100%;
    text-align: center;
    order: 2;
  }
  .home-text p {
    text-align: start;
  }
  .home-image {
    flex: 1 1 100%;
    order: 1;
  }
  .home-content {
    padding: 0 0 0 3%;
  }
  .home-content-button {
    padding: clamp(9px, 1.5vw, 10px);
    font-size: clamp(0.9rem, 1.4vw, 1rem);
  }
  .home-section {
    padding: 0 5% 0 7%;
    background-image: url(https://cdn.jsdelivr.net/gh/brandcrafters01/media@main/mobile-background.webp);
  }
  .logo {
    width: 110px;
    height: 35px;
  }
  .navbar img {
    margin: 0;
    width: 100%;
    height: 100%;
  }
  .contact-section {
    padding: 60px 12px;
  }
  .navbar {
    top: 8px;
    padding: 8px 4%;
    width: 84%;
    position: fixed;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 250px;
    height: 100vh;
    background-color: rgb(0 0 0 / 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    transition: all 0.3s ease-in-out;
    display: flex;
    z-index: 999;
    border-radius: 24px 0 0 24px;
    box-shadow: -2px 0 20px rgb(0 0 0 / 0.08);
    visibility: hidden;
    opacity: 0;
    overflow-x: hidden;
  }
  .about-content {
    flex-wrap: wrap;
  }
  .service-card {
    padding: 12px;
    transform: scale(0.9);
  }
  .service-card .fas {
    font-size: 25.6px;
    margin-bottom: 8px;
  }
  .service-card h3 {
    font-size: 0.8rem;
    margin-bottom: 4.8px;
  }
  .service-card p {
    font-size: 0.64rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.section-main-heading {
  font-size: 2rem;
  margin-bottom: 16px;
  padding-bottom: 20px;
  text-align: center;
}
.cta-section {
  padding: 80px 20px;
}
.cta-content {
  display: flex;
  background-color: #f3f4f6;
  justify-content: space-between;
  align-items: stretch;
  border: 2px solid #000;
  padding: 0 0 0 52px;
  max-width: 780px;
  margin: 0 auto;
  box-shadow: 0 4px 8px rgb(0 0 0 / 0.05);
  border-radius: 10px;
  min-height: 195px;
}
.cta-text {
  flex: 1;
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cta-text h2 {
  font-size: 1.8rem;
  margin: 0 0 15px 0;
  text-align: left;
  padding-bottom: 0;
  line-height: 1.3;
}
.cta-text p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 20px;
  text-align: left;
  line-height: 1.5;
}
.cta-buttons {
  display: flex;
  gap: 15px;
  margin: 0;
  justify-content: flex-start;
}
.cta-button-primary,
.cta-button-secondary {
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 120px;
  text-align: center;
  font-weight: 500;
}
.cta-button-primary {
  background-color: #333;
  color: #fff;
  border: 1px solid #333;
}
.cta-button-primary:hover {
  background-color: #000;
  border-color: #000;
}
.cta-button-secondary {
  background-color: #fff;
  color: #333;
  border: 1px solid #333;
}
.cta-button-secondary:hover {
  background-color: #333;
  color: #fff;
}
.cta-image-placeholder {
  flex: 1;
  background-color: #fff0;
  overflow: hidden;
}
.cta-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 992px) {
  .cta-section {
    padding: 60px 20px;
  }
  .cta-content {
    flex-direction: column;
    padding: 30px 25px;
    align-items: center;
    min-height: unset;
    gap: 25px;
  }
  .cta-text {
    padding: 0;
    margin-bottom: 0;
    text-align: center;
  }
  .cta-text h2 {
    font-size: 1.75rem;
    margin-bottom: 15px;
  }
  .cta-text p {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  .cta-text h2,
  .cta-text p {
    text-align: center;
  }
  .cta-buttons {
    justify-content: center;
    gap: 15px;
  }
  .cta-image-placeholder {
    width: 100%;
    min-height: 150px;
  }
}
@media (max-width: 576px) {
  .cta-section {
    padding: 50px 15px;
  }
  .cta-content {
    padding: 25px 20px;
    gap: 20px;
  }
  .cta-text h2 {
    font-size: 1.5rem;
    margin-bottom: 12px;
  }
  .cta-text p {
    font-size: 0.95rem;
    margin-bottom: 18px;
    line-height: 1.5;
  }
  .cta-buttons {
    gap: 12px;
    margin: 0;
  }
  .cta-button-primary,
  .cta-button-secondary {
    padding: 10px 20px;
    font-size: 0.9rem;
    min-width: 100px;
  }
  .cta-image-placeholder {
    min-height: 120px;
  }
}
@media (max-width: 426px) {
  .cta-section {
    padding: 40px 12px;
  }
  .cta-content {
    padding: 20px 15px;
    gap: 15px;
  }
  .cta-text h2 {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }
  .cta-text p {
    font-size: 0.85rem;
    margin-bottom: 15px;
    line-height: 1.4;
  }
  .cta-buttons {
    gap: 10px;
    margin: 0;
    flex-wrap: wrap;
  }
  .cta-button-primary,
  .cta-button-secondary {
    padding: 8px 16px;
    font-size: 0.8rem;
    min-width: 90px;
    flex: 1;
    max-width: 120px;
  }
  .cta-image-placeholder {
    min-height: 100px;
  }
}
.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 0.5);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.menu-overlay.active {
  display: block;
  opacity: 1;
}
.home-section,
.about-section,
.services-section,
.projects-section,
.contact-section,
.cta-section {
  padding: 64px 16px;
  width: 100%;
  box-sizing: border-box;
}
.home-section {
  padding: 0 40px;
  min-height: 100vh;
}
@media (max-width: 768px) {
  .home-section,
  .about-section,
  .services-section,
  .projects-section,
  .contact-section,
  .cta-section {
    padding: 0 30px;
  }
  .home-section {
    padding: 0 5% 0 8%;
  }
}
@media (max-width: 426px) {
  .home-section,
  .about-section,
  .services-section,
  .projects-section,
  .contact-section,
  .cta-section {
    padding: 0 20px;
  }
  .home-section {
    padding: 0 5% 0 7%;
  }
}
.home-content,
.about-content,
.services-grid,
.projects-grid,
.contact-info-container,
.cta-content {
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .home-section,
  .about-section,
  .services-section,
  .projects-section,
  .contact-section,
  .cta-section {
    padding: 0 15px;
  }
  .home-content,
  .about-content {
    padding: 0;
  }
  .services-grid,
  .projects-grid {
    padding: 0;
    margin-top: 20px;
  }
}
@media (max-width: 426px) {
  .home-section,
  .about-section,
  .services-section,
  .projects-section,
  .contact-section,
  .cta-section {
    padding: 0 12px;
  }
  .home-content {
    margin-top: 60px;
    padding: 0;
  }
  .about-content {
    padding: 0;
  }
  .services-grid,
  .projects-grid {
    padding: 0;
    margin: 0;
  }
  .section-description {
    margin: 0 auto 24px auto;
  }
  .services-section {
    padding: 24px 9.6px;
  }
  .projects-section {
    padding: 30px 12px;
  }
  .contact-section {
    padding: 30px 12px;
  }
  .cta-section {
    padding: 30px 12px;
  }
}
.services-difference-section-1to1 {
  background: #fff;
  color: #111;
  padding: 64px 0 48px 0;
  width: 100%;
  font-family: "Poppins", sans-serif;
}
.services-difference-1to1-container {
  display: flex;
  max-width: 1040px;
  margin: 0 auto;
  gap: 0;
  align-items: flex-start;
  justify-content: center;
  position: relative;
}
.services-difference-1to1-left {
  flex: 1 1 272px;
  min-width: 224px;
  max-width: 320px;
  padding-right: 48px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.filter-subtitle {
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 20px;
  font-style: italic;
  opacity: 0.8;
}
.service-filter-tabs {
  display: flex;
  flex-direction: column;
  gap: 14.4px;
  margin-top: 16px;
  margin-left: 32px;
  position: relative;
}
.tab-dot-indicator {
  position: absolute;
  left: -20px;
  top: 0;
  width: 8px;
  height: 8px;
  background: #d12c2c;
  border-radius: 50%;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translateY(1.28rem);
  z-index: 10;
  box-shadow: 0 0 10px rgb(209 44 44 / 0.4);
}
@keyframes jiggle {
  0%,
  100% {
    transform: translateY(var(--dot-y, 1.28rem)) translateX(0) scale(1);
  }
  25% {
    transform: translateY(var(--dot-y, 1.28rem)) translateX(-3px) scale(1.2);
  }
  50% {
    transform: translateY(var(--dot-y, 1.28rem)) translateX(2px) scale(0.8);
  }
  75% {
    transform: translateY(var(--dot-y, 1.28rem)) translateX(-1px) scale(1.1);
  }
}
.tab-dot-indicator.jiggle {
  animation: jiggle 0.6s ease-in-out;
}
.filter-tab {
  display: block;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  text-align: left;
}
.filter-tab:hover {
  transform: translateX(5px);
}
.filter-tab.active {
  transform: translateX(0);
}
.tab-text {
  font-size: 2.56rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.05;
  color: #795d5d;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease;
  cursor: pointer;
}
.filter-tab:hover .tab-text {
  color: #d12c2c;
}
.filter-tab.active .tab-text {
  color: #d12c2c;
}
.tab-icon {
  display: none;
}
.services-content-area {
  display: flex;
  flex: 2;
  position: relative;
  min-height: 400px;
}
.services-category {
  display: none;
  flex: 1;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.services-category.active {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}
.service-category-description {
  font-size: 1rem;
  color: #666;
  font-weight: 500;
  margin: 0 0 24px 0;
  padding: 0;
  line-height: 1.5;
  text-align: left;
  font-family: "Poppins", sans-serif;
  flex-basis: 100%;
  width: 100%;
}
.services-content-area::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 32px;
  height: 32px;
  border: 2.4px solid #f3f3f3;
  border-top: 2.4px solid #d12c2c;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: spin 1s linear infinite;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.services-content-area.loading::before {
  opacity: 1;
}
@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.services-difference-1to1-label {
  font-size: 0.8rem;
  color: #222;
  opacity: 0.7;
  margin-bottom: 14.4px;
  letter-spacing: 0.4px;
}
.services-difference-1to1-title {
  font-size: 2.56rem;
  font-weight: 700;
  margin: 0 0 14.4px 0;
  line-height: 1.05;
  color: #111;
  font-family: "Poppins", sans-serif;
}
.services-difference-1to1-intro {
  font-size: 0.864rem;
  color: #444;
  margin-top: 14.4px;
  margin-bottom: 0;
  line-height: 1.6;
  max-width: 90%;
  padding-left: 8px;
  padding-right: 8px;
  display: block;
}
.services-difference-1to1-middle,
.services-difference-1to1-right {
  flex: 1 1 256px;
  min-width: 208px;
  max-width: 296px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
  padding: 0 25.6px;
}
.services-difference-1to1-middle {
  border-right: 1.2px solid #d2d2d2;
}
.services-difference-1to1-card {
  display: flex;
  align-items: flex-start;
  gap: 14.4px;
  padding: 19.2px 0 28.8px 0;
}
.services-difference-1to1-icon {
  font-size: 1.68rem;
  color: #111;
  min-width: 32px;
  margin-top: 1.6px;
  display: flex;
  align-items: flex-start;
}
.services-difference-1to1-card h3 {
  font-size: 0.944rem;
  font-weight: 600;
  margin: 0 0 5.6px 0;
  color: #111;
  font-family: "Poppins", sans-serif;
}
.services-difference-1to1-card p {
  font-size: 0.784rem;
  color: #444;
  margin: 0;
  line-height: 1.5;
}
.services-difference-1to1-divider {
  border-top: 1.2px solid #e0e0e0;
  width: 100%;
  margin: 0;
}
@media (max-width: 1100px) {
  .services-difference-1to1-container {
    flex-direction: column;
    gap: 0;
    padding: 0 30px;
    max-width: 100%;
  }
  .services-difference-1to1-left {
    max-width: 100%;
    padding-right: 0;
    margin-bottom: 40px;
    align-items: center;
    text-align: center;
  }
  .service-filter-tabs {
    flex-direction: column;
    gap: 15px;
    justify-content: center;
    align-items: center;
    margin-left: 0;
    margin-top: 25px;
  }
  .tab-dot-indicator {
    display: none;
  }
  .filter-tab {
    text-align: center;
    flex: 0 0 auto;
    width: 100%;
    max-width: 400px;
  }
  .filter-tab:hover,
  .filter-tab.active {
    transform: translateY(-2px);
  }
  .tab-text {
    font-size: 1.6rem;
    line-height: 1.3;
    text-align: center;
  }
  .services-content-area {
    width: 100%;
    min-height: 350px;
  }
  .services-category {
    width: 100%;
    flex-direction: column;
  }
  .service-category-description {
    font-size: 0.95rem;
    margin-bottom: 20px;
    text-align: center;
    padding: 0 20px;
  }
  .services-difference-1to1-middle,
  .services-difference-1to1-right {
    max-width: 100%;
    padding: 0 25px;
    border-right: none;
    border-left: none;
    width: 100%;
  }
  .services-difference-1to1-middle {
    border-bottom: none;
    border-right: none;
    margin-bottom: 0;
    padding-bottom: 20px;
  }
  .services-difference-1to1-right {
    padding-top: 0;
  }
  .services-difference-1to1-card {
    padding: 25px 0 30px 0 !important;
    gap: 18px !important;
  }
  .services-difference-1to1-card h3 {
    font-size: 1.1rem !important;
    margin-bottom: 8px !important;
  }
  .services-difference-1to1-card p {
    font-size: 0.9rem !important;
    line-height: 1.6 !important;
  }
  .services-difference-1to1-icon {
    font-size: 1.8rem !important;
    min-width: 35px !important;
  }
}
@media (max-width: 480px) {
  .services-difference-section-1to1 {
    padding: 25px 0 15px 0;
  }
  .services-difference-1to1-container {
    padding: 0 12px;
  }
  .services-difference-1to1-left {
    margin-bottom: 18px !important;
    max-width: 315px !important;
  }
  .services-difference-1to1-title {
    font-size: 1.26rem;
    margin-bottom: 11px;
  }
  .filter-subtitle {
    font-size: 0.72rem !important;
    margin-bottom: 9px !important;
  }
  .service-filter-tabs {
    gap: 7px;
    margin-top: 7px;
    max-width: 288px !important;
  }
  .tab-dot-indicator {
    display: none;
  }
  .filter-tab {
    max-width: 225px !important;
  }
  .tab-text {
    font-size: 1rem;
    line-height: 1.1;
  }
  .services-content-area {
    min-height: 180px !important;
  }
  .services-category {
    max-width: 315px !important;
  }
  .services-difference-1to1-card {
    padding: 11px 0 14px 0 !important;
    gap: 9px !important;
  }
  .services-difference-1to1-card h3 {
    font-size: 0.72rem !important;
    line-height: 1.1 !important;
    margin-bottom: 4px !important;
  }
  .services-difference-1to1-card p {
    font-size: 0.63rem !important;
    line-height: 1.2 !important;
  }
  .services-difference-1to1-icon {
    font-size: 1rem !important;
    min-width: 20px !important;
    margin-bottom: 5px !important;
  }
  .services-difference-1to1-middle,
  .services-difference-1to1-right {
    padding: 0 7px !important;
  }
  .services-difference-1to1-middle {
    padding-bottom: 14px !important;
    margin-bottom: 14px !important;
  }
  .services-difference-1to1-right {
    padding-top: 14px !important;
  }
  .services-difference-1to1-divider {
    margin: 11px 0 !important;
  }
}
.local-business-hero {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  min-height: 400px;
}
.local-business-card {
  background: linear-gradient(135deg, #000000 0%, #333333 100%);
  border-radius: 20px;
  padding: 50px 40px;
  max-width: 600px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 40px rgb(0 0 0 / 0.15);
  border: 2px solid #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.local-business-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgb(0 0 0 / 0.25);
}
.local-business-icon-wrapper {
  margin-bottom: 30px;
}
.local-business-icon {
  width: 80px;
  height: 80px;
  background: #795d5d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: transform 0.3s ease;
}
.local-business-card:hover .local-business-icon {
  transform: scale(1.1);
}
.local-business-icon i {
  font-size: 2.5rem;
  color: #000;
}
.local-business-title {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.local-business-description {
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.8;
  opacity: 0.9;
  max-width: 500px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .local-business-hero {
    padding: 40px 15px;
    min-height: 300px;
  }
  .local-business-card {
    padding: 40px 25px;
  }
  .local-business-icon {
    width: 60px;
    height: 60px;
  }
  .local-business-icon i {
    font-size: 2rem;
  }
  .local-business-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
  .local-business-description {
    font-size: 1rem;
    line-height: 1.6;
  }
}
@media (max-width: 480px) {
  .local-business-hero {
    padding: 30px 10px;
  }
  .local-business-card {
    padding: 30px 20px;
  }
  .local-business-icon {
    width: 50px;
    height: 50px;
  }
  .local-business-icon i {
    font-size: 1.5rem;
  }
  .local-business-title {
    font-size: 1.5rem;
  }
  .local-business-description {
    font-size: 0.9rem;
  }
}
@media (max-width: 700px) {
  .services-difference-section-1to1 {
    padding: 40px 0 30px 0;
  }
  .services-difference-1to1-container {
    padding: 0 15px;
    flex-direction: column;
    align-items: center;
  }
  .services-difference-1to1-left {
    margin-bottom: 25px;
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .services-difference-1to1-title {
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 15px;
  }
  .filter-subtitle {
    text-align: center;
    font-size: 0.85rem;
    margin-bottom: 12px;
  }
  .service-filter-tabs {
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
    align-items: center;
    justify-content: center;
    margin-left: 0;
    width: 100%;
    max-width: 350px;
  }
  .tab-dot-indicator {
    display: none;
  }
  .filter-tab {
    text-align: center;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .filter-tab:hover,
  .filter-tab.active {
    transform: translateY(-2px);
  }
  .tab-text {
    font-size: 1.4rem;
    line-height: 1.3;
    text-align: center;
    width: 100%;
    display: block;
  }
  .services-content-area {
    min-height: 225px;
    width: 100%;
  }
  .services-category {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    flex-direction: column;
  }
  .services-difference-1to1-label {
    font-size: 0.72rem;
    text-align: center;
    margin-bottom: 14px;
  }
  .services-difference-1to1-card {
    padding: 14px 0 16px 0;
    gap: 11px;
    flex-direction: column;
    text-align: center;
  }
  .services-difference-1to1-card h3 {
    font-size: 0.77rem;
    line-height: 1.2;
    margin-bottom: 5px;
  }
  .services-difference-1to1-card p {
    font-size: 0.68rem;
    line-height: 1.3;
    margin: 0;
  }
  .services-difference-1to1-icon {
    font-size: 1.08rem;
    min-width: 22px;
    margin-bottom: 7px;
    align-self: center;
  }
  .services-difference-1to1-middle,
  .services-difference-1to1-right {
    padding: 0 9px;
    border-right: none;
    border-left: none;
    width: 100%;
    max-width: none;
  }
  .services-difference-1to1-middle {
    padding-bottom: 18px;
    margin-bottom: 0;
    border-bottom: none;
  }
  .services-difference-1to1-right {
    padding-top: 0;
  }
  .services-difference-1to1-divider {
    margin: 14px 0;
    border-top: 1px solid #e8e8e8;
  }
}
.branding-difference-section-strict {
  background: #fff;
  color: #111;
  padding: 80px 0 60px 0;
  width: 100%;
  font-family: "Poppins", sans-serif;
}
.branding-difference-strict-container {
  display: flex;
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
  justify-content: center;
  position: relative;
}
.branding-difference-strict-col {
  flex: 1 1 0%;
  min-width: 280px;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  background: #fff;
}
.branding-difference-strict-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 36px 24px 36px 0;
  background: #fff;
}
.branding-difference-strict-icon {
  font-size: 2.1rem;
  color: #111;
  min-width: 40px;
  margin-top: 2px;
  display: flex;
  align-items: flex-start;
}
.branding-difference-strict-card h3 {
  font-size: 1.18rem;
  font-weight: 700;
  margin: 0 0 7px 0;
  color: #111;
  font-family: "Poppins", sans-serif;
}
.branding-difference-strict-card p {
  font-size: 0.98rem;
  color: #444;
  margin: 0;
  line-height: 1.5;
}
.branding-difference-strict-divider {
  border-top: 1.5px solid #e0e0e0;
  width: 100%;
  margin: 0;
}
.branding-difference-strict-vertical-divider {
  width: 1.5px;
  background: #d2d2d2;
  margin: 0 0;
  min-height: 100%;
  height: auto;
}
@media (max-width: 900px) {
  .branding-difference-strict-container {
    flex-direction: column;
    gap: 0;
    padding: 0 18px;
  }
  .branding-difference-strict-vertical-divider {
    width: 100%;
    height: 1.5px;
    min-height: unset;
    margin: 0 0 0 0;
  }
  .branding-difference-strict-col {
    max-width: 100%;
    padding-right: 0;
    margin-bottom: 0;
    align-items: flex-start;
  }
}
@media (max-width: 600px) {
  .branding-difference-section-strict {
    padding: 40px 0 30px 0;
  }
  .branding-difference-strict-card h3 {
    font-size: 1rem;
  }
  .branding-difference-strict-icon {
    font-size: 1.5rem;
    min-width: 28px;
  }
  .branding-difference-strict-card {
    padding: 18px 8px 18px 0;
  }
}
.logo-carousel-section {
  padding: 80px 0;
  background: #000;
  position: relative;
  overflow: hidden;
}
.logo-carousel-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #6b7280;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-family: "Inter", sans-serif;
}
.section-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin: 0;
  font-family: "Poppins", sans-serif;
  letter-spacing: -0.025em;
}
.logo-carousel {
  display: flex;
  overflow-x: auto;
  gap: 2rem;
  padding: 2rem 0;
  min-height: 160px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  position: relative;
  animation: scroll 40s linear infinite;
}

.logo-carousel::-webkit-scrollbar {
  display: none;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-280px * 10));
  }
}

.logo-carousel:hover {
  animation-play-state: paused;
}
.logo-column {
  position: relative;
  height: 140px;
  min-width: 280px;
  overflow: hidden;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgb(255 255 255 / 0.3);
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -1px rgb(0 0 0 / 0.06);
  transition: all 0.3s ease;
  cursor: pointer;
}

.logo-column:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px -5px rgb(0 0 0 / 0.2);
  background: rgba(255, 255, 255, 0.15);
}
.logo-column:nth-child(1) {
  animation-delay: 0s;
}
.logo-column:nth-child(2) {
  animation-delay: 0.1s;
}
.logo-column:nth-child(3) {
  animation-delay: 0.2s;
}
.logo-column:nth-child(4) {
  animation-delay: 0.3s;
}
.logo-wrapper {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  opacity: 1;
  transform: translateY(0);
}
.logo-image {
  height: auto;
  width: auto;
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  filter: none;
  transition: all 0.3s ease;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes logoFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes logoFadeOut {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(0.9);
  }
}
.logo-fade-in {
  animation: logoFadeIn 0.5s ease-out forwards;
}
.logo-fade-out {
  animation: logoFadeOut 0.3s ease-in forwards;
}
@media (max-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }
  .logo-carousel {
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }
  .logo-column {
    height: 120px;
    width: 180px;
    flex: 0 0 auto;
  }
  .logo-carousel-section {
    padding: 60px 0;
  }
  .section-header {
    margin-bottom: 40px;
  }
}
@media (max-width: 480px) {
  .section-title {
    font-size: 2rem;
    line-height: 1.2;
  }
  .section-label {
    font-size: 0.75rem;
  }
  .logo-column {
    height: 100px;
    width: 160px;
  }
  .logo-carousel {
    gap: 0.75rem;
  }
  .logo-carousel-section {
    padding: 40px 0;
  }
}
.industries-section {
  padding: 80px 0;
  background: #fff;
  color: #333;
  position: relative;
}
.industries-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}
.section-header {
  margin-bottom: 48px;
}
.industries-section .section-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #666;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-family: "Inter", sans-serif;
}
.industries-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000;
  line-height: 1.2;
  margin: 0;
  font-family: "Poppins", sans-serif;
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 48px 0;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.industry-card {
  background: #fafafa;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 24px 16px;
  transition: all 0.2s ease;
  cursor: pointer;
  text-align: center;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.industry-card:hover {
  background: #f5f5f5;
  border-color: #d0d0d0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgb(0 0 0 / 0.08);
}
.industry-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  font-size: 1.4rem;
  color: #333;
  transition: all 0.2s ease;
}
.industry-card:hover .industry-icon {
  color: #000;
  transform: scale(1.05);
}
.industry-title {
  font-size: 0.95rem;
  font-weight: 500;
  color: #333;
  margin: 0;
  font-family: "Poppins", sans-serif;
  line-height: 1.3;
}
.industry-card:hover .industry-title {
  color: #000;
}
.industries-footer {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid #e5e5e5;
}
.industries-tagline {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
  font-family: "Roboto", sans-serif;
  max-width: 600px;
  margin: 0 auto;
}
.industries-tagline strong {
  color: #000;
  font-weight: 600;
}
@media (max-width: 1024px) {
  .industries-section {
    padding: 60px 0;
  }
  .industries-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin: 40px 0;
  }
  .industry-card {
    padding: 20px 14px;
    min-height: 100px;
  }
  .industries-section .section-title {
    font-size: 2.2rem;
  }
}
@media (max-width: 768px) {
  .industries-section {
    padding: 50px 0;
  }
  .industries-container {
    padding: 0 16px;
  }
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin: 32px 0;
  }
  .industry-card {
    padding: 18px 12px;
    min-height: 90px;
  }
  .industry-icon {
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  .industry-title {
    font-size: 0.85rem;
  }
  .industries-section .section-title {
    font-size: 1.8rem;
  }
  .industries-tagline {
    font-size: 0.9rem;
  }
}
@media (max-width: 480px) {
  .industries-section {
    padding: 40px 0;
  }
  .industries-container {
    padding: 0 12px;
  }
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 24px 0;
  }
  .industry-card {
    padding: 16px 12px;
    min-height: 80px;
  }
  .industry-icon {
    width: 32px;
    height: 32px;
    font-size: 1.1rem;
    margin-bottom: 8px;
  }
  .industry-title {
    font-size: 0.8rem;
  }
  .industries-section .section-title {
    font-size: 1.6rem;
  }
  .industries-footer {
    margin-top: 32px;
    padding-top: 24px;
  }
  .industries-tagline {
    font-size: 0.85rem;
  }
}
.cta-section {
  padding: 80px 0;
  background: #fff;
  color: #000;
  text-align: center;
}
.cta-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 60px;
}
.cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  color: #000;
  padding-top: 30px;
}
.cta-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #666;
  margin: 0;
  max-width: 700px;
}
.cta-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  padding-bottom: 30px;
}
.cta-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
  color: #000;
}
.cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgb(0 0 0 / 0.2);
}
.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgb(0 0 0 / 0.3);
  background: #333;
}
@media (max-width: 768px) {
  .cta-section {
    padding: 60px 0;
  }
  .cta-container {
    padding: 50px 35px;
  }
  .cta-title {
    font-size: 2rem;
    padding-top: 20px;
  }
  .cta-description {
    font-size: 1rem;
  }
  .cta-subtitle {
    font-size: 1.3rem;
  }
  .cta-button {
    padding: 12px 30px;
    font-size: 1rem;
  }
  .cta-action {
    padding-bottom: 20px;
  }
}
@media (max-width: 480px) {
  .cta-section {
    padding: 50px 0;
  }
  .cta-container {
    padding: 40px 25px;
  }
  .cta-title {
    font-size: 1.7rem;
    padding-top: 15px;
  }
  .cta-description {
    font-size: 0.95rem;
  }
  .cta-subtitle {
    font-size: 1.2rem;
  }
  .cta-action {
    padding-bottom: 15px;
  }
}
.services-section-title {
  text-align: center;
  margin-bottom: 2rem;
}
.services-section-description {
  text-align: center;
  margin-bottom: 2rem;
  color: #666;
  font-size: 1rem;
}

/* Social Media Section - Centering */
.contact-social-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}
.social-icons-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem 1.25rem;
  margin-top: 0.5rem;
}
.social-icon-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.social-icon-wrapper {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.social-label {
  margin-top: 6px;
  font-size: 0.95rem;
}

@media (min-width: 768px) {
  .social-icons-grid {
    gap: 1.25rem 1.75rem;
  }
}
