@font-face {
  font-family: 'ProximaNova-Regular';
  src: url("../fonts/ProximaNova-Regular.eot");
  src: url("../fonts/ProximaNova-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/ProximaNova-Regular.svg#ProximaNova-Regular") format("svg"), url("../fonts/ProximaNova-Regular.ttf") format("truetype"), url("../fonts/ProximaNova-Regular.woff") format("woff"), url("../fonts/ProximaNova-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'ProximaNova-Bold';
  src: url("../fonts/ProximaNova-Bold.eot");
  src: url("../fonts/ProximaNova-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/ProximaNova-Bold.svg#ProximaNova-Bold") format("svg"), url("../fonts/ProximaNova-Bold.ttf") format("truetype"), url("../fonts/ProximaNova-Bold.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
    font-family: 'Averta-Bold';
    src: url('../fonts/Averta-Bold.eot');
    src: url('../fonts/Averta-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Averta-Bold.woff2') format('woff2'),
        url('../fonts/Averta-Bold.woff') format('woff'),
        url('../fonts/Averta-Bold.ttf') format('truetype'),
        url('../fonts/Averta-Bold.svg#Averta-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: 'Averta-Regular';
    src: url('../fonts/AvertaStandard-Regular.eot');
    src: url('../fonts/AvertaStandard-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/AvertaStandard-Regular.woff2') format('woff2'),
        url('../fonts/AvertaStandard-Regular.woff') format('woff'),
        url('../fonts/AvertaStandard-Regular.ttf') format('truetype'),
        url('../fonts/AvertaStandard-Regular.svg#AvertaStandard-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
}

*{
    outline: none;
}
li{
  list-style-type: none;
}
body{
    font-family: 'Averta-Regular';
    font-size: 16px;
    color: #606060;
    line-height: 24px;
}

html {
    scroll-padding-top: 50px;
}

section[id], [id="home"] {
    scroll-margin-top: 50px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.logo img{max-width: 75px;}

.navbar {
    position: sticky;
    top: 0;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: rgba(255, 255, 255, 0.95);
    color: #333;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-item {
    margin-left: 2rem;
}

.nav-link {
    color: #333;
    text-decoration: none;
    padding: 15px 0 0 0;
}

.menu-toggle {
    display: none; /* Hidden on desktop */
    cursor: pointer;
}

.menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #333;
    transition: all 0.3s ease;
}

.menu-toggle.change .bar {
    background-color: #111111;
    box-shadow: 0 0 0 1px rgba(17,17,17,0.2);
}

.menu-toggle.change .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.change .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.change .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .menu-toggle {
        display: block; /* Show on mobile */
    }

    .nav-menu {
        position: fixed;
        left: -100%; /* Hide menu off-screen */
        top: 95px;
        flex-direction: column;
        background-color: #333;
        width: 100%;
        min-height: 100vh;
        text-align: center;
        transition: 0.3s;
        z-index: 99;
    }

    .nav-menu.active {
        left: 0; /* Slide menu into view */
    }

    .nav-item {
        margin: 1.5rem 0;
    }
    .nav-link,.nav-link.slide-link:hover{
      color: #fff !important;
    }

}

/*Slider*/

* { box-sizing: border-box; margin: 0; padding: 0; }

.carousel-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 500px;
  margin: 0px auto;
  overflow: hidden;
background-color: skyblue;
}

.carousel-slide {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
  transform: scale(1.05);
}

.slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Text Animation */
.carousel-caption {
  position: absolute;
  bottom: 18%;
  left: 8%;
  max-width: min(95%, 960px);
  color: #fff;
  z-index: 3;
  opacity: 0;
  transform: translateX(-30px) translateY(10px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  text-align: left;
  display: inline-block;
  padding: 22px 28px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(2, 6, 23, 0.82), rgba(15, 23, 42, 0.55));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}

.slide.active .carousel-caption {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

.carousel-caption h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  margin-bottom: 10px;
  font-family: 'Averta-Bold';
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.02em;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.6);
  transform: translateX(-25px);
  opacity: 0;
  transition: transform 0.6s ease 0.15s, opacity 0.6s ease 0.15s;
}

.carousel-caption p {
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  max-width: 900px;
  font-weight: 500;
  line-height: 1.7;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
  transform: translateX(-25px);
  opacity: 0;
  transition: transform 0.6s ease 0.3s, opacity 0.6s ease 0.3s;
}

.slide.active .carousel-caption h2,
.slide.active .carousel-caption p {
  transform: translateX(0);
  opacity: 1;
}

/* Nav Buttons */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.3);
  color: #fff;
  border: none;
  width: 50px;
  height: 50px;
  font-size: 1.5rem;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
  transition: background 0.3s;
}

.nav-btn:hover { background: rgba(255, 255, 255, 0.8); color: #000; }
#prevBtn { left: 20px; }
#nextBtn { right: 20px; }

/* Indicators */
.carousel-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}

.indicator {
  width: 15px;
  height: 15px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}

.indicator.active, .indicator:hover {
  background: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .carousel-container { height: 300px; }
  .carousel-caption h2 { font-size: 1.5rem; }
  .carousel-caption p { font-size: 1rem; }
  .nav-btn { width: 40px; height: 40px; font-size: 1.2rem; }
}



/*About Section*/

.about-section {
  padding: 80px 24px 40px;
  background: #f8fbff;
}

.about-card {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: center;
  background: #ffffff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.08);
}

.about-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.about-card:hover .about-image img {
  transform: scale(1.03);
}

.about-content {
  padding: 36px 36px 36px 10px;
}

.about-content h2 {
  font-size: 2rem;
  color: #0f172a;
  margin-bottom: 14px;
}

.about-content p {
  color: #5b6472;
  line-height: 1.8;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.about-highlights div {
  padding: 14px;
  border-radius: 16px;
  background: linear-gradient(135deg, #f2fbff, #eef7ff);
  text-align: center;
}

.about-highlights strong {
  display: block;
  font-size: 1.2rem;
  color: #0f172a;
}

.about-highlights span {
  display: block;
  margin-top: 4px;
  font-size: 0.85rem;
  color: #64748b;
}

@media (max-width: 900px) {
  .about-card {
    grid-template-columns: 1fr;
  }

  .about-content {
    padding: 24px;
  }
}

@media (max-width: 600px) {
  .about-highlights {
    grid-template-columns: 1fr;
  }
}

/*Products Section*/

.products-section {
  padding: 80px 24px 90px;
  background: linear-gradient(135deg, #f7fbff 0%, #eef7ff 100%);
}

.section-heading {
  max-width: 700px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(0, 210, 255, 0.14);
  color: #107ea8;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #0f172a;
}

.section-description {
  font-size: 1rem;
  color: #5b6472;
}

.products-carousel {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.products-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(270px, calc((100% - 48px) / 3));
  gap: 34px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  padding: 8px 0 12px;
  scrollbar-width: none;
}

.products-grid::-webkit-scrollbar {
  display: none;
}

.products-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.8);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
}

.products-nav-prev {
  left: -12px;
}

.products-nav-next {
  right: -12px;
}

.product-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  transform: translateY(20px);
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
  cursor: pointer;
  scroll-snap-align: start;
}

.product-card:nth-child(2) { animation-delay: 0.15s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }

.product-image-wrap {
  position: relative;
}

.product-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.product-variant-pill {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 78px;
  height: 78px;
  padding: 6px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.15);
  border: 1px solid rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 3;
}

.product-variant-pill img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.product-info {
  padding: 20px 20px 24px;
  position: relative;
  z-index: 2;
  transition: transform 0.35s ease;
}

.product-info h3 {
  font-size: 1.2rem;
  color: #0f172a;
  margin-bottom: 8px;
}

.product-info p {
  font-size: 0.95rem;
  color: #64748b;
  margin-bottom: 12px;
}

.product-badge {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: #e8f8ff;
  color: #107ea8;
  font-size: 0.8rem;
  font-weight: 600;
}

.product-hover {
  position: absolute;
  inset: auto 16px 16px 16px;
  padding: 18px;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.92);
  color: #fff;
  transform: translateY(24px) scale(0.96);
  opacity: 0;
  transition: all 0.35s ease;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 99;
}

.product-hover h3 {
  font-size: 1.1rem;
  margin-bottom: 2px;
}

.product-hover p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #e2e8f0;
}

.product-more-btn {
  align-self: flex-start;
  border: none;
  border-radius: 999px;
  padding: 8px 14px;
  background: #00d2ff;
  color: #05161d;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease;
}

.product-more-btn:hover {
  transform: translateY(-2px);
  background: #7ce9ff;
}

.product-card:hover img {
  transform: scale(1.05);
}

.product-card:hover .product-info {
  transform: translateY(-4px);
}

.product-card:hover .product-hover {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-section {
  position: relative;
  padding: 90px 24px 110px;
  background: linear-gradient(120deg, #07111f 0%, #112745 100%);
  overflow: hidden;
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(0, 210, 255, 0.2), transparent 32%), radial-gradient(circle at bottom right, rgba(125, 211, 252, 0.16), transparent 30%);
  pointer-events: none;
}

.contact-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-heading {
  text-align: center;
  color: #fff;
  max-width: 700px;
  margin: 0 auto 40px;
}

.contact-heading h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.contact-heading p {
  color: #cbd5e1;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.contact-card {
  position: relative;
  padding: 28px 22px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  transform: translateY(20px);
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.contact-card:nth-child(2) { animation-delay: 0.15s; }
.contact-card:nth-child(3) { animation-delay: 0.3s; }

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 36px rgba(0, 210, 255, 0.2);
  border-color: rgba(0, 210, 255, 0.45);
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #00d2ff, #38bdf8);
  color: #03111d;
  font-size: 1.1rem;
  animation: pulse 2.2s infinite;
}

.contact-card h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.contact-card p {
  color: #dbeafe;
  line-height: 1.7;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

.product-modal {
  position: fixed;
  inset: 0;
  background: rgba(2, 8, 23, 0.72);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
}

.product-modal.active {
  opacity: 1;
  visibility: visible;
}

/* Default modal content: constrained card */
.product-modal-content {
  position: relative;
  width: min(900px, 90%);
  max-height: 85vh;
  background: linear-gradient(135deg, #ffffff, #f8fbff);
  border: 1px solid rgba(14, 165, 233, 0.16);
  border-radius: 24px;
  padding: 32px 34px 28px;
  box-shadow: 0 24px 60px rgba(2, 8, 23, 0.25);
  transform: translateY(20px) scale(0.98);
  transition: transform 0.35s cubic-bezier(.2,.9,.3,1), opacity 0.25s ease;
  overflow: auto;
  color: #0f172a;
}

.product-modal-content h3 {
  margin: 0 0 8px;
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 700;
  color: #0f172a;
}

.modal-product-visual {
  margin: 16px 0 18px;
  padding: 16px;
  border-radius: 20px;
  background: linear-gradient(135deg, #f7fbff 0%, #eef7ff 45%, #fdfefe 100%);
  border: 1px solid rgba(14, 165, 233, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.modal-product-visual img {
  width: 100%;
  max-height: 260px;
  object-fit: contain;
  display: block;
  border-radius: 14px;
  background: linear-gradient(135deg, #ffffff, #f5faff);
}

#modalDescription {
  margin: 0 0 12px;
  font-size: 1rem;
  line-height: 1.7;
  color: #475569;
}

.modal-details-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 14px;
  padding: 10px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0ea5e9, #38bdf8);
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(14, 165, 233, 0.18);
}

.modal-details-link:hover {
  color: #ffffff;
  transform: translateY(-1px);
}

/* Fullscreen style when modal is active for immersive view */
.product-modal.active .product-modal-content {
  width: 100%;
  height: 100%;
  max-height: 100%;
  border-radius: 15px;
  padding: 40px 32px;
  transform: translateY(0) scale(1);
  animation: modalFullscreenIn 360ms cubic-bezier(.2,.9,.3,1);
}

@keyframes modalFullscreenIn {
  from { transform: translateY(10vh) scale(0.98); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}

.product-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  border: none;
  background: #f1f5f9;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  color: #475569;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
}

.product-modal-close:hover {
  background: #e2e8f0;
  color: #0f172a;
}

.modal-category {
  display: inline-block;
  margin: 0 0 12px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #e8f8ff;
  color: #107ea8;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.modal-benefits {
  margin-top: 14px;
  padding: 16px 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, #f8fbff, #eef9ff);
  color: #334155;
  line-height: 1.8;
  border: 1px solid #dbeafe;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
}

.modal-benefits {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.modal-benefit-heading {
  margin-top: 8px;
  margin-bottom: 2px;
  color: #0f766e;
  font-weight: 700;
}

.modal-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #334155;
  line-height: 1.7;
}

.modal-benefit-arrow {
  color: #0ea5e9;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-top: 1px;
}

@media (max-width: 640px) {
  .product-modal-content {
    padding: 24px 20px;
  }

  .product-modal-close {
    top: 10px;
    right: 10px;
  }
}

.product-details-page {
  padding: 40px 24px 80px;
  background: linear-gradient(135deg, #f8fbff 0%, #eef7ff 100%);
}

.product-hero {
  max-width: 1200px;
  margin: 0 auto 32px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: center;
  background: #ffffff;
  padding: 32px;
  border-radius: 28px;
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.08);
}

.product-hero h1 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: #0f172a;
  margin-bottom: 14px;
}

.product-intro {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #475569;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 24px;
}

.product-meta span {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: #e8f8ff;
  color: #107ea8;
  font-size: 0.85rem;
  font-weight: 700;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #00d2ff, #38bdf8);
  color: #03111d;
}

.btn-secondary {
  background: #f1f5f9;
  color: #0f172a;
}

.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-2px);
}

.product-hero-image-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.product-hero-image {
  padding: 12px;
  border-radius: 22px;
  background: linear-gradient(135deg, #f7fbff 0%, #eef7ff 45%, #fdfefe 100%);
  border: 1px solid rgba(14, 165, 233, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.product-hero-image img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: contain;
  display: block;
  border-radius: 16px;
  background: linear-gradient(135deg, #ffffff, #f5faff);
}

.product-section-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.product-highlight-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
}

.product-highlight-card h2 {
  font-size: 1.2rem;
  color: #0f172a;
  margin-bottom: 12px;
}

.product-highlight-card p,
.product-highlight-card li {
  color: #475569;
  line-height: 1.8;
}

.product-highlight-card ul {
  padding-left: 18px;
}

.product-highlight-card li {
  margin-bottom: 8px;
}

.product-contact-panel {
  max-width: 1200px;
  margin: 0 auto 30px;
  padding: 28px;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #07111f 0%, #0f4c81 45%, #1d9bf0 100%);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 24px 60px rgba(7, 17, 31, 0.32);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.product-contact-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.22), transparent 35%, rgba(255, 255, 255, 0.12));
  pointer-events: none;
}

.product-contact-heading {
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
  text-align: center;
}

.product-contact-heading h2 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: #fff;
  margin-bottom: 6px;
  font-family: 'Averta-Bold';
}

.product-contact-items {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.product-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
  min-height: 110px;
}

.product-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  flex-shrink: 0;
}

.product-contact-item strong {
  display: block;
  color: #fff;
  margin-bottom: 4px;
}

.product-contact-item p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 900px) {
  .product-hero {
    grid-template-columns: 1fr;
  }

  .product-hero-image-stack {
    grid-template-columns: 1fr 1fr;
  }

  .product-section-grid {
    grid-template-columns: 1fr;
  }

  .product-contact-panel {
    padding: 24px;
  }

  .product-contact-items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .product-hero-image-stack {
    grid-template-columns: 1fr;
  }

  .product-contact-panel {
    padding: 18px;
    border-radius: 22px;
  }

  .product-contact-items {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .product-contact-item {
    padding: 12px 13px;
    min-height: auto;
    align-items: center;
  }

  .product-contact-icon {
    width: 36px;
    height: 36px;
    font-size: 0.95rem;
  }

  .product-contact-heading {
    margin-bottom: 12px;
  }

  .product-contact-item strong,
  .product-contact-item p {
    word-break: break-word;
    overflow-wrap: anywhere;
  }
}

/*Footer*/


    body {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
    }

    /* Footer Container */
    .animated-footer {
      background-color: #111215;
      color: #ffffff;
      padding: 60px 40px 30px;
      width: 100%;
    }

    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 40px;
      margin-bottom: 40px;
    }

    .footer-column h3 {
      font-size: 1.2rem;
      margin-bottom: 25px;
      color: #00d2ff;
      position: relative;
    }

    .footer-column ul {
      list-style: none;
    }

    .footer-column ul li {
      margin-bottom: 15px;
      text-decoration: none;
    }

    /* ===================================================
       HOVER EFFECT 1: Sliding Underline (Links)
    =================================================== */
    .slide-link {
      color: #818182;
      text-decoration: none;
      font-size: 1rem;
      position: relative;
      padding-bottom: 4px;
      transition: color 0.3s ease;
    }

    .slide-link::after {
      content: '';
      position: absolute;
      width: 100%;
      transform: scaleX(0);
      height: 2px;
      bottom: 0;
      left: 0;
      background-color: #00d2ff;
      transform-origin: bottom right;
      transition: transform 0.3s ease-out;
    }

    .slide-link:hover {
      color: #ffffff;
    }

    .nav-link.slide-link:hover{
      color:#333;
    }



    .slide-link:hover::after {
      transform: scaleX(1);
      transform-origin: bottom left;
    }

    /* ===================================================
       HOVER EFFECT 2: Floating Glow (Social Icons)
    =================================================== */
    .social-icons {
      display: flex;
      gap: 15px;
      margin-top: 15px;
    }

    .social-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 45px;
      height: 45px;
      background: #1f2126;
      color: #ffffff;
      text-decoration: none;
      border-radius: 50%;
      font-size: 1.2rem;
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .social-icon:hover {
      background: #00d2ff;
      color: #111215;
      transform: translateY(-8px);
      box-shadow: 0 10px 20px rgba(0, 210, 255, 0.4);
    }

    /* ===================================================
       HOVER EFFECT 3: Liquid Fill Button (Newsletter)
    =================================================== */
    .newsletter-form {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .newsletter-input {
      padding: 12px;
      background: #1f2126;
      border: 1px solid #2d3037;
      border-radius: 4px;
      color: #fff;
      outline: none;
      transition: border-color 0.3s ease;
    }

    .newsletter-input:focus {
      border-color: #00d2ff;
    }

    .liquid-button {
      position: relative;
      padding: 12px 24px;
      background: transparent;
      border: 2px solid #00d2ff;
      color: #00d2ff;
      font-size: 1rem;
      font-weight: 600;
      border-radius: 4px;
      cursor: pointer;
      overflow: hidden;
      transition: color 0.4s ease;
      z-index: 1;
    }

    .liquid-button::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: #00d2ff;
      transform: translateY(100%);
      transition: transform 0.4s cubic-bezier(0.3, 1, 0.8, 1);
      z-index: -1;
    }

    .liquid-button:hover {
      color: #111215;
    }

    .liquid-button:hover::before {
      transform: translateY(0);
    }

    /* Footer Bottom Credits */
    .footer-bottom {
      max-width: 1200px;
      margin: 0 auto;
      padding-top: 25px;
      border-top: 1px solid #2d3037;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 15px;
      font-size: 0.9rem;
      color: #727479;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .animated-footer {
        padding: 40px 20px 20px;
      }
      .footer-bottom {
        flex-direction: column;
        text-align: center;
      }
    }

    ul li a {
    text-decoration: none !important;
}