:root {
  --brand-1: #00c6ff;
  --brand-2: #0072ff;
  --accent: #ffd166;
  --glass: rgba(255, 255, 255, 0.85);
}

body {
  font-family: 'Segoe UI', Roboto, Arial, sans-serif;
  background: linear-gradient(180deg, #f6fbff 0%, #e8f6ff 100%);
  color: #0b2545;
}

.logo-svg {
  height: 80px;
}

/* HERO */
.hero {
  padding: 3rem 1rem;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
  color: white;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px rgba(2, 35, 91, 0.12);
}

.hero-card {
  backdrop-filter: blur(6px);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 1rem;
}

/* PRODUCT CARDS */
.product-card {
  border-radius: 16px;
  overflow: hidden;
  border: none;
  transform: translateY(40px);
  opacity: 0;
  animation: fadeUp 1s ease forwards;
}
.product-card:nth-child(1) { animation-delay: 0.2s; }
.product-card:nth-child(2) { animation-delay: 0.4s; }
.product-card:nth-child(3) { animation-delay: 0.6s; }

@keyframes fadeUp {
  to { transform: translateY(0); opacity: 1; }
}

.glass-effect {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
  box-shadow: 0 6px 18px rgba(2, 35, 91, 0.08);
}

.btn-neon {
  background: linear-gradient(90deg, var(--accent), #ff9a9e);
  color: #07203f;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.6rem 1.25rem;
  box-shadow: 0 8px 30px rgba(255, 153, 102, 0.18);
}

.section-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
}

.section-title svg {
  width: 28px;
  height: 28px;
}

/* ABOUT + CONTACT IMG / MAP */
.about-img,
.contact-map {
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(2, 35, 91, 0.12);
}

/* FOOTER */
footer { padding: 2rem 0; }

/* -----------------------------
   HERO ANIMATED CARD SCOPED
------------------------------ */
.hero-card-anim {
  position: relative;
  width: 250px;
  height: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
  transition-delay: 0.5s;
  margin: auto;
}

.hero-card-anim:hover {
  width: 500px;
  transition-delay: 0.5s;
}

.hero-card-anim .circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card-anim .circle::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background:none;
    border: 8px solid #0d91ec;
    filter: drop-shadow(0 0 10px #2589d8) drop-shadow(0 0 60px #21b1e5);
    transition: 0.5s, background 0.5s;
    transition-delay: 0.75s, 1s;
}

.hero-card-anim:hover .circle::before {
  transition-delay: 0.5s;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background:local;
}

.hero-card-anim .circle .logo {
  position: relative;
  width: 250px;
  transition: 0.5s;
  transition-delay: 0.5s;
}

.hero-card-anim:hover .circle .logo {
  transform: scale(0);
  transition-delay: 0s;
}

.hero-card-anim .product_img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0) rotate(315deg);
  height: 260px;
  transition: 0.5s ease-in-out;
}

.hero-card-anim:hover .product_img {
  transition-delay: 0.75s;
  top: 25%;
  left: 72%;
  height: 260px;
  transform: translate(-50%, -50%) scale(1) rotate(15deg);
}

.hero-card-anim .content {
  position: absolute;
  width: 50%;
  left: 20%;
  padding: 20px;
  opacity: 0;
  transition: 0.5s;
  visibility: hidden;
}

.hero-card-anim:hover .content {
  transition-delay: 0.75s;
  opacity: 1;
  visibility: visible;
  left: 20px;
}

.hero-card-anim .content h2 {
  color: #fff;
  text-transform: uppercase;
  font-size: 2.5em;
  line-height: 1em;
}

.hero-card-anim .content p { color: #fff; }

.hero-card-anim .content a {
  color: #111;
  background: #fff;
  padding: 10px 20px;
  border-radius: 10px;
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  margin-top: 10px;
}

