/* CSS Variables */
:root {
  --header-font: "Space Grotesk", sans-serif;
  --text-color: #f8fbfe;
  --desc-color: #dde8f1;
  --accent: #b8dbfc;
  --contact-border: rgba(255, 255, 255, 0.36);
  --section-bg: rgba(40, 54, 76, 0.33);
  --contact-bg: rgba(30, 40, 50, 0.5);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  font-family: var(--header-font);
  background: #43555b;
  overflow-x: hidden;
  min-height: 100vh;
  scroll-behavior: smooth;
}

/* Container */
.container {
  width: 100vw;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  background: transparent;
}

/* Logo Styles */
.logo-wrapper {
  position: fixed;
  top: 30px;
  left: 38px;
  z-index: 10;
  animation: fadeInDown 1.4s 0.3s cubic-bezier(0.7, -0.22, 0.17, 1) both;
  transition: transform 0.3s ease-in-out;
}

.logo {
  width: 60px;
  height: 60px;
}

/* Navbar Styles */
.navbar {
  position: fixed;
  top: 50px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  z-index: 10;
  animation: fadeInDown 1.3s 0.6s both;
  transition: transform 0.3s ease-in-out;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: var(--text-color);
  font-size: 1.1rem;
  letter-spacing: 1.8px;
  text-decoration: none;
  font-family: var(--header-font);
  font-weight: 400;
  padding: 2px 0;
  position: relative;
  transition: color 0.18s;
}

.nav-link:hover {
  color: var(--accent);
}

/* Join Us Button */
.join-us-btn {
  position: absolute;
  right: 38px;
  padding: 7px 26px 7px 19px;
  border: 2px solid var(--contact-border);
  border-radius: 50px;
  color: var(--text-color);
  font-size: 1.12rem;
  font-family: var(--header-font);
  background: rgba(248, 251, 254, 0.03);
  letter-spacing: 2.2px;
  font-weight: 400;
  display: flex;
  align-items: center;
  z-index: 11;
  cursor: pointer;
  transition: border 0.24s, background 0.24s;
  text-decoration: none;
  box-sizing: border-box;
  animation: fadeInDown 1s 1s both;
}

.join-us-btn:hover {
  border: 2px solid var(--accent);
  background: rgba(184, 219, 252, 0.08);
}

/* Join Us Arrow */
.join-us-arrow-bg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
  width: 33px;
  height: 33px;
  border-radius: 50%;
  background: rgba(15, 17, 22, 0.74);
  position: relative;
  overflow: hidden;
  transition: background 0.2s;
}

.join-us-arrow-svg {
  width: 21px;
  height: 21px;
  display: block;
  transition: filter 0.24s;
  color: var(--text-color);
}

/* Arrow animation on hover */
.join-us-btn:hover .join-us-arrow-bg {
  background: rgba(15, 17, 22, 0.92);
}

.join-us-btn:hover .join-us-arrow-svg {
  animation: arrow-wrap 0.7s cubic-bezier(0.44, 0.14, 0.35, 1.27) both;
}

/* Hero Section */
.hero {
  width: 100vw;
  height: 100vh;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: 0;
  animation: bgZoomIn 1.8s cubic-bezier(0.17, 0.67, 0.73, 1.23);
}

.hero-content {
  position: absolute;
  bottom: 70px;
  left: 32px;
  width: calc(100vw - 64px);
  display: flex;
  flex-direction: row;
  align-items: end;
  justify-content: space-between;
  z-index: 2;
  pointer-events: none;
  animation: fadeInUp 1.7s 1.2s cubic-bezier(0.27, 0, 0.54, 1.34) both;
}

.hero-title {
  color: var(--text-color);
  font-size: 3.15rem;
  font-family: var(--header-font);
  font-weight: 400;
  letter-spacing: 2.6px;
  line-height: 1.13;
  margin: 0;
  text-shadow: 0 3px 24px rgba(30, 81, 143, 0.13), 0 1px 4px rgba(0, 0, 0, 0.11);
  pointer-events: auto;
}

.hero-desc {
  max-width: 380px;
  color: var(--desc-color);
  font-size: 1.17rem;
  font-family: var(--header-font);
  letter-spacing: 1.2px;
  line-height: 1.54;
  margin-bottom: 12px;
  margin-right: -20px;
  pointer-events: auto;
  text-align: left;
  text-shadow: 0 1.5px 6px rgba(42, 58, 99, 0.17),
    0 1px 2.5px rgba(0, 0, 0, 0.14);
}

/* About Section */
.about {
  width: 100%;
  padding: 100px 0;
  background: var(--section-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  z-index: 1;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.about.visible {
  opacity: 1;
  transform: translateY(0);
}

.about-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}

.about-content {
  flex: 1;
  max-width: 550px;
}

.about-title {
  color: var(--text-color);
  font-size: 2.8rem;
  font-family: var(--header-font);
  font-weight: 400;
  letter-spacing: 2.2px;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
}

.about-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 60px;
  height: 3px;
  background: var(--accent);
}

.about-description {
  color: var(--desc-color);
  font-size: 1.1rem;
  font-family: var(--header-font);
  letter-spacing: 1px;
  line-height: 1.6;
  margin-bottom: 20px;
  border: 2px solid #b8dbfc;
  border-radius: 50px;
  padding: 1rem;
}

.about-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

/* Stat Item Box Styles */
.stat-item {
  flex: 1;
  min-width: 180px;
  background: rgba(40, 54, 76, 0.33);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(184, 219, 252, 0.2);
  border-radius: 1rem;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.stat-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, #b8dbfc, #f8fbfe);
  border-radius: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  filter: blur(1rem);
  z-index: -1;
}

.stat-item:hover::before {
  opacity: 0.2;
}

.stat-item:hover {
  transform: scale(1.05);
}

.stat-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 5px;
}

.stat-number {
  color: var(--accent);
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1;
}

.stat-plus {
  color: var(--accent);
  font-size: 1.8rem;
  font-weight: 700;
  margin-left: 2px;
  line-height: 1;
}

.stat-label {
  color: var(--desc-color);
  font-size: 1rem;
  letter-spacing: 1px;
  display: block;
}

.about-image {
  flex: 1;
  max-width: 500px;
  position: relative;
  overflow: hidden;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

/* Products Section */
.products {
  width: 100%;
  padding: 100px 0;
  background: linear-gradient(to bottom right, #2a3a4a, #43555b);
  animation: bgZoomIn 1.8s cubic-bezier(0.17, 0.67, 0.73, 1.23);
  position: relative;
  z-index: 1;
}

.section-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  color: var(--text-color);
  font-size: 2.8rem;
  font-weight: 400;
  letter-spacing: 2.2px;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 60px;
  height: 3px;
  background: var(--accent);
  transform: translateX(-50%);
}

.section-description {
  color: var(--desc-color);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Slider Styles */
.slider-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.slider-main {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transform: scale(1.05);
}

.slide.active {
  opacity: 1;
  transform: scale(1);
}

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

.slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.slide-title {
  color: rgba(221, 232, 241, 0.773);
  font-size: 1.8rem;
  margin-bottom: 10px;
  letter-spacing: 1.5px;
}

.slide-description {
  font-size: 1rem;
  color: var(--desc-color);
  margin-bottom: 20px;
  max-width: 80%;
}

.view-details-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background: rgba(184, 219, 252, 0.15);
  border: 1px solid var(--accent);
  border-radius: 50px;
  color: var(--text-color);
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 1.5px;
  transition: all 0.3s ease;
}

.view-details-btn:hover {
  background: rgba(184, 219, 252, 0.3);
  transform: translateY(-3px);
}

.view-details-btn svg {
  margin-left: 8px;
  width: 18px;
  height: 18px;
}

/* Slider Navigation */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.slider-arrow:hover {
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  background: rgba(40, 54, 76, 0.3);
  transform: translateY(-50%) scale(1.1);
}

.slider-arrow.left {
  left: 20px;
}

.slider-arrow.right {
  right: 20px;
}

.slider-arrow svg {
  width: 24px;
  height: 24px;
  fill: var(--text-color);
}

/* Thumbnails */
.slider-thumbnails {
  display: flex;
  justify-content: center;
  gap: 15px;
  padding: 20px 0;
  flex-wrap: wrap;
}

.thumbnail {
  width: 120px;
  height: 80px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.6;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.thumbnail:hover {
  opacity: 0.9;
  transform: translateY(-5px);
}

.thumbnail.active {
  opacity: 1;
  border-color: var(--accent);
  transform: translateY(-5px);
}

.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Contact Section */
.contact {
  width: 100%;
  padding: 100px 0;
  background: linear-gradient(to bottom right, #2a3a4a, #43555b);
  position: relative;
  z-index: 1;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-form {
  opacity: 0;
  animation: fadeInUp 1.7s 0.3s cubic-bezier(0.27, 0, 0.54, 1.34) both;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  color: var(--text-color);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(184, 219, 252, 0.3);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--text-color);
  font-size: 1rem;
  transition: border-color 0.3s ease;
  resize: none;
  font-family: var(--header-font);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--desc-color);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.submit-btn {
  width: 100%;
  background: linear-gradient(to right, var(--accent), var(--text-color));
  color: #43555B;
  font-weight: bold;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-family: var(--header-font);
}

.submit-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(184, 219, 252, 0.3);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  opacity: 0;
  animation: fadeInUp 1.7s 0.4s cubic-bezier(0.27, 0, 0.54, 1.34) both;
}

.info-card,
.social-card {
  background: rgba(40, 54, 76, 0.33);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(184, 219, 252, 0.2);
  border-radius: 1.5rem;
  padding: 2rem;
}

.info-title {
  color: var(--text-color);
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.info-icon {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(to bottom right, var(--accent), var(--text-color));
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #43555B;
}

.info-label {
  color: var(--desc-color);
  font-size: 0.875rem;
}

.info-value {
  color: var(--text-color);
  font-size: 1.125rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(to bottom right, var(--accent), var(--text-color));
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  transform: scale(1.1);
}

.social-link svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #43555B;
}

/* Custom Popup */
.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(40, 54, 76, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(184, 219, 252, 0.3);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.popup.show {
  opacity: 1;
  visibility: visible;
}

.popup-content {
  text-align: center;
}

.popup-content p {
  color: var(--text-color);
  font-size: 1.2rem;
  letter-spacing: 1px;
  margin: 0;
}

/* Mobile Menu Styles */
.hamburger2 {
  display: none;
  flex-direction: column;
  gap: 10px;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  position: fixed;
  right: 18px;
  top: 36px;
  z-index: 130;
  width: 38px;
  height: 38px;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease-in-out;
}

.hamburger2 .bar {
  width: 35px;
  height: 2px;
  border-radius: 2.5px;
  background: var(--text-color);
  transition: all 0.5s cubic-bezier(0.7, -0.12, 0.28, 1.23);
  position: relative;
}

/* Morph to single dash */
.hamburger2.open .bar:nth-child(1) {
  transform: translateY(7px) rotate(0deg);
}
.hamburger2.open .bar:nth-child(2) {
  transform: translateY(-7px) rotate(0deg);
}

/* Glassmorphic overlay menu */
.glass-menu {
  display: none;
  position: fixed;
  right: 18px;
  top: calc(36px + 38px + 12px);
  min-width: 230px;
  width: max-content;
  max-width: 94vw;
  border-radius: 22px;
  box-shadow: 0 8px 32px 0 #050c2672, 0 0 0 1px #b8dbfc33;
  background: rgba(40, 54, 76, 0.33);
  backdrop-filter: blur(24px) saturate(1.5) brightness(1.05);
  -webkit-backdrop-filter: blur(24px) saturate(1.5) brightness(1.05);
  z-index: 120;
  padding: 30px 18px 22px 18px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s,
    transform 0.33s cubic-bezier(0.72, -0.17, 0.38, 1.13);
  transform: translateY(-18px) scale(0.97);
}

.glass-menu.open {
  display: block;
  opacity: 1;
  pointer-events: all;
  transform: translateY(0) scale(1);
}

.glass-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}

.glass-menu ul li {
  margin: 23px 0;
}

.glass-menu .nav-link,
.glass-menu .join-us-btn {
  color: var(--text-color);
  font-size: 1.65rem;
  text-decoration: none;
  letter-spacing: 2.1px;
  font-family: var(--header-font);
  font-weight: 400;
  padding: 0.13em 0.36em;
  display: inline-block;
}

.glass-menu .join-us-btn {
  margin-top: 12px;
  font-size: 1.12rem;
}

/* Prevent body scroll when menu open */
body.menu-open {
  overflow: hidden !important;
}

/* Animations */
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-22px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(38px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bgZoomIn {
  0% {
    transform: scale(1.11);
    opacity: 0;
  }
  55% {
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes arrow-wrap {
  0% {
    transform: translate(0, 0);
  }
  40% {
    transform: translate(12px, -12px);
  }
  41% {
    transform: translate(-12px, 12px);
  }
  100% {
    transform: translate(0, 0);
  }
}

@keyframes navItemFadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.popup.show {
  animation: popupFadeIn 0.3s ease forwards;
}

/* Nav Links Fade Up Animation */
.glass-menu.open ul li {
  opacity: 0;
  animation: navItemFadeUp 0.45s ease forwards;
}

.glass-menu.open ul li:nth-child(1) {
  animation-delay: 0.15s;
}
.glass-menu.open ul li:nth-child(2) {
  animation-delay: 0.3s;
}
.glass-menu.open ul li:nth-child(3) {
  animation-delay: 0.45s;
}
.glass-menu.open ul li:nth-child(4) {
  animation-delay: 0.6s;
}
.glass-menu.open ul li:nth-child(5) {
  animation-delay: 0.75s;
}

/* Scrollbar hidden */
body::-webkit-scrollbar {
  width: 0 !important;
}
body {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Responsive Styles */
@media (max-width: 1400px) {
  .section-container {
    max-width: 1400px;
  }

  .slider-container {
    max-width: 1200px;
  }

  .slider-main {
    height: 550px;
  }

  .slide-title {
    font-size: 2rem;
  }

  .slide-description {
    font-size: 1.1rem;
    max-width: 85%;
  }

  .thumbnail {
    width: 140px;
    height: 90px;
  }
}

@media (max-width: 900px) {
  .hero-title {
    font-size: 2.15rem;
  }
  .hero-desc {
    font-size: 1rem;
    max-width: 280px;
  }
  .hero-content {
    bottom: 40px;
    left: 12px;
    width: calc(100vw - 24px);
  }
  .navbar {
    gap: 24px;
    font-size: 0.98rem;
  }
  .join-us-btn {
    right: 12px;
    padding: 7px 18px 7px 10px;
    font-size: 1rem;
  }
  .logo-wrapper {
    top: 25px;
    left: 20px;
  }
  .logo {
    width: 50px;
    height: 50px;
  }
  .stat-item {
    min-width: 100px;
    padding: 15px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-plus {
    font-size: 1.4rem;
  }

  /* About Section Responsive */
  .about {
    padding: 70px 0;
  }

  .about-container {
    flex-direction: column;
    gap: 40px;
  }

  .about-content {
    max-width: 100%;
  }

  .about-title {
    font-size: 2.3rem;
  }

  .about-stats {
    justify-content: space-around;
  }

  .about-image {
    max-height: 700px;
    border-radius: 30px;
  }
  .about-image img {
    height: 100%;
    object-fit: cover;
  }

  /* Products Section Responsive */
  .section-title {
    font-size: 2.3rem;
  }

  .slider-main {
    height: 400px;
  }

  .slide-title {
    font-size: 1.5rem;
  }

  .slide-description {
    font-size: 0.9rem;
  }

  .thumbnail {
    width: 90px;
    height: 60px;
  }

  /* Contact Section Responsive */
  .contact {
    padding: 70px 0;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  /* Hide desktop navigation and show mobile menu */
  .navbar,
  .nav-links,
  .join-us-btn {
    display: none !important;
  }
  .hamburger2 {
    display: flex;
  }
}

@media (max-width: 600px) {
  .about-title {
    font-size: 2rem;
  }

  .about-image {
    max-height: 700px; 
    border-radius: 20px;
  }

  .about-image img {
    height: 100%;
    object-fit: cover;
  }

  .about-description {
    font-size: 1rem;
  }

  .stat-item {
    min-width: 100px;
    padding: 12px;
    margin-bottom: 15px;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .stat-plus {
    font-size: 1.2rem;
  }

  .stat-label {
    font-size: 0.9rem;
  }

  /* Products Section Responsive */
  .products {
    padding: 70px 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .slider-main {
    height: 300px;
  }

  .slide-content {
    padding: 20px;
  }

  .slide-title {
    font-size: 1.3rem;
  }

  .slide-description {
    font-size: 0.85rem;
    max-width: 100%;
  }

  .slider-arrow {
    width: 40px;
    height: 40px;
  }

  .slider-arrow svg {
    width: 20px;
    height: 20px;
  }

  .thumbnail {
    width: 70px;
    height: 50px;
  }

  /* Contact Section Responsive */
  .contact {
    padding: 50px 0;
  }
  
  .info-card,
  .social-card {
    padding: 1.5rem;
  }
  
  .info-title {
    font-size: 1.5rem;
  }
  
  .form-group input,
  .form-group textarea {
    padding: 0.5rem 0.75rem;
  }

  /* Mobile menu responsive */
  .glass-menu {
    min-width: 180px;
    padding: 18px 7px 14px 7px;
    right: 8px;
  }
}

@media (max-width: 450px) {
  .about-image {
    max-height: 500px; 
    border-radius: 20px;
  }
}