/* =========================
   GLOBAL RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background: #ffffff;
  color: #0f172a;
  line-height: 1.6;
}

/* =========================
   COMMON UTILITIES
========================= */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 16px;
}

.ptb-100 {
  padding: 100px 0;
}

.gray-light-bg {
  background: #f8fafc;
}

.text-white {
  color: #ffffff;
}

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

img {
  max-width: 100%;
  height: auto;
}

/* =========================
   BUTTONS (GLOBAL)
========================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.secondary-solid-btn {
  background: #dc2d27;
  color: #ffffff;
}

.secondary-solid-btn:hover {
  background: #b91c1c;
  transform: translateY(-2px);
}

.secondary-outline-btn {
  border: 2px solid #dc2d27;
  color: #dc2d27;
  background: transparent;
}

.secondary-outline-btn:hover {
  background: #dc2d27;
  color: #ffffff;
}

/* ===============================
HEADER PREMIUM STYLE FINAL v2
================================ */

.site-header {
  position: relative;
  z-index: 9999;
}

/* ===============================
MAIN NAV CONTAINER
================================ */

.main-nav {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
}

.nav-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px; /* increased height */
}

/* LOGO */

.logo img {
  height: 48px;
}

/* ===============================
DESKTOP MENU PREMIUM
================================ */

.desktop-menu {
  margin-left: auto; /* FIX extra space */
  margin-right: 20px;
}

.desktop-menu .menu-links {
  display: flex;
  align-items: center;
  gap: 38px; /* premium spacing */
  list-style: none;
  margin: 0;
  padding: 0;
}

.desktop-menu .menu-links a {
  text-decoration: none;
  color: #0f172a;

  font-size: 17px; /* increased */
  font-weight: 600; /* premium bold */

  position: relative;
}

/* UNDERLINE EFFECT */

.desktop-menu .menu-links a::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 2px;
  background: #dc2d27;
  transition: 0.3s;
}

.desktop-menu .menu-links a:hover::after {
  width: 100%;
}

/* CTA PREMIUM */

.menu-cta {
  background: #dc2d27;
  color: #fff !important;

  padding: 12px 28px;

  border-radius: 999px;

  font-size: 16px;
  font-weight: 600;
}

.menu-cta:hover {
  background: #b91c1c;
}

/* ===============================
DROPDOWN PREMIUM
================================ */

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;

  top: 100%;
  margin-top: 0;

  left: 0;

  background: #fff;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);

  padding: 10px 0;

  min-width: 260px;

  display: none;

  border-radius: 10px;
}
.dropdown::after {
  content: "";

  position: absolute;

  top: 100%;

  left: 0;

  width: 100%;

  height: 20px;
}

.dropdown-menu a {
  display: block;

  padding: 14px 22px;

  font-size: 15px;
}

.dropdown-menu a:hover {
  background: #f8fafc;
}

.dropdown:hover .dropdown-menu {
  display: block;
}
/* SUBMENU */

.dropdown-sub {
  position: relative;
}

.dropdown-submenu {
  position: absolute;

  left: 100%;

  top: 0;
  margin-left: 0;

  background: #fff;

  min-width: 260px;

  display: none;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

  border-radius: 8px;

  padding: 10px 30px;
}

/* SHOW ON HOVER */

.dropdown-sub:hover .dropdown-submenu {
  display: block;
}

/* ARROW ALIGN */

.dropdown-sub > a {
  display: block;

  padding: 12px 20px;
}

/* ===============================
TOGGLE BUTTON
================================ */

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: none;

  width: 28px;

  height: 3px;

  background: #0f172a;

  margin: 6px 0;
}

/* ===============================
MOBILE SLIDE MENU
================================ */

.slide-menu {
  display: none;
}

/* ===============================
MOBILE VIEW PREMIUM
================================ */

@media (max-width: 768px) {
  .nav-flex {
    height: 70px;
  }

  /* show toggle */

  .menu-toggle {
    display: block;
  }

  /* hide desktop */

  .desktop-menu {
    display: none;
  }

  /* mobile menu */

  .slide-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    display: block;
    z-index: 9998;
  }

  /* active */

  .slide-menu.active {
    transform: translateX(0);
  }

  /* inner */

  .slide-inner {
    margin-top: 40px;
    padding: 40px;
  }

  /* close button */

  .menu-close-btn {
    display: block;

    position: absolute;

    right: 20px;

    top: 20px;

    font-size: 32px;

    border: none;

    background: none;

    cursor: pointer;
  }

  /* menu */

  .slide-inner .menu-links {
    display: flex;
    flex-direction: column;
    gap: 24px;
    list-style: none;
    padding: 0;
  }

  .slide-inner .menu-links a {
    font-size: 18px;
    color: #0f172a;
    text-decoration: none;
    font-weight: 600;
  }
  .menu-cta {
    margin: 50px 0 0;
    text-align: center;
    display: inline-block;
  }
  .menu-toggle span {
    display: block;

    width: 28px;

    height: 3px;

    background: #0f172a;

    margin: 6px 0;
  }
}
/* ===============================
   HERO SECTION (IMAGE-ONE STYLE)
================================ */
.hero-section {
  padding: 120px 0 90px;
  position: relative;
  overflow: visible;
  background: linear-gradient(135deg, #002f4b, #001629);
}

/* LEFT CONTENT */
.hero-content {
  max-width: 560px;
}

/* SMALL INTRO TEXT */
.hero-eyebrow {
  display: block;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 18px;
}

/* MAIN HEADING */
.hero-title {
  font-size: 54px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
}

/* DESCRIPTION */
.hero-desc {
  font-size: 16px;
  line-height: 1.8;
  opacity: 0.95;
  max-width: 480px;
  margin-bottom: 34px;
}

/* CTA BUTTON */
.hero-btn {
  background: transparent;
  border: 1.5px solid #fff;
  color: #fff;
  padding: 12px 30px;
  border-radius: 999px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background: #dc2d27;
  border-color: #dc2d27;
}

/* ===============================
   RIGHT SIDE SVG (SMALL & CLEAN)
================================ */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-visual img {
  max-width: 380px; /* 👈 SMALL LIKE COFFEE VISUAL */
  width: 100%;
  opacity: 0.95;
  animation: heroFloat 4s ease-in-out infinite;
}

/* FLOAT EFFECT */
@keyframes heroFloat {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

/* ===============================
   MOBILE RESPONSIVE
================================ */
@media (max-width: 991px) {
  .hero-section {
    padding: 90px 0 70px;
  }

  .hero-content {
    text-align: center;
    margin: 0 auto 40px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-desc {
    margin: 0 auto 28px;
  }

  .hero-visual img {
    max-width: 260px;
  }
}

/* ================= PROMO SECTION ================= */

.promo-section {
  background: #f8fafc;
  position: relative;
  z-index: 2;
  margin-top: 40px;
  padding-top: 120px;
}

.section-heading h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #0f172a;
}

.section-heading .lead {
  max-width: 720px;
  margin: 0 auto;
  color: #475569;
  font-size: 17px;
}

.section-pill {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #dc2d27, #ff6a5f);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
}
/* FLOATING ICON */

.floating-icon {
  animation: floatRotate 6s ease-in-out infinite;
}

@keyframes floatRotate {
  0% {
    transform: translateY(0) rotate(0);
  }

  50% {
    transform: translateY(-12px) rotate(8deg);
  }

  100% {
    transform: translateY(0) rotate(0);
  }
}

/* ================= PROMO CARD ================= */
.promo-link {
  text-decoration: none;
  color: inherit;
}

.promo-card {
  height: 100%;
  padding: 36px 30px;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff, #f9fafb);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 30px 70px rgba(2, 6, 23, 0.12);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  cursor: pointer;
}
.promo-card,
.promo-card * {
  text-decoration: none !important;
}

.promo-card:hover {
  transform: translateY(-14px) scale(1.015);
  box-shadow:
    0 30px 80px rgba(2, 6, 23, 0.18),
    0 0 0 1px rgba(220, 45, 39, 0.15);
}

/* ICON */
.promo-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  margin-bottom: 18px;
}

.bg-red {
  background: linear-gradient(135deg, #dc2d27, #ff6a5f);
}
.bg-blue {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
}
.bg-dark {
  background: linear-gradient(135deg, #0f172a, #334155);
}

/* TITLE */
.promo-card h5 {
  font-size: 20px;
  font-weight: 800;
  color: #020617;
  margin-bottom: 10px;
}

/* DESC */
.promo-desc {
  font-size: 15px;
  padding: 12px 0 0 0;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 22px;
}

/* LIST */
.promo-list {
  list-style: none;
  padding: 20px 0 0;
  margin-bottom: auto;
}

.promo-list li {
  font-size: 14.5px;
  margin-bottom: 10px;
  color: #0f172a;
  position: relative;
  padding-left: 22px;
}

.promo-list li::before {
  content: "✓";
  font-size: 14px;
  position: absolute;
  left: 0;
  color: #dc2d27;
  font-weight: 700;
}

/* FOOTER */
.promo-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px dashed rgba(15, 23, 42, 0.12);
  font-weight: 700;
  color: #dc2d27;
}

.promo-cta {
  color: #dc2d27;
  font-weight: 800;
  transition: transform 0.3s ease;
}

.promo-card:hover .promo-cta {
  transform: translateX(8px);
}

/* POPULAR CARD BADGE */
/* .promo-card.popular {
  content: "MOST POPULAR";
  position: absolute;
  top: 22px;
  right: -48px;
  background: linear-gradient(135deg, #dc2d27, #ff6a5f);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  padding: 8px 60px;
  transform: rotate(45deg);
  letter-spacing: 0.6px;
  box-shadow: 0 10px 30px rgba(220, 45, 39, 0.45);
} */

/* ================= SCROLL ANIMATION ================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.15s;
}
.delay-2 {
  transition-delay: 0.3s;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .section-heading h2 {
    font-size: 32px;
  }

  .promo-card {
    padding: 30px 22px;
  }
}

/* ===============================
   ABOUT SECTION – SIMPLE & SOFT
================================ */
.about-simple {
  padding: 100px 50px;
  background: #f4f4f3;
}

/* TEXT CONTENT */
.about-text {
  max-width: 520px;
}

.about-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 26px;
  color: #111;
}

.about-title span {
  font-weight: 400;
}

.about-text p {
  font-size: 16px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 20px;
}

/* BUTTON */
.about-btn {
  display: inline-block;
  margin-top: 14px;
  padding: 12px 32px;
  border: 1.5px solid #111;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: #111;
  text-decoration: none;
  transition: all 0.3s ease;
}

.about-btn:hover {
  background: #111;
  color: #fff;
}

/* RIGHT VISUAL */
.about-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-visual img {
  max-width: 340px;
  width: 100%;
  opacity: 0.95;
  animation: aboutFloat 4s ease-in-out infinite;
}

/* FLOAT ANIMATION */
@keyframes aboutFloat {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

/* ===============================
   MOBILE RESPONSIVE
================================ */
@media (max-width: 991px) {
  .about-simple {
    padding: 70px 0;
  }

  .about-text {
    text-align: center;
    margin: 0 auto 40px;
  }

  .about-title {
    font-size: 32px;
  }

  .about-visual img {
    max-width: 260px;
  }
}

/* ===============================
   TECHNOLOGY SECTION (PREMIUM)
================================ */
.technology {
  background: var(--light-bg);
  padding: 45px 0;
  overflow: hidden;
}

/* mask edges for premium fade */
.technology-track {
  position: relative;
  overflow: hidden;
}

.technology-track::before,
.technology-track::after {
  content: "";
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
}

.technology-track::before {
  left: 0;
  background: linear-gradient(to right, var(--light-bg), transparent);
}

.technology-track::after {
  right: 0;
  background: linear-gradient(to left, var(--light-bg), transparent);
}

/* LOGO STRIP */
.technology_items {
  display: flex;
  align-items: center;
  gap: 48px;
  width: max-content;
  animation: techScroll 35s linear infinite;
}

/* pause on hover (desktop luxury touch) */
.technology-track:hover .technology_items {
  animation-play-state: paused;
}

/* LOGOS */
.technology_items img {
  height: 56px;
  opacity: 0.65;
  filter: none;
  transition: all 0.35s ease;
}

.technology_items img:hover {
  opacity: 1;
  transform: scale(1.12);
  filter: drop-shadow(0 10px 18px rgba(0, 50, 88, 0.25));
}

/* ANIMATION */
@keyframes techScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {
  .technology_items {
    gap: 32px;
    animation-duration: 25s;
  }

  .technology_items img {
    height: 44px;
  }
}
/* =========================
   HERO ANIMATIONS
========================= */

/* Animated gradient background */
.gradient-bg {
  background: linear-gradient(120deg, #5b5cf0, #6a5cff, #4e54c8);
  background-size: 300% 300%;
  animation: gradientMove 10s ease infinite;
  overflow: hidden;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Text initial state */
.hero-slider-content h1,
.hero-slider-content p,
.hero-slider-content .action-btns,
.hero_highlight {
  opacity: 0;
  transform: translateY(30px);
}

/* Active animation */
.hero-animate h1 {
  animation: fadeUp 0.8s ease forwards;
}

.hero-animate p {
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 0.2s;
}

.hero-animate .action-btns {
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 0.4s;
}

.hero-animate .hero_highlight {
  animation:
    fadeUp 0.8s ease forwards,
    pulse 2.5s infinite;
  animation-delay: 0.1s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Highlight pulse */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

/* Floating hero image */
.image-wrap img {
  animation: floatImage 4s ease-in-out infinite;
}

@keyframes floatImage {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0);
  }
}

/* Button hover creativity */
.action-btns .btn {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.action-btns .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

/* ===============================
   SERVICES – PREMIUM MOBILE FIX
================================ */

.services-about-style {
  padding: 100px 0;

  background: #f4f4f3;
}

.services-content {
  padding-right: 30px;
}

/* TAG */

.services-content .section-tag {
  font-size: 13px;

  text-transform: uppercase;

  letter-spacing: 1.2px;

  color: #5b5bff;

  font-weight: 600;
}

/* HEADING */

.services-content h2 {
  font-size: 36px;

  font-weight: 800;

  margin: 12px 0;

  color: #0f172a;
}

/* TEXT */

.services-content p {
  font-size: 15.5px;

  line-height: 1.7;

  color: #475569;
}

/* BUTTON WRAPPER */

.services-btn-wrap {
  margin-top: 22px;
}

/* BUTTON */

.primary-outline-btn {
  padding: 12px 30px;

  border-radius: 999px;

  border: 2px solid #5b5bff;

  color: #5b5bff;

  font-weight: 600;

  transition: 0.3s ease;
}

.primary-outline-btn:hover {
  background: #5b5bff;

  color: #fff;
}

/* GRID */

.services-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 24px;
}

/* CARD */

.service-card {
  display: block;

  padding: 26px;

  border-radius: 18px;

  text-decoration: none;

  transition: all 0.4s ease;
}

/* CARD COLOR */

.gradient-card {
  background: linear-gradient(
    135deg,
    rgba(155, 14, 9, 0.08),
    rgba(6, 25, 113, 0.9)
  );

  color: #fff;
}

/* ICON */

.service-icon {
  font-size: 30px;

  margin-bottom: 12px;
}

/* TITLE */

.service-card h5 {
  font-size: 18px;

  font-weight: 700;
}

/* TEXT */

.service-card p {
  font-size: 14px;

  opacity: 0.9;
}

/* HOVER */

.service-card:hover {
  transform: translateY(-6px);

  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

/* ===============================
   MOBILE FIX (MOST IMPORTANT)
================================ */

@media (max-width: 991px) {
  .services-content {
    text-align: center;

    padding-right: 0;

    margin-bottom: 40px;
  }

  .services-btn-wrap {
    display: flex;

    justify-content: center;
  }
}

@media (max-width: 767px) {
  .services-about-style {
    padding: 70px 18px;
  }

  .services-grid {
    grid-template-columns: 1fr;

    gap: 20px;
  }
}

/* ===============================
   EXPERTISE HIGHLIGHT SECTION
================================ */

.expertise-highlight-section {
  padding: 100px 0;

  background: #ffffff;
}

/* CONTENT */

.expertise-content .section-tag {
  font-size: 13px;

  letter-spacing: 1.2px;

  text-transform: uppercase;

  color: #003258;

  font-weight: 600;
}

.expertise-content h2 {
  font-size: 36px;

  font-weight: 800;

  color: #0f172a;

  margin: 12px 0;
}

.expertise-content p {
  font-size: 15.5px;

  line-height: 1.7;

  color: #475569;

  margin-bottom: 18px;
}

/* LIST */

.expertise-list {
  list-style: none;

  padding: 0;

  margin: 20px 0;
}

.expertise-list li {
  font-size: 15px;

  color: #0f172a;

  margin-bottom: 10px;

  position: relative;

  padding-left: 22px;
}

.expertise-list li::before {
  content: "›";

  position: absolute;

  left: 0;

  color: #ff4d4d;

  font-size: 20px;
}

/* BUTTON */

.expertise-actions {
  display: flex;

  gap: 14px;

  margin-top: 24px;
}

/* IMAGE */

.expertise-image {
  display: flex;

  justify-content: center;

  align-items: center;
}

.expertise-image img {
  max-width: 620px;

  width: 100%;

  border-radius: 18px;

  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.12);

  animation: floatY 6s ease-in-out infinite;
}

/* FLOAT ANIMATION */

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* ===============================
   MOBILE PREMIUM FIX
================================ */

@media (max-width: 991px) {
  .expertise-content {
    text-align: center;

    margin-bottom: 30px;
  }

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

@media (max-width: 767px) {
  .expertise-highlight-section {
    padding: 70px 18px;
  }

  .expertise-content h2 {
    font-size: 26px;
  }

  .expertise-image img {
    max-width: 240px;

    margin-top: 20px;
  }

  .expertise-actions {
    flex-direction: column;
  }

  .expertise-actions .btn {
    width: 70%;
    display: flex;
    margin-left: 40px;
    justify-content: center;
  }
}
/* ===============================
   PORTFOLIO / CASE STUDIES SECTION
================================ */

.our-portfolio-section {
  padding: 40px 0 100px;

  background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
}

/* ===============================
   SECTION HEADING
================================ */

.our-portfolio-section .section-heading strong {
  font-size: 14px;

  letter-spacing: 1px;

  color: #003258;

  text-transform: uppercase;
}

.our-portfolio-section .section-heading h2 {
  font-size: 38px;

  font-weight: 700;

  margin: 10px 0;

  color: #020617;
}

.our-portfolio-section .section-heading .lead {
  font-size: 16px;

  color: #64748b;

  line-height: 1.7;

  max-width: 720px;

  margin: 0 auto;
}

/* ===============================
   FILTER BAR
================================ */

.portfolio-filters-wrap {
  overflow-x: auto;

  margin: 30px 0 20px;
}

.portfolio-filters-scroll {
  display: inline-flex;

  gap: 12px;

  padding-bottom: 6px;

  scrollbar-width: none;
}

.portfolio-filters-scroll::-webkit-scrollbar {
  display: none;
}

.filter-btn {
  background: #ffffff;

  border: 1px solid #e5e7eb;

  color: #003258;

  padding: 10px 22px;

  border-radius: 999px;

  font-weight: 600;

  white-space: nowrap;

  transition: all 0.3s ease;
}

.filter-btn.active {
  background: #dc2d27;

  color: #ffffff;

  border-color: #dc2d27;

  box-shadow: 0 10px 25px rgba(220, 45, 39, 0.35);
}

/* ===============================
   GRID LAYOUT
================================ */

.portfolio-container {
  display: grid;

  gap: 26px;

  margin-top: 40px;
}

@media (max-width: 767px) {
  .portfolio-container {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 768px) {
  .portfolio-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .portfolio-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===============================
   PORTFOLIO CARD
================================ */

.portfolio-wrapper {
  position: relative;

  background: #ffffff;

  border-radius: 24px;

  overflow: hidden;

  box-shadow: 0 20px 50px rgba(2, 6, 23, 0.08);

  transition: all 0.35s ease;
}

.portfolio-wrapper:hover {
  transform: translateY(-10px);

  box-shadow: 0 40px 90px rgba(2, 6, 23, 0.18);
}

/* ===============================
   IMAGE
================================ */

.portfolio-wrapper img {
  width: 100%;

  height: 260px;

  object-fit: cover;

  transition: transform 0.6s ease;
}

.portfolio-wrapper:hover img {
  transform: scale(1.06);
}

/* ===============================
   BELOW IMAGE CONTENT
================================ */

.portfolio-wrapper .text-center {
  padding: 18px 16px;
}

.portfolio-wrapper .text-center h5 {
  font-size: 16px;

  font-weight: 700;

  margin-bottom: 4px;

  color: #020617;
}

.portfolio-wrapper .text-center span {
  font-size: 13px;

  color: #64748b;
}

/* ===============================
   ⭐⭐⭐ PREMIUM MOBILE VERSION ⭐⭐⭐
================================ */

@media (max-width: 767px) {
  /* SECTION */

  .our-portfolio-section {
    padding: 60px 18px;
  }

  .our-portfolio-section .section-heading {
    text-align: left;
  }

  .our-portfolio-section .section-heading h2 {
    font-size: 28px;
  }

  .our-portfolio-section .section-heading .lead {
    font-size: 15px;
  }

  /* FILTER BAR PREMIUM */

  .portfolio-filters-wrap {
    margin: 20px 0;
  }

  .filter-btn {
    padding: 9px 18px;

    font-size: 14px;
  }

  /* CARD PREMIUM */

  .portfolio-wrapper {
    border-radius: 18px;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  }

  .portfolio-wrapper:hover {
    transform: none;
  }

  /* IMAGE PREMIUM */

  .portfolio-wrapper img {
    height: 190px;
  }

  /* CONTENT PREMIUM */

  .portfolio-wrapper .text-center {
    padding: 16px;

    text-align: left;
  }

  .portfolio-wrapper .text-center h5 {
    font-size: 17px;
  }

  .portfolio-wrapper .text-center span {
    font-size: 13px;
  }
}
/* ===============================
   PRICING SECTION – PREMIUM FINAL
================================ */

.pricing-section {
  padding: 40px 0 60px 0;
  background: linear-gradient(180deg, #f8fafc, #ffffff);
  position: relative;
}

.pricing-section .section-heading h2 {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 700;
  margin-bottom: 10px;
}

.pricing-section .lead {
  color: #64748b;
  max-width: 640px;
  margin: 0 auto;
}

/* ===== Toggle ===== */
.pricing-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin: 35px 0 60px;
}

.toggle-label {
  font-weight: 600;
  cursor: pointer;
  color: #94a3b8;
  transition: color 0.3s;
}

.toggle-label.active {
  color: #0f172a;
}

.switch {
  position: relative;
  width: 56px;
  height: 28px;
}

.switch input {
  display: none;
}

.slider {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #c7d2fe, #e0e7ff);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.3s;
}

.slider::before {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  background: #ffffff;
  border-radius: 50%;
  top: 3px;
  left: 4px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.35s ease;
}

.switch input:checked + .slider::before {
  transform: translateX(26px);
}

/* ===== Grid ===== */
.pricing-grid {
  display: grid;
  gap: 28px;
}

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

/* ===== Card ===== */
.pricing-card {
  position: relative;
  background: linear-gradient(
    180deg,
    rgba(37, 99, 235, 0.06),
    rgba(255, 255, 255, 0.98)
  );
  border-radius: 22px;
  border: 1px solid black;
  padding: 40px 34px;
  box-shadow: 0 18px 50px rgba(2, 6, 23, 0.08);
  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease;
  overflow: hidden;
}

.pricing-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    120% 80% at top center,
    rgba(37, 99, 235, 0.12),
    transparent 65%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.pricing-card:hover::after {
  opacity: 1;
}

.pricing-card:hover {
  transform: translateY(-14px);
  box-shadow: 0 40px 80px rgba(2, 6, 23, 0.18);
}

/* ===== Popular ===== */
.pricing-card.popular {
  border: 2px solid #eb2525;
  transform: translateY(-6px);
}

.pricing-card.popular:hover {
  transform: translateY(-18px);
}

.badge {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 999px;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
}

/* ===== Text ===== */
.pricing-card h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 4px;
}

.tagline {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 20px;
}

/* ===== Price ===== */
.price {
  font-size: 36px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 6px;
}

.price span {
  font-size: 14px;
  font-weight: 500;
  color: #64748b;
}

.price small {
  display: block;
  font-size: 12px;
  color: #16a34a;
  margin-top: 4px;
}

.yearly {
  display: none;
}

/* ===== Features ===== */
.features {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: #334155;
  padding: 8px 0;
}

.features li i {
  color: #22c55e;
  font-size: 14px;
}

/* ===== Button ===== */
.plan-btn {
  display: inline-block;
  width: 100%;
  text-align: center;
  margin-top: 20px;
  padding: 14px 0;
  border-radius: 999px;
  border: 2px solid #0f172a;
  background: transparent;
  color: #0f172a;
  font-weight: 600;
  transition: all 0.35s ease;
}

.plan-btn.primary {
  background: linear-gradient(135deg, #eb2525, #1d4ed8);
  border: none;
  color: #fff;
}

.plan-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.35);
}

/* ===== Mobile ===== */
@media (max-width: 575px) {
  .pricing-card {
    padding: 32px 26px;
  }

  .price {
    font-size: 32px;
  }
}
.plan-btn:hover {
  background: linear-gradient(135deg, #eb2525, #1d4ed8);
  border: none;
  color: #fff;
}

/* ===============================
   CONTACT SECTION
================================ */
.contact-us-section {
  margin-top: -20px;
  padding: 90px 0;
  background: #f8fafc;
}
.section-badge {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #2563eb;
  text-transform: uppercase;
}

.section-title {
  font-size: 38px;
  font-weight: 700;
  margin: 10px 0;
  color: #0f172a;
}

.section-underline {
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #2563eb, #dc2626);
  margin: 14px auto 18px;
  border-radius: 10px;
}

.section-subtitle {
  font-size: 16px;
  color: #475569;
}

/* FORM CARD */
.contact-form-card {
  background: linear-gradient(180deg, #ffffff, #f1f5f9);
  border-radius: 22px;
  padding: 28px;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
  box-shadow: 0 20px 45px rgba(2, 6, 23, 0.08);
}
.contact-form-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(2, 6, 23, 0.12);
}

/* INPUTS */
.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 14px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  font-size: 14px;
  transition: 0.25s ease;
}

.contact-form-card input:focus,
.contact-form-card select:focus,
.contact-form-card textarea:focus {
  border-color: #2563eb;
  outline: none;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

/* BUTTON */
.contact-btn {
  width: 70%;
  padding: 11px 18px;
  border-radius: 28px;
  justify-content: center;
  justify-items: center;
  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.35s ease;
}

.contact-btn:hover {
  transform: translateY(-3px) rotateX(6deg);
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.45);
}

/* QUICK CONTACT CARD */
.quick-contact-card {
  background: linear-gradient(135deg, #0f172a, #1e3a8a, #dc2626);
  border-radius: 18px;
  padding: 26px;
  color: #ffffff;
  box-shadow: 0 25px 50px rgba(2, 6, 23, 0.25);
  transition: all 0.35s ease;
}

.quick-contact-card:hover {
  transform: translateY(-6px);
}

.quick-contact-card h4 {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 6px;
}

.quick-contact-card p {
  color: #e5e7eb;
  font-size: 14px;
}

/* QUICK ITEMS */
.quick-item {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 18px;
  text-decoration: none;
  color: #ffffff;
  transition: all 0.3s ease;
}

.quick-item:hover {
  transform: translateX(4px);
  color: #fde68a;
}

.quick-item i {
  font-size: 22px;
  color: #fde68a;
}

.quick-item span {
  font-size: 14px;
  color: #e0e7ff;
}

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {
  .section-title {
    font-size: 28px;
  }

  .contact-form-card {
    padding: 20px;
  }

  .quick-contact-card {
    margin-top: 22px;
  }

  .contact-btn {
    font-size: 14px;
    padding: 10px 16px;
  }
}

/* ===============================
   PREMIUM FOOTER
================================ */
.premium-footer {
  background: linear-gradient(135deg, #dc2d27 0%, #7c2d12 45%, #020617 100%);
  color: #ffffff;
  position: relative;
}

.footer-main {
  padding: 90px 0 60px;
}

.footer-logo {
  width: 170px;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  max-width: 320px;
}

.footer-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 22px;
  position: relative;
}

.footer-title::after {
  content: "";
  width: 40px;
  height: 2px;
  background: #ffffff;
  position: absolute;
  left: 0;
  bottom: -8px;
}
.footer-tagline {
  font-size: 13px;
  opacity: 0.8;
  margin-top: 10px;
}

/* LINKS */
.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 12px;
  font-size: 15px;
}

.footer-links a {
  position: relative;
  color: rgba(255, 255, 255, 0.85);
  transition: all 0.3s ease;
}
.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #ffffff;
  transition: width 0.3s ease;
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 6px;
}

/* CONTACT */
.footer-contact i {
  margin-right: 10px;
  color: #ffffff;
}

/* SOCIAL */
.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #ffffff;
  color: #020617;
  transform: translateY(-4px);
}

/* BOTTOM */
.footer-bottom {
  background: rgba(0, 0, 0, 0.25);
  padding: 18px 0;
}

.footer-bottom-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
}

.footer-bottom ul {
  list-style: none;
  display: flex;
  gap: 18px;
  margin: 0;
  padding: 0;
}

.footer-bottom a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-bottom a:hover {
  color: #ffffff;
}
/* =========================
   BACK TO TOP – PREMIUM (REFINED)
========================= */
.back-to-top-btn {
  position: fixed;
  right: 22px;
  left: auto;
  bottom: 22px; /* stays at bottom */
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #003258;
  color: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.35s ease,
    transform 0.35s ease,
    background 0.35s ease;
  z-index: 998; /* 👈 lower priority than WhatsApp */
  box-shadow: 0 10px 30px rgba(0, 50, 88, 0.35);
}

/* Show on scroll */
.back-to-top-btn.show {
  opacity: 1;
  pointer-events: auto;
}

/* Hover – controlled, not playful */
.back-to-top-btn:hover {
  transform: translateY(-4px);
  background: #dc2d27;
}

/* Icon */
.back-to-top-btn i {
  font-size: 18px;
}

/* Subtle floating for back-to-top */
@keyframes backToTopFloat {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
  100% {
    transform: translateY(0);
  }
}
.back-to-top-btn.show {
  opacity: 1;
  pointer-events: auto;
  animation: backToTopFloat 6s ease-in-out infinite;
}
.back-to-top-btn:hover {
  transform: translateY(-6px);
  background: #dc2d27;
}
.back-to-top-btn.show {
  animation-delay: 1.2s;
}

/* =========================
   WHATSAPP FLOAT – PREMIUM (SMART)
========================= */
.whatsapp-float {
  position: fixed;
  left: 22px;
  right: auto;
  bottom: 22px; /* 👈 clearly separated from back-to-top */
  width: 56px;
  height: 56px;
  background: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  z-index: 999;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease,
    background 0.35s ease;
}

/* Show WhatsApp after scroll */
.whatsapp-float.show {
  opacity: 1;
  transform: translateY(0);
  animation: whatsapp-float 5s ease-in-out infinite;
}

/* Hover – friendly tilt */
.whatsapp-float:hover {
  transform: translateY(-6px) rotate(8deg);
  background: #1ebe5b;
}

/* Gentle floating animation (premium) */
@keyframes whatsapp-float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
  100% {
    transform: translateY(0);
  }
}
/* =========================
   MOBILE OPTIMIZATION
========================= */
@media (max-width: 768px) {
  .footer-main {
    padding: 60px 0 40px;
    text-align: center;
  }

  .footer-brand p {
    max-width: 100%;
    margin: 0 auto;
    font-size: 14.5px;
  }

  .footer-logo {
    margin: 0 auto 18px;
  }

  .footer-title {
    margin-top: 32px;
    margin-bottom: 14px;
    font-size: 17px;
  }

  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-links li,
  .footer-contact li {
    font-size: 14.5px;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-bottom-wrap {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .footer-bottom ul {
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
  }
}

@media (max-width: 768px) {
  .whatsapp-float {
    left: auto;
    right: 16px;
    bottom: 96px; /* 👈 lifted above footer */
  }

  .back-to-top-btn {
    right: 16px;
    bottom: 32px; /* 👈 clear separation */
  }
}

@media (max-width: 768px) {
  .premium-footer {
    border-radius: 24px 24px 0 0;
  }
}

/* =========================
   ABOUT PAGE CSS
========================= */
/* ================= ABOUT HERO ================= */
/* Hero Section */

.premium-hero {
  position: relative;
  padding: 140px 0 130px;
  background-image: url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.premium-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 40, 75, 0.95),
    rgba(0, 40, 75, 0.75)
  );
  z-index: 1;
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

/* EYEBROW */
.hero-eyebrow {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #e5e7eb;
  background: rgba(255, 255, 255, 0.12);
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 26px;
}

/* TITLE */
.hero-title {
  font-size: 46px;
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 26px;
}

.hero-title span {
  color: #dc2d27;
}

/* DESCRIPTION */
.hero-desc {
  font-size: 18px;
  line-height: 1.75;
  color: #e2e8f0;
  max-width: 760px;
  margin: 0 auto 44px;
}

/* ACTIONS */
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

/* PRIMARY CTA */
.hero-primary {
  background: #dc2d27;
  color: #ffffff;
  padding: 16px 38px;
  border-radius: 999px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.hero-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(220, 45, 39, 0.5);
}

/* SECONDARY CTA */
.hero-secondary {
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: #ffffff;
  padding: 16px 38px;
  border-radius: 999px;
  font-weight: 600;
  background: transparent;
  transition: all 0.3s ease;
}

.hero-secondary:hover {
  background: #ffffff;
  color: #020617;
  transform: translateY(-4px);
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .premium-hero {
    padding: 110px 0 100px;
  }

  .hero-title {
    font-size: 34px;
  }

  .hero-desc {
    font-size: 16px;
  }
}

/* ====================================
   ABOUT WITH PROMO – DIGIKEYCENTRO PREMIUM
==================================== */

.about-with-promo {
  position: relative;

  padding: 120px 0;

  background: linear-gradient(180deg, #ffffff, #f9fafc);

  overflow: hidden;
}

/* PREMIUM BACKGROUND GLOW */

.promo-bg-shape {
  position: absolute;

  width: 340px;

  height: 340px;

  background: radial-gradient(circle, rgba(220, 45, 39, 0.18), transparent 70%);

  z-index: 0;

  animation: slowFloat 14s ease-in-out infinite;
}

.shape-left {
  top: 10%;

  left: -140px;
}

.shape-right {
  bottom: 10%;

  right: -140px;

  animation-delay: 6s;
}

@keyframes slowFloat {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-40px);
  }

  100% {
    transform: translateY(0);
  }
}

/* ====================================
   IMAGE AREA
==================================== */

.about-us-img {
  position: relative;

  text-align: center;

  z-index: 2;
}

/* CHANGE SVG COLOR TO BRAND */

.mesh-svg path {
  fill: #dc2d27;

  opacity: 0.25;
}

.mesh-svg {
  position: absolute;

  width: 260px;

  top: -60px;

  left: -60px;

  z-index: -1;

  animation: meshFloat 12s ease-in-out infinite;
}

@keyframes meshFloat {
  0% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-30px) scale(1.05);
  }

  100% {
    transform: translateY(0) scale(1);
  }
}

/* IMAGE */

.about-single-img {
  max-width: 92%;

  border-radius: 20px;

  box-shadow: 0 30px 80px rgba(220, 45, 39, 0.15);

  transition: 0.5s;
}

.about-us-img:hover .about-single-img {
  transform: translateY(-12px) scale(1.02);
}

/* ====================================
   CONTENT AREA
==================================== */

.about-content-wrap {
  padding-left: 30px;

  position: relative;

  z-index: 2;
}

/* ABOUT US TEXT */

.about-content-wrap strong {
  font-size: 14px;

  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 1px;

  color: #dc2d27;
}

.about-content-wrap h2 {
  font-size: 40px;

  font-weight: 800;

  color: #111827;

  margin-top: 10px;
}

/* PREMIUM BORDER */

.animate-border {
  width: 70px;

  height: 4px;

  background: linear-gradient(90deg, #dc2d27, #ff6a5f);

  border-radius: 10px;

  margin-bottom: 30px;
}

/* TEXT */

.about-content-wrap p {
  font-size: 17px;

  color: #4b5563;

  line-height: 1.9;

  margin-bottom: 30px;
}

/* ====================================
   PREMIUM CHECK LIST
==================================== */

.check-list-info {
  list-style: none;

  padding: 0;
}

.check-list-info li {
  position: relative;

  padding: 18px 18px 18px 52px;

  margin-bottom: 20px;

  font-size: 16px;

  background: linear-gradient(
    135deg,
    rgba(220, 45, 39, 0.05),
    rgba(255, 106, 95, 0.05)
  );

  border-radius: 14px;

  transition: 0.4s;
}

/* ICON */

.check-list-info li::before {
  content: "✔";

  position: absolute;

  left: 16px;

  top: 18px;

  width: 28px;

  height: 28px;

  background: linear-gradient(135deg, #dc2d27, #ff6a5f);

  color: white;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 14px;
}

/* HOVER */

.check-list-info li:hover {
  transform: translateX(10px);

  box-shadow: 0 20px 40px rgba(220, 45, 39, 0.15);
}

/* ====================================
   MOBILE
==================================== */

@media (max-width: 991px) {
  .about-content-wrap {
    padding-left: 0;

    margin-top: 40px;
  }
}
/* =========================
   MISSION & VISION – DIGIKEYCENTRO PREMIUM
========================= */

.mission-vision-section {
  background: linear-gradient(180deg, #ffffff, #f9fafc);

  padding: 120px 0;

  position: relative;

  overflow: hidden;
}

/* =========================
   CARD BASE
========================= */

.mv-card {
  background: linear-gradient(
    135deg,
    rgba(220, 45, 39, 0.04),
    rgba(255, 106, 95, 0.04)
  );

  padding: 52px 44px;

  border-radius: 24px;

  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.08);

  height: 100%;

  position: relative;

  transition: 0.4s;
}

/* =========================
   PREMIUM TOP ACCENT
========================= */

.mv-card::before {
  content: "";

  position: absolute;

  top: 0;

  left: 0;

  height: 6px;

  width: 100%;

  background: linear-gradient(90deg, #dc2d27, #ff6a5f);
}

/* =========================
   BADGE
========================= */

.mv-badge {
  font-size: 12px;

  font-weight: 700;

  letter-spacing: 1px;

  color: #dc2d27;

  background: rgba(220, 45, 39, 0.08);

  padding: 7px 16px;

  border-radius: 999px;

  margin-bottom: 20px;
}

/* =========================
   TITLE
========================= */

.mv-card h3 {
  font-size: 28px;

  font-weight: 800;

  color: #111827;
  margin-top: 15px;
  margin-bottom: 15px;
}

/* =========================
   TEXT
========================= */

.mv-card p {
  font-size: 17px;

  line-height: 1.9;

  color: #4b5563;
}

/* =========================
   PREMIUM HOVER
========================= */

.mv-card:hover {
  transform: translateY(-14px) scale(1.02);

  box-shadow: 0 45px 100px rgba(220, 45, 39, 0.18);
}

/* =========================
   FLOAT ANIMATION
========================= */

.mv-float {
  animation: floatCard 6s ease-in-out infinite;
}

.mv-float.delay {
  animation-delay: 1.5s;
}

@keyframes floatCard {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0);
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {
  .mv-card {
    padding: 40px 30px;
  }

  .mv-card h3 {
    font-size: 24px;
  }

  .mv-card p {
    font-size: 15px;
  }

  .mv-float {
    animation-duration: 8s;
  }
} /* =========================
   STATS / ACHIEVEMENTS
========================= */
.stats-section {
  background: linear-gradient(180deg, #f9fafc, #ffffff);
  padding: 100px 0;
}

.stats-section h2 {
  font-size: 36px;
  font-weight: 700;
  color: #111827;
}

.stats-section .lead {
  font-size: 18px;
  color: #6b7280;
  max-width: 650px;
  margin: 0 auto;
}

/* Card */
.stats-card {
  background: linear-gradient(
    135deg,
    rgba(239, 68, 68, 0.08),
    rgba(99, 102, 241, 0.08)
  );
  backdrop-filter: blur(6px);
  padding: 40px 28px;
  border-radius: 22px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

/* Glow hover */
.stats-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 70px rgba(79, 70, 229, 0.18);
}

/* Icon (smaller & premium) */
.stats-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #6366f1, #ef4444);
  color: #ffffff;
  font-size: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  box-shadow: 0 10px 24px rgba(99, 102, 241, 0.4);
}

/* Number */
.stats-card h3 {
  font-size: 40px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 6px;
  letter-spacing: -1px;
}

/* Label */
.stats-card p {
  font-size: 15px;
  font-weight: 500;
  color: #6b7280;
  margin-bottom: 0;
}

/* Mobile tuning */
@media (max-width: 768px) {
  .stats-card {
    padding: 36px 24px;
  }

  .stats-card h3 {
    font-size: 34px;
  }

  .stats-icon {
    width: 58px;
    height: 58px;
    font-size: 24px;
  }
}
/* =========================
   SERVICES QUICK OVERVIEW
========================= */
.services-section {
  background: linear-gradient(180deg, #f9fafc, #ffffff);
  padding: 100px 0 60px 0;
  position: relative;

  overflow: hidden;
}

.services-section h2 {
  font-size: 36px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 10px;
}

.services-section .lead {
  font-size: 18px;
  color: #6b7280;
  max-width: 650px;
  margin: 0 auto;
}
/* FIX PROFESSIONAL GAP */

.services-row {
  row-gap: 40px;
}

.services-row > div {
  padding-left: 20px;

  padding-right: 20px;
}
/* Card */
.services-card {
  background: linear-gradient(
    135deg,
    rgba(239, 68, 68, 0.08),
    rgba(99, 102, 241, 0.08)
  );
  backdrop-filter: blur(6px);
  padding: 42px 32px;
  border-radius: 22px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
  height: 100%;
  position: relative;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

/* Hover (desktop enhancement) */
.services-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 70px rgba(79, 70, 229, 0.18);
}

/* Icon */
.service-icon {
  width: 62px;
  height: 62px;
  background: linear-gradient(135deg, #6366f1, #ef4444);
  color: #ffffff;
  font-size: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  box-shadow: 0 10px 24px rgba(99, 102, 241, 0.4);
}

/* Title */
.services-card h5 {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
}

/* Description */
.services-card p {
  font-size: 15.5px;
  line-height: 1.75;
  color: #6b7280;
  margin-bottom: 0;
}

/* =========================
   FLOATING IDLE ANIMATION
========================= */
.service-float {
  animation: serviceFloat 6s ease-in-out infinite;
}

.service-float.delay {
  animation-delay: 1.5s;
}

@keyframes serviceFloat {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
/* MOBILE */

@media (max-width: 768px) {
  .services-row > div {
    padding-left: 12px;

    padding-right: 12px;
  }
}

/* =========================
   TEAM SECTION – FINAL PREMIUM
========================= */
.team-section {
  background: linear-gradient(180deg, #f9fafc, #ffffff);
  padding: 100px 0 60px 0;
}

.team-section h2 {
  font-size: 36px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
}

.team-section .lead {
  font-size: 18px;
  color: #6b7280;
  max-width: 650px;
  margin: 0 auto;
}

/* Card */
.team-card {
  background: linear-gradient(145deg, #f3f6fb, #e6ecf5);
  border-radius: 20px;
  padding: 40px 25px;
  gap: 16px;
  text-align: center;
  height: 100%;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
  position: relative;
}

/* Subtle gradient glow */
.team-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: linear-gradient(
    135deg,
    rgba(239, 68, 68, 0.08),
    rgba(99, 102, 241, 0.08)
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: -1;
}

.team-card:hover::after {
  opacity: 1;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Avatar */
.avatar-wrap {
  width: 140px;
  height: 140px;

  margin: 0 auto 20px;

  border-radius: 50%;
  overflow: hidden;

  border: 2px solid #001b33;

  box-shadow: 0 15px 35px rgba(0, 27, 51, 0.3);

  position: relative;
}
.avatar-img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  object-position: center top;

  transform: scale(1.15);
}
/* Name */

.team-name {
  font-size: 22px;

  font-weight: 600;

  margin-bottom: 5px;

  color: #0b1c2c;
}

/* Role */

.team-role {
  font-size: 16px;

  color: #6c7a89;

  margin: 0;
}

/* Floating idle animation */
.team-float {
  animation: teamFloat 6s ease-in-out infinite;
}

.team-float.delay {
  animation-delay: 1.5s;
}

@keyframes teamFloat {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .team-section {
    padding: 70px 0;
  }

  .team-section h2 {
    font-size: 28px;
  }

  .avatar-wrap {
    width: 88px;
    height: 88px;
  }
}
/* Desktop row gap adjustment */
@media (min-width: 992px) {
  .team-section .row.g-4 {
    row-gap: 40px;
  }
}

/* =========================
   CALL TO ACTION – ALIGNED
========================= */
.cta-section {
  padding: 60px 0 60px 0;
}

/* CTA Card */
.cta-card {
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(239, 68, 68, 0.12),
    rgba(99, 102, 241, 0.12)
  );
  backdrop-filter: blur(6px);
  border-radius: 28px;
  padding: 70px 40px;
  max-width: 1100px;
  margin: 0 auto;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

/* Soft glow overlay */
.cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top right,
    rgba(255, 255, 255, 0.35),
    transparent 60%
  );
  opacity: 0.6;
}

/* Content */
.cta-card h3 {
  font-size: 34px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.cta-card .lead {
  font-size: 18px;
  color: #4b5563;
  max-width: 650px;
  margin: 0 auto 28px;
  position: relative;
  z-index: 1;
}

/* CTA Button */
.cta-btn {
  background: linear-gradient(135deg, #6366f1, #ef4444);
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 34px;
  border-radius: 999px;
  display: inline-block;
  transition: all 0.35s ease;
  box-shadow: 0 15px 35px rgba(79, 70, 229, 0.35);
  position: relative;
  z-index: 1;
}

/* Button Hover */
.cta-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px rgba(79, 70, 229, 0.45);
  color: #ffffff;
}

/* Idle floating animation */
.cta-card {
  animation: ctaFloat 6s ease-in-out infinite;
}

@keyframes ctaFloat {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .cta-card {
    padding: 55px 28px;
  }

  .cta-card h3 {
    font-size: 26px;
  }

  .cta-card .lead {
    font-size: 16px;
  }
}

/* Space before footer */
/* .call-to-action {
  margin-bottom: 100px;
} */
/* end of about page css */

/* ====================================
   COURSES PAGE – PREMIUM UI
==================================== */

/* HERO */
.hero-section {
  position: relative;
  padding: 120px 0 110px 0;
  background-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Overlay */
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 50, 88, 0.92),
    rgba(0, 50, 88, 0.78)
  );
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

/* Badge */
.hero-section .badge-light {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 999px;
  display: inline-block;
  letter-spacing: 0.3px;
  font-size: 13px;
}

/* Heading Desktop */
.hero-section h1 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  letter-spacing: -0.5px;
  margin-bottom: 22px;
}

/* Highlight */
.hero-section .highlight-text {
  color: #dc2d27;
}

/* Paragraph */
.hero-section .lead {
  max-width: 640px;
  margin: 0 auto;
  font-size: 17px;
  color: #e2e8f0;
  line-height: 1.65;
}

/* Buttons */
.hero-btn-group {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* Primary button */
.primary-hero-btn {
  background: #dc2d27;
  min-width: 190px;
  text-align: center;
  color: #ffffff;
  padding: 14px 30px;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: none;
}

.primary-hero-btn:hover {
  transform: translateY(-3px);
}

/* Secondary button */
.secondary-hero-btn {
  background: transparent;
  min-width: 190px;
  text-align: center;
  color: #ffffff;
  padding: 14px 30px;
  font-weight: 600;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.7);
}

/* ================= MOBILE FIX ================= */

@media (max-width: 768px) {
  .hero-section {
    padding: 80px 0 70px 0;
  }

  .hero-section h1 {
    font-size: 32px;

    line-height: 1.2;
  }

  .hero-section .highlight-text {
    display: block;

    font-size: 34px;

    margin-top: 6px;
  }

  .hero-section .lead {
    font-size: 15.5px;

    line-height: 1.6;

    max-width: 95%;
  }

  .hero-btn-group {
    gap: 12px;

    margin-top: 26px;
  }

  .primary-hero-btn,
  .secondary-hero-btn {
    width: 50%;

    min-width: auto;

    padding: 13px 22px;

    font-size: 15px;
  }

  .hero-section .badge-light {
    font-size: 12px;

    padding: 6px 14px;
  }
}

/* ================= SMALL MOBILE ================= */

@media (max-width: 480px) {
  .hero-section h1 {
    font-size: 28px;
  }

  .hero-section .highlight-text {
    font-size: 30px;
  }

  .hero-section .lead {
    font-size: 15px;
  }
}

/* PREMIUM ABOUT SECTION */

.premium-about {
  background: linear-gradient(180deg, #f6f6f6, #f3f3f6);

  padding: 120px 0;

  position: relative;

  overflow: hidden;
}

.about-wrapper {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 80px;

  align-items: center;
}

.about-tag {
  background: linear-gradient(90deg, #db2d27, #002a47);

  color: white;

  padding: 6px 14px;

  border-radius: 20px;

  font-size: 13px;

  display: inline-block;

  margin-bottom: 20px;
}

.about-text-block h2 {
  font-size: 42px;

  font-weight: 700;

  color: #111827;

  margin-bottom: 20px;

  line-height: 1.2;
}

.about-desc {
  color: #64748b;

  font-size: 17px;

  margin-bottom: 30px;
}

.about-points li {
  display: flex;

  gap: 15px;

  margin-bottom: 25px;

  background: rgba(255, 255, 255, 0.03);

  padding: 18px;

  border-radius: 12px;

  transition: 0.4s;

  border: 1px solid rgba(255, 255, 255, 0.05);
}

.about-points li:hover {
  transform: translateY(-6px);

  background: rgba(255, 255, 255, 0.05);

  border: 1px solid rgba(59, 130, 246, 0.3);
}

.point-icon {
  font-size: 26px;
}

.about-points strong {
  color: #111827;

  display: block;

  margin-bottom: 4px;
}

.about-points span {
  color: #64748b;

  font-size: 14px;
}

.about-cta {
  display: inline-block;

  margin-top: 20px;

  padding: 14px 28px;

  border-radius: 8px;

  background: linear-gradient(90deg, #db2d27, #002a47);

  color: white;

  font-weight: 600;

  text-decoration: none;

  transition: 0.4s;
}

.about-cta:hover {
  transform: translateY(-2px);

  box-shadow: 0 10px 30px rgba(198, 206, 218, 0.4);
}

.image-wrapper {
  position: relative;
}

.img-main {
  width: 100%;

  border-radius: 20px;
}

.img-float {
  position: absolute;

  width: 220px;

  bottom: -30px;

  right: -30px;

  border-radius: 16px;

  border: 4px solid #0f172a;

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);

  animation: float 4s ease-in-out infinite;
}

.image-badge {
  position: absolute;

  top: -20px;

  left: -20px;

  background: linear-gradient(90deg, #db2d27, #002a47);

  padding: 10px 18px;

  border-radius: 30px;

  color: white;

  font-size: 14px;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

/* responsive */

@media (max-width: 900px) {
  .about-wrapper {
    grid-template-columns: 1fr;
  }
}
/* FEATURES SECTION */
.features-cards {
  padding: 90px 0 60px 0;
  background: #f8fafc;
}

/* CARD BASE */
.premium-card {
  position: relative;
  background: #ffffff;
  padding: 42px 26px;
  border-radius: 20px;
  height: 100%;
  transition: all 0.35s ease;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

/* GRADIENT BORDER */
.gradient-border::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(135deg, #2563eb, #22c55e, #9333ea);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.gradient-border:hover::before {
  opacity: 1;
}

/* ICON SVG */
.icon-svg {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #eef2ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  transition: all 0.3s ease;
}

.icon-svg svg {
  width: 28px;
  height: 28px;
}

.premium-card:hover .icon-svg {
  background: linear-gradient(135deg, #2563eb, #9333ea);
  color: #ffffff;
}

/* TEXT */
.premium-card h5 {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}

.premium-card p {
  font-size: 15px;
  color: #64748b;
  line-height: 1.6;
}

/* SCROLL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.15s;
}
.delay-2 {
  transition-delay: 0.3s;
}
.delay-3 {
  transition-delay: 0.45s;
}

/* MOBILE */
@media (max-width: 768px) {
  .premium-card {
    padding: 36px 22px;
  }
}
/* Courses Section */
.courses-section {
  padding: 80px 0 60px 0;
  background: #f8fafc;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}

.section-tag {
  color: #2563eb;
  font-weight: 600;
  text-transform: uppercase;
}

.section-header h2 {
  font-size: 40px;
  margin: 12px 0;
}

.course-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.filter-btn {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #fff;
  cursor: pointer;
}

.filter-btn.active {
  background: #dc2d27;
  color: #fff;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.course-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  cursor: pointer;
}

.course-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(37, 99, 235, 0.25);
}

.course-card img {
  height: 160px;
  width: 100%;
  object-fit: cover;
}

.course-body {
  padding: 22px;
}

.level {
  color: #2563eb;
  font-size: 13px;
  font-weight: 600;
}

.course-body h4 {
  margin: 8px 0 12px;
}

.course-body ul {
  list-style: none;
  padding: 0;
}

.course-body ul li {
  font-size: 14px;
  color: #475569;
  margin-bottom: 6px;
}

.course-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
}

.rating {
  color: #f59e0b;
  font-weight: 600;
}

.course-info-btn {
  background: #000;
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  text-decoration: none;
}

.btn:hover {
  background: #2563eb;
}

/* ================= COURSE DRAWER ================= */
.course-drawer {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.course-drawer.open {
  display: block;
}

/* Overlay */
.drawer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(6px);
}

/* Drawer Panel */
.premium-drawer {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 420px;
  max-width: 100%;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  padding: 36px 30px;
  box-shadow: -30px 0 80px rgba(2, 6, 23, 0.35);
  transform: translateX(100%);
  animation: slideIn 0.5s ease forwards;
  overflow-y: auto;
}

/* Slide Animation */
@keyframes slideIn {
  to {
    transform: translateX(0);
  }
}

/* Close Button */
.drawer-close {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 26px;
  background: none;
  border: none;
  cursor: pointer;
  color: #0f172a;
}

/* Pill */
.drawer-pill {
  display: inline-block;
  background: linear-gradient(135deg, #dc2d27, #ff6a5f);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

/* Title */
.premium-drawer h3 {
  font-size: 28px;
  font-weight: 800;
  color: #020617;
  margin-bottom: 10px;
}

/* Subtitle */
.premium-drawer p {
  font-size: 16px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 22px;
}

/* Feature List */
#drawerList {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
}

#drawerList li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  font-size: 15px;
  color: #0f172a;
  font-weight: 500;
}

#drawerList li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #22c55e;
  font-weight: 800;
}

/* Meta Info */
.drawer-meta {
  display: flex;
  justify-content: space-between;
  background: #f1f5f9;
  padding: 14px 16px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 600;
  color: #020617;
  margin-bottom: 26px;
}

/* CTA Button */
.drawer-cta {
  display: block;
  text-align: center;
  padding: 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.35s ease;
}

.drawer-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 60px rgba(34, 197, 94, 0.5);
}

/* PREMIUM DRAWER */
.premium-drawer {
  padding-top: 32px;
}

/* LOTTIE WRAPPER */
.drawer-lottie {
  width: 140px;
  height: 140px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(
    circle at center,
    rgba(220, 38, 38, 0.08),
    transparent 70%
  );
  border-radius: 50%;
}

/* ACTUAL LOTTIE CONTAINER */
#drawerLottie {
  width: 120px;
  height: 120px;
}

/* Mobile */
@media (max-width: 480px) {
  .premium-drawer {
    padding: 30px 22px;
  }

  .premium-drawer h3 {
    font-size: 24px;
  }
}

/* =========================
   PREMIUM FAQ SECTION
========================= */
.faq-section {
  padding: 100px 0 60px 0;
  background: #f8fafc;
}

.faq-header {
  max-width: 720px;
  margin: 0 auto 60px;
}

.faq-header .section-tag {
  color: #2563eb;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.faq-header h2 {
  font-size: 40px;
  margin: 12px 0;
}

.faq-header p {
  color: #475569;
  font-size: 16px;
}

/* FAQ WRAPPER */
.faq-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

/* FAQ ITEM */
.faq-item {
  background: #ffffff;
  border-radius: 18px;
  margin-bottom: 22px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

/* QUESTION */
.faq-question {
  width: 100%;
  padding: 26px 28px;
  background: transparent;
  border: none;
  text-align: left;
  font-size: 17px;
  font-weight: 700;
  color: #020617;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ICON */
.faq-icon {
  font-size: 26px;
  font-weight: 700;
  color: #dc2d27;
  transition: transform 0.35s ease;
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 28px;
  font-size: 15.5px;
  line-height: 1.8;
  color: #475569;
  background: #f8fafc;
  transition: all 0.45s ease;
}

/* ACTIVE STATE */
.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 28px 28px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* MOBILE */
@media (max-width: 640px) {
  .faq-header h2 {
    font-size: 32px;
  }

  .faq-question {
    font-size: 16px;
  }
}
/* =========================
   PREMIUM CTA SECTION
========================= */
.cta-section {
  padding: 90px 20px;
  display: flex;
  justify-content: center;
}

.cta-inner {
  width: 100%;
  max-width: 1150px;
  background: linear-gradient(135deg, #020617, #0f172a);
  border-radius: 32px;
  padding: 90px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 90px rgba(2, 6, 23, 0.45);
}

/* Glow effect */
.cta-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top right,
    rgba(215, 79, 21, 0.35),
    transparent 60%
  );
  pointer-events: none;
}

/* Heading */
.cta-inner h3 {
  font-size: 36px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 14px;
  position: relative;
}

/* Text */
.cta-inner p {
  font-size: 18px;
  color: #e5e7eb;
  max-width: 640px;
  margin: 0 auto 40px;
  position: relative;
}

/* Buttons wrapper */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  position: relative;
}

/* Button base */
.cta-btn {
  padding: 16px 36px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.35s ease;
}

/* Primary button */
.cta-btn.primary {
  background: #dc2d27;
  color: #020617;
}

.cta-btn.primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(254, 0, 0, 0.45);
}

/* Outline button */
.cta-btn.outline {
  border: 2px solid #ffffff;
  color: #ffffff;
  background: transparent;
}

.cta-btn.outline:hover {
  background: #dc2d27;
  color: #020617;
  transform: translateY(-4px);
}

/* Mobile */
@media (max-width: 640px) {
  .cta-inner {
    padding: 70px 24px;
  }

  .cta-inner h3 {
    font-size: 30px;
  }

  .cta-inner p {
    font-size: 16px;
  }
}

/* ================= CONTACT PAGE CSS ================= */

/* ================= HERO ================= */
.premium-hero {
  position: relative;
  padding: 160px 0 140px;
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(220, 38, 38, 0.15),
      transparent 40%
    ),
    linear-gradient(135deg, #001629, #002f4b);
  overflow: hidden;
}

.hero-bg-shape {
  position: absolute;
  width: 520px;
  height: 520px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.08),
    transparent 70%
  );
  top: -120px;
  right: -160px;
  filter: blur(20px);
}

.hero-content {
  position: relative;
  max-width: 860px;
  margin: auto;
}

.hero-pill {
  display: inline-block;
  padding: 8px 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-weight: 600;
  margin-bottom: 22px;
  color: #fff;
}

.hero-title {
  font-size: 52px;
  font-weight: 900;
  line-height: 1.15;
  color: #fff;
}

.hero-title span {
  background: linear-gradient(135deg, #dc2626, #fb7185);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  margin-top: 18px;
  font-size: 19px;
  color: #dbeafe;
  max-width: 720px;
  margin-inline: auto;
}

.hero-cta {
  margin-top: 36px;
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-outline-cta {
  padding: 14px 36px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  font-weight: 700;
  transition: all 0.3s ease;
}

.btn-outline-cta:hover {
  background: #fff;
  color: #002f4b;
}
/* ================= MOBILE OPTIMIZATION ================= */

@media (max-width: 768px) {
  .premium-hero {
    padding: 100px 0 80px;
  }

  .hero-pill {
    font-size: 12px;

    padding: 6px 16px;
  }

  .hero-title {
    font-size: 32px;

    line-height: 1.2;
  }

  .hero-title span {
    display: block;

    font-size: 34px;

    margin-top: 6px;
  }

  .hero-desc {
    font-size: 16px;

    max-width: 95%;

    line-height: 1.6;
  }

  .hero-cta {
    margin-top: 28px;

    gap: 12px;
  }

  .btn-primary-cta,
  .btn-outline-cta {
    width: 70%;

    padding: 13px 20px;

    font-size: 15px;
  }

  .hero-bg-shape {
    width: 320px;

    height: 320px;

    top: -80px;

    right: -120px;
  }
}

/* ================= SMALL MOBILE ================= */

@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
  }

  .hero-title span {
    font-size: 30px;
  }

  .hero-desc {
    font-size: 15px;
  }
}
/* ================= CONTACT ================= */
.contact-section {
  padding: 100px 0;
  background: #f8fafc;
}

.contact-form-card {
  background: #fff;
  border-radius: 24px;
  padding: 50px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.08);
}

.contact-form-card h3 {
  font-weight: 800;
  margin-bottom: 6px;
}

.contact-form-card p {
  color: #64748b;
  margin-bottom: 28px;
}

.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
}

.contact-form-card input:focus,
.contact-form-card textarea:focus,
.contact-form-card select:focus {
  outline: none;
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12);
}

.btn-primary-cta {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: #fff;
  border: none;
  padding: 14px 38px;
  border-radius: 999px;
  font-weight: 700;
}

/* ================= INFO CARDS ================= */
.contact-info-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  height: 100%;
}

.premium-card {
  background: linear-gradient(135deg, #ffffff, #f8fafc);
  border-radius: 26px;
  padding: 34px 30px;
  text-align: center;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
}

.premium-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.15), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.premium-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 45px 100px rgba(0, 50, 88, 0.18);
}

.premium-card:hover::after {
  opacity: 1;
}

.icon-wrap {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, #dc2626, #ff6b6b);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  transition: transform 0.3s ease;
}

.premium-card h5 {
  font-weight: 800;
  margin-bottom: 6px;
  color: #002f4b;
}

.premium-card p {
  font-weight: 600;
  margin-bottom: 4px;
}

.premium-card span {
  font-size: 14px;
  color: #64748b;
}
/* Make entire card clickable without breaking design */
.info-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* Cursor + subtle hover feedback */
.info-link:hover {
  text-decoration: none;
  color: inherit;
}

/* Extra hover polish */
.info-link:hover .icon-wrap {
  transform: scale(1.08);
}

.info-link:hover h5 {
  color: #dc2d27;
}

/* ================= MAP + CTA ================= */
.contact-bottom {
  padding: 100px 0;
}

.map-card {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
}

.map-card iframe {
  width: 100%;
  height: 420px;
  border: none;
}

.contact-cta-box {
  background: linear-gradient(135deg, #002f4b, #001629);
  color: #fff;
  margin-top: 50px;
  padding: 50px;
  border-radius: 24px;
}

.btn-secondary-cta {
  display: inline-block;
  margin-top: 18px;
  padding: 14px 36px;
  border-radius: 999px;
  background: #dc2626;
  color: #fff;
  font-weight: 700;
}

/* ================= REVEAL ================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
