@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input, button, textarea, select {
  font: inherit;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

body {
  font-family: "Days One", sans-serif;
  background: linear-gradient(180deg, #06040d 0%, #0b071e 35%, #110b2c 70%, #030208 100%);
  color: #ffffff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
}

main {
  flex: 1;
}

.container {
  width: 100%;
  max-width: clamp(1200px, 90vw, 1500px);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 3rem);
}

section {
  padding-block: clamp(3rem, 8vw, 8rem);
  position: relative;
  overflow: hidden;
}

h1 {
  font-size: clamp(2rem, 5vw, 4.5rem);
  line-height: 1.1;
  font-weight: 700;
}

h2 {
  font-size: clamp(1.5rem, 3.5vw, 3rem);
  line-height: 1.2;
}

h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  line-height: 1.3;
}

p {
  font-size: clamp(0.85rem, 1vw + 0.5rem, 1.1rem);
  line-height: 1.6;
  color: #cbd5e1;
}

.grid {
  display: grid;
  gap: clamp(1rem, 3vw, 3rem);
}

.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(1rem, 3vw, 2.5rem);
}

.col-span-1 {
  grid-column: span 1/span 1;
}

.col-span-2 {
  grid-column: span 2/span 2;
}

.col-span-3 {
  grid-column: span 3/span 3;
}

.col-span-4 {
  grid-column: span 4/span 4;
}

.col-span-5 {
  grid-column: span 5/span 5;
}

.col-span-6 {
  grid-column: span 6/span 6;
}

.col-span-7 {
  grid-column: span 7/span 7;
}

.col-span-8 {
  grid-column: span 8/span 8;
}

.col-span-9 {
  grid-column: span 9/span 9;
}

.col-span-10 {
  grid-column: span 10/span 10;
}

.col-span-11 {
  grid-column: span 11/span 11;
}

.col-span-12 {
  grid-column: span 12/span 12;
}

@media (max-width: 768px) {
  [class*=col-span-] {
    grid-column: span 12/span 12;
  }
}
.grid-auto-fit {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1rem, 2.5vw, 2rem);
}

.grid-auto-fill {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: clamp(1rem, 2.5vw, 2rem);
}

.flex-row {
  display: flex;
  gap: clamp(0.5rem, 1.5vw, 1.5rem);
  align-items: center;
}

.flex-col {
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1.5vw, 1.5rem);
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(6, 4, 13, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}
.navbar.scrolled {
  background: rgba(3, 2, 8, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.navbar .nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: clamp(70px, 8vw, 95px);
}
.navbar .logo-link {
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 10px;
}
.navbar .logo-link .logo-img {
  height: clamp(55px, 4vw, 75px);
  width: auto;
  object-fit: contain;
}
.navbar .logo-link .logo-link-heading {
  font-size: 1.1rem;
  letter-spacing: 1px;
}
.navbar .nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2.5rem);
}
.navbar .nav-menu .nav-item {
  position: relative;
}
.navbar .nav-menu .nav-link {
  font-size: clamp(0.75rem, 1vw, 0.95rem);
  font-weight: 400;
  color: #cbd5e1;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
}
.navbar .nav-menu .nav-link:hover {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(0, 158, 255, 0.8);
}
.navbar .nav-menu .nav-link.active {
  color: #ffffff;
  background: rgba(0, 158, 255, 0.25);
  box-shadow: 0 0 20px rgba(0, 158, 255, 0.4), inset 0 0 10px rgba(0, 158, 255, 0.2);
  border: 1px solid rgba(0, 158, 255, 0.4);
}
.navbar .hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1100;
  padding: 0;
}
.navbar .hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease, width 0.3s ease;
  transform-origin: center;
}
.navbar .hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.navbar .hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.navbar .hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 768px) {
  .navbar .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(6, 4, 13, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1.25rem;
    align-items: stretch;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
  }
  .navbar .nav-menu .nav-link {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.8rem 1.5rem;
    font-size: 1.1rem;
  }
  .navbar .nav-menu .nav-link.active {
    background: rgba(0, 158, 255, 0.3);
  }
  .navbar .logo-link .logo-link-heading {
    font-size: 0.9rem;
  }
  .navbar .hamburger {
    display: flex;
  }
}
.footer {
  background: #f8fafc;
  color: #0f172a;
  padding-block: clamp(3rem, 6vw, 6rem) clamp(1.5rem, 3vw, 2.5rem);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.footer .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: clamp(2rem, 5vw, 4rem);
  margin-bottom: clamp(2rem, 5vw, 4rem);
}
.footer .footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.footer .footer-brand .footer-logo {
  display: flex;
  align-items: center;
}
.footer .footer-brand .footer-logo .logo-img {
  height: clamp(65px, 6vw, 90px);
  width: auto;
  object-fit: contain;
}
.footer .footer-brand .brand-desc {
  color: #64748b;
  font-size: clamp(0.85rem, 0.95vw, 1.05rem);
  line-height: 1.6;
  max-width: 420px;
}
.footer .footer-title {
  font-size: clamp(1.1rem, 1.3vw, 1.4rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  position: relative;
}
.footer .footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.footer .footer-links .footer-link {
  font-size: clamp(0.85rem, 0.95vw, 1rem);
  color: #64748b;
  transition: all 0.2s ease;
  display: inline-block;
}
.footer .footer-links .footer-link:hover {
  color: #0076ff;
  transform: translateX(5px);
}
.footer .footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.footer .footer-contacts .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: clamp(0.85rem, 0.95vw, 1rem);
  color: #64748b;
}
.footer .footer-contacts .contact-item .contact-icon {
  width: 20px;
  height: 20px;
  color: #0076ff;
  flex-shrink: 0;
  margin-top: 0.2rem;
}
.footer .footer-contacts .contact-item .contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.footer .footer-contacts .contact-item .contact-details .contact-label {
  font-weight: 700;
  color: #0f172a;
}
.footer .footer-contacts .contact-item .contact-details .contact-val {
  transition: color 0.2s ease;
}
.footer .footer-contacts .contact-item .contact-details .contact-val:hover {
  color: #0076ff;
}
.footer .footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: #64748b;
}
.footer .footer-bottom .footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}
.footer .footer-bottom .footer-bottom-links a {
  transition: color 0.2s ease;
}
.footer .footer-bottom .footer-bottom-links a:hover {
  color: #0076ff;
}

@media (max-width: 1024px) {
  .footer .footer-grid {
    grid-template-columns: 1.2fr 0.8fr 1.2fr;
  }
}
@media (max-width: 768px) {
  .footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer .footer-bottom .footer-bottom-links {
    justify-content: center;
  }
}
.hero-section {
  position: relative;
  min-height: clamp(650px, 85vh, 850px);
  padding-block: clamp(6rem, 10vw, 10rem) clamp(6rem, 10vw, 10rem);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-section .hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(3rem, 6vw, 8rem);
  width: 100%;
  padding-inline: 10px;
}
.hero-section .carousel-slides-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  width: 100%;
  z-index: 2;
}
.hero-section .carousel-slide {
  grid-area: 1/1;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
  z-index: 1;
  display: flex;
  align-items: center;
  width: 100%;
}
.hero-section .carousel-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}
.hero-section .hero-content {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.8rem);
  text-align: left;
}
.hero-section .hero-content .hero-title {
  font-family: "Days One", sans-serif;
  font-size: clamp(1.8rem, 3.2vw, 3.2rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  margin: 0;
  text-align: left;
}
.hero-section .hero-content .hero-desc {
  font-family: "Days One", sans-serif;
  font-size: clamp(0.85rem, 0.95vw, 1.05rem);
  color: #cbd5e1;
  line-height: 1.65;
  max-width: 580px;
  margin: 0;
  text-align: left;
}
.hero-section .serving-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  width: 100%;
}
.hero-section .serving-wrapper .serving-text {
  font-family: "Days One", sans-serif;
  font-size: clamp(1.8rem, 3.2vw, 3.2rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  text-transform: capitalize;
  margin: 0;
  text-align: left;
  display: block;
}
.hero-section .hero-media {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 439px;
  justify-self: center;
}
.hero-section .hero-media .circle-container {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: clamp(8px, 1.8vw, 24px) solid #c5c9d6;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(0, 158, 255, 0.25);
  overflow: hidden;
  transform: translate3d(0, 0, 0);
}
.hero-section .hero-media .circle-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-section .hero-media .sphere {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #00d2ff 0%, #005bc4 60%, #002e7a 100%);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), inset -8px -8px 20px rgba(0, 0, 0, 0.6), inset 8px 8px 15px rgba(255, 255, 255, 0.4);
  filter: drop-shadow(0 0 10px rgba(0, 158, 255, 0.3));
  z-index: 10;
  animation: float-slow-homepage 6s ease-in-out infinite alternate;
}
.hero-section .hero-media .sphere.sphere-large {
  width: 30%;
  height: 30%;
  top: -10%;
  left: 80%;
}
.hero-section .hero-media .sphere.sphere-medium {
  width: 20%;
  height: 20%;
  top: -20%;
  left: 60%;
}
.hero-section .hero-media .sphere.sphere-small {
  width: 15%;
  height: 15%;
  top: 75%;
  left: 87%;
}
.hero-section .hero-static-layout {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  z-index: 5;
  pointer-events: none;
  display: flex;
  align-items: center;
}
.hero-section .hero-static-layout .container {
  width: 100%;
}
.hero-section .hero-static-layout .hero-media-static {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 500px;
  justify-self: center;
}
.hero-section .hero-static-layout .hero-media-static .sphere {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #00d2ff 0%, #005bc4 60%, #002e7a 100%);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), inset -8px -8px 20px rgba(0, 0, 0, 0.6), inset 8px 8px 15px rgba(255, 255, 255, 0.4);
  filter: drop-shadow(0 0 10px rgba(0, 158, 255, 0.3));
  z-index: 10;
}
.hero-section .hero-static-layout .hero-media-static .sphere.sphere-small {
  width: 15%;
  height: 15%;
  top: 10%;
  right: 8%;
}
.hero-section .hero-static-layout .hero-media-static .sphere.sphere-large {
  width: 25%;
  height: 25%;
  bottom: 15%;
  right: -8%;
}
.hero-section .hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1rem;
}
.hero-section .hero-ctas .btn {
  font-family: "Days One", sans-serif;
  font-size: clamp(0.8rem, 0.9vw, 1rem);
  font-weight: 700;
  color: #ffffff;
  height: 54px;
  padding-inline: 2.2rem;
  border-radius: 27px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  background: linear-gradient(135deg, #009eff 0%, #0076ff 100%);
  box-shadow: 0 10px 25px rgba(0, 158, 255, 0.3);
}
.hero-section .hero-ctas .btn:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(0, 158, 255, 0.45);
}
.hero-section .hero-ctas .btn.btn-secondary {
  background: linear-gradient(135deg, #009eff 0%, #0076ff 100%);
}
.hero-section .hero-ctas .btn .btn-icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid #ffffff;
}
.hero-section .hero-ctas .btn .btn-icon-circle svg {
  width: 10px;
  height: 10px;
  fill: #ffffff;
}
.hero-section .carousel-dots {
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
}
.hero-section .carousel-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffffff;
  opacity: 0.5;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}
.hero-section .carousel-dots .dot.active {
  width: 10px;
  height: 10px;
  background: #009eff;
  opacity: 1;
  box-shadow: 0 0 10px rgba(0, 158, 255, 0.6);
}

@keyframes float-slow-homepage {
  0% {
    transform: translateY(0) scale(1);
  }
  100% {
    transform: translateY(-8px) scale(1.02);
  }
}
@media (max-width: 768px) {
  .hero-section {
    padding-block: clamp(5rem, 12vw, 8rem) clamp(4rem, 10vw, 6rem);
    min-height: auto;
  }
  .hero-section .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
    padding-inline: clamp(1rem, 4vw, 3rem);
  }
  .hero-section .hero-grid .carousel-text-wrapper {
    text-align: center;
  }
  .hero-section .carousel-slide {
    align-items: flex-start;
  }
  .hero-section .hero-content {
    align-items: center;
  }
  .hero-section .hero-content .hero-title {
    text-align: center;
  }
  .hero-section .hero-content .hero-desc {
    text-align: center;
  }
  .hero-section .serving-wrapper .serving-text {
    text-align: center;
  }
  .hero-section .hero-media {
    max-width: 340px;
    order: -1;
  }
  .hero-section .hero-media .sphere.sphere-large {
    width: 32%;
    height: 32%;
    top: -9%;
    left: 2%;
  }
  .hero-section .hero-media .sphere.sphere-medium {
    width: 18%;
    height: 18%;
    top: -1%;
    left: 58%;
  }
  .hero-section .hero-media .sphere.sphere-small {
    width: 12%;
    height: 12%;
    top: 9%;
    left: 71%;
  }
  .hero-section .hero-static-layout {
    top: 0;
    transform: none;
    height: 100%;
    padding-top: clamp(5rem, 12vw, 8rem);
  }
  .hero-section .hero-static-layout .hero-media-static {
    max-width: 340px;
    order: -1;
  }
  .hero-section .hero-static-layout .hero-media-static .sphere.sphere-small {
    width: 13%;
    height: 13%;
    top: 11%;
    right: 10%;
  }
  .hero-section .hero-static-layout .hero-media-static .sphere.sphere-large {
    width: 22%;
    height: 22%;
    bottom: 16%;
    right: -3%;
  }
  .hero-section .hero-ctas {
    flex-direction: column;
    width: 100%;
  }
  .hero-section .hero-ctas .btn {
    width: 100%;
  }
  .hero-section .carousel-dots {
    bottom: 20px;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: clamp(0.75rem, 1.2vw, 1rem) clamp(1.5rem, 2.5vw, 2.25rem);
  font-family: "Days One", sans-serif;
  font-size: clamp(0.75rem, 0.9vw, 0.95rem);
  font-weight: 400;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}
.btn.btn-primary {
  background: linear-gradient(135deg, #009eff 0%, #0076ff 100%);
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(0, 158, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.btn.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 158, 255, 0.5), 0 0 15px rgba(0, 158, 255, 0.4);
}
.btn.btn-primary:active {
  transform: translateY(-1px);
}
.btn.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
.btn.btn-secondary:active {
  transform: translateY(-1px);
}
.btn.btn-secondary .btn-icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(20px, 2vw, 26px);
  height: clamp(20px, 2vw, 26px);
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  margin-left: 0.25rem;
}
.btn.btn-secondary .btn-icon-circle svg {
  width: 60%;
  height: 60%;
  color: #ffffff;
}

.btn-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(40px, 4vw, 55px);
  height: clamp(40px, 4vw, 55px);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.btn-circle svg {
  width: 40%;
  height: 40%;
  transition: transform 0.3s ease;
}
.btn-circle:hover {
  background: #009eff;
  border-color: #009eff;
  color: #ffffff;
  box-shadow: 0 0 15px rgba(0, 158, 255, 0.4);
  transform: scale(1.08);
}
.btn-circle:hover svg {
  transform: translateX(2px);
}
.btn-circle.btn-circle-dark {
  background: #e2e8f0;
  color: #0f172a;
  border-color: #cbd5e1;
}
.btn-circle.btn-circle-dark:hover {
  background: #0076ff;
  color: #ffffff;
  border-color: #0076ff;
}

.about-card-container {
  background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
  border-radius: clamp(24px, 3vw, 40px);
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4), inset 0 1px 3px rgba(255, 255, 255, 0.6);
  padding: clamp(2rem, 5vw, 5rem);
  color: #0f172a;
  position: relative;
  overflow: hidden;
}
.about-card-container .about-card-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.about-card-container .about-card-left {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 2.5rem);
}
.about-card-container .about-card-left .section-tag-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.about-card-container .about-card-left .section-tag-wrapper .section-tag {
  font-size: clamp(0.95rem, 1.2vw, 1.3rem);
  color: #0076ff;
  font-weight: 700;
}
.about-card-container .about-card-left .section-tag-wrapper .tag-underline {
  width: 70px;
  height: 3px;
  background: #0076ff;
  border-radius: 2px;
}
.about-card-container .about-card-left .about-card-title {
  font-size: clamp(1.8rem, 3.2vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  color: #0f172a;
}
.about-card-container .about-card-left .about-card-title .highlight-blue {
  color: #0076ff;
}
.about-card-container .about-card-right {
  position: relative;
  width: 100%;
  height: clamp(380px, 35vw, 480px);
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.about-card-container .about-card-right .card-stack {
  position: relative;
  width: clamp(340px, 28vw, 420px);
  height: clamp(340px, 28vw, 420px);
}
.about-card-container .about-card-right .stacked-card {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: clamp(16px, 2vw, 24px);
  background: #ffffff;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15), 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
}
.about-card-container .about-card-right .stacked-card .card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-card-container .about-card-right .stacked-card.card-active {
  z-index: 30;
  transform: translate3d(0, 0, 0) scale(1);
  opacity: 1;
  pointer-events: auto;
}
.about-card-container .about-card-right .stacked-card.card-behind-1 {
  z-index: 20;
  transform: translate3d(-30px, 0, 0) scale(0.93);
  opacity: 0.8;
  pointer-events: none;
  filter: blur(0.5px);
}
.about-card-container .about-card-right .stacked-card.card-behind-2 {
  z-index: 15;
  transform: translate3d(-60px, 0, 0) scale(0.86);
  opacity: 0.5;
  pointer-events: none;
  filter: blur(1px);
}
.about-card-container .about-card-right .stacked-card.card-behind-3 {
  z-index: 10;
  transform: translate3d(-90px, 0, 0) scale(0.79);
  opacity: 0.2;
  pointer-events: none;
  filter: blur(1.5px);
}
.about-card-container .about-card-right .stack-controls {
  position: absolute;
  bottom: -40px;
  right: 0;
  display: flex;
  gap: 1rem;
  z-index: 40;
}

@media (max-width: 768px) {
  .about-card-container {
    padding: clamp(1.5rem, 4vw, 3rem);
  }
  .about-card-container .about-card-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .about-card-container .about-card-right {
    justify-content: center;
    height: clamp(380px, 45vw, 420px);
  }
  .about-card-container .about-card-right .card-stack {
    width: clamp(310px, 75vw, 370px);
    height: clamp(310px, 75vw, 370px);
  }
  .about-card-container .about-card-right .stacked-card.card-behind-1 {
    transform: translate3d(-15px, 0, 0) scale(0.93);
  }
  .about-card-container .about-card-right .stacked-card.card-behind-2 {
    transform: translate3d(-30px, 0, 0) scale(0.86);
  }
  .about-card-container .about-card-right .stacked-card.card-behind-3 {
    transform: translate3d(-45px, 0, 0) scale(0.79);
  }
  .about-card-container .about-card-right .stack-controls {
    bottom: -50px;
    right: 50%;
    transform: translateX(50%);
  }
}
@keyframes slide-up-in {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slide-up-out {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-100%);
    opacity: 0;
  }
}
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: opacity, transform;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: opacity, transform;
}
.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: opacity, transform;
}
.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.delay-100 {
  transition-delay: 100ms;
}

.delay-200 {
  transition-delay: 200ms;
}

.delay-300 {
  transition-delay: 300ms;
}

.delay-400 {
  transition-delay: 400ms;
}

.delay-500 {
  transition-delay: 500ms;
}

.delay-600 {
  transition-delay: 600ms;
}

.delay-700 {
  transition-delay: 700ms;
}

.delay-800 {
  transition-delay: 800ms;
}

.delay-900 {
  transition-delay: 900ms;
}

.delay-1000 {
  transition-delay: 1000ms;
}

.carousel-text-wrapper {
  display: grid;
  overflow: hidden;
}

.carousel-text {
  grid-area: 1/1;
  color: #009eff;
  font-size: clamp(1.8rem, 3.2vw, 3.2rem);
  line-height: 1.25;
  font-family: "Days One", sans-serif;
  font-weight: 700;
  display: block;
  width: 100%;
  opacity: 0;
  transform: translateY(100%);
}
.carousel-text.slide-in {
  animation: slide-in-anim 600ms cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
.carousel-text.slide-out {
  animation: slide-out-anim 600ms cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes slide-in-anim {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slide-out-anim {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-100%);
  }
}
@media (min-width: 1600px) {
  .container {
    max-width: 1500px;
  }
}
@media (max-width: 768px) {
  a, button, .btn, .nav-link {
    min-height: 44px;
  }
}
@media (max-width: 360px) {
  .hero-section .hero-content .hero-ctas {
    flex-direction: column;
    width: 100%;
  }
  .hero-section .hero-content .hero-ctas .btn {
    width: 100%;
  }
}
.sphere-container {
  position: relative;
  width: 100%;
}

.about-sphere {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #00d2ff 0%, #005bc4 55%, #001f54 100%);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45), inset -8px -8px 20px rgba(0, 0, 0, 0.6), inset 8px 8px 15px rgba(255, 255, 255, 0.45);
  filter: drop-shadow(0 0 12px rgba(0, 158, 255, 0.25));
  z-index: 10;
  pointer-events: none;
}

.about-firm-section {
  padding-block: clamp(4rem, 8vw, 8rem) clamp(3rem, 6vw, 6rem);
  position: relative;
}
.about-firm-section .about-firm-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2.5rem, 5vw, 6rem);
  align-items: center;
}
.about-firm-section .about-firm-left {
  display: flex;
  flex-direction: column;
  gap: clamp(1.2rem, 2vw, 2.5rem);
}
.about-firm-section .about-firm-left .section-title-italic {
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-style: italic;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.about-firm-section .about-firm-left .about-firm-desc {
  font-size: clamp(0.9rem, 1.1vw, 1.15rem);
  line-height: 1.7;
  color: #cbd5e1;
}
.about-firm-section .about-firm-left .stats-row {
  display: flex;
  gap: clamp(2.5rem, 6vw, 6rem);
  margin-top: 0.5rem;
}
.about-firm-section .about-firm-left .stats-row .stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.about-firm-section .about-firm-left .stats-row .stat-item .stat-number-wrapper {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}
.about-firm-section .about-firm-left .stats-row .stat-item .stat-number-wrapper .stat-number {
  display: inline-block;
  font-family: inherit;
}
.about-firm-section .about-firm-left .stats-row .stat-item .stat-label {
  font-size: clamp(0.75rem, 0.95vw, 1rem);
  color: #cbd5e1;
  text-transform: capitalize;
}
.about-firm-section .about-firm-right {
  position: relative;
  justify-self: center;
  width: 100%;
  max-width: 440px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-firm-section .about-firm-right .logo-card-stack {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 380px;
}
.about-firm-section .about-firm-right .logo-card-stack::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: clamp(24px, 3vw, 40px);
  transform: rotate(-6deg);
  z-index: 1;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}
.about-firm-section .about-firm-right .logo-card-front {
  position: relative;
  width: 100%;
  height: 100%;
  background: #ffffff;
  border-radius: clamp(24px, 3vw, 40px);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.4), inset 0 1px 3px rgba(255, 255, 255, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 4vw, 4rem);
  z-index: 2;
}
.about-firm-section .about-firm-right .logo-card-front::after {
  content: "";
  position: absolute;
  top: -1px;
  right: -1px;
  width: 45px;
  height: 45px;
  background: linear-gradient(225deg, transparent 50%, rgba(0, 0, 0, 0.08) 50%, rgba(0, 0, 0, 0.12) 100%);
  border-bottom-left-radius: 12px;
  border-top-right-radius: clamp(24px, 3vw, 40px);
  box-shadow: -3px 3px 5px rgba(0, 0, 0, 0.15);
}
.about-firm-section .about-firm-right .logo-card-front .logo-img {
  width: 65%;
  height: auto;
  object-fit: contain;
}
.about-firm-section .about-firm-right .logo-sphere-1 {
  width: clamp(35px, 6vw, 55px);
  height: clamp(35px, 6vw, 55px);
  top: -12px;
  right: -12px;
  z-index: 3;
}
.about-firm-section .about-firm-right .logo-sphere-2 {
  width: clamp(70px, 10vw, 95px);
  height: clamp(70px, 10vw, 95px);
  bottom: 15px;
  right: -45px;
  z-index: 3;
}

.about-panel-section {
  padding-block: clamp(3rem, 6vw, 6rem);
  position: relative;
}
.about-panel-section .panel-card {
  background: #0b70b5;
  border-radius: clamp(24px, 3vw, 40px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35), inset 0 1px 2px rgba(255, 255, 255, 0.3);
  padding: clamp(2.5rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  gap: clamp(1.2rem, 2vw, 2rem);
  position: relative;
  z-index: 2;
}
.about-panel-section .panel-card .panel-title {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 700;
  color: #ffffff;
}
.about-panel-section .panel-card .panel-desc {
  font-size: clamp(0.9rem, 1.1vw, 1.15rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  max-width: 960px;
}
.about-panel-section .panel-card .panel-desc + .panel-desc {
  margin-top: 0.5rem;
}
.about-panel-section .mission-sphere-1 {
  width: clamp(80px, 12vw, 115px);
  height: clamp(80px, 12vw, 115px);
  top: 50%;
  left: -50px;
  transform: translateY(-50%);
}
.about-panel-section .mission-sphere-2 {
  width: clamp(35px, 5vw, 50px);
  height: clamp(35px, 5vw, 50px);
  top: 5px;
  right: -10px;
}
.about-panel-section .mission-sphere-3 {
  width: clamp(65px, 9vw, 85px);
  height: clamp(65px, 9vw, 85px);
  top: 52%;
  right: -40px;
  transform: translateY(-50%);
}
.about-panel-section .why-sphere-1 {
  width: clamp(70px, 10vw, 100px);
  height: clamp(70px, 10vw, 100px);
  top: -20px;
  left: -40px;
}
.about-panel-section .why-sphere-2 {
  width: clamp(40px, 6vw, 60px);
  height: clamp(40px, 6vw, 60px);
  top: 45%;
  right: -25px;
  transform: translateY(-50%);
}
.about-panel-section .why-sphere-3 {
  width: clamp(80px, 12vw, 125px);
  height: clamp(80px, 12vw, 125px);
  bottom: -50px;
  right: 25px;
}

.about-cta-section {
  padding-block: clamp(4rem, 8vw, 8rem);
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}
.about-cta-section .cta-banner-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 15px 30px rgba(0, 5, 30, 0.7));
  padding: 6rem 0;
}
.about-cta-section .cta-banner-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.about-cta-section .cta-text-container {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-inline: clamp(1rem, 5vw, 4rem);
  text-align: center;
}
.about-cta-section .cta-title {
  font-family: "Days One", sans-serif;
  font-size: clamp(1.4rem, 3.2vw, 3.2rem);
  font-weight: 700;
  line-height: 1.35;
  color: #0c4cb4;
  max-width: 1100px;
  margin-inline: auto;
  letter-spacing: 0.5px;
}

.about-clientele-section {
  padding-block: clamp(3rem, 6vw, 6rem) clamp(5rem, 10vw, 10rem);
  position: relative;
  z-index: 2;
}
.about-clientele-section .clientele-card {
  background: #ffffff;
  border-radius: clamp(24px, 3vw, 40px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45), inset 0 1px 3px rgba(255, 255, 255, 0.6);
  padding: clamp(2rem, 4vw, 4rem);
  color: #0c1a30;
  max-width: 1100px;
  margin-inline: auto;
}
.about-clientele-section .clientele-title {
  font-size: clamp(1.8rem, 2.5vw, 2.6rem);
  font-weight: 700;
  color: #0b4cb4;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-family: "Days One", sans-serif;
}
.about-clientele-section .clientele-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 6rem);
}
.about-clientele-section .clientele-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.about-clientele-section .clientele-list li {
  font-size: clamp(0.78rem, 0.95vw, 1rem);
  line-height: 1.4;
  color: #0c1a30;
  position: relative;
  padding-left: 1rem;
  font-weight: 500;
}
.about-clientele-section .clientele-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #0b4cb4;
  font-weight: bold;
}

@media (max-width: 768px) {
  .about-firm-section .about-firm-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    text-align: center;
  }
  .about-firm-section .about-firm-left {
    align-items: center;
  }
  .about-firm-section .about-firm-left .stats-row {
    justify-content: center;
  }
  .about-firm-section .about-firm-right .logo-card-stack {
    max-width: 280px;
  }
  .about-firm-section .about-firm-right .logo-sphere-2 {
    right: -25px;
  }
  .about-panel-section {
    padding-inline: 1rem;
  }
  .about-panel-section .panel-card {
    padding: 2rem 1.5rem;
  }
  .about-panel-section .mission-sphere-1 {
    left: -15px;
    width: 60px;
    height: 60px;
  }
  .about-panel-section .mission-sphere-3 {
    right: -15px;
    width: 50px;
    height: 50px;
  }
  .about-panel-section .why-sphere-1 {
    left: -15px;
    width: 55px;
    height: 55px;
  }
  .about-panel-section .why-sphere-3 {
    right: 10px;
    bottom: -35px;
    width: 70px;
    height: 70px;
  }
  .about-clientele-section .clientele-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.contact-section {
  padding-block: clamp(4rem, 8vw, 8rem) clamp(3rem, 6vw, 6rem);
  position: relative;
}
.contact-section .container {
  max-width: 1200px;
  padding-inline: clamp(1rem, 4vw, 3rem);
}

.contact-main-card {
  background: #f8fafc;
  border-radius: clamp(24px, 3vw, 40px);
  border: 1px solid rgba(0, 0, 0, 0.03);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45), inset 0 1px 3px rgba(255, 255, 255, 0.8);
  padding: clamp(2.5rem, 5vw, 5rem);
  color: #0f172a;
  position: relative;
  z-index: 2;
}
.contact-main-card .contact-card-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.contact-left-col {
  display: flex;
  flex-direction: column;
  gap: clamp(1.2rem, 2vw, 2.5rem);
}
.contact-left-col .contact-card-title {
  font-size: clamp(1.5rem, 2.6vw, 2.6rem);
  font-weight: 700;
  line-height: 1.3;
  color: #0b4c8c;
  letter-spacing: 0.5px;
}
.contact-left-col .contact-card-desc {
  font-size: clamp(0.9rem, 1vw + 0.1rem, 1.05rem);
  line-height: 1.7;
  color: #475569;
}

.get-in-touch-panel {
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03), 0 5px 15px rgba(0, 0, 0, 0.02);
  padding: clamp(2rem, 3.5vw, 3.5rem);
  display: flex;
  flex-direction: column;
  gap: clamp(1.2rem, 1.8vw, 2rem);
}
.get-in-touch-panel .panel-title {
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 700;
  color: #0f172a;
}
.get-in-touch-panel .panel-desc {
  font-size: clamp(0.85rem, 0.95vw, 1rem);
  line-height: 1.6;
  color: #64748b;
}
.get-in-touch-panel .btn-email-wrapper {
  display: block;
  width: 100%;
  margin-top: 0.5rem;
}
.get-in-touch-panel .btn-email {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  width: 100%;
  padding: clamp(0.85rem, 1.2vw, 1.1rem) clamp(1.5rem, 2vw, 2.5rem);
  background: linear-gradient(135deg, #009eff 0%, #0076ff 100%);
  color: #ffffff;
  font-family: "Days One", sans-serif;
  font-size: clamp(0.8rem, 1vw, 1rem);
  font-weight: 400;
  border-radius: 50px;
  box-shadow: 0 6px 20px rgba(0, 158, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  outline: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.get-in-touch-panel .btn-email svg {
  width: 18px;
  height: 18px;
  color: #ffffff;
  flex-shrink: 0;
}
.get-in-touch-panel .btn-email.btn-email-hover {
  background: linear-gradient(135deg, #0076ff 0%, #0056b8 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 158, 255, 0.5), 0 0 12px rgba(0, 158, 255, 0.4);
}
.get-in-touch-panel .btn-email:active {
  transform: scale(0.97);
  box-shadow: 0 3px 10px rgba(0, 158, 255, 0.2);
}
.get-in-touch-panel .btn-email:focus-visible {
  outline: 3px solid rgba(0, 158, 255, 0.6);
  outline-offset: 2px;
}

.contact-empty-section {
  padding-block: clamp(6rem, 12vw, 14rem);
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .contact-main-card {
    padding: clamp(1.8rem, 4vw, 3rem);
  }
  .contact-main-card .contact-card-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .contact-left-col {
    text-align: center;
  }
  .get-in-touch-panel {
    padding: clamp(1.5rem, 3vw, 2.5rem);
  }
}
@media (max-width: 360px) {
  .contact-main-card {
    border-radius: 16px;
    padding: 1.25rem;
  }
  .get-in-touch-panel {
    border-radius: 16px;
    padding: 1.25rem;
  }
}
.how-we-help-section {
  padding-block: clamp(4rem, 8vw, 10rem);
  position: relative;
  overflow: hidden;
}
.how-we-help-section .container {
  max-width: 1200px;
  position: relative;
  z-index: 2;
}

.services-grid-container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  aspect-ratio: 1.25;
  margin: 0 auto;
  transition: all 0.35s ease;
}

.hexagon-wrapper {
  position: absolute;
  width: calc(22% + 136px);
  aspect-ratio: 1.15;
  transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 10;
}
.hexagon-wrapper.active-hexagon {
  cursor: pointer;
  filter: drop-shadow(0 0 12px rgba(30, 120, 255, 0.4));
}
.hexagon-wrapper.active-hexagon:hover, .hexagon-wrapper.active-hexagon.is-hovered, .hexagon-wrapper.active-hexagon.touch-active {
  filter: drop-shadow(0 0 18px rgba(30, 120, 255, 0.6));
  z-index: 50;
}
.hexagon-wrapper.active-hexagon:hover .hex-title-default, .hexagon-wrapper.active-hexagon.is-hovered .hex-title-default, .hexagon-wrapper.active-hexagon.touch-active .hex-title-default {
  opacity: 0;
  visibility: hidden;
  transform: scale(0.9);
}
.hexagon-wrapper.active-hexagon:hover .hex-hover-content, .hexagon-wrapper.active-hexagon.is-hovered .hex-hover-content, .hexagon-wrapper.active-hexagon.touch-active .hex-hover-content {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.hexagon-border-bg {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2196F3 0%, #1E90FF 40%, #1565C0 70%, #0D47A1 100%);
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
}

.hexagon-inner {
  position: absolute;
  top: 5px;
  left: 5.75px;
  right: 5.75px;
  bottom: 5px;
  background: radial-gradient(circle at center, #042852 0%, #071222 100%);
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: all 0.35s ease;
}

.hex-title-default {
  font-family: "Days One", sans-serif;
  font-size: clamp(0.85rem, 1.3vw, 1rem);
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  max-width: 90%;
  line-height: 1.4;
  transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  transform: scale(1);
  padding: 1rem 24px;
}

.hex-hover-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  transform: translateY(10px);
}

.hex-title-hover {
  font-family: "Days One", sans-serif;
  font-size: clamp(0.75rem, 1.1vw, 0.88rem);
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 8px;
  line-height: 1.3;
  width: 100%;
}

.hex-list {
  width: 100%;
  display: flex;
  justify-content: center;
}
.hex-list .detail-list {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  text-align: left;
  margin: 0 auto;
  width: fit-content;
  max-width: 100%;
}
.hex-list .detail-list li {
  font-size: clamp(0.65rem, 1vw, 0.78rem);
  line-height: 1.4;
  color: #ffffff;
  position: relative;
  padding-left: 0.9rem;
}
.hex-list .detail-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #ffffff;
  font-weight: bold;
}
.hex-list .detail-list.list-condensed {
  gap: 0.05rem;
}
.hex-list .detail-list.list-condensed li {
  font-size: 0.65rem !important;
  line-height: 1.15;
  padding-left: 0.8rem;
}

.hexagon-outline {
  position: absolute;
  width: calc(22% + 136px);
  aspect-ratio: 1.15;
  z-index: 1;
  pointer-events: none;
}
.hexagon-outline .hexagon-border-bg {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(30, 100, 255, 0.15) 100%);
  filter: drop-shadow(0 0 6px rgba(30, 120, 255, 0.3));
}
.hexagon-outline .hexagon-inner {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

#hex-qhse {
  top: -10%;
  left: -25%;
}

#hex-iso {
  top: 1%;
  left: 90%;
}

#hex-digital {
  top: 20%;
  left: 30%;
}

#hex-fire {
  top: 65%;
  left: -10%;
}

#hex-audits {
  top: 60%;
  left: 70%;
}

#outline-1 {
  top: -30%;
  left: -60%;
  filter: blur(4px);
  opacity: 0.45;
}

#outline-2 {
  top: 98%;
  left: 27%;
  filter: blur(2px);
  opacity: 0.6;
}

#outline-4 {
  top: -16%;
  left: 45.5%;
  filter: blur(1.5px);
  opacity: 0.65;
}

#outline-5 {
  top: 46.5%;
  left: 34%;
  filter: blur(2.5px);
  opacity: 0.55;
}

#outline-6 {
  top: 37%;
  left: -23%;
  filter: blur(3.5px);
  opacity: 0.45;
}

#outline-7 {
  top: 33%;
  left: 80%;
  filter: blur(5px);
  opacity: 0.35;
}

@media (max-width: 768px) {
  .services-grid-container {
    height: auto !important;
    aspect-ratio: unset;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding-block: 2rem;
  }
  .hexagon-wrapper {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    width: clamp(240px, 80vw, 280px);
    aspect-ratio: 1.15;
  }
  .hexagon-outline {
    display: none;
  }
}
.service-detail-section {
  padding-block: clamp(3rem, 6vw, 6rem) clamp(4rem, 8vw, 8rem);
  background: radial-gradient(circle at 50% 40%, #0d1e3d 0%, #050810 70%);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}
.service-detail-section .container {
  max-width: 1200px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}

.btn-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 2rem;
  cursor: pointer;
}
.btn-back svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  transition: transform 0.3s ease;
}
.btn-back:hover {
  background: #009eff;
  border-color: #009eff;
  box-shadow: 0 0 15px rgba(0, 158, 255, 0.5);
  transform: translateX(-3px);
}

.detail-page-title {
  font-family: "Days One", sans-serif;
  font-size: clamp(1.8rem, 3.8vw, 3.2rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(3rem, 6vw, 6rem);
  line-height: 1.2;
}

.service-cards-container {
  display: flex;
  flex-direction: column;
  gap: clamp(4rem, 8vw, 8rem);
  margin-bottom: clamp(4rem, 8vw, 8rem);
}

.service-detail-card {
  width: 60%;
  background: #f0f2f5;
  border-radius: 32px;
  padding: clamp(2rem, 4vw, 4rem);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  color: #050810;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0, 158, 255, 0.15), 0 20px 50px rgba(0, 0, 0, 0.5);
}
.service-detail-card.card-left {
  align-self: flex-start;
  text-align: left;
}
.service-detail-card.card-left .card-desc {
  text-align: left;
}
.service-detail-card.card-right {
  align-self: flex-end;
  text-align: left;
}
.service-detail-card.card-right .card-desc {
  text-align: left;
}
.service-detail-card .card-heading {
  font-family: "Days One", sans-serif;
  font-size: clamp(1.2rem, 1.8vw, 1.8rem);
  font-weight: 700;
  color: #1e4db7;
  line-height: 1.35;
}
.service-detail-card .card-desc {
  font-size: clamp(0.85rem, 0.95vw, 1.05rem);
  line-height: 1.6;
  color: #334155;
}
.service-detail-card .outcomes-title {
  font-family: "Days One", sans-serif;
  font-size: clamp(0.95rem, 1.2vw, 1.2rem);
  font-weight: 700;
  color: #1e4db7;
  margin-top: 0.5rem;
  text-align: left !important;
}
.service-detail-card .outcomes-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: left !important;
  padding-left: 0;
  list-style: none;
}
.service-detail-card .outcomes-list li {
  font-size: clamp(0.8rem, 0.9vw, 0.95rem);
  line-height: 1.4;
  color: #334155;
  position: relative;
  padding-left: 1.2rem;
}
.service-detail-card .outcomes-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #1e4db7;
  font-weight: bold;
}

.iso-table-card {
  width: 100%;
  background: #f0f2f5;
  border-radius: 32px;
  padding: clamp(2rem, 4vw, 4rem);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  color: #050810;
}
.iso-table-card .iso-table {
  width: 100%;
  border-collapse: collapse;
}
.iso-table-card .iso-table th, .iso-table-card .iso-table td {
  padding: 1.25rem 1.5rem;
  text-align: left;
  vertical-align: top;
}
.iso-table-card .iso-table th {
  font-family: "Days One", sans-serif;
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  font-weight: 700;
  color: #1e4db7;
  border-bottom: 2px solid rgba(30, 144, 255, 0.25);
}
.iso-table-card .iso-table td {
  font-size: clamp(0.8rem, 0.9vw, 0.95rem);
  line-height: 1.5;
  color: #334155;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.iso-table-card .iso-table td.iso-bullet {
  position: relative;
  padding-left: 2.2rem;
}
.iso-table-card .iso-table td.iso-bullet::before {
  content: "•";
  position: absolute;
  left: 1.2rem;
  color: #1e4db7;
  font-weight: bold;
}
.iso-table-card .iso-table tr:last-child td {
  border-bottom: none;
}

.other-services-section {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: clamp(2.5rem, 4vw, 4rem);
  margin-top: clamp(4rem, 8vw, 8rem);
}
.other-services-section .section-label {
  font-family: "Days One", sans-serif;
  font-size: clamp(0.75rem, 0.85vw, 0.95rem);
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.other-services-section .section-label svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
}
.other-services-section .services-links-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  width: 100%;
}
.other-services-section .service-link-col {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.other-services-section .other-service-link {
  font-family: "Days One", sans-serif;
  font-size: clamp(0.75rem, 0.9vw, 1rem);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
  transition: all 0.3s ease;
  text-align: center;
  padding-block: 0.5rem;
  border-bottom: 2px solid transparent;
}
.other-services-section .other-service-link:hover {
  color: #009eff;
  text-shadow: 0 0 10px rgba(0, 158, 255, 0.5);
}
.other-services-section .other-service-link.active-service {
  color: #009eff;
  text-shadow: 0 0 15px rgba(0, 158, 255, 0.6);
  border-bottom-color: #009eff;
  padding-bottom: 0.25rem;
}

.detail-bg-outlines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

@media (max-width: 1024px) {
  .service-detail-card {
    width: 80%;
  }
  .other-services-section .services-links-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .service-detail-card {
    width: 100% !important;
    align-self: center !important;
    text-align: left !important;
    padding: clamp(1.5rem, 4vw, 2.5rem);
    border-radius: 24px;
  }
  .service-detail-card .card-desc {
    text-align: left !important;
  }
  .iso-table-card {
    padding: 1.5rem 1rem;
    border-radius: 24px;
  }
  .iso-table-card .iso-table {
    display: block;
  }
  .iso-table-card .iso-table thead {
    display: none;
  }
  .iso-table-card .iso-table tbody, .iso-table-card .iso-table tr, .iso-table-card .iso-table td {
    display: block;
    width: 100%;
  }
  .iso-table-card .iso-table tr {
    border-bottom: 1.5px solid rgba(30, 144, 255, 0.15);
    padding-block: 1.5rem;
  }
  .iso-table-card .iso-table tr:last-child {
    border-bottom: none;
  }
  .iso-table-card .iso-table td {
    border-bottom: none;
    padding: 0.35rem 0.5rem;
  }
  .iso-table-card .iso-table td:nth-child(1) {
    font-family: "Days One", sans-serif;
    font-size: 1.05rem;
    color: #1e4db7;
    font-weight: 700;
  }
  .iso-table-card .iso-table td:nth-child(2) {
    font-weight: bold;
    color: #050810;
  }
  .iso-table-card .iso-table td.iso-bullet {
    padding-left: 1.2rem;
  }
  .iso-table-card .iso-table td.iso-bullet::before {
    left: 0.25rem;
  }
  .other-services-section .services-links-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (max-width: 480px) {
  .other-services-section .services-links-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/*# sourceMappingURL=style.css.map */
