* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --color-grey-98: #fbfbf9;
  --color-grey-25: #403e3f;
  --collective-luxurypresence-com-tundora: #403e3f;
}
.main {
  /* background-color: rgba(0, 0, 0, 0.603); */
  min-height: 100vh;
}
/* Original Desktop Navbar Styles - Unchanged */
.navbar {
  position: relative;
  width: 100%;
  height: 77px;
  z-index: 100;
  background: rgba(19, 19, 19, 0.4);
  backdrop-filter: blur(30px);
  background: var(--color-grey-98, #fbfbf9);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  max-width: 100%;
  margin: 0 auto;
  align-items: center;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar-logo-icon {
  height: 44px;
  width: 150px;
}

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

.nav-links {
  color: var(--collective-luxurypresence-com-tundora, var(--color-grey-25, #403e3f));
  font-family: Inter;
  font-size: 13.344px;
  font-style: normal;
  font-weight: 300;
  line-height: 20px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
}

/* Hamburger Menu - Hidden on Desktop */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  transition: all 0.3s ease;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background: var(--color-grey-25);
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 3px;
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--color-grey-98);
  z-index: 1000;
  padding: 100px 30px 30px;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
  right: 0;
}

.mobile-nav-links {
  display: block;
  color: var(--color-grey-25);
  font-family: 'Inter', sans-serif;
  font-size: 13.344px;
  font-weight: 300;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 0;
  margin: 10px 0;
  border-bottom: 1px solid rgba(64, 62, 63, 0.1);
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  transform: translateX(30px);
  opacity: 0;
}

.mobile-menu.active .mobile-nav-links {
  transform: translateX(0);
  opacity: 1;
}

.mobile-nav-links:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav-links:nth-child(2) { transition-delay: 0.15s; }
.mobile-nav-links:nth-child(3) { transition-delay: 0.2s; }
.mobile-nav-links:nth-child(4) { transition-delay: 0.25s; }
.mobile-nav-links:nth-child(5) { transition-delay: 0.3s; }
.mobile-nav-links:nth-child(6) { transition-delay: 0.35s; }
.mobile-nav-links:nth-child(7) { transition-delay: 0.4s; }

.mobile-nav-links:hover {
  color: #000000;
  padding-left: 10px;
  border-left: 3px solid var(--color-grey-25);
}

/* Demo Content */
.demo-content {
  margin-top: 77px;
  padding: 50px 20px;
  text-align: center;
  color: white;
}

.demo-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.demo-content p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

/* Tablet Styles */
@media screen and (max-width: 1024px) {
  .navbar-container {
      padding: 20px 30px;
  }
  
  .navbar-logo-icon {
      width: 200px;
  }
  
  .navbar-actions {
      gap: 0.8rem;
  }
  
  .nav-links {
      font-size: 12px;
  }
}

/* Small Tablet */
@media screen and (max-width: 768px) {
  .navbar-container {
      padding: 20px 25px;
  }
  
  .navbar-logo-icon {
      width: 200px;
  }
  
  .navbar-actions {
      display: none;
  }
  
  .hamburger {
      display: flex;
  }
  
  .mobile-menu {
      width: 280px;
  }
  
  .demo-content h1 {
      font-size: 2.5rem;
  }
}

/* Mobile Styles */
@media screen and (max-width: 480px) {
  .navbar {
      height: 65px;
  }
  
  .navbar-container {
      padding: 15px 20px;
  }
  
  .navbar-logo-icon {
      width: 120px;
      height: auto;
  }
  
  .mobile-menu {
      width: 260px;
      padding: 80px 25px 25px;
  }
  
  .mobile-nav-links {
      font-size: 12px;
      padding: 12px 0;
  }
  
  .demo-content {
      margin-top: 65px;
      padding: 30px 15px;
  }
  
  .demo-content h1 {
      font-size: 2rem;
  }
  
  .demo-content p {
      font-size: 1rem;
  }
}

/* Extra Small Mobile */
@media screen and (max-width: 360px) {
  .navbar-container {
      padding: 15px 15px;
  }
  
  .navbar-logo-icon {
      width: 140px;
  }
  
  .mobile-menu {
      width: 240px;
  }
  
  .hamburger-line {
      width: 22px;
  }
}

/* Hero Section */
/* Original Desktop Styles - Unchanged */
.hero-section {
  height: 100%;
  width: 100%;
  top: 0;
  overflow-x: hidden;
  position: relative;
}

.hero-banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0%;
  z-index: -1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  height: 90vh;
  width: 100%;
  justify-content: flex-end;
  align-items: center;
  flex-shrink: 0;
  top: 80%;
  z-index: 99;
}

.hero-heading {
  display: flex;
  flex-direction: column;
  width: 112.25rem;
  height: 10.1875rem;
  padding: 1.5rem 19.1875rem 1.4375rem 19.1875rem;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  bottom: 0;
}

.hero-para {
  color: #fff;
  font-family: Inter;
  font-size: 1.27125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.16375rem;
  letter-spacing: 0.12713rem;
  text-transform: uppercase;
}

.hero-title {
  color: #fff;
  text-align: center;
  font-family: var(--font-family-Font-1, Inter);
  font-size: 3.26663rem;
  font-style: normal;
  font-weight: 300;
  line-height: 4.875rem;
}

/* Extra Large Screens */
@media screen and (max-width: 1920px) {
  .hero-heading {
      width: 100rem;
      padding: 1.5rem 16rem 1.4375rem 16rem;
  }
}

/* Large Desktop */
@media screen and (max-width: 1600px) {
  .hero-heading {
      width: 90rem;
      padding: 1.5rem 14rem 1.4375rem 14rem;
  }
  
  .hero-title {
      font-size: 3rem;
      line-height: 4.5rem;
  }
  
  .hero-para {
      font-size: 1.2rem;
      line-height: 1.1rem;
      letter-spacing: 0.12rem;
  }
}

/* Standard Desktop */
@media screen and (max-width: 1440px) {
  .hero-heading {
      width: 80rem;
      padding: 1.5rem 12rem 1.4375rem 12rem;
  }
  
  .hero-title {
      font-size: 2.8rem;
      line-height: 4.2rem;
  }
  
  .hero-para {
      font-size: 1.15rem;
      line-height: 1.05rem;
      letter-spacing: 0.115rem;
  }
}

/* Small Desktop */
@media screen and (max-width: 1366px) {
  .hero-heading {
      width: 75rem;
      padding: 1.5rem 10rem 1.4375rem 10rem;
  }
  
  .hero-title {
      font-size: 2.6rem;
      line-height: 3.9rem;
  }
  
  .hero-para {
      font-size: 1.1rem;
      line-height: 1rem;
      letter-spacing: 0.11rem;
  }
}

/* Large Laptop */
@media screen and (max-width: 1280px) {
  .hero-heading {
      width: 70rem;
      padding: 1.5rem 8rem 1.4375rem 8rem;
  }
  
  .hero-title {
      font-size: 2.4rem;
      line-height: 3.6rem;
  }
  
  .hero-para {
      font-size: 1.05rem;
      line-height: 0.95rem;
      letter-spacing: 0.105rem;
  }
}

/* Standard Laptop */
@media screen and (max-width: 1024px) {
  .hero-content {
      height: 85vh;
  }
  
  .hero-heading {
      width: 60rem;
      height: 9rem;
      padding: 1.5rem 6rem 1.4375rem 6rem;
  }
  
  .hero-title {
      font-size: 2.2rem;
      line-height: 3.3rem;
  }
  
  .hero-para {
      font-size: 1rem;
      line-height: 0.9rem;
      letter-spacing: 0.1rem;
  }
}

/* Small Laptop */
@media screen and (max-width: 968px) {
  .hero-content {
      height: 80vh;
  }
  
  .hero-heading {
      width: 50rem;
      height: 8rem;
      padding: 1.5rem 4rem 1.4375rem 4rem;
  }
  
  .hero-title {
      font-size: 2rem;
      line-height: 3rem;
  }
  
  .hero-para {
      font-size: 0.95rem;
      line-height: 0.85rem;
      letter-spacing: 0.095rem;
  }
}

/* Large Tablet */
@media screen and (max-width: 834px) {
  .hero-content {
      height: 75vh;
  }
  
  .hero-heading {
      width: 45rem;
      height: 7.5rem;
      padding: 1.5rem 3rem 1.4375rem 3rem;
  }
  
  .hero-title {
      font-size: 1.8rem;
      line-height: 2.7rem;
  }
  
  .hero-para {
      font-size: 0.9rem;
      line-height: 0.8rem;
      letter-spacing: 0.09rem;
  }
}

/* Standard Tablet */
@media screen and (max-width: 768px) {
  .hero-content {
      height: 70vh;
      justify-content: center;
      align-items: center;
  }
  
  .hero-heading {
      width: 95%;
      max-width: 40rem;
      height: auto;
      padding: 2rem 2rem;
      text-align: center;
  }
  
  .hero-title {
      font-size: 1.6rem;
      line-height: 2.4rem;
      margin-top: 0.5rem;
  }
  
  .hero-para {
      font-size: 0.85rem;
      line-height: 0.75rem;
      letter-spacing: 0.085rem;
  }
}

/* Small Tablet */
@media screen and (max-width: 640px) {
  .hero-content {
      height: 65vh;
  }
  
  .hero-heading {
      width: 95%;
      max-width: 35rem;
      padding: 1.5rem 1.5rem;
  }
  
  .hero-title {
      font-size: 1.4rem;
      line-height: 2.1rem;
  }
  
  .hero-para {
      font-size: 0.8rem;
      line-height: 0.7rem;
      letter-spacing: 0.08rem;
  }
}

/* Large Mobile */
@media screen and (max-width: 480px) {
  .hero-content {
      height: 60vh;
      padding: 0 1rem;
  }
  
  .hero-heading {
      width: 100%;
      max-width: 30rem;
      padding: 1.5rem 1rem;
  }
  
  .hero-title {
      font-size: 1.2rem;
      line-height: 1.8rem;
      margin-top: 0.5rem;
  }
  
  .hero-para {
      font-size: 0.75rem;
      line-height: 0.65rem;
      letter-spacing: 0.075rem;
  }
}

/* Standard Mobile */
@media screen and (max-width: 414px) {
  .hero-content {
      height: 55vh;
      padding: 0 0.8rem;
      justify-content: flex-end;
  }
  
  .hero-heading {
      width: 100%;
      max-width: 25rem;
      padding: 1.2rem 0.8rem;
  }
  
  .hero-title {
      font-size: 1.5rem;
      line-height: 1.65rem;
  }
  
  .hero-para {
      font-size: 1rem;
      line-height: 0.6rem;
      letter-spacing: 0.07rem;
  }
}

/* Small Mobile */
@media screen and (max-width: 375px) {
  .hero-content {
      height: 50vh;
      padding: 0 0.5rem;
  }
  
  .hero-heading {
      width: 100%;
      max-width: 22rem;
      padding: 1rem 0.5rem;
  }
  
  .hero-title {
      font-size: 1rem;
      line-height: 1.5rem;
  }
  
  .hero-para {
      font-size: 0.65rem;
      line-height: 0.55rem;
      letter-spacing: 0.065rem;
  }
}

/* Extra Small Mobile */
@media screen and (max-width: 320px) {
  .hero-content {
      height: 45vh;
      padding: 0 0.3rem;
  }
  
  .hero-heading {
      width: 100%;
      max-width: 18rem;
      padding: 0.8rem 0.3rem;
  }
  
  .hero-title {
      font-size: 0.9rem;
      line-height: 1.35rem;
  }
  
  .hero-para {
      font-size: 0.6rem;
      line-height: 0.5rem;
      letter-spacing: 0.06rem;
  }
}

/* Landscape Mobile */
@media screen and (max-height: 500px) and (orientation: landscape) {
  .hero-content {
      height: 80vh;
      justify-content: center;
  }
  
  .hero-heading {
      height: auto;
      padding: 1rem;
  }
  
  .hero-title {
      font-size: 1.2rem;
      line-height: 1.8rem;
  }
  
  .hero-para {
      font-size: 0.7rem;
      line-height: 0.6rem;
  }
}
/* Teknix vision section */

.teknix-vision-section {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 7rem;
  width: 100%;
  /* height: 100vh; */
  overflow-x: hidden;
  margin: 7rem auto;
  position: relative;
}
.teknix-vision-heading-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.teknix-vision-heading {
  display: flex;
  width: 75rem;
  max-width: 75rem;
  padding-bottom: 0rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.6;
}
.teknix-vision-para {
  color: #1a1a1a;
  text-align: center;
  font-family: Inter;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 0.9975rem;
  letter-spacing: 0.625rem;
  text-transform: uppercase;
}
.teknix-vision-title {
  color: #1a1a1a;
  text-align: center;
  font-family: Inter;
  font-size: 4.46288rem;
  font-style: normal;
  font-weight: 300;
  line-height: 6rem;
  width: 75rem;
  flex-shrink: 0;
}
.teknix-vision-subtitle {
  color: #1a1a1a;
  text-align: center;
  font-family: Inter;
  font-size: 0.87156rem;
  font-style: normal;
  font-weight: 300;
  line-height: 1.29375rem;
  width: 33.625rem;
}
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
  color: #333;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.teknix-vision-images-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(0.5rem, 1rem, 1.5rem);
  width: 100%;
  margin: 0 auto;
}

.vision-card {
  position: relative;
  height: clamp(500px, 50vh, 700px);
  /* border-radius: 12px; */
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.vision-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.vision-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
  z-index: 1;
  transition: opacity 0.3s ease;
}

.vision-card:hover::before {
  opacity: 0.5;
}

.teknix-vision-images1 {
  background-image: url(./icons/image1.png);
}

.teknix-vision-images2 {
  background-image: url(./icons/image2.png);
}

.teknix-vision-images3 {
  background-image: url(./icons/image3.png);
}

.vision-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  text-align: center;
}

.teknix-vision-images-title {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 300;
  line-height: 1.3;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
  transition: all 0.3s ease;
  font-family: inter;
}

.vision-card:hover .teknix-vision-images-title {
  transform: translateY(-5px);
  font-weight: 400;
}

.vision-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  margin-top: 1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease 0.1s;
  max-width: 350px;
  line-height: 1.5;
  font-family: inter;
}
.vision-content:hover {
  background-color: #0000000a;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.vision-card:hover .vision-description {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
  .teknix-vision-images-wrapper {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .container {
    padding: 0 0.5rem;
  }
}

@media (max-width: 480px) {
  .vision-card {
    height: 250px;
  }

  .vision-content {
    padding: 1rem;
  }
}

/* High DPI and Zoom Support */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .vision-card {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Animation for loading */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.vision-card {
  animation: fadeInUp 0.6s ease forwards;
}

.vision-card:nth-child(2) {
  animation-delay: 0.1s;
}

.vision-card:nth-child(3) {
  animation-delay: 0.2s;
}
/* Large Laptop */
@media screen and (max-width: 1280px) {
  .teknix-vision-section {
    gap: 6rem;
    margin: 6rem auto;
  }
  
  .teknix-vision-heading {
    width: 65rem;
    max-width: 65rem;
  }
  
  .teknix-vision-title {
    font-size: 4rem;
    line-height: 5.5rem;
    width: 65rem;
  }
  
  .teknix-vision-subtitle {
    width: 30rem;
  }
}

/* Standard Laptop */
@media screen and (max-width: 1024px) {
  .teknix-vision-section {
    gap: 5rem;
    margin: 5rem auto;
  }
  
  .teknix-vision-heading {
    width: 55rem;
    max-width: 55rem;
  }
  
  .teknix-vision-para {
    font-size: 1.1rem;
    line-height: 0.9rem;
    letter-spacing: 0.55rem;
  }
  
  .teknix-vision-title {
    font-size: 3.5rem;
    line-height: 5rem;
    width: 55rem;
  }
  
  .teknix-vision-subtitle {
    font-size: 0.8rem;
    line-height: 1.2rem;
    width: 28rem;
  }
  
  .vision-card {
    height: clamp(450px, 45vh, 600px);
  }
}

/* Large Tablet */
@media screen and (max-width: 834px) {
  .teknix-vision-section {
    gap: 4rem;
    margin: 4rem auto;
    padding: 0 2rem;
  }
  
  .teknix-vision-heading {
    width: 90%;
    max-width: 45rem;
  }
  
  .teknix-vision-para {
    font-size: 1rem;
    line-height: 0.8rem;
    letter-spacing: 0.5rem;
  }
  
  .teknix-vision-title {
    font-size: 3rem;
    line-height: 4.2rem;
    width: 100%;
  }
  
  .teknix-vision-subtitle {
    font-size: 0.75rem;
    line-height: 1.1rem;
    width: 25rem;
  }
  
  .teknix-vision-images-wrapper {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.2rem;
  }
  
  .vision-card {
    height: clamp(400px, 40vh, 550px);
  }
}

/* Standard Tablet */
@media screen and (max-width: 768px) {
  .teknix-vision-section {
    gap: 3.5rem;
    margin: 3.5rem auto;
    padding: 0 1.5rem;
  }
  
  .teknix-vision-heading {
    width: 95%;
    max-width: 40rem;
  }
  
  .teknix-vision-para {
    font-size: 0.95rem;
    line-height: 0.75rem;
    letter-spacing: 0.47rem;
  }
  
  .teknix-vision-title {
    font-size: 2.8rem;
    line-height: 3.8rem;
    width: 100%;
  }
  
  .teknix-vision-subtitle {
    font-size: 0.72rem;
    line-height: 1.05rem;
    width: 22rem;
  }
  
  .teknix-vision-images-wrapper {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .vision-card {
    height: clamp(350px, 35vh, 450px);
  }
  
  .teknix-vision-images-title {
    font-size: clamp(1.4rem, 2.8vw, 2rem);
  }
  
  .vision-description {
    font-size: clamp(0.85rem, 1.4vw, 1rem);
    max-width: 220px;
  }
}

/* Small Tablet */
@media screen and (max-width: 640px) {
  .teknix-vision-section {
    gap: 3rem;
    margin: 3rem auto;
    padding: 0 1rem;
  }
  
  .teknix-vision-heading {
    width: 100%;
    max-width: 35rem;
  }
  
  .teknix-vision-para {
    font-size: 0.9rem;
    line-height: 0.7rem;
    letter-spacing: 0.45rem;
  }
  
  .teknix-vision-title {
    font-size: 2.5rem;
    line-height: 3.4rem;
  }
  
  .teknix-vision-subtitle {
    font-size: 0.7rem;
    line-height: 1rem;
    width: 20rem;
  }
  
  .vision-card {
    height: clamp(320px, 32vh, 400px);
  }
}

/* Large Mobile */
@media screen and (max-width: 480px) {
  .teknix-vision-section {
    gap: 2.5rem;
    margin: 2.5rem auto;
    padding: 0 1rem;
  }
  
  .teknix-vision-heading {
    width: 100%;
    max-width: 30rem;
    gap: 1.2rem;
  }
  
  .teknix-vision-para {
    font-size: 0.8rem;
    line-height: 0.6rem;
    letter-spacing: 0.4rem;
  }
  
  .teknix-vision-title {
    font-size: 2.2rem;
    line-height: 3rem;
  }
  
  .teknix-vision-subtitle {
    font-size: 0.65rem;
    line-height: 0.95rem;
    width: 18rem;
  }
  
  .teknix-vision-images-wrapper {
    gap: 1.2rem;
  }
  
  .vision-card {
    height: 280px;
  }
  
  .vision-content {
    padding: 1.5rem;
  }
  
  .teknix-vision-images-title {
    font-size: 1.3rem;
  }
  
  .vision-description {
    font-size: 0.8rem;
    max-width: 220px;
    margin-top: 0.8rem;
  }
}

/* Standard Mobile */
@media screen and (max-width: 414px) {
  .teknix-vision-section {
    gap: 2rem;
    margin: 2rem auto;
    padding: 1rem 0.9rem;
  }
  
  .teknix-vision-heading {
    width: 100%;
    max-width: 25rem;
    gap: 1rem;
  }
  
  .teknix-vision-para {
    font-size: 0.75rem;
    line-height: 0.55rem;
    letter-spacing: 0.37rem;
  }
  
  .teknix-vision-title {
    font-size: 2rem;
    line-height: 2.7rem;
  }
  
  .teknix-vision-subtitle {
    font-size: 0.6rem;
    line-height: 0.9rem;
    width: 16rem;
  }
  
  .vision-card {
    height: 260px;
  }
  
  .vision-content {
    padding: 1.2rem;
  }
  
  .teknix-vision-images-title {
    font-size: 1.2rem;
  }
  
  .vision-description {
    font-size: 0.75rem;
    max-width: 220px;
    margin-top: 0.7rem;
  }
}

/* Small Mobile */
@media screen and (max-width: 375px) {
  .teknix-vision-section {
    gap: 1.8rem;
    margin: 1.8rem auto;
    padding: 0 0.6rem;
  }
  
  .teknix-vision-heading {
    width: 100%;
    max-width: 22rem;
    gap: 0.8rem;
  }
  
  .teknix-vision-para {
    font-size: 0.7rem;
    line-height: 0.5rem;
    letter-spacing: 0.35rem;
  }
  
  .teknix-vision-title {
    font-size: 1.8rem;
    line-height: 2.4rem;
  }
  
  .teknix-vision-subtitle {
    font-size: 0.58rem;
    line-height: 0.85rem;
    width: 15rem;
  }
  
  .vision-card {
    height: 240px;
  }
  
  .vision-content {
    padding: 1rem;
  }
  
  .teknix-vision-images-title {
    font-size: 1.1rem;
  }
  
  .vision-description {
    font-size: 0.7rem;
    max-width: 160px;
    margin-top: 0.6rem;
  }
}

/* Extra Small Mobile */
@media screen and (max-width: 320px) {
  .teknix-vision-section {
    gap: 1.5rem;
    margin: 1.5rem auto;
    padding: 0 0.5rem;
  }
  
  .teknix-vision-heading {
    width: 100%;
    max-width: 18rem;
    gap: 0.6rem;
  }
  
  .teknix-vision-para {
    font-size: 0.65rem;
    line-height: 0.45rem;
    letter-spacing: 0.32rem;
  }
  
  .teknix-vision-title {
    font-size: 1.6rem;
    line-height: 2.1rem;
  }
  
  .teknix-vision-subtitle {
    font-size: 0.55rem;
    line-height: 0.8rem;
    width: 14rem;
  }
  
  .vision-card {
    height: 220px;
  }
  
  .vision-content {
    padding: 0.8rem;
  }
  
  .teknix-vision-images-title {
    font-size: 1rem;
  }
  
  .vision-description {
    font-size: 0.65rem;
    max-width: 140px;
    margin-top: 0.5rem;
  }
}

/* Landscape Mobile Optimization */
@media screen and (max-height: 500px) and (orientation: landscape) {
  .teknix-vision-section {
    gap: 2rem;
    margin: 2rem auto;
  }
  
  .teknix-vision-heading {
    gap: 0.8rem;
  }
  
  .teknix-vision-title {
    font-size: 1.8rem;
    line-height: 2.4rem;
  }
  
  .vision-card {
    height: 200px;
  }
  
  .vision-content {
    padding: 0.8rem;
  }
  
  .teknix-vision-images-title {
    font-size: 1rem;
  }
  
  .vision-description {
    font-size: 0.65rem;
    margin-top: 0.4rem;
  }
}

/* Container adjustments for smaller screens */
@media screen and (max-width: 768px) {
  .container {
    padding: 0 0.5rem;
  }
}

@media screen and (max-width: 480px) {
  .container {
    padding: 0 0.3rem;
  }
}
/* Elevator Showcase */

.elevator-showcase {
  padding: 60px 0;
  background-color: #f8f9fa;
}

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

.showcase-wrapper {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

/* Left Side */
.left-section {
  flex: 1;
  padding-top: 40px;
}

.section-label {
  font-size: 14px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 40px;
  font-weight: 500;
  font-family: inter;
  font-family: Inter;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: var(--font-weight-400, 400);
  line-height: normal;
  letter-spacing: 0.125rem;
}

.elevator-list {
  list-style: none;
}

.elevator-item {
  margin-bottom: 30px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.elevator-name {
  font-size: 64px;
  font-weight: 300;
  line-height: 1.1;
  color: #cccccc;
  transition: color 0.3s ease;
  font-family: inter;
}

.elevator-item.active .elevator-name {
  color: #333333;
}

.elevator-item:hover .elevator-name {
  color: #666666;
}

/* Right Side */
.right-section {
  flex: 1;
  position: relative;
}

.navigation-arrows {
  display: flex;
  gap: 10px;
  justify-content: flex-start;
  margin-bottom: 30px;
}

.arrow-btn {
  width: 50px;
  height: 50px;
  border: 2px solid #ddd;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
  color: rgba(250, 95, 0, 1);
}

.arrow-btn:hover {
  border-color: #999;
  color: #333;
}

.content-area {
  background: white;
  border-radius: 0;
  overflow: hidden;
}

.elevator-description {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 30px;
  padding: 0;
  font-family: inter;
}

.elevator-image-container {
  width: 100%;
  height: 400px;
  position: relative;
  margin-bottom: 40px;
  overflow: hidden;
  border-radius: 8px;
}

.elevator-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.5s ease;
}

/* Different elevator images */
.elevator-image.optima {
  background-image: url("./icons/image1.png");
}

.elevator-image.vertix {
  background-image: url("./icons/image2.png");
}

.elevator-image.greentek {
  background-image: url("./icons/image3.png");
}

.elevator-image.hydratek {
  background-image: url("./icons/image1.png");
}

.elevator-image.villamatek {
  background-image: url("./icons/image2.png");
}

.download-section {
  text-align: left;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.download-btn {
  color: #dc3545;
  transition: background 0.3s ease;
  font-family: Inter;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.125rem;
  text-decoration: none;
}

.download-btn:hover {
  color: #c823338a;
}

/* Responsive Design */
@media (max-width: 768px) {
  .showcase-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .elevator-name {
    font-size: 48px;
  }

  .elevator-image-container {
    height: 300px;
  }

  .navigation-arrows {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .elevator-name {
    font-size: 36px;
  }

  .container {
    padding: 0 15px;
  }

  .elevator-showcase {
    padding: 40px 0;
  }
}
/* Large Laptop */
@media screen and (max-width: 1280px) {
  .container {
    max-width: 1100px;
    padding: 0 18px;
  }
  
  .showcase-wrapper {
    gap: 70px;
  }
  
  .elevator-name {
    font-size: 58px;
  }
  
  .elevator-image-container {
    height: 380px;
  }
}

/* Standard Laptop */
@media screen and (max-width: 1024px) {
  .elevator-showcase {
    padding: 55px 0;
  }
  
  .container {
    max-width: 980px;
    padding: 0 16px;
  }
  
  .showcase-wrapper {
    gap: 60px;
  }
  
  .left-section {
    padding-top: 35px;
  }
  
  .section-label {
    font-size: 1.1rem;
    margin-bottom: 35px;
    letter-spacing: 0.11rem;
  }
  
  .elevator-item {
    margin-bottom: 25px;
  }
  
  .elevator-name {
    font-size: 52px;
  }
  
  .elevator-description {
    font-size: 15px;
    margin-bottom: 25px;
  }
  
  .elevator-image-container {
    height: 360px;
    margin-bottom: 35px;
  }
  
  .download-btn {
    font-size: 1.1rem;
    letter-spacing: 0.11rem;
  }
}

/* Large Tablet */
@media screen and (max-width: 834px) {
  .elevator-showcase {
    padding: 50px 0;
  }
  
  .container {
    max-width: 100%;
    padding: 0 24px;
  }
  
  .showcase-wrapper {
    gap: 50px;
  }
  
  .left-section {
    padding-top: 20px;
  }
  
  .section-label {
    font-size: 0.9rem;
    margin-bottom: 25px;
    letter-spacing: 0.09rem;
    text-align: center;
  }
  
  .elevator-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 30px;
  }
  
  .elevator-item {
    margin-bottom: 0;
    flex: 0 1 auto;
  }
  
  .elevator-name {
    font-size: 28px;
    white-space: nowrap;
  }
  
  .arrow-btn {
    width: 45px;
    height: 45px;
    font-size: 15px;
  }
  
  .elevator-description {
    font-size: 14px;
    margin-bottom: 22px;
    text-align: center;
    padding: 0 15px;
  }
  
  .elevator-image-container {
    height: 340px;
    margin-bottom: 30px;
  }
  
  .download-btn {
    font-size: 1.05rem;
    letter-spacing: 0.105rem;
  }
}

/* Standard Tablet */
@media screen and (max-width: 768px) {
  .elevator-showcase {
    padding: 40px 0;
  }
  
  .container {
    padding: 0 20px;
  }
  
  .showcase-wrapper {
    flex-direction: column;
    gap: 35px;
  }
  
  .left-section {
    padding-top: 0;
    order: 1;
  }
  
  .right-section {
    order: 2;
    width: 100%;
  }
  
  .section-label {
    font-size: 0.85rem;
    margin-bottom: 20px;
    letter-spacing: 0.085rem;
    text-align: center;
  }
  
  .elevator-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 25px;
    margin-bottom: 0;
  }
  
  .elevator-item {
    margin-bottom: 0;
    flex: 0 1 auto;
  }
  
  .elevator-name {
    font-size: 24px;
    white-space: nowrap;
    font-weight: 400;
  }
  
  .navigation-arrows {
    justify-content: center;
    margin-bottom: 20px;
    order: 1;
  }
  
  .arrow-btn {
    width: 42px;
    height: 42px;
    font-size: 14px;
  }
  
  .content-area {
    order: 2;
  }
  
  .elevator-description {
    font-size: 14px;
    text-align: center;
    margin-bottom: 20px;
    padding: 0 10px;
    line-height: 1.6;
  }
  
  .elevator-image-container {
    height: 300px;
    margin-bottom: 25px;
  }
  
  .download-section {
    order: 3;
  }
  
  .download-btn {
    font-size: 1rem;
    letter-spacing: 0.1rem;
  }
}

/* Small Tablet */
@media screen and (max-width: 640px) {
  .elevator-showcase {
    padding: 35px 0;
  }
  
  .container {
    padding: 0 18px;
  }
  
  .showcase-wrapper {
    gap: 30px;
  }
  
  .section-label {
    font-size: 0.8rem;
    margin-bottom: 18px;
    letter-spacing: 0.08rem;
  }
  
  .elevator-list {
    gap: 10px 20px;
  }
  
  .elevator-name {
    font-size: 22px;
  }
  
  .navigation-arrows {
    margin-bottom: 18px;
  }
  
  .arrow-btn {
    width: 40px;
    height: 40px;
    font-size: 13px;
  }
  
  .elevator-description {
    font-size: 13px;
    margin-bottom: 18px;
    padding: 0 8px;
  }
  
  .elevator-image-container {
    height: 280px;
    margin-bottom: 22px;
  }
  
  .download-btn {
    font-size: 0.95rem;
    letter-spacing: 0.095rem;
  }
}

/* Large Mobile */
@media screen and (max-width: 480px) {
  .elevator-showcase {
    padding: 30px 0;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .showcase-wrapper {
    gap: 25px;
  }
  
  .section-label {
    font-size: 0.75rem;
    margin-bottom: 15px;
    letter-spacing: 0.075rem;
  }
  
  .elevator-list {
    gap: 8px 15px;
    max-width: 100%;
  }
  
  .elevator-name {
    font-size: 18px;
    font-weight: 500;
  }
  
  .navigation-arrows {
    margin-bottom: 15px;
    gap: 8px;
  }
  
  .arrow-btn {
    width: 38px;
    height: 38px;
    font-size: 12px;
    border-width: 1.5px;
  }
  
  .elevator-description {
    font-size: 12px;
    margin-bottom: 15px;
    padding: 0 5px;
    line-height: 1.5;
  }
  
  .elevator-image-container {
    height: 250px;
    margin-bottom: 20px;
    border-radius: 6px;
  }
  
  .download-btn {
    font-size: 0.85rem;
    letter-spacing: 0.085rem;
  }
}

/* Standard Mobile */
@media screen and (max-width: 414px) {
  .elevator-showcase {
    padding: 28px 0;
  }
  
  .container {
    padding: 0 12px;
  }
  
  .showcase-wrapper {
    gap: 22px;
  }
  
  .section-label {
    font-size: 0.7rem;
    margin-bottom: 12px;
    letter-spacing: 0.07rem;
  }
  
  .elevator-list {
    gap: 6px 12px;
    justify-content: space-around;
  }
  
  .elevator-name {
    font-size: 16px;
    font-weight: 500;
  }
  
  .navigation-arrows {
    margin-bottom: 12px;
  }
  
  .arrow-btn {
    width: 36px;
    height: 36px;
    font-size: 11px;
  }
  
  .elevator-description {
    font-size: 11px;
    margin-bottom: 12px;
    padding: 0 3px;
  }
  
  .elevator-image-container {
    height: 220px;
    margin-bottom: 18px;
  }
  
  .download-btn {
    font-size: 0.8rem;
    letter-spacing: 0.08rem;
  }
}

/* Small Mobile */
@media screen and (max-width: 375px) {
  .elevator-showcase {
    padding: 25px 0;
  }
  
  .container {
    padding: 0 10px;
  }
  
  .showcase-wrapper {
    gap: 20px;
  }
  
  .section-label {
    font-size: 0.65rem;
    margin-bottom: 10px;
    letter-spacing: 0.065rem;
  }
  
  .elevator-list {
    gap: 5px 10px;
    justify-content: space-around;
    flex-wrap: wrap;
  }
  
  .elevator-item {
    flex: 0 1 45%;
    text-align: center;
  }
  
  .elevator-name {
    font-size: 14px;
    font-weight: 500;
  }
  
  .navigation-arrows {
    margin-bottom: 10px;
  }
  
  .arrow-btn {
    width: 34px;
    height: 34px;
    font-size: 10px;
  }
  
  .elevator-description {
    font-size: 10px;
    margin-bottom: 10px;
    padding: 0 2px;
  }
  
  .elevator-image-container {
    height: 200px;
    margin-bottom: 15px;
  }
  
  .download-btn {
    font-size: 0.75rem;
    letter-spacing: 0.075rem;
  }
}

/* Extra Small Mobile */
@media screen and (max-width: 320px) {
  .elevator-showcase {
    padding: 20px 0;
  }
  
  .container {
    padding: 0 8px;
  }
  
  .showcase-wrapper {
    gap: 18px;
  }
  
  .section-label {
    font-size: 0.6rem;
    margin-bottom: 8px;
    letter-spacing: 0.06rem;
  }
  
  .elevator-list {
    gap: 4px 8px;
    justify-content: space-around;
  }
  
  .elevator-item {
    flex: 0 1 45%;
    text-align: center;
  }
  
  .elevator-name {
    font-size: 12px;
    font-weight: 600;
  }
  
  .navigation-arrows {
    margin-bottom: 8px;
    gap: 6px;
  }
  
  .arrow-btn {
    width: 32px;
    height: 32px;
    font-size: 9px;
  }
  
  .elevator-description {
    font-size: 9px;
    margin-bottom: 8px;
    padding: 0;
    line-height: 1.4;
  }
  
  .elevator-image-container {
    height: 180px;
    margin-bottom: 12px;
    border-radius: 4px;
  }
  
  .download-btn {
    font-size: 0.7rem;
    letter-spacing: 0.07rem;
  }
}

/* Landscape Mobile Optimization */
@media screen and (max-height: 500px) and (orientation: landscape) {
  .elevator-showcase {
    padding: 15px 0;
  }
  
  .showcase-wrapper {
    gap: 15px;
  }
  
  .section-label {
    margin-bottom: 8px;
    font-size: 0.6rem;
  }
  
  .elevator-list {
    gap: 4px 8px;
  }
  
  .elevator-name {
    font-size: 12px;
  }
  
  .navigation-arrows {
    margin-bottom: 8px;
  }
  
  .elevator-description {
    margin-bottom: 8px;
    font-size: 9px;
  }
  
  .elevator-image-container {
    height: 140px;
    margin-bottom: 10px;
  }
}

/* Enhanced Touch Interactions */
@media screen and (max-width: 768px) {
  .elevator-item {
    padding: 10px 8px;
    touch-action: manipulation;
    border-radius: 4px;
    transition: background-color 0.2s ease;
  }
  
  .elevator-item:active {
    background-color: rgba(0, 0, 0, 0.05);
  }
  
  .elevator-item.active {
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
  }
  
  .arrow-btn {
    touch-action: manipulation;
    transition: all 0.2s ease;
  }
  
  .arrow-btn:active {
    transform: scale(0.95);
    background-color: #f0f0f0;
  }
  
  .download-btn {
    padding: 15px 20px;
    touch-action: manipulation;
    display: inline-block;
    border-radius: 4px;
    transition: all 0.2s ease;
  }
  
  .download-btn:active {
    background-color: rgba(220, 53, 69, 0.1);
  }
}
/* Features */

.features-section {
  display: flex;
  flex-direction: column;
  gap: 5.5rem;
  margin: 5.5rem auto;
  max-width: 1400px;
  padding: 0 2rem;
}

.features-heading {
  text-align: center;
}

.feature-title {
  color: #1a1a1a;
  text-align: center;
  font-family: Inter;
  font-size: 1.5625rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.features-wrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3rem 2rem;
  justify-items: center;
  align-items: start;
}

.features-container {
  display: flex;
  height: 5rem;
  width: 14rem;
  padding: 0rem 0.5rem;
  align-items: center;
  gap: 1.25rem;
  transition: transform 0.3s ease;
}

.features-container:hover {
  transform: translateY(-5px);
}

.feature-icon-bg {
  display: flex;
  width: 5rem;
  height: 5rem;
  padding: 1.25rem;
  justify-content: center;
  align-items: center;
  border-radius: 624.9375rem;
  background: #f1f0eb;
  flex-shrink: 0;
}

.feature-icon-bg img {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
}

.features-container-title {
  color: #000;
  font-family: Inter;
  font-size: 1.07225rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.82813rem;
}

@media (min-width: 1200px) {
  .features-wrapper {
    grid-template-columns: repeat(5, 1fr);
    gap: 3rem 2rem;
  }
}

@media (max-width: 1199px) and (min-width: 992px) {
  .features-wrapper {
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem 1.5rem;
  }

  .features-container {
    width: 13rem;
  }
}

@media (max-width: 991px) and (min-width: 768px) {
  .features-wrapper {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem 1rem;
  }

  .features-container {
    width: 12rem;
    gap: 1rem;
  }

  .features-container-title {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .feature-title {
    font-size: 2rem;
    line-height: 2.5rem;
  }
}

@media (max-width: 767px) and (min-width: 576px) {
  .features-wrapper {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 0.5rem;
  }

  .features-container {
    width: 11rem;
    gap: 0.8rem;
  }

  .features-container-title {
    font-size: 0.9rem;
    line-height: 1.3rem;
  }

  .feature-icon-bg {
    width: 4rem;
    height: 4rem;
    padding: 1rem;
  }

  .feature-icon-bg img {
    width: 2rem;
    height: 2rem;
  }
}

@media (max-width: 575px) and (min-width: 400px) {
  .features-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 0.5rem;
    justify-items: center;
  }

  .features-container {
    width: 10rem;
    gap: 0.8rem;
  }

  .features-container-title {
    font-size: 0.85rem;
    line-height: 1.2rem;
  }

  .feature-icon-bg {
    width: 3.5rem;
    height: 3.5rem;
    padding: 0.8rem;
  }

  .feature-icon-bg img {
    width: 1.8rem;
    height: 1.8rem;
  }

  .feature-title {
    font-size: 1.8rem;
    line-height: 2.2rem;
  }

  .features-section {
    gap: 3rem;
    margin: 3rem auto;
    padding: 0 1rem;
  }
}

@media (max-width: 399px) {
  .features-wrapper {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    justify-items: center;
  }

  .features-container {
    width: 12rem;
    gap: 1rem;
    justify-content: center;
  }

  .features-container-title {
    font-size: 1rem;
    line-height: 1.4rem;
    text-align: center;
  }

  .feature-icon-bg {
    width: 4rem;
    height: 4rem;
    padding: 1rem;
  }

  .feature-icon-bg img {
    width: 2rem;
    height: 2rem;
  }

  .feature-title {
    font-size: 1.6rem;
    line-height: 2rem;
  }

  .features-section {
    gap: 2.5rem;
    margin: 2rem auto;
    padding: 0 0.5rem;
  }
}

@media (max-width: 1400px) and (min-width: 1200px) {
  .features-wrapper {
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem 1.5rem;
  }
}

@media (max-width: 800px) and (min-width: 576px) {
  .features-wrapper:nth-last-child(-n + 2) {
    justify-content: center;
  }
}
/* Large Laptop */
@media screen and (max-width: 1280px) {
  .features-section {
    gap: 5rem;
    margin: 5rem auto;
    padding: 0 1.8rem;
  }
  
  .features-wrapper {
    grid-template-columns: repeat(5, 1fr);
    gap: 2.8rem 1.8rem;
  }
  
  .features-container {
    width: 13.5rem;
  }
}

/* Standard Laptop */
@media screen and (max-width: 1024px) {
  .features-section {
    gap: 4.5rem;
    margin: 4.5rem auto;
    padding: 0 1.5rem;
  }
  
  .features-wrapper {
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem 1.5rem;
  }
  
  .features-container {
    width: 13rem;
  }
  
  .feature-title {
    font-size: 1.4rem;
  }
  
  .features-container-title {
    font-size: 1rem;
    line-height: 1.7rem;
  }
}

/* Large Tablet */
@media screen and (max-width: 834px) {
  .features-section {
    gap: 4rem;
    margin: 4rem auto;
    padding: 0 1.2rem;
  }
  
  .features-wrapper {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.2rem 1.2rem;
  }
  
  .features-container {
    width: 12rem;
    gap: 1.1rem;
  }
  
  .feature-title {
    font-size: 1.3rem;
  }
  
  .features-container-title {
    font-size: 0.95rem;
    line-height: 1.5rem;
  }
  
  .feature-icon-bg {
    width: 4.5rem;
    height: 4.5rem;
    padding: 1.1rem;
  }
  
  .feature-icon-bg img {
    width: 2.3rem;
    height: 2.3rem;
  }
}

/* Standard Tablet */
@media screen and (max-width: 768px) {
  .features-section {
    gap: 3.5rem;
    margin: 3.5rem auto;
    padding: 0 1rem;
  }
  
  .features-wrapper {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 1rem;
  }
  
  .features-container {
    /* Change to column layout for tablet */
    flex-direction: column;
    height: auto;
    width: 11rem;
    gap: 0.8rem;
    text-align: center;
    padding: 1rem 0.5rem;
  }
  
  .feature-title {
    font-size: 1.25rem;
  }
  
  .features-container-title {
    font-size: 0.9rem;
    line-height: 1.3rem;
    text-align: center;
  }
  
  .feature-icon-bg {
    width: 4rem;
    height: 4rem;
    padding: 1rem;
  }
  
  .feature-icon-bg img {
    width: 2rem;
    height: 2rem;
  }
}

/* Large Mobile */
@media screen and (max-width: 640px) {
  .features-section {
    gap: 3rem;
    margin: 3rem auto;
    padding: 0 0.8rem;
  }
  
  .features-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem 0.8rem;
    justify-items: center;
  }
  
  .features-container {
    flex-direction: column;
    height: auto;
    width: 100%;
    max-width: 10rem;
    gap: 0.8rem;
    text-align: center;
    padding: 1.2rem 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
  }
  
  .features-container:hover {
    transform: translateY(-3px);
    background-color: rgba(241, 240, 235, 0.3);
  }
  
  .feature-title {
    font-size: 1.2rem;
  }
  
  .features-container-title {
    font-size: 0.85rem;
    line-height: 1.2rem;
    text-align: center;
    font-weight: 500;
  }
  
  .feature-icon-bg {
    width: 3.8rem;
    height: 3.8rem;
    padding: 0.9rem;
    margin: 0 auto;
  }
  
  .feature-icon-bg img {
    width: 2rem;
    height: 2rem;
  }
}

/* Standard Mobile */
@media screen and (max-width: 480px) {
  .features-section {
    gap: 2.5rem;
    margin: 2.5rem auto;
    padding: 0 0.6rem;
  }
  
  .features-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 0.6rem;
    justify-items: center;
  }
  
  .features-container {
    flex-direction: column;
    height: auto;
    width: 100%;
    max-width: 9rem;
    gap: 0.7rem;
    text-align: center;
    padding: 1rem 0.4rem;
    border-radius: 6px;
  }
  
  .feature-title {
    font-size: 1.1rem;
  }
  
  .features-container-title {
    font-size: 0.8rem;
    line-height: 1.1rem;
    text-align: center;
    font-weight: 500;
  }
  
  .feature-icon-bg {
    width: 3.5rem;
    height: 3.5rem;
    padding: 0.8rem;
    margin: 0 auto;
  }
  
  .feature-icon-bg img {
    width: 1.9rem;
    height: 1.9rem;
  }
}

/* Small Mobile */
@media screen and (max-width: 414px) {
  .features-section {
    gap: 2.2rem;
    margin: 2.2rem auto;
    padding: 0 0.5rem;
  }
  
  .features-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.3rem 0.5rem;
    justify-items: center;
  }
  
  .features-container {
    flex-direction: column;
    height: auto;
    width: 100%;
    max-width: 8.5rem;
    gap: 0.6rem;
    text-align: center;
    padding: 0.9rem 0.3rem;
    border-radius: 6px;
  }
  
  .feature-title {
    font-size: 1rem;
  }
  
  .features-container-title {
    font-size: 0.75rem;
    line-height: 1rem;
    text-align: center;
    font-weight: 500;
  }
  
  .feature-icon-bg {
    width: 3.2rem;
    height: 3.2rem;
    padding: 0.7rem;
    margin: 0 auto;
  }
  
  .feature-icon-bg img {
    width: 1.8rem;
    height: 1.8rem;
  }
}

/* Extra Small Mobile */
@media screen and (max-width: 375px) {
  .features-section {
    gap: 2rem;
    margin: 2rem auto;
    padding: 0 0.4rem;
  }
  
  .features-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem 0.4rem;
    justify-items: center;
  }
  
  .features-container {
    flex-direction: column;
    height: auto;
    width: 100%;
    max-width: 8rem;
    gap: 0.5rem;
    text-align: center;
    padding: 0.8rem 0.2rem;
    border-radius: 4px;
  }
  
  .feature-title {
    font-size: 0.95rem;
  }
  
  .features-container-title {
    font-size: 0.7rem;
    line-height: 0.95rem;
    text-align: center;
    font-weight: 500;
  }
  
  .feature-icon-bg {
    width: 3rem;
    height: 3rem;
    padding: 0.6rem;
    margin: 0 auto;
  }
  
  .feature-icon-bg img {
    width: 1.8rem;
    height: 1.8rem;
  }
}

/* Ultra Small Mobile */
@media screen and (max-width: 320px) {
  .features-section {
    gap: 1.8rem;
    margin: 1.8rem auto;
    padding: 0 0.3rem;
  }
  
  .features-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 0.3rem;
    justify-items: center;
  }
  
  .features-container {
    flex-direction: column;
    height: auto;
    width: 100%;
    max-width: 7.5rem;
    gap: 0.4rem;
    text-align: center;
    padding: 0.7rem 0.2rem;
    border-radius: 4px;
  }
  
  .feature-title {
    font-size: 0.9rem;
  }
  
  .features-container-title {
    font-size: 0.65rem;
    line-height: 0.9rem;
    text-align: center;
    font-weight: 500;
  }
  
  .feature-icon-bg {
    width: 2.8rem;
    height: 2.8rem;
    padding: 0.5rem;
    margin: 0 auto;
  }
  
  .feature-icon-bg img {
    width: 1.8rem;
    height: 1.8rem;
  }
}

/* Landscape Mobile Optimization */
@media screen and (max-height: 500px) and (orientation: landscape) {
  .features-section {
    gap: 1.5rem;
    margin: 1.5rem auto;
  }
  
  .features-wrapper {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem 0.5rem;
  }
  
  .features-container {
    flex-direction: column;
    height: auto;
    max-width: 6rem;
    gap: 0.3rem;
    padding: 0.5rem 0.2rem;
  }
  
  .feature-title {
    font-size: 0.8rem;
  }
  
  .features-container-title {
    font-size: 0.6rem;
    line-height: 0.8rem;
  }
  
  .feature-icon-bg {
    width: 2.5rem;
    height: 2.5rem;
    padding: 0.4rem;
  }
  
  .feature-icon-bg img {
    width: 1.7rem;
    height: 1.7rem;
  }
}

/* Download Section Mobile Optimization */
@media screen and (max-width: 768px) {
  .download-section {
    text-align: center;
    margin-top: 1rem;
  }
  
  .download-btn {
    display: inline-block;
    padding: 12px 20px;
    border-radius: 4px;
    transition: all 0.3s ease;
    touch-action: manipulation;
  }
  
  .download-btn:active {
    transform: scale(0.98);
    background-color: rgba(220, 53, 69, 0.1);
  }
}

/* Enhanced Touch Interactions */
@media screen and (max-width: 640px) {
  .features-container {
    touch-action: manipulation;
    cursor: pointer;
  }
  
  .features-container:active {
    transform: scale(0.98);
    background-color: rgba(241, 240, 235, 0.5);
  }
  
  /* Ensure icons remain crisp on high DPI screens */
  .feature-icon-bg img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}
/* Why Choose Us */
.why-choose-section {
  background-color: #1a1a1a;
  color: white;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.section-title {
  color: #fff;
  text-align: center;
  font-family: Inter;
  font-size: 2.29688rem;
  font-style: normal;
  font-weight: 300;
  line-height: 3.01875rem;
  letter-spacing: 0.125rem;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
  margin-bottom: 40px;
}

.feature-item {
  flex: 0 0 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.icon-container {
  width: 80px;
  height: 80px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon {
  width: 50px;
  height: 50px;
  stroke: white;
  fill: none;
  stroke-width: 2;
}

.whychooseus-title {
  color: #eaebed;
  text-align: center;
  font-family: Inter;
  font-size: 2.29688rem;
  font-style: normal;
  font-weight: 300;
  line-height: 3.01875rem;
  letter-spacing: 0.125rem;
}

.feature-description {
  font-size: 14px;
  color: #cccccc;
  line-height: 1.6;
  max-width: 280px;
  font-family: inter;
}

/* Custom icons using SVG */
.quality-icon {
  border: 2px solid white;
  border-radius: 50%;
  position: relative;
}

.quality-icon::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  font-weight: bold;
}
.center-bg-color {
  border-radius: 117.9375rem;
  background: linear-gradient(233deg, #fff 10.06%, #fa5f00 47.46%);
  filter: blur(350px);
  position: absolute;
  z-index: 99;
  top: 0;
  width: 11.125rem;
  height: 117.9375rem;
  transform: rotate(90deg);
  flex-shrink: 0;
}

.safety-icon {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'%3E%3Cpath d='M12 2L2 7l10 5 10-5-10-5zM2 17l10 5 10-5M2 12l10 5 10-5'/%3E%3C/svg%3E")
    center/contain no-repeat;
}

.reliability-icon {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E")
    center/contain no-repeat;
}

.wide-range-icon {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'%3E%3Crect x='3' y='3' width='18' height='18' rx='2' ry='2'/%3E%3Cpath d='M9 9h6v6H9z'/%3E%3C/svg%3E")
    center/contain no-repeat;
}

.innovation-icon {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'%3E%3Cpath d='M9 12l2 2 4-4'/%3E%3Cpath d='M21 12c.552 0 1-.448 1-1s-.448-1-1-1-1 .448-1 1 .448 1 1 1z'/%3E%3Cpath d='M3 12c.552 0 1-.448 1-1s-.448-1-1-1-1 .448-1 1 .448 1 1 1z'/%3E%3Cpath d='M12 21c.552 0 1-.448 1-1s-.448-1-1-1-1 .448-1 1 .448 1 1 1z'/%3E%3Cpath d='M12 3c.552 0 1-.448 1-1s-.448-1-1-1-1 .448-1 1 .448 1 1 1z'/%3E%3Cpath d='M5.64 18.36c.39.39 1.02.39 1.41 0s.39-1.02 0-1.41-.39-1.02-1.41 0-1.02.39 0 1.41z'/%3E%3Cpath d='M18.36 5.64c.39.39 1.02.39 1.41 0s.39-1.02 0-1.41-.39-1.02-1.41 0-1.02.39 0 1.41z'/%3E%3Cpath d='M17 17l4 4'/%3E%3Cpath d='M21 17l-4 4'/%3E%3C/svg%3E")
    center/contain no-repeat;
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .section-title {
    font-size: 28px;
    margin-bottom: 40px;
  }
}

/* Corporate Profile */

.corporate-profile-section{
  padding: 3.75rem 12.75rem;
}
.corporate-profile-content{
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
}
.corporate-profile-title{
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.corporate-profile-title h1{
  color:  #000;
text-align: center;
font-family: Inter;
font-size: 2.3125rem;
font-style: normal;
font-weight: 400;
line-height: 2.4rem;
letter-spacing: 0.03125rem;
text-transform: capitalize;
}
.corporate-porfile-subtitle{
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: inter;
}
.corporate-profile-subtitle p{
  color: #212529;
text-align: center;
font-family: Inter;
font-size: 1.0625rem;
font-style: normal;
font-weight: 400;
line-height: 1.8125rem;
}
/* Large Laptop */
@media screen and (max-width: 1280px) {
  .corporate-profile-section {
    padding: 3.5rem 10rem;
  }
  
  .corporate-profile-title h1 {
    font-size: 2.2rem;
    line-height: 2.3rem;
  }
  
  .corporate-profile-subtitle p {
    font-size: 1.02rem;
    line-height: 1.75rem;
  }
}

/* Standard Laptop */
@media screen and (max-width: 1024px) {
  .corporate-profile-section {
    padding: 3.2rem 8rem;
  }
  
  .corporate-profile-content {
    gap: 1.4rem;
  }
  
  .corporate-profile-title h1 {
    font-size: 2.1rem;
    line-height: 2.2rem;
    letter-spacing: 0.028rem;
  }
  
  .corporate-porfile-subtitle {
    gap: 0.9rem;
  }
  
  .corporate-profile-subtitle p {
    font-size: 1rem;
    line-height: 1.7rem;
  }
}

/* Large Tablet */
@media screen and (max-width: 834px) {
  .corporate-profile-section {
    padding: 3rem 6rem;
  }
  
  .corporate-profile-content {
    gap: 1.3rem;
  }
  
  .corporate-profile-title h1 {
    font-size: 2rem;
    line-height: 2.1rem;
    letter-spacing: 0.025rem;
  }
  
  .corporate-porfile-subtitle {
    gap: 0.8rem;
  }
  
  .corporate-profile-subtitle p {
    font-size: 0.98rem;
    line-height: 1.65rem;
  }
}

/* Standard Tablet */
@media screen and (max-width: 768px) {
  .corporate-profile-section {
    padding: 2.8rem 4rem;
  }
  
  .corporate-profile-content {
    gap: 1.2rem;
  }
  
  .corporate-profile-title h1 {
    font-size: 1.9rem;
    line-height: 2rem;
    letter-spacing: 0.022rem;
  }
  
  .corporate-porfile-subtitle {
    gap: 0.75rem;
  }
  
  .corporate-profile-subtitle p {
    font-size: 0.95rem;
    line-height: 1.6rem;
  }
}

/* Small Tablet */
@media screen and (max-width: 640px) {
  .corporate-profile-section {
    padding: 2.5rem 3rem;
  }
  
  .corporate-profile-content {
    gap: 1.1rem;
  }
  
  .corporate-profile-title h1 {
    font-size: 1.8rem;
    line-height: 1.9rem;
    letter-spacing: 0.02rem;
  }
  
  .corporate-porfile-subtitle {
    gap: 0.7rem;
  }
  
  .corporate-profile-subtitle p {
    font-size: 0.92rem;
    line-height: 1.55rem;
  }
}

/* Large Mobile */
@media screen and (max-width: 480px) {
  .corporate-profile-section {
    padding: 2.2rem 2rem;
  }
  
  .corporate-profile-content {
    gap: 1rem;
  }
  
  .corporate-profile-title h1 {
    font-size: 1.6rem;
    line-height: 1.7rem;
    letter-spacing: 0.018rem;
  }
  
  .corporate-porfile-subtitle {
    gap: 0.6rem;
  }
  
  .corporate-profile-subtitle p {
    font-size: 0.88rem;
    line-height: 1.45rem;
  }
}

/* Standard Mobile */
@media screen and (max-width: 414px) {
  .corporate-profile-section {
    padding: 2rem 1.5rem;
  }
  
  .corporate-profile-content {
    gap: 0.9rem;
  }
  
  .corporate-profile-title h1 {
    font-size: 1.5rem;
    line-height: 1.6rem;
    letter-spacing: 0.015rem;
  }
  
  .corporate-porfile-subtitle {
    gap: 0.55rem;
  }
  
  .corporate-profile-subtitle p {
    font-size: 0.85rem;
    line-height: 1.4rem;
  }
}

/* Small Mobile */
@media screen and (max-width: 375px) {
  .corporate-profile-section {
    padding: 1.8rem 1.2rem;
  }
  
  .corporate-profile-content {
    gap: 0.8rem;
  }
  
  .corporate-profile-title h1 {
    font-size: 1.4rem;
    line-height: 1.5rem;
    letter-spacing: 0.012rem;
  }
  
  .corporate-porfile-subtitle {
    gap: 0.5rem;
  }
  
  .corporate-profile-subtitle p {
    font-size: 0.82rem;
    line-height: 1.35rem;
  }
}

/* Extra Small Mobile */
@media screen and (max-width: 320px) {
  .corporate-profile-section {
    padding: 1.5rem 1rem;
  }
  
  .corporate-profile-content {
    gap: 0.7rem;
  }
  
  .corporate-profile-title h1 {
    font-size: 1.3rem;
    line-height: 1.4rem;
    letter-spacing: 0.01rem;
  }
  
  .corporate-porfile-subtitle {
    gap: 0.45rem;
  }
  
  .corporate-profile-subtitle p {
    font-size: 0.8rem;
    line-height: 1.3rem;
  }
}

/* Landscape Mobile Optimization */
@media screen and (max-height: 500px) and (orientation: landscape) {
  .corporate-profile-section {
    padding: 1.2rem 2rem;
  }
  
  .corporate-profile-content {
    gap: 0.6rem;
  }
  
  .corporate-profile-title h1 {
    font-size: 1.2rem;
    line-height: 1.3rem;
  }
  
  .corporate-porfile-subtitle {
    gap: 0.4rem;
  }
  
  .corporate-profile-subtitle p {
    font-size: 0.75rem;
    line-height: 1.2rem;
  }
}

/* Enhanced Readability for Mobile */
@media screen and (max-width: 768px) {
  .corporate-profile-content {
    max-width: 100%;
  }
  
  .corporate-profile-title h1 {
    word-break: break-word;
    hyphens: auto;
  }
  
  .corporate-profile-subtitle p {
    word-break: break-word;
    hyphens: auto;
    text-align: justify;
    text-align-last: center;
  }
}

/* Touch Optimization */
@media screen and (max-width: 480px) {
  .corporate-profile-section {
    touch-action: manipulation;
  }
  
  .corporate-profile-subtitle p {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}



/* Testimonial */

.testimonials-section {
  padding: 100px 0;
  background: #ffffff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  margin-top: 8rem;
  margin-bottom: -10rem;
  overflow: hidden;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 50px;
  width: 100%;
}

.testimonials-wrapper {
  display: flex;
  gap: 150px;
  align-items: flex-start;
  min-height: 500px;
  justify-content: center;
}

/* Left Side */
.testimonials-left {
  flex: 1;
  max-width: 500px;
  padding-top: 50px;
}

.testimonials-label {
  color: #8B8B8B;
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 40px;
  font-family: 'Inter', sans-serif;
}

.testimonials-title {
  font-size: 48px;
  font-weight: 400;
  line-height: 1.1;
  color: #333333;
  margin-bottom: 0;
  letter-spacing: -1px;
  font-family: 'Inter', sans-serif;
}

.testimonials-subtitle {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  color: #333333;
  margin-bottom: 0;
  letter-spacing: -1px;
  font-family: 'Inter', sans-serif;
}

/* Right Side */
.testimonials-right {
  flex: 1;
  position: relative;
  height: 500px;
  max-width: 450px;
  display: flex;
  justify-content: center;
  margin-top: 4rem;
}

.testimonials-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: visible;
  display: flex;
  justify-content: center;
}

.testimonial-card {
  position: absolute;
  top: 0;
  width: 100%;
  max-width: 420px;
  background: transparent;
  border-radius: 0;
  padding: 20px 0;
  box-shadow: none;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  height: auto;
  min-height: 120px;
}

/* Card Position Variations */
.testimonial-card.active {
  transform: translateY(0) translateX(0);
  opacity: 1;
  z-index: 3;
}

.testimonial-card.next {
  transform: translateY(150px) translateX(0);
  opacity: 0.5;
  z-index: 2;
}

.testimonial-card.prev {
  transform: translateY(-150px) translateX(0);
  opacity: 0.6;
  z-index: 1;
}

.testimonial-card.hidden {
  transform: translateY(300px) translateX(0);
  opacity: 0;
  z-index: 0;
}

/* Staggered Alignment - Odd cards (1st, 3rd, 5th) go left */
.testimonial-card[data-index="0"],
.testimonial-card[data-index="2"],
.testimonial-card[data-index="4"] {
  left: -30px;
}

/* Even cards (2nd, 4th) go right */
.testimonial-card[data-index="1"],
.testimonial-card[data-index="3"] {
  left: 30px;
}

.testimonial-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 300px;
}

.testimonial-name {
  font-size: 16px;
  font-weight: 600;
  color: #333333;
  margin: 0;
  font-family: 'Inter', sans-serif;
  text-transform: none;
}

.testimonial-text {
  font-size: 14px;
  line-height: 1.5;
  color: #666666;
  margin: 0;
  font-family: 'Inter', sans-serif;
}

.rating {
  display: flex;
  gap: 3px;
  margin-top: 8px;
}

.star {
  width: 16px;
  height: 16px;
  color: #333333;
  font-size: 16px;
  line-height: 1;
}

.star.empty {
  color: #D1D1D1;
}

.quote-icon {
  font-size: 80px;
  color: #E0E0E0;
  line-height: 0.7;
  font-family: Georgia, serif;
  align-self: flex-start;
  margin-top: 0;
  flex-shrink: 0;
  width: 60px;
  text-align: center;
}

/* Touch/Swipe Area */
.swipe-area {
  position: absolute;
  top: -50px;
  left: -100px;
  right: -100px;
  bottom: -50px;
  z-index: 5;
  touch-action: pan-y;
}

/* Media Queries */
@media screen and (max-width: 1400px) {
  .container {
      padding: 0 40px;
  }
  
  .testimonials-wrapper {
      gap: 120px;
  }
}

@media screen and (max-width: 1280px) {
  .container {
      padding: 0 30px;
  }
  
  .testimonials-wrapper {
      gap: 100px;
  }
  
  .testimonials-title,
  .testimonials-subtitle {
      font-size: 44px;
  }

  .testimonial-card[data-index="0"],
  .testimonial-card[data-index="2"],
  .testimonial-card[data-index="4"] {
      left: -25px;
  }

  .testimonial-card[data-index="1"],
  .testimonial-card[data-index="3"] {
      left: 25px;
  }
}

@media screen and (max-width: 1024px) {
  .testimonials-section {
      padding: 80px 0;
  }
  
  .testimonials-wrapper {
      gap: 80px;
  }
  
  .testimonials-title,
  .testimonials-subtitle {
      font-size: 40px;
  }
  
  .testimonials-right {
      height: 450px;
      max-width: 400px;
  }
  
  .testimonial-card {
      max-width: 380px;
  }

  .testimonial-card[data-index="0"],
  .testimonial-card[data-index="2"],
  .testimonial-card[data-index="4"] {
      left: -20px;
  }

  .testimonial-card[data-index="1"],
  .testimonial-card[data-index="3"] {
      left: 20px;
  }
}

@media screen and (max-width: 768px) {
  .testimonials-section {
      padding: 60px 0;
  }
  
  .container {
      padding: 0 20px;
  }
  
  .testimonials-wrapper {
      flex-direction: column;
      gap: 60px;
      align-items: center;
  }
  
  .testimonials-left {
      max-width: 100%;
      text-align: center;
      padding-top: 0;
  }
  
  .testimonials-title,
  .testimonials-subtitle {
      font-size: 36px;
  }
  
  .testimonials-right {
      height: 400px;
      width: 100%;
      max-width: 100%;
      display: flex;
      justify-content: center;
  }
  
  .testimonials-container {
      max-width: 400px;
  }
  
  .testimonial-card {
      width: 100%;
      max-width: 100%;
      justify-content: flex-start;
      padding: 15px 0;
      left: 0 !important; /* Center all cards on mobile */
  }
  
  .testimonial-card.next {
      transform: translateY(130px) translateX(0);
  }
  
  .testimonial-card.prev {
      transform: translateY(-130px) translateX(0);
  }
  
  .testimonial-content {
      max-width: 280px;
  }
  
  .quote-icon {
      font-size: 70px;
      width: 50px;
  }

  .swipe-area {
      left: -50px;
      right: -50px;
  }
}

@media screen and (max-width: 640px) {
  .testimonials-wrapper {
      gap: 50px;
  }
  
  .testimonials-title,
  .testimonials-subtitle {
      font-size: 32px;
  }
  
  .testimonials-right {
      height: 350px;
  }
  
  .testimonial-card {
      gap: 15px;
      padding: 12px 0;
  }
  
  .testimonial-name {
      font-size: 15px;
  }
  
  .testimonial-text {
      font-size: 13px;
  }
  
  .testimonial-content {
      max-width: 250px;
  }
  
  .quote-icon {
      font-size: 60px;
      width: 45px;
  }
  
  .star {
      width: 14px;
      height: 14px;
      font-size: 14px;
  }
}

@media screen and (max-width: 480px) {
  .testimonials-section {
      padding: 50px 0;
      margin-top: -7rem;
      margin-bottom: 2rem;
  }
  
  .container {
      padding: 0 15px;
  }
  
  .testimonials-wrapper {
      gap: 40px;
  }
  
  .testimonials-title,
  .testimonials-subtitle {
      font-size: 28px;
  }
  
  .testimonials-label {
      font-size: 12px;
      margin-bottom: 30px;
  }
  
  .testimonials-right {
      height: 300px;
      margin-left: 8rem;
  }
  
  .testimonial-card {
      gap: 12px;
      padding: 10px 0;
  }
  
  .testimonial-name {
      font-size: 14px;
  }
  
  .testimonial-text {
      font-size: 12px;
      line-height: 1.4;
  }
  
  .testimonial-content {
      max-width: 220px;
  }
  
  .quote-icon {
      font-size: 50px;
      width: 40px;
  }
  
  .star {
      width: 12px;
      height: 12px;
      font-size: 12px;
  }
}

@media screen and (max-width: 375px) {
  .testimonials-title,
  .testimonials-subtitle {
      font-size: 26px;
  }
  
  .testimonial-content {
      max-width: 200px;
  }
  
  .quote-icon {
      font-size: 45px;
      width: 35px;
  }
}

@media screen and (max-width: 320px) {
  .testimonial-card {
      gap: 10px;
  }
  
  .testimonial-name {
      font-size: 13px;
  }
  
  .testimonial-text {
      font-size: 11px;
  }
  
  .testimonial-content {
      max-width: 180px;
  }
  
  .quote-icon {
      font-size: 40px;
      width: 30px;
  }
}

/* Landscape Mobile */
@media screen and (max-height: 500px) and (orientation: landscape) {
  .testimonials-section {
      padding: 40px 0;
  }
  
  .testimonials-wrapper {
      flex-direction: row;
      gap: 60px;
  }
  
  .testimonials-left {
      text-align: left;
  }
  
  .testimonials-title,
  .testimonials-subtitle {
      font-size: 24px;
  }
  
  .testimonials-right {
      height: 250px;
  }
  
  .testimonial-card {
      gap: 8px;
      left: 0 !important;
  }
  
  .testimonial-text {
      font-size: 11px;
  }
  
  .quote-icon {
      font-size: 35px;
      width: 25px;
  }
}

/* Animation Enhancement */
.testimonial-card {
  will-change: transform, opacity;
}




/* Connect Us  */

.contact-section {
  background-color: #f0f0f0;
  padding: 60px 0;
  /* min-height: 100vh; */
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.contact-wrapper {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.company-info {
  flex: 1;
  padding-top: 20px;
}

.company-logo {
  margin-bottom: 40px;
}

.logo-text {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.logo-text .red-line {
  color: #dc3545;
  font-weight: 900;
}

.logo-subtitle {
  font-size: 11px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.company-address {
  color: #333;
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 30px;
  font-family: inter;
}

.contact-details {
  margin-top: 20px;
}

.contact-item {
  margin-bottom: 8px;
  font-size: 15px;
  color: #333;
}

.contact-label {
  font-weight: 600;
  display: inline-block;
  width: 60px;
  font-family: inter;
}

.contact-value {
  color: #333;
  font-family: inter;
}

.contact-form-section {
  flex: 1;
}

.form-title {
  font-size: 24px;
  font-weight: 400;
  color: #333;
  text-align: center;
  margin-bottom: 30px;
  font-family: inter;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-row {
  display: flex;
  gap: 12px;
}

.form-group {
  flex: 1;
}

.form-input,
.form-select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 0;
  font-size: 14px;
  font-family: inherit;
  background: white;
  outline: none;
  transition: border-color 0.3s ease;
  font-family: inter;
}

.form-input:focus,
.form-select:focus {
  border-color: #999;
}

.form-input::placeholder {
  color: #999;
  font-size: 14px;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23999' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 40px;
  color: #666;
  cursor: pointer;
}

.form-textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 0;
  font-size: 14px;
  font-family: inherit;
  background: white;
  outline: none;
  resize: vertical;
  min-height: 100px;
  transition: border-color 0.3s ease;
  font-family: inter;
}

.form-textarea:focus {
  border-color: #999;
}

.submit-btn {
  background: #333;
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 0;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  transition: background 0.3s ease;
  align-self: flex-end;
  margin-top: 15px;
}

.submit-btn:hover {
  background: #555;
}
.footer-logo{
  width: auto;
  height: 52px;
}
@media (max-width: 1200px) {
  .container {
    max-width: 1000px;
  }

  .contact-wrapper {
    gap: 60px;
  }
}

@media (max-width: 992px) {
  .contact-wrapper {
    gap: 40px;
  }
}

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

  .contact-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .company-info {
    text-align: center;
    padding-top: 0;
  }

  .logo-text {
    font-size: 32px;
  }

  .form-row {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 15px;
  }

  .contact-section {
    padding: 30px 0;
  }

  .contact-wrapper {
    gap: 30px;
  }

  .logo-text {
    font-size: 28px;
  }

  .logo-subtitle {
    font-size: 10px;
  }

  .company-address {
    font-size: 14px;
  }

  .contact-item {
    font-size: 14px;
  }

  .form-title {
    font-size: 22px;
    margin-bottom: 25px;
  }

  .form-input,
  .form-select,
  .form-textarea {
    padding: 10px 12px;
    font-size: 14px;
  }

  .submit-btn {
    padding: 10px 25px;
    font-size: 14px;
    align-self: stretch;
  }
}

@media (max-width: 400px) {
  .form-title {
    font-size: 20px;
  }

  .logo-text {
    font-size: 24px;
  }
}


/* Copyright  */

.copyright-section{
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  padding: 0 1rem;
  margin: 2rem auto;
}
.copyright-content{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.copyright-links{
  color:  #403E3F;
font-family: Inter;
font-size: 13.672px;
font-style: normal;
font-weight: 300;
line-height: 20px; 
padding: 0 25px
}
.copyright-links{
  border-bottom: ;
}
.border-right{
  border-right: 1px solid gray;
}


/* Large Laptop */
@media screen and (max-width: 1280px) {
  .container {
    max-width: 1100px;
    padding: 0 18px;
  }
  
  .contact-wrapper {
    gap: 70px;
  }
  
  .company-logo {
    margin-bottom: 35px;
  }
  
  .footer-logo {
    height: 48px;
  }
  
  .company-address {
    font-size: 14px;
    margin-bottom: 28px;
  }
  
  .contact-item {
    font-size: 14px;
    margin-bottom: 7px;
  }
  
  .form-title {
    font-size: 22px;
    margin-bottom: 28px;
  }
}

/* Standard Laptop */
@media screen and (max-width: 1024px) {
  .contact-section {
    padding: 55px 0;
  }
  
  .container {
    max-width: 980px;
    padding: 0 16px;
  }
  
  .contact-wrapper {
    gap: 60px;
  }
  
  .company-info {
    padding-top: 18px;
  }
  
  .company-logo {
    margin-bottom: 32px;
  }
  
  .footer-logo {
    height: 45px;
  }
  
  .company-address {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 25px;
  }
  
  .contact-details {
    margin-top: 18px;
  }
  
  .contact-item {
    font-size: 14px;
    margin-bottom: 6px;
  }
  
  .contact-label {
    width: 55px;
  }
  
  .form-title {
    font-size: 21px;
    margin-bottom: 25px;
  }
  
  .contact-form {
    gap: 11px;
  }
  
  .form-row {
    gap: 11px;
  }
  
  .form-input,
  .form-select {
    padding: 11px 14px;
    font-size: 13px;
  }
  
  .form-textarea {
    padding: 14px;
    font-size: 13px;
    min-height: 90px;
  }
  
  .submit-btn {
    padding: 11px 28px;
    font-size: 13px;
    margin-top: 12px;
  }
}

/* Large Tablet */
@media screen and (max-width: 834px) {
  .contact-section {
    padding: 50px 0;
  }
  
  .container {
    padding: 0 24px;
  }
  
  .contact-wrapper {
    gap: 50px;
  }
  
  .company-info {
    padding-top: 15px;
  }
  
  .company-logo {
    margin-bottom: 30px;
  }
  
  .footer-logo {
    height: 42px;
  }
  
  .company-address {
    font-size: 13px;
    margin-bottom: 22px;
  }
  
  .contact-details {
    margin-top: 16px;
  }
  
  .contact-item {
    font-size: 13px;
    margin-bottom: 5px;
  }
  
  .form-title {
    font-size: 20px;
    margin-bottom: 22px;
  }
  
  .contact-form {
    gap: 10px;
  }
  
  .form-row {
    gap: 10px;
  }
}

/* Standard Tablet */
@media screen and (max-width: 768px) {
  .contact-section {
    padding: 45px 0;
  }
  
  .container {
    padding: 0 20px;
  }
  
  .contact-wrapper {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }
  
  .company-info {
    text-align: center;
    padding-top: 0;
    width: 100%;
    max-width: 400px;
  }
  
  .company-logo {
    margin-bottom: 25px;
  }
  
  .footer-logo {
    height: 40px;
  }
  
  .company-address {
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 20px;
  }
  
  .contact-details {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }
  
  .contact-item {
    font-size: 13px;
    margin-bottom: 0;
    text-align: center;
  }
  
  .contact-label {
    width: auto;
    margin-right: 8px;
  }
  
  .contact-form-section {
    width: 100%;
    max-width: 500px;
  }
  
  .form-title {
    font-size: 19px;
    margin-bottom: 20px;
  }
  
  .form-row {
    flex-direction: column;
    gap: 10px;
  }
  
  .form-input,
  .form-select {
    padding: 12px 15px;
    font-size: 14px;
  }
  
  .form-textarea {
    padding: 15px;
    font-size: 14px;
    min-height: 80px;
  }
  
  .submit-btn {
    padding: 12px 30px;
    font-size: 14px;
    align-self: stretch;
    margin-top: 15px;
  }
}

/* Small Tablet */
@media screen and (max-width: 640px) {
  .contact-section {
    padding: 40px 0;
  }
  
  .container {
    padding: 0 18px;
  }
  
  .contact-wrapper {
    gap: 35px;
  }
  
  .company-info {
    max-width: 350px;
  }
  
  .company-logo {
    margin-bottom: 22px;
  }
  
  .footer-logo {
    height: 38px;
  }
  
  .company-address {
    font-size: 12px;
    margin-bottom: 18px;
  }
  
  .contact-item {
    font-size: 12px;
  }
  
  .contact-form-section {
    max-width: 450px;
  }
  
  .form-title {
    font-size: 18px;
    margin-bottom: 18px;
  }
  
  .contact-form {
    gap: 9px;
  }
  
  .form-row {
    gap: 9px;
  }
  
  .form-input,
  .form-select {
    padding: 11px 14px;
    font-size: 13px;
  }
  
  .form-textarea {
    padding: 14px;
    font-size: 13px;
    min-height: 75px;
  }
  
  .submit-btn {
    padding: 11px 28px;
    font-size: 13px;
    margin-top: 12px;
  }
}

/* Large Mobile */
@media screen and (max-width: 480px) {
  .contact-section {
    padding: 35px 0;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .contact-wrapper {
    gap: 30px;
  }
  
  .company-info {
    max-width: 300px;
  }
  
  .company-logo {
    margin-bottom: 20px;
  }
  
  .footer-logo {
    height: 35px;
  }
  
  .company-address {
    font-size: 11px;
    line-height: 1.3;
    margin-bottom: 15px;
  }
  
  .contact-details {
    margin-top: 12px;
    gap: 4px;
  }
  
  .contact-item {
    font-size: 11px;
  }
  
  .contact-label {
    margin-right: 6px;
  }
  
  .contact-form-section {
    max-width: 100%;
  }
  
  .form-title {
    font-size: 17px;
    margin-bottom: 15px;
  }
  
  .contact-form {
    gap: 8px;
  }
  
  .form-row {
    gap: 8px;
  }
  
  .form-input,
  .form-select {
    padding: 10px 12px;
    font-size: 12px;
  }
  
  .form-textarea {
    padding: 12px;
    font-size: 12px;
    min-height: 70px;
  }
  
  .submit-btn {
    padding: 10px 25px;
    font-size: 12px;
    margin-top: 10px;
  }
}

/* Standard Mobile */
@media screen and (max-width: 414px) {
  .contact-section {
    padding: 30px 0;
  }
  
  .container {
    padding: 0 12px;
  }
  
  .contact-wrapper {
    gap: 25px;
  }
  
  .company-info {
    max-width: 280px;
  }
  
  .company-logo {
    margin-bottom: 18px;
  }
  
  .footer-logo {
    height: 32px;
  }
  
  .company-address {
    font-size: 10px;
    margin-bottom: 12px;
  }
  
  .contact-details {
    margin-top: 10px;
    gap: 3px;
  }
  
  .contact-item {
    font-size: 10px;
  }
  
  .form-title {
    font-size: 28px;
    margin-bottom: 12px;
  }
  
  .contact-form {
    gap: 7px;
  }
  
  .form-row {
    gap: 7px;
  }
  
  .form-input,
  .form-select {
    padding: 9px 11px;
    font-size: 11px;
  }
  
  .form-textarea {
    padding: 11px;
    font-size: 11px;
    min-height: 65px;
  }
  
  .submit-btn {
    padding: 9px 22px;
    font-size: 11px;
    margin-top: 8px;
  }
}

/* Small Mobile */
@media screen and (max-width: 375px) {
  .contact-section {
    padding: 25px 0;
  }
  
  .container {
    padding: 0 10px;
  }
  
  .contact-wrapper {
    gap: 22px;
  }
  
  .company-info {
    max-width: 260px;
  }
  
  .company-logo {
    margin-bottom: 15px;
  }
  
  .footer-logo {
    height: 30px;
  }
  
  .company-address {
    font-size: 9px;
    margin-bottom: 10px;
  }
  
  .contact-item {
    font-size: 9px;
  }
  
  .form-title {
    font-size: 15px;
    margin-bottom: 10px;
  }
  
  .contact-form {
    gap: 6px;
  }
  
  .form-row {
    gap: 6px;
  }
  
  .form-input,
  .form-select {
    padding: 8px 10px;
    font-size: 10px;
  }
  
  .form-textarea {
    padding: 10px;
    font-size: 10px;
    min-height: 60px;
  }
  
  .submit-btn {
    padding: 8px 20px;
    font-size: 10px;
    margin-top: 6px;
  }
}

/* Extra Small Mobile */
@media screen and (max-width: 320px) {
  .contact-section {
    padding: 20px 0;
  }
  
  .container {
    padding: 0 8px;
  }
  
  .contact-wrapper {
    gap: 18px;
  }
  
  .company-info {
    max-width: 240px;
  }
  
  .company-logo {
    margin-bottom: 12px;
  }
  
  .footer-logo {
    height: 28px;
  }
  
  .company-address {
    font-size: 8px;
    margin-bottom: 8px;
  }
  
  .contact-item {
    font-size: 8px;
  }
  
  .form-title {
    font-size: 14px;
    margin-bottom: 8px;
  }
  
  .contact-form {
    gap: 5px;
  }
  
  .form-row {
    gap: 5px;
  }
  
  .form-input,
  .form-select {
    padding: 7px 9px;
    font-size: 9px;
  }
  
  .form-textarea {
    padding: 9px;
    font-size: 9px;
    min-height: 55px;
  }
  
  .submit-btn {
    padding: 7px 18px;
    font-size: 9px;
    margin-top: 5px;
  }
}

/* Copyright Section Media Queries */
@media screen and (max-width: 768px) {
  .copyright-section {
    padding: 0 0.5rem;
    margin: 1.5rem auto;
  }
  
  .copyright-content {
    /* flex-direction: column; */
    gap: 10px;
    text-align: center;
  }
  
  .copyright-links {
    font-size: 12px;
    padding: 0 15px;
    line-height: 18px;
  }
  
  .border-right {
    border-right: none;
    border-bottom: 1px solid gray;
    padding-bottom: 5px;
  }
}

@media screen and (max-width: 480px) {
  .copyright-section {
    margin: 1rem auto;
  }
  
  .copyright-links {
    font-size: 11px;
    padding: 0 10px;
    line-height: 16px;
  }
}

@media screen and (max-width: 320px) {
  .copyright-links {
    font-size: 10px;
    padding: 0 8px;
    line-height: 14px;
  }
}

/* Enhanced Touch Interactions */
@media screen and (max-width: 768px) {
  .form-input,
  .form-select,
  .form-textarea {
    touch-action: manipulation;
    -webkit-appearance: none;
    border-radius: 4px;
  }
  
  .form-select {
    background-position: right 10px center;
    background-size: 14px;
    padding-right: 35px;
  }
  
  .submit-btn {
    touch-action: manipulation;
    border-radius: 4px;
    transition: all 0.2s ease;
  }
  
  .submit-btn:active {
    transform: scale(0.98);
    background: #444;
  }
}

/* Landscape Mobile Optimization */
@media screen and (max-height: 500px) and (orientation: landscape) {
  .contact-section {
    padding: 15px 0;
  }
  
  .contact-wrapper {
    gap: 20px;
  }
  
  .company-logo {
    margin-bottom: 10px;
  }
  
  .footer-logo {
    height: 25px;
  }
  
  .company-address {
    font-size: 8px;
    margin-bottom: 8px;
    line-height: 1.2;
  }
  
  .contact-item {
    font-size: 8px;
  }
  
  .form-title {
    font-size: 12px;
    margin-bottom: 8px;
  }
  
  .form-input,
  .form-select {
    padding: 6px 8px;
    font-size: 9px;
  }
  
  .form-textarea {
    padding: 8px;
    font-size: 9px;
    min-height: 40px;
  }
  
  .submit-btn {
    padding: 6px 15px;
    font-size: 9px;
    margin-top: 5px;
  }
}











/* Demo content for testing */
.demo-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
}

.demo-content h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #333;
}

.demo-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #666;
}

/* Download Brochure Button */
.download-btn {
  background: #dc3545;
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  margin: 10px;
  display: inline-block;
  text-decoration: none;
}

.download-btn:hover {
  background: #c82333;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
  color: white;
}

/* Modal Overlay */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Modal Container */
.modal-container {
  background: white;
  border-radius: 12px;
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.8) translateY(50px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.modal-overlay.active .modal-container {
  transform: scale(1) translateY(0);
}

/* Close Button */
.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border: none;
  background: #f8f9fa;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  transition: all 0.3s ease;
  color: #666;
  font-size: 18px;
  font-weight: bold;
}

.modal-close:hover {
  background: #e9ecef;
  color: #333;
  transform: rotate(90deg);
}

/* Modal Content */
.modal-content {
  display: block;
  min-height: auto;
}

/* Left Side - Company Info */
.company-info {
  flex: 1;
  /* background: linear-gradient(135deg, #333 0%, #555 100%); */
  color: white;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.company-info::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  transform: rotate(45deg);
}

.company-info-content {
  position: relative;
  z-index: 2;
}

.company-logo {
  margin-bottom: 30px;
}

.company-logo h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 5px;
}

.company-logo p {
  font-size: 12px;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.company-address {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 25px;
  opacity: 0.9;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.contact-label {
  font-weight: 600;
  min-width: 60px;
}

/* Contact Form Section */
.contact-form-section {
  padding: 50px 40px;
  background: white;
  border-radius: 12px;
}

.form-title {
  font-size: 28px;
  font-weight: 600;
  color: #333;
  text-align: center;
  margin-bottom: 30px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-row {
  display: flex;
  gap: 15px;
}

.form-group {
  flex: 1;
}

.form-input,
.form-select {
  width: 100%;
  padding: 15px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  background: white;
  outline: none;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.form-input::placeholder {
  color: #999;
  font-size: 14px;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23999' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 15px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 45px;
  color: #666;
  cursor: pointer;
}

.form-select option {
  padding: 10px;
}

.form-textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  background: white;
  outline: none;
  resize: vertical;
  min-height: 100px;
  transition: all 0.3s ease;
}

.form-textarea:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.submit-btn {
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  align-self: flex-end;
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(220, 53, 69, 0.3);
  transition: all 0.3s ease;
  /* color: white; */
}

.submit-btn:active {
  transform: translateY(0);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .modal-container {
      max-width: 95%;
      max-height: 95vh;
      margin: 10px;
  }

  .contact-form-section {
      padding: 40px 30px;
  }

  .form-title {
      font-size: 24px;
      margin-bottom: 25px;
  }

  .form-row {
      flex-direction: column;
      gap: 15px;
  }

  .form-input,
  .form-select,
  .form-textarea {
      padding: 12px 15px;
  }

  .submit-btn {
      align-self: stretch;
      padding: 15px;
  }

  .modal-close {
      top: 15px;
      right: 15px;
      width: 35px;
      height: 35px;
      font-size: 16px;
  }
}

@media (max-width: 480px) {
  .modal-overlay {
      padding: 10px;
  }

  .contact-form-section {
      padding: 35px 25px;
  }

  .form-title {
      font-size: 22px;
      margin-bottom: 20px;
  }

  .contact-form {
      gap: 12px;
  }

  .form-input,
  .form-select,
  .form-textarea {
      padding: 10px 12px;
      font-size: 13px;
  }

  .form-textarea {
      min-height: 80px;
  }
}

/* Animation for popup entrance */
@keyframes slideInUp {
  from {
      opacity: 0;
      transform: translateY(50px) scale(0.9);
  }
  to {
      opacity: 1;
      transform: translateY(0) scale(1);
  }
}

.modal-overlay.active .modal-container {
  animation: slideInUp 0.4s ease-out;
}

/* Success message */
.success-message {
  background: #28a745;
  color: white;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.success-message.show {
  opacity: 1;
  transform: translateY(0);
}

/* Smooth scrollbar for modal */
.modal-container::-webkit-scrollbar {
  width: 6px;
}

.modal-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.modal-container::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 3px;
}

.modal-container::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

.teknix-logo{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
  margin-top: -2rem;
}


.social-media-icons{
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}
.social-media{
  height: 35px;
  width: 35px;
  border-radius: 50%;
}
.form-submit-ctc{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}





/* Modal Container - Reduced height */
.modal-container {
  background: white;
  border-radius: 12px;
  width: 100%;
  max-width: 500px; /* Reduced from 600px */
  max-height: 90vh; 
  overflow-y: auto;
  position: relative;
  transform: scale(0.8) translateY(50px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

/* Contact Form Section - Reduced padding */
.contact-form-section {
  padding: 30px 25px; /* Reduced from 50px 40px */
  background: white;
  border-radius: 12px;
}

/* Teknix Logo - Reduced margins */
.teknix-logo {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0.5rem; /* Reduced from 1rem */
  margin-top: -1rem; /* Reduced from -2rem */
}

/* Form Title - Reduced size and margin */
.form-title {
  font-size: 22px; /* Reduced from 28px */
  font-weight: 600;
  color: #333;
  text-align: center;
  margin-bottom: 20px; /* Reduced from 30px */
}

/* Contact Form - Reduced gap */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px; /* Reduced from 15px */
}

/* Form Row - Reduced gap */
.form-row {
  display: flex;
  gap: 10px; /* Reduced from 15px */
}

/* Form Inputs - Reduced padding */
.form-input,
.form-select {
  width: 100%;
  padding: 10px 12px; /* Reduced from 15px */
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 13px; /* Reduced from 14px */
  font-family: 'Inter', sans-serif;
  background: white;
  outline: none;
  transition: all 0.3s ease;
}

/* Form Textarea - Reduced padding and height */
.form-textarea {
  width: 100%;
  padding: 10px 12px; /* Reduced from 15px */
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 13px; /* Reduced from 14px */
  font-family: 'Inter', sans-serif;
  background: white;
  outline: none;
  resize: vertical;
  min-height: 70px; /* Reduced from 100px */
  transition: all 0.3s ease;
}

/* Submit Button - Reduced padding */
.submit-btn {
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
  color: white;
  padding: 12px 25px; /* Reduced from 15px 30px */
  border: none;
  border-radius: 8px;
  font-size: 14px; /* Reduced from 16px */
  font-weight: 600;
  cursor: pointer;
  align-self: flex-end;
  margin-top: 8px; /* Reduced from 10px */
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

/* Social Media Icons - Reduced margin */
.social-media-icons {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem; /* Reduced from 2rem */
}

/* Mobile Responsiveness - Adjusted for smaller size */
@media (max-width: 768px) {
  .modal-container {
    max-width: 90%;
    max-height: 85vh;
    margin: 10px;
  }

  .contact-form-section {
    padding: 25px 20px; /* Reduced */
  }

  .form-title {
    font-size: 20px; /* Reduced */
    margin-bottom: 15px; /* Reduced */
  }

  .form-row {
    flex-direction: column;
    gap: 8px; /* Reduced */
  }

  .form-input,
  .form-select,
  .form-textarea {
    padding: 8px 10px; /* Reduced */
    font-size: 12px; /* Reduced */
  }

  .form-textarea {
    min-height: 60px; /* Reduced */
  }

  .submit-btn {
    align-self: stretch;
    padding: 10px; /* Reduced */
    font-size: 13px; /* Reduced */
  }
}

@media (max-width: 480px) {
  .contact-form-section {
    padding: 20px 15px; /* Reduced */
  }

  .form-title {
    font-size: 18px; /* Reduced */
    margin-bottom: 12px; /* Reduced */
  }

  .contact-form {
    gap: 8px; /* Reduced */
  }

  .form-input,
  .form-select,
  .form-textarea {
    padding: 8px 10px;
    font-size: 12px;
  }

  .form-textarea {
    min-height: 50px; /* Reduced */
  }
}