:root {
  --primary: #0d6efd;
  --secondary: #6610f2;
  --accent: #20c997;
  --dark: #0f1220;
  --muted: #6c757d;
  --light-bg: #f8f9fa;
  --radius-lg: 22px;
  --radius-md: 14px;
  --shadow-soft: 0 18px 40px rgba(0,0,0,0.08);
  --shadow-hover: 0 25px 55px rgba(0,0,0,0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  text-decoration: none;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: white;
  color: #212529;
  scroll-behavior: smooth;
}
/* ===============================
   Desktop Navbar
================================ */
.navbar-wrap {
  padding: 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  max-width: 1200px;
  margin: auto;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(14px);
  border-radius: 60px;
  padding: 16px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
  transition: all .3s ease;
}

.navbar.shrink {
  padding: 10px 26px;
  box-shadow: 0 14px 28px rgba(0,0,0,0.08);
}

.logo img {
  height: 38px;
  width: auto;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.25));
}

.nav-links {
  display: flex;
  gap: 26px;
}

.nav-links a {
  text-decoration: none;
  color: red;
  font-weight: 500;
  position: relative;
}
.nav-links a span{
  color: blue;
}
.nav-links a.active,
.nav-links a:hover {
  color: #4f6ef7;
}

/* Follow Button Desktop */
.follow-wrapper {
  position: relative;
}

.btn-primary {
  background: #6c7cff;
  color: #fff;
  padding: 10px 22px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(108,124,255,0.35);
  transition: all .25s ease;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(108,124,255,0.45);
}

.follow-dropdown {
  position: absolute;
  top: 120%;
  right: 0;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  padding: 10px;
  width: 170px;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: all .25s ease;
}

.follow-dropdown a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  text-decoration: none;
  color: #444;
  font-weight: 500;
}

.follow-dropdown a:hover {
  background: #f0f3ff;
  color: #4f6ef7;
}

.follow-wrapper:hover .follow-dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
/* Hide mobile by default */
.mobile-header,
.mobile-menu {
  display: none;
}

/* Mobile header */
@media (max-width: 900px) {

  /* Hide desktop navbar */
  .navbar-wrap {
    display: none;
  }

  .mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(18px);
    z-index: 3000;
    box-shadow: 0 8px 20px rgba(0,0,0,0.18);
  }

  .mobile-logo img {
    height: 38px;
  }

  /* Menu button in middle */
  .mobile-header .btn-primary {
    background: #6c7cff;
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(108,124,255,0.35);
  }

  .mobile-header .btn-primary:hover {
    background: #5b6cff;
  }

  /* Follow button */
  .btn-follow {
    background: #6c7cff;
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(108,124,255,0.35);
  }

  .btn-follow:hover {
    background: #5b6cff;
  }

  /* Follow dropdown */
  .mobile-follow-dropdown {
    display: none;
    position: absolute;
    top: 36px;
    right: 0;
    background: #fff;
    border-radius: 12px;
    padding: 8px 0;
    box-shadow: 0 8px 20px rgba(0,0,0,0.18);
    min-width: 140px;
    z-index: 4000;
  }

  .mobile-follow-dropdown a {
    display: flex;
    align-items: center;
    padding: 6px 12px;
    color: #333;
    font-size: 13px;
    text-decoration: none;
  }

  .mobile-follow-dropdown a i {
    margin-right: 6px;
  }

  .mobile-follow-toggle.active .mobile-follow-dropdown {
    display: block;
  }

  /* Mobile menu */
  .mobile-menu {
    display: none; /* hidden by default */
    flex-direction: column;
    position: fixed;
    top: 56px; /* header height */
    left: 0;
    width: 100%;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(18px);
    z-index: 2999;
    padding: 10px 0;
    box-shadow: 0 8px 20px rgba(0,0,0,0.18);
    animation: slideDown 0.3s ease forwards;
  }

  .mobile-menu .nav-item {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    text-decoration: none;
    color: #555;
    font-weight: 500;
  }

  .mobile-menu .nav-item i {
    margin-right: 10px;
  }
.mobile-menu span{
    color: blue;
  }
.mobile-menu i{
    color: red;
  }
  .mobile-menu .nav-item:hover {
    color: #4f6ef7;
    background: rgba(108,124,255,0.05);
  }

  /* Slide animation */
  @keyframes slideDown {
    from { transform: translateY(-20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }
}
/* Follow dropdown hidden by default */
.mobile-follow-dropdown {
  display: none;
  position: absolute;
  top: 36px;
  right: 0;
  background: #fff;
  border-radius: 12px;
  padding: 8px 0;
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
  min-width: 140px;
  z-index: 4000;
}

/* Show dropdown when active */
.mobile-follow-toggle.active .mobile-follow-dropdown {
  display: block;
}


/* =========================
   HERO SECTION BASE
========================= */
.hero-v2 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at top right, rgba(13,110,253,0.15), transparent 40%),
    radial-gradient(circle at bottom left, rgba(111,66,193,0.15), transparent 40%),
    linear-gradient(135deg, #f8f9ff, #eef2ff);
  padding-top: 120px;
  position: relative;
  overflow: hidden;
}

/* =========================
   GLASS CARD
========================= */
.hero-card {
  background: rgba(255, 255, 255, 0.12); /* VERY transparent */
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);

  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 24px;

  padding: 48px;

  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}


/* =========================
   BADGE
========================= */
.hero-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #0d6efd;
  background: rgba(13, 110, 253, 0.12);
  margin-bottom: 20px;
}

/* =========================
   TITLE
========================= */
.hero-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  color: red;
}


.hero-title span {
  background: linear-gradient(90deg, #0d6efd, #6f42c1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* =========================
   DESCRIPTION
========================= */
.hero-description {
  font-size: 1.05rem;
  color: #495057;
  max-width: 520px;
  margin-bottom: 30px;
}

/* =========================
   ACTIONS
========================= */
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-actions .btn {
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(13,110,253,0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-actions .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 35px rgba(13,110,253,0.35);
}

/* =========================
   ANIMATION
========================= */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   MOBILE POLISH
========================= */
@media (max-width: 768px) {
  .hero-card {
    padding: 32px 24px;
    border-radius: 20px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-description {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-title {
    text-align: center;
  }
}



/* ===============================
   HEADINGS
================================ */
.heading,
.headings {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  color: red;
}

/* ===============================
   IDENTITY CARD (CORE SYSTEM)
================================ */
.identity-card {
  position: relative;
  padding: 34px;
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s ease;
}

.identity-card::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 0;
  width: 100%;
  height: 4px;
  border-radius: 20px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.identity-card:hover {
  transform: translateY(-8px);
}

.identity-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--muted);
}

.brand-name {
  font-weight: 600;
  color: var(--primary);
}

/* ===============================
   META TAGS
================================ */
.identity-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.identity-meta span {
  font-size: 0.75rem;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(13,110,253,0.08);
  color: var(--primary);
  font-weight: 500;
}

/* ===============================
   IMAGE VISUAL
================================ */
.identity-visual img {
  max-width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

/* ===============================
   MOTO / VALUES
================================ */
.section-label {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: red;
}

.moto-card {
  position: relative;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  transition: all 0.4s ease;
  overflow: hidden;
}

.moto-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  width: 4px;
  height: 44px;
  border-radius: 10px;
}
.moto-card h5 {
  color: blue;
}
.moto-card:hover {
  transform: translateY(-10px);
}

.execution::after {
  background: linear-gradient(180deg, var(--primary), var(--accent));
}
.design::after {
  background: linear-gradient(180deg, var(--secondary), #d63384);
}
.innovation::after {
  background: linear-gradient(180deg, #fd7e14, var(--primary));
}

/* ===============================
   STATS
================================ */
.stats-wrapper {
  max-width: 1000px;
}

.stat-item {
  padding: 20px;
}

.stat-middle {
  border-left: 1px solid rgba(0,0,0,0.06);
  border-right: 1px solid rgba(0,0,0,0.06);
}

.stat-number {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--primary);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--muted);
}

/* ===============================
   SERVICES
================================ */
.services h2{
  text-align: center;
  color: red;
  margin-bottom: 40px;
}
.services {
  padding: 80px 20px;
}

.service-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  transition: all 0.35s ease;
  height: 100%;
}
.service-card h3{
  color: var(--primary);
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.service-icon {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.service-title {
  font-weight: 600;
  font-size: 1.05rem;
}

.service-description {
  font-size: 0.9rem;
  color: var(--muted);
}
/* ==============================
   BRAND VARIABLES (OPTIONAL)
============================== */
:root {
  --cv-blue: #0d6efd;
  --cv-blue-dark: #0b5ed7;
  --cv-red: #dc3545;
  --cv-white: #ffffff;
}

/* ==============================
   CTA GLASS SECTION
============================== */
.cta-glass-section {
  position: relative;
  padding: 120px 20px;
  background: url(contact.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* Blue overlay for readability */
.cta-glass-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(13, 110, 253, 0.35);
  z-index: 0;
}

/* ==============================
   GLASS CARD
============================== */
.cta-glass-card {
  position: relative;
  z-index: 1;

  max-width: 720px;
  padding: 48px 40px;

  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.35);

  box-shadow:
    0 30px 60px rgba(13, 110, 253, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);

  animation: ctaFadeUp 0.9s ease forwards;
}

/* ==============================
   BADGE
============================== */
.cta-glass-badge {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 14px;

  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.4px;

  color: var(--cv-white);
  background: rgba(13, 110, 253, 0.35);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

/* ==============================
   TITLE
============================== */
.cta-glass-title {
  color: var(--cv-white);
  font-weight: 800;
  line-height: 1.2;

  text-shadow:
    0 4px 14px rgba(13, 110, 253, 0.55),
    0 2px 6px rgba(0, 0, 0, 0.35);
}

/* ==============================
   TEXT
============================== */
.cta-glass-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
}

.cta-glass-subtext {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}

/* ==============================
   ACTION BUTTONS
============================== */
.cta-glass-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Primary (Blue) */
.cta-glass-card .btn-primary {
  background: var(--cv-blue);
  border: none;
  font-weight: 600;

  box-shadow: 0 12px 30px rgba(13, 110, 253, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cta-glass-card .btn-primary:hover {
  background: var(--cv-blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(13, 110, 253, 0.6);
}

/* Secondary (Red Accent) */
.cta-glass-card .btn-outline-light {
  border: 2px solid var(--cv-red);
  color: var(--cv-white);
  font-weight: 600;
}

.cta-glass-card .btn-outline-light:hover {
  background: var(--cv-red);
  color: var(--cv-white);
}

/* ==============================
   SOCIAL ICONS
============================== */
.cta-glass-socials {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 10px;
}

.cta-glass-socials a {
  width: 40px;
  height: 40px;

  display: grid;
  place-items: center;

  color: var(--cv-white);
  font-size: 1.1rem;

  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  backdrop-filter: blur(6px);

  transition: all 0.25s ease;
}

.cta-glass-socials a:hover {
  background: var(--cv-white);
  color: var(--cv-blue);
  transform: translateY(-2px);
}

/* Red accent on Facebook / Email if desired */
.cta-glass-socials a:nth-child(2):hover {
  color: var(--cv-red);
}

/* ==============================
   FOOTNOTE
============================== */
.cta-glass-footnote {
  display: block;
  margin-top: 10px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
}

/* ==============================
   ANIMATION
============================== */
@keyframes ctaFadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==============================
   MOBILE OPTIMIZATION
============================== */
@media (max-width: 768px) {
  .cta-glass-card {
    padding: 32px 24px;
    border-radius: 22px;
  }

  .cta-glass-title {
    font-size: 1.6rem;
  }
}


/* ===============================
   SCROLL ANIMATION
================================ */
[data-animate] {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s ease;
}

[data-animate].show {
  opacity: 1;
  transform: translateY(0);
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .navbar {
    padding: 12px 18px;
  }

  .stat-middle {
    border: none;
  }
}
/* ===============================
   HERO V2
================================ */
.hero-v2 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image: url(codevera.jpeg);
  background-size: cover;
  background-position: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

/* Glow effect */
.hero-v2::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(13,110,253,0.15), transparent 60%);
  top: -200px;
  left: -200px;
}

/* Card */
.hero-card {
  background: #ffffff;
  padding: 48px;
  border-radius: 26px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.12);
  position: relative;
  z-index: 1;
}

/* Badge */
.hero-badge {
  display: inline-block;
  padding: 6px 14px;
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 20px;
  background: rgba(13,110,253,0.1);
  color: #0d6efd;
  margin-bottom: 18px;
}

/* Title */
.hero-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.15;
}

.hero-title span {
  background: linear-gradient(90deg, #0d6efd, #6610f2);
    -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Text */
.hero-description {
  font-size: 0.95rem;
  color: #6c757d;
  margin: 20px 0 30px;
  line-height: 1.7;
}

/* Actions */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Visual */
.hero-visual img {
  max-width: 100%;
  border-radius: 30px;
  box-shadow: 0 35px 80px rgba(0,0,0,0.15);
  transform: rotate(2deg);
}

@media (max-width: 768px) {
  .hero-v2 {
    padding: 100px 20px 60px;
  }

  .hero-card {
    padding: 32px;
  }

  .hero-title {
    font-size: 2rem;
  }
}
@media (max-width: 1200px) {
  .hero-card {
    padding: 44px;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .hero-description {
    font-size: 0.92rem;
  }
}
@media (max-width: 992px) {
  .hero-v2 {
    padding: 100px 24px 60px;
  }

  .hero-card {
    padding: 40px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-actions {
    gap: 10px;
  }

  .identity-card,
  .service-card,
  .moto-card {
    padding: 28px;
  }

  .stat-number {
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .hero-v2 {
    min-height: auto;
    padding: 90px 20px 60px;
  }

  .hero-card {
    padding: 34px;
    text-align: center;
  }

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

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

  .hero-actions {
    justify-content: center;
  }

  .stat-middle {
    border: none;
  }

  .identity-meta {
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .hero-card {
    padding: 28px;
    border-radius: 20px;
  }

  .hero-title {
    font-size: 1.75rem;
    line-height: 1.2;
  }

  .hero-description {
    font-size: 0.88rem;
  }

  .hero-badge {
    font-size: 0.65rem;
    letter-spacing: 1px;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    gap: 10px;
  }

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

  .service-card,
  .identity-card,
  .moto-card {
    padding: 24px;
  }
}
@media (max-width: 400px) {
  .hero-title {
    font-size: 1.6rem;
  }

  .hero-description {
    font-size: 0.85rem;
  }

  .hero-card {
    padding: 22px;
  }
}
/* ==============================
   FOOTER BACKGROUND
============================== */
.glass-footer {
  padding: 90px 20px 30px;
  background: linear-gradient(
    135deg,
    #ffffff,
    #e8f0ff,
    #d6e4ff
  );
}

/* ==============================
   GLASS CONTAINER
============================== */
.footer-glass {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 32px 36px;
  border-radius: 30px;

  background: rgba(13, 110, 253, 0.12);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);

  border: 1px solid rgba(13, 110, 253, 0.35);

  box-shadow:
    0 25px 50px rgba(13,110,253,0.25),
    inset 0 1px 0 rgba(255,255,255,0.6);
}

/* ==============================
   LEFT LOGO
============================== */
.footer-left img {
  height: 38px;
}

/* ==============================
   CENTER CONTENT
============================== */
.footer-center {
  text-align: center;
  flex: 1;
}

.footer-center p {
  color: #0d1b3f;
  font-weight: 600;
  margin-bottom: 14px;
}

/* ==============================
   SOCIAL ICONS (UNDER TEXT)
============================== */
.footer-socials {
  display: flex;
  justify-content: center;
  gap: 14px;
}

.footer-socials a {
  width: 40px;
  height: 40px;

  display: grid;
  place-items: center;

  color: #0d6efd;
  font-size: 1.1rem;

  background: rgba(255, 255, 255, 0.65);
  border-radius: 50%;

  backdrop-filter: blur(10px);
  border: 1px solid rgba(13,110,253,0.25);

  transition: all 0.25s ease;
}

.footer-socials a:hover {
  background: #0d6efd;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(13,110,253,0.35);
}

/* ==============================
   COPYRIGHT
============================== */
.footer-bottom {
  text-align: center;
  margin-top: 28px;
}

.footer-bottom small {
  color: #5a6f9c;
  font-size: 1.0rem;
}

/* ==============================
   MOBILE
============================== */
@media (max-width: 768px) {
  .footer-glass {
    flex-direction: column;
    gap: 20px;
  }

  .footer-left img {
    height: 50px;
  }
}


/* Floating WhatsApp Button */



/* Main Button */
.wa-main-btn {
  background: #1E3A8A;
  color: #fff;
  border: none;
  padding: 14px 18px;
  border-radius: 50px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.wa-main-btn i {
  font-size: 20px;
}

/* Bottom Sheet Dropdown */
.wa-sheet {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: calc(100% - 40px);
  max-width: 320px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
  overflow: hidden;
  display: none;
  animation: slideUp 0.25s ease;
}

/* Links */
.wa-sheet a {
  display: block;
  padding: 14px 16px;
  text-decoration: none;
  color: #111827;
  border-bottom: 1px solid #f1f1f1;
}

.wa-sheet a:last-child {
  border-bottom: none;
}

.wa-sheet strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
}

.wa-sheet span {
  font-size: 13px;
  color: #6B7280;
}

/* Hover / Active */
.wa-sheet a:active {
  background: #f5f7ff;
}

/* Animation */
@keyframes slideUp {
  from {
    transform: translateY(10px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ==========================
   MORE PROJECTS GRID
========================== */
.more-projects {
  display: grid;
  grid-template-columns: 1fr; /* mobile first */
  gap: 20px;
  margin-top: 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

/* Active state for expand */
.more-projects.active {
  max-height: 1500px; /* enough to show all items */
}

/* Individual Project Card */
.more-project-item {
  display: flex;
  flex-direction: column;
  padding: 15px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.more-project-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.more-project-item img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 12px;
  object-fit: cover;
}

.more-project-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  color: #111827;
}

.more-project-item span {
  font-size: 13px;
  color: #6b7280;
}

.more-project-item p {
  font-size: 13px;
  color: #4b5563;
  margin: 6px 0;
}

/* Live Demo Button inside card */
.more-project-item .btn-primary {
  align-self: flex-start;
  padding: 8px 18px;
  font-size: 13px;
  border-radius: 999px;
  margin-top: 8px;
}

/* ==========================
   RESPONSIVE GRID
========================== */
@media (min-width: 576px) {
  .more-projects {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .more-projects {
    grid-template-columns: repeat(3, 1fr);
  }
}


.project-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  padding: 30px 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.project-wrapper:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.project-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 16px;
  margin-bottom: 20px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.project-info {
  text-align: center;
}

.project-category {
  font-size: 14px;
  font-weight: 600;
  color: #EF4444; /* red accent */
  text-transform: uppercase;
  letter-spacing: 1px;
}

.project-name {
  font-size: 28px;
  font-weight: 700;
  color: #1E3A8A; /* CodeVera blue */
  margin: 10px 0;
}

.project-description {
  font-size: 16px;
  color: #111827;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Live Demo Button */
.project-info .btn-primary {
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  background: #1E3A8A;
  color: #fff;
  transition: all 0.3s ease;
}

.project-info .btn-primary:hover {
  background: #EF4444;
  color: #fff;
  transform: scale(1.05);
}

@media (min-width: 576px) {
  .project-wrapper {
    padding: 35px 30px;
    border-radius: 22px;
  }

  .project-image img {
    max-width: 450px;
  }

  .project-category {
    font-size: 15px;
  }

  .project-name {
    font-size: 30px;
  }

  .project-description {
    font-size: 17px;
  }

  .project-info .btn-primary {
    padding: 14px 30px;
    font-size: 16px;
  }
}

@media (min-width: 768px) {
  .project-wrapper {
    padding: 40px 35px;
    border-radius: 24px;
    max-width: 700px;
    margin: 0 auto;
  }

  .project-image img {
    max-width: 500px;
  }

  .project-category {
    font-size: 16px;
  }

  .project-name {
    font-size: 32px;
  }

  .project-description {
    font-size: 18px;
  }

  .project-info .btn-primary {
    padding: 16px 34px;
    font-size: 17px;
  }
}

.section-title {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  color: #1E3A8A;
  margin-bottom: 15px;
}

/* Optional: Add subtle arrow animation to encourage view more */
.view-more-link::after {
  content: " →";
  transition: transform 0.3s ease;
}

.view-more-link:hover::after {
  transform: translateX(5px);
}


.view-more {
  display: flex;
  justify-content: center;
  margin-top: 25px;
}

.view-more-link {
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  color: #fff;
  background: #1E3A8A;
  border: none;
  cursor: pointer;
  position: relative;
  opacity: 0; /* Start hidden for animation */
  animation: danceIn 2s forwards, glowPulse 2s infinite 2s;
}

/* Hover glow enhancement */
.view-more-link:hover {
  background: #EF4444;
  transform: scale(1.05);
}

/* =============================
   Keyframes for dancing in
============================= */
@keyframes danceIn {
  0% {
    opacity: 0;
    transform: translateY(-80px) rotate(-10deg);
  }
  25% {
    transform: translateY(-20px) rotate(10deg);
  }
  50% {
    transform: translateY(-40px) rotate(-5deg);
  }
  75% {
    transform: translateY(-10px) rotate(3deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
  }
}

/* =============================
   Glow / pulse effect after placement
============================= */
@keyframes glowPulse {
  0%, 100% {
    box-shadow: 0 0 10px #1E3A8A, 0 0 20px #1E3A8A;
  }
  50% {
    box-shadow: 0 0 20px #1E3A8A, 0 0 40px #1E3A8A;
  }
}

/* Mobile-first, small screens keep it centered */
@media (min-width: 576px) {
  .view-more-link {
    font-size: 16px;
    padding: 14px 32px;
  }
}

@media (min-width: 992px) {
  .view-more-link {
    font-size: 17px;
    padding: 16px 36px;
  }
}
