
:root {
    --navy: #041433;
    --navy-dark: #020b1f;
    --light-blue: #33b4ff;
    --blue-accent: #1da4ff;
    --white: #f0f0f0;
    --text: #dce5f3;
    --gray: #a0b3d1;
    --transition: all 0.35s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", "Inter", sans-serif;
    background: var(--navy-dark);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1240px;
    margin: 0 auto;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    background: rgba(10, 22, 48, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.45s ease;
    border-bottom: 1px solid transparent;
}

header.scrolled {
    background: rgba(4, 20, 51, 0.78);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 4px 22px rgba(0,0,0,0.35);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.1rem 0;
}

.desktop a {
    margin: 0 1.2rem;
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: var(--transition);
}

.desktop a::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--light-blue);
    border-radius: 10px;
    transition: var(--transition);
    opacity: 0.7;
}

.desktop a:hover::after {
    width: 100%;
    opacity: 1;
}

.cta {
    padding: 0.6rem 1.2rem;
    border: 1px solid var(--light-blue);
    border-radius: 8px;
    transition: var(--transition);
}

.cta:hover {
    background: var(--light-blue);
    color: var(--navy-dark);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 1.9rem;
    color: var(--white);
    cursor: pointer;
}

/* ==========================================================
   MOBILE MENU — SMOOTH BLUEGLASS PANEL
========================================================== */

#mobileMenu {
    background: rgba(4, 20, 51, 0.88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height .45s ease, opacity .3s ease;
}

#mobileMenu.open {
    max-height: 420px;
    opacity: 1;
}

#mobileMenu a {
    display: block;
    padding: 1rem;
    color: var(--white);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    text-decoration: none;
    background: transparent;
    transition: background-color .28s ease;
}

#mobileMenu a:hover {
    background: rgba(255,255,255,0.08);
}

/* MOBILE LIBRARY ACCORDION */
.mobile-accordion-btn {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 1rem;
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 10px;
    cursor: pointer;
    margin-bottom: 8px;
    transition: var(--transition);
}

.mobile-accordion-btn:hover {
    background: rgba(0,183,255,0.15);
    border-color: var(--blue-accent);
}

.mobile-accordion-btn.active i {
    transform: rotate(90deg);
}

.mobile-accordion-btn i {
    transition: transform .3s ease;
}

.mobile-accordion-panel {
    max-height: 0;
    overflow: hidden;
    border-left: 3px solid var(--blue-accent);
    border-radius: 8px;
    margin-left: 10px;
    background: rgba(255,255,255,0.05);
    transition: max-height .35s ease;
}

.mobile-accordion-panel a {
    padding: 12px 18px;
    color: var(--text);
}

.mobile-accordion-panel a:hover {
    background: rgba(0,183,255,0.12);
    color: var(--white);
}

.dropdown-premium {
    position: relative;
    display: inline-block;
}

.dropdown-trigger {
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1rem;
    padding: 10px 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: var(--transition);
}

.dropdown-trigger i {
    font-size: 0.75rem;
    transition: transform .25s ease;
}

.dropdown-premium:hover .dropdown-trigger i {
    transform: rotate(-180deg);
}

.dropdown-premium-menu {
    display: none;
    position: absolute;
    top: 42px;
    left: 0;
    min-width: 180px;

    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 14px;
    padding: 8px 0;

    box-shadow: 
        0 10px 35px rgba(0,0,0,0.45),
        0 0 20px rgba(0,183,255,0.25);

    animation: dropdownFade .28s ease-out;
}

@keyframes dropdownFade {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.dropdown-premium-menu a {
    display: block;
    padding: 12px 18px;
    color: var(--text);
    text-decoration: none;
    transition: var(--transition);
}

.dropdown-premium-menu a:hover {
    background: rgba(0,183,255,0.15);
    color: var(--white);
}

.dropdown-premium:hover .dropdown-premium-menu {
    display: block;
}

nav .submenu,
.dropdown-menu {
    display: none !important;
}

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    color: #fff;
    background: #021028;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: url("assets/herosbg.png") center/cover no-repeat;
    z-index: 0;
    transform: scale(1.12);
    transition: transform 1.6s ease-out;
    filter: brightness(0.33) contrast(1.06) saturate(1.25);
}

#particleCanvas {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.hero .overlay {
    position: absolute;
    inset: 0;
    background: rgba(2,16,40,0.70);
    backdrop-filter: blur(2px);
    z-index: 2;
}

.hero .content {
    position: relative;
    z-index: 3;
    max-width: 820px;
    padding: 2rem;
    animation: fadeHero 1.2s ease forwards;
}

@keyframes fadeHero {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0.3px;
    margin-bottom: 1rem;
}

.hero .accent {
    color: var(--light-blue);
    text-shadow: 0 0 18px rgba(51,180,255,0.6);
}

.hero p {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 2.2rem;
}

.actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.btn {
    padding: 0.85rem 1.9rem;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--blue-accent);
    color: #fff;
    box-shadow: 0 0 14px rgba(29,164,255,0.35);
}

.btn-primary:hover {
    background-color: #3bb8ff;
    transform: translateY(-3px);
}

.btn-ghost {
    background: transparent;
    color: #bcdff8;
    border: 1px solid #3bb8ff;
}

.btn-ghost:hover {
    background-color: rgba(59,184,255,0.15);
    transform: translateY(-3px);
}

/* ==========================================================
   GLOBAL SECTION
========================================================== */

section {
    padding: 6rem 0;
    overflow: hidden;
}

h2 {
    text-align: center;
    color: var(--white);
    margin-bottom: 2.8rem;
    font-size: 2.45rem;
    letter-spacing: 0.3px;
}

/* ==========================================================
   PRODUCTS — PREMIUM LIGHTSWEEP CARDS
========================================================== */

.products-section {
    background: linear-gradient(180deg, #041433 0%, #020b1f 100%);
    text-align: center;
    color: #dce5f3;
}

.products-section .accent {
    color: #33b4ff;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.product-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    backdrop-filter: blur(4px);
}

.product-card:hover {
    transform: translateY(-7px);
    background: rgba(255,255,255,0.10);
    border-color: #33b4ff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

/* Image Frame */
.image-frame {
    position: relative;
    border-radius: 16px;
    padding: 3px;
    background: linear-gradient(135deg, #33b4ff, #0041b3, #0a1638);
    overflow: hidden;
    margin-bottom: 1.5rem;
    transition: all 0.45s ease;
    box-shadow: 0 0 22px rgba(51,180,255,0.15);
}

.image-frame img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform .45s ease, filter .45s ease;
}

/* Glow sweep effect */
.image-frame::after {
    content: "";
    position: absolute;
    top: -100%;
    left: -150%;
    width: 200%;
    height: 300%;
    background: linear-gradient(120deg,
        rgba(255,255,255,0) 35%,
        rgba(255,255,255,0.22) 50%,
        rgba(255,255,255,0) 65%
    );
    transform: rotate(25deg);
    opacity: 0;
    pointer-events: none;
    mix-blend-mode: screen;
}

/* On hover */
.product-card:hover .image-frame {
    background: linear-gradient(135deg, #4fc3ff, #003cff, #001537);
    box-shadow: 0 0 28px rgba(79,179,255,0.25);
}

.product-card:hover .image-frame::after {
    opacity: 1;
    animation: cardSweep 1.6s ease-in-out;
}

@keyframes cardSweep {
    from { transform: translateX(-150%) rotate(25deg); }
    to   { transform: translateX(150%) rotate(25deg); }
}

.product-card:hover .image-frame img {
    transform: scale(1.07);
    filter: brightness(1.18);
}

/* Product text */
.product-card h3 {
    color: #fff;
    font-size: 1.35rem;
    margin-bottom: 0.8rem;
}

.product-card p {
    font-size: 0.95rem;
    color: #cfd9ec;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Button */
.product-card .btn-primary {
    background: transparent;
    border: 1px solid #4fc3ff;
    color: #fff;
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    font-size: 0.95rem;
}

.product-card .btn-primary:hover {
    background: rgba(79,195,255,0.15);
    transform: translateY(-3px);
}

.training-card {
  background: #0d0f15;
  border-radius: 28px;
  height: 520px;
  display: flex;
  gap: 50px;
  padding: 50px;
  align-items: center;
  box-sizing: border-box;
}

.training-left img {
  width: 460px;
  height: 360px;
  object-fit: contain;
  border-radius: 16px;
}

.training-right h3 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.training-right p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 30px;
}

.training-btn {
  padding: 16px 38px;
  border-radius: 40px;
  background: white;
  color: #000;
  text-decoration: none;
  font-weight: 600;
}

:root {
  --shaka-primary: #00d4ff;       /* Cyan utama */
  --shaka-secondary: #0099cc;     /* Cyan gelap */
  --shaka-accent: #00f5d4;        /* Teal accent */
  --shaka-dark: #0a1628;          /* Navy gelap */
  --shaka-darker: #060d18;        /* Navy sangat gelap */
  --shaka-card-bg: #0d1f3c;       /* Background card */
}

/* ===== SECTION CONTAINER ===== */
.training-section {
  position: relative;
  text-align: center;
  color: #dce5f3;
  padding: 100px 0 120px;
  background: linear-gradient(180deg, var(--shaka-darker) 0%, var(--shaka-dark) 50%, var(--shaka-darker) 100%);
  overflow: hidden;
}

.training-section .accent {
    color: #33b4ff;
}

/* Background Glow Effect */
.training-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ===== SECTION HEADER ===== */
.section-title {
  text-align: center;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, #ffffff 0%, var(--shaka-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

/* ===== SWIPER CONTAINER ===== */
.training-swiper {
  width: 100%;
  padding: 40px 80px 60px;
  position: relative;
  z-index: 1;
}

.swiper-slide {
  width: 1000px !important;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Non-active slides */
.swiper-slide:not(.swiper-slide-active) {
  opacity: 0.3;
  transform: scale(0.85);
  filter: blur(2px);
}

/* ===== TRAINING CARD - LEBIH TINGGI ===== */
.training-card {
  background: linear-gradient(145deg, rgba(0, 212, 255, 0.08) 0%, rgba(13, 31, 60, 0.9) 100%);
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: 28px;
  padding: 60px 55px;              /* Padding lebih besar */
  min-height: 520px;               /* TINGGI MINIMUM CARD */
  backdrop-filter: blur(20px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
}

.swiper-slide-active .training-card {
  background: linear-gradient(145deg, rgba(0, 212, 255, 0.12) 0%, rgba(13, 31, 60, 0.95) 100%);
  border-color: rgba(0, 212, 255, 0.4);
  box-shadow: 
    0 30px 100px rgba(0, 212, 255, 0.2),
    0 0 80px rgba(0, 212, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* ===== INNER LAYOUT ===== */
.training-inner {
  display: flex;
  align-items: center;
  gap: 70px;
  width: 100%;
}

/* ===== IMAGE WRAPPER ===== */
.training-image-wrapper {
  position: relative;
  flex-shrink: 0;
}

.training-inner img {
  width: 450px;
  height: 380px;                   /* Gambar lebih tinggi */
  object-fit: contain;
  border-radius: 16px;
  position: relative;
  z-index: 2;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.swiper-slide-active .training-inner img {
  transform: scale(1.02);
}

/* Image Glow - Warna Shaka */
.image-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.5) 0%, transparent 70%);
  filter: blur(50px);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.swiper-slide-active .image-glow {
  opacity: 1;
}

/* ===== TEXT INFO ===== */
.training-info {
  flex: 1;
}

.training-badge {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(0, 245, 212, 0.15) 100%);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--shaka-primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}

.training-info h3 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 24px;
  line-height: 1.2;
}

.training-info h3 span {
  background: linear-gradient(135deg, var(--shaka-primary) 0%, var(--shaka-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.training-info p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.9;
  margin-bottom: 40px;
}

/* ===== BUTTON - Warna Shaka ===== */
.training-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: linear-gradient(135deg, var(--shaka-primary) 0%, var(--shaka-secondary) 100%);
  color: var(--shaka-dark);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 15px 50px rgba(0, 212, 255, 0.35);
  position: relative;
  overflow: hidden;
}

.training-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}

.training-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 70px rgba(0, 212, 255, 0.45);
  background: linear-gradient(135deg, var(--shaka-accent) 0%, var(--shaka-primary) 100%);
}

.training-btn:hover::before {
  left: 100%;
}

.training-btn svg {
  transition: transform 0.3s ease;
  stroke: var(--shaka-dark);
}

.training-btn:hover svg {
  transform: translateX(5px);
}

/* ===== PAGINATION - CENTERED ===== */
.swiper-pagination {
  position: relative;
  margin-top: 50px;
  display: flex;
  justify-content: center;         /* CENTER */
  align-items: center;
  gap: 10px;
  width: 100%;
}

.swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  background: rgba(0, 212, 255, 0.25);
  border-radius: 50%;
  transition: all 0.4s ease;
  opacity: 1;
  cursor: pointer;
}

.swiper-pagination-bullet:hover {
  background: rgba(0, 212, 255, 0.5);
  transform: scale(1.1);
}

.swiper-pagination-bullet-active {
  width: 45px;
  border-radius: 25px;
  background: linear-gradient(135deg, var(--shaka-primary) 0%, var(--shaka-accent) 100%);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .swiper-slide {
    width: 850px !important;
  }
  
  .training-card {
    min-height: 480px;
  }
  
  .training-inner img {
    width: 380px;
    height: 320px;
  }
}

@media (max-width: 1024px) {
  .training-swiper {
    padding: 40px 40px 60px;
  }
  
  .swiper-slide {
    width: 700px !important;
  }
  
  .training-inner {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  
  .training-card {
    min-height: auto;
    padding: 50px 40px;
  }
  
  .training-inner img {
    width: 100%;
    max-width: 350px;
    height: auto;
  }
}

@media (max-width: 768px) {
  .training-section {
    padding: 60px 0 80px;
  }
  
  .swiper-slide {
    width: 90vw !important;
  }
  
  .training-card {
    padding: 35px 25px;
    border-radius: 20px;
  }
  
  .training-inner img {
    max-width: 280px;
  }
  
  .training-info h3 {
    font-size: 2rem;
  }
  
  .training-info p {
    font-size: 1.05rem;
  }
  
  .swiper-pagination {
    margin-top: 35px;
  }
  
  .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
  }
  
  .swiper-pagination-bullet-active {
    width: 35px;
  }
}

/* ==========================================================
   ABOUT SECTION 
========================================================== */

#about.about-section {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 20%, rgba(70, 120, 255, 0.08), transparent 60%),
        radial-gradient(circle at 80% 80%, rgba(150, 60, 255, 0.08), transparent 60%),
        linear-gradient(180deg, #060b14, #0a1422 40%, #04070e);
    color: #e9eef8;
}

.container-about {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.about .accent {
    color: var(--light-blue);
    text-shadow: 0 0 18px rgba(51,180,255,0.6);
}

#about.about-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(transparent 97%, rgba(255,255,255,0.05) 98%),
        linear-gradient(90deg, transparent 97%, rgba(255,255,255,0.05) 98%);
    background-size: 55px 55px;
    opacity: 0.18;
    animation: subtleGridMove 35s linear infinite;
}

@keyframes subtleGridMove {
    0% { transform: translate(0,0); }
    100% { transform: translate(-120px, -160px); }
}

/* FOG GLOW */
#about.about-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 70%, rgba(255,255,255,0.04), transparent 70%);
    filter: blur(60px);
    opacity: 0.6;
}

.about-section .accent {
    color: #33b4ff;
}

.about-heading {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 5rem;
    font-weight: 800;
    background: linear-gradient(120deg, #4aa8ff, #7c5cff, #a073ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: headingGlow 6s ease-in-out infinite alternate;
}

@keyframes headingGlow {
    from { filter: drop-shadow(0 0 6px rgba(120,170,255,0.22)); }
    to   { filter: drop-shadow(0 0 16px rgba(130,100,255,0.32)); }
}

/* GRID LAYOUT — NOW CENTERED & CLOSER TOGETHER */
.about-grid.new-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;  
    gap: 2.2rem;
    align-items: start;
    justify-content: center;
}

/* CARD BASE STYLE */
.about-card {
    position: relative;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    padding: 1.6rem 1.8rem;
    backdrop-filter: blur(14px);
    box-shadow:
        0 20px 60px rgba(0,0,0,0.35),
        inset 0 0 40px rgba(255,255,255,0.03);
    transition: 0.35s ease;
    transform-style: preserve-3d;

    max-width: 520px;
    width: 100%;
    margin: 0 auto;
}

.about-card.about-main {
    max-width: 600px;
}

.about-card:hover {
    transform: perspective(900px) rotateX(6deg) rotateY(-6deg) translateY(-6px);
}

.about-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        115deg,
        transparent,
        rgba(255,255,255,0.18),
        transparent
    );
    opacity: 0;
    transform: translateX(-120%);
    transition: 0.6s ease;
}

.about-card:hover::after {
    opacity: 0.3;
    transform: translateX(120%);
}

.about-card::before {
    content: "";
    position: absolute;
    width: 3px;
    height: 55%;
    left: 0;
    top: 22%;
    background: linear-gradient(to bottom, #4aa8ff, #7c5cff);
    border-radius: 4px;
    filter: blur(2px);
    animation: circuitPulse 2.8s ease-in-out infinite alternate;
    opacity: 0.55;
}

@keyframes circuitPulse {
    0% { height: 20%; opacity: 0.25; }
    100% { height: 70%; opacity: 0.75; }
}

.label {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: #ffffff;
    background: rgba(255,255,255,0.12);
    padding: 0.35rem 0.9rem;
    display: inline-block;
    border-radius: 8px;
    letter-spacing: 0.4px;
}

.about-card p {
    font-size: 1.07rem;
    line-height: 1.75;
    color: #dce5f3;
    margin-bottom: 1.1rem;
}

.highlight {
    color: #7fc0ff;
}

.about-right {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

@media (max-width: 900px) {
    .about-grid.new-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-card.about-main,
    .about-card.small-card {
        max-width: 100%;
    }

    .about-heading {
        font-size: 2.3rem;
    }
}


/* ================
   CONTACT SECTION
======================================= */

.contact-section {
    background: linear-gradient(180deg, #041433 0%, #020b1f 100%);
    color: #dce5f3;
    padding: 6rem 1.5rem;
    text-align: center;
}

.contact-section h2 {
    font-size: 2.4rem;
    color: #fff;
    margin-bottom: 3rem;
}

.contact-section .accent {
    color: #33b4ff;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
    gap: 3rem;
    align-items: start;
    text-align: left;
}

.contact-info {
    background: rgba(255,255,255,0.05);
    padding: 2.5rem;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 6px 28px rgba(0,0,0,0.25);
}

.contact-info h3 {
    color: #33b4ff;
    font-size: 1.45rem;
    margin-bottom: 1rem;
}

.contact-info p {
    color: #cfd9ec;
}

.contact-details {
    margin: 1.5rem 0;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.detail-item i {
    color: #33b4ff;
    font-size: 1.2rem;
    margin-top: 0.3rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.4rem;
}

.social-links a {
    color: #dce5f3;
    font-size: 1.1rem;
    transition: transform .3s ease, color .3s ease;
}

.social-links a:hover {
    color: #33b4ff;
    transform: translateY(-3px);
}

.contact-form {
    background: rgba(255,255,255,0.05);
    padding: 2.5rem;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 6px 28px rgba(0,0,0,0.25);
}

.form-group {
    margin-bottom: 1.2rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-size: 0.95rem;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #a9b8d4;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #33b4ff;
    background: rgba(255,255,255,0.12);
}

.contact-form .btn-primary {
    width: 100%;
    background: #33b4ff;
    color: #fff;
    padding: 0.85rem;
    font-size: 1rem;
    border-radius: 10px;
    transition: var(--transition);
}

.contact-form .btn-primary:hover {
    transform: translateY(-3px);
    background: #4fc3ff;
}

.form-status {
    margin-top: 10px;
    font-size: 0.95rem;
    font-weight: 500;
}

footer {
    background: #041025;
    padding: 5rem 0 2.5rem;
    color: var(--gray);
    font-size: 0.96rem;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.1);
}

footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(200px at 18% 22%, rgba(0,180,255,0.06), transparent 70%),
        radial-gradient(150px at 80% 80%, rgba(70,160,255,0.04), transparent 70%);
    opacity: 0.6;
    animation: footerSoftGlow 12s infinite ease-in-out;
}
@keyframes footerSoftGlow {
    0% { transform: translate(0,0); }
    50% { transform: translate(2%,3%); }
    100% { transform: translate(0,0); }
}

footer .container {
    position: relative;
    z-index: 2;
}

.footer-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
    gap: 3.6rem;
    padding-bottom: 3.4rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-column h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1.4rem;
    position: relative;
    padding-bottom: .9rem;
    letter-spacing: -0.2px;
}

.footer-column h4::before {
    content: "";
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.12);
}

.footer-column h4::after {
    content: "";
    position: absolute;
    bottom: 0; left: 0;
    width: 55px;
    height: 2px;
    background: var(--light-blue);
    border-radius: 2px;
}

.footer-logo {
    width: 70px;
    margin-bottom: 1.4rem;
}

.footer-tagline {
    max-width: 260px;
    line-height: 1.55;
    color: #cfd6e5;
}

/* EGP ORANGE LINK */
.link-orange {
    color: #ff8c42 !important;
    font-weight: 600;
    text-decoration: none;
}
.link-orange:hover {
    color: #ffb070 !important;
}

.footer-social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.6rem;
}

.footer-social-icons a {
    width: 42px;
    height: 42px;
    display: flex;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.07);
    color: white;
    transition: background .3s, transform .28s, box-shadow .32s;
}

.footer-social-icons a:hover {
    background: var(--light-blue);
    transform: translateY(-4px);
    color: #041025;
    box-shadow: 0 0 14px rgba(51,180,255,0.45);
}

.footer-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.85rem;
}

.footer-links a {
    color: #ccd4e4;
    text-decoration: none;
    padding-bottom: 4px;
    position: relative;
    transition: color .3s ease;
}

.footer-links a::after {
    content: "";
    width: 0%;
    height: 2px;
    position: absolute;
    left: 0; bottom: 0;
    background: var(--light-blue);
    transition: width .3s ease;
    border-radius: 2px;
}

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

.footer-contact .contact-group {
    display: flex;
    flex-direction: column;
    gap: 1.35rem;
}

.footer-contact strong {
    color: #fff;
    font-weight: 600;
}

.footer-contact .contact-item {
    display: flex;
    gap: .85rem;
    align-items: flex-start;
    padding: .25rem 0;
    background: transparent !important;
    border: none !important;
}

.footer-contact .contact-item i {
    color: var(--light-blue);
    font-size: 1rem;
    margin-top: 4px;
    transition: transform .25s ease, color .25s ease;
}

.footer-contact .contact-item:hover i {
    transform: translateY(-3px);
    color: #4fc3ff;
}

.footer-contact a,
.footer-contact span {
    color: #cfd6e5;
    line-height: 1.55;
    text-decoration: none;
    transition: color .25s ease;
}

.footer-contact a:hover,
.footer-contact span:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2.2rem;
    font-size: 0.9rem;
    opacity: .85;
    transition: opacity .3s ease;
}

.footer-bottom:hover {
    opacity: 1;
}

.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  background-color: rgba(79, 195, 255, 0.22);
  mask-image: url("assets/arrow-up.png");
  -webkit-mask-image: url("assets/arrow-up.png");
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
  mask-size: 77%;
  -webkit-mask-size: 77%;
  filter: opacity(0.55);
  border-radius: 12px;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.35s ease;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background-color: var(--light-blue); 
  filter: opacity(1); 
  transform: translateY(-5px);
  box-shadow:
    0 0 14px rgba(51,180,255,0.45),
    0 0 26px rgba(51,180,255,0.25);
}

.wa-floating {
  position: fixed;
  bottom: 95px;
  right: 28px;
  width: 54px;
  height: 54px;
  background: url("assets/wa.png") center/contain no-repeat !important;
  background-color: transparent !important;
  cursor: pointer;
  z-index: 999;
  transition: transform .3s ease, filter .3s ease;
}

.wa-floating:hover {
  transform: translateY(-4px) scale(1.1);
  filter: drop-shadow(0 0 10px rgba(37,211,102,0.55));
}

@media (max-width: 768px) {
    .footer-content-grid {
        gap: 2.6rem;
    }
    .footer-column h4 {
        margin-bottom: 1.2rem;
    }
    .footer-contact .contact-item {
        padding: .3rem 0;
    }
}

.fade-in-section {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.8s ease-out;
}

.fade-in-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================
   RESPONSIVE FIX (HP/TABLET)
========================================================== */

/* Mobile header fix */
@media (max-width: 900px) {
    nav.desktop { display: none; }
    #navbar .hamburger { display: block; }
}

/* Hero mobile */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .actions {
        flex-direction: column;
        gap: 0.8rem;
    }
}

/* Training responsive */
@media (max-width: 850px) {
    .training-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .training-text, .training-image {
        max-width: 100%;
    }
    .accordion-header {
        justify-content: space-between;
    }
}

/* Products responsive */
@media (max-width: 600px) {
    .product-card {
        padding: 1.6rem;
    }
    .image-frame img {
        height: 140px;
    }
}

/* Contact responsive */
@media (max-width: 720px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer responsive */
@media (max-width: 700px) {
    .footer-content-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-contact .contact-item {
        justify-content: center;
    }
}

/* SALES TOOLS PAGE */
.sales-tools-container {
  max-width: 1150px;
  margin: 100px auto;
  padding: 20px;
}

.sales-tools-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 6px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.sales-tools-subtitle {
  text-align: center;
  font-size: 15px;
  opacity: 0.7;
  margin-bottom: 40px;
}

/* GRID */
.sales-tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 32px;
  padding: 10px;
}

/* CARD FUTURISTIC + PREMIUM */
.sales-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 26px;
  border-radius: 18px;
  transition: 0.28s ease;
}

.sales-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.28);
  border-color: rgba(255,255,255,0.22);
}

/* HEADER */
.card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 18px;
}

.card-title-group h3 {
  font-size: 20px;
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.3px;
}

.card-sub {
  margin: 4px 0 0;
  font-size: 13px;
  opacity: 0.55;
}

.file-badge {
  padding: 6px 16px;
  font-size: 12.5px;
  font-weight: 600;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.9px;
  display: inline-block;

  background: rgba(255,255,255,0.05);
  border: 1.2px solid rgba(255,255,255,0.12);
  color: #e6e6e6;

  backdrop-filter: blur(6px);
  transition: 0.3s ease;

  box-shadow:
    0 0 10px rgba(255,255,255,0.08),
    inset 0 0 6px rgba(255,255,255,0.04);
}

.file-badge:hover {
  transform: translateY(-1px) scale(1.05);
  border-color: rgba(255,255,255,0.4);
}

.file-badge.pdf {
  border-color: rgba(255, 70, 70, 0.7);
  color: #ff7b7b;
  box-shadow: 0 0 12px rgba(255, 60, 60, 0.6);
  background: rgba(255, 60, 60, 0.08);
}

.file-badge.doc,
.file-badge.docx {
  border-color: rgba(80, 170, 255, 0.7);
  color: #8ccaff;
  background: rgba(80,170,255,0.09);
  box-shadow: 0 0 12px rgba(80,170,255,0.55);
}

.file-badge.xls,
.file-badge.xlsx {
  border-color: rgba(0, 255, 140, 0.7);
  color: #6affc3;
  background: rgba(0,255,140,0.08);
  box-shadow: 0 0 12px rgba(0,255,140,0.55);
}

.file-badge.ppt,
.file-badge.pptx {
  border-color: rgba(255, 150, 60, 0.7);
  color: #ffc58a;
  background: rgba(255,150,60,0.08);
  box-shadow: 0 0 12px rgba(255,150,60,0.55);
}

.file-badge.zip {
  border-color: rgba(180, 90, 255, 0.75);
  color: #d7a6ff;
  background: rgba(180,90,255,0.08);
  box-shadow: 0 0 12px rgba(180,90,255,0.55);
}

.file-badge.jpg,
.file-badge.jpeg,
.file-badge.png {
  border-color: rgba(0, 240, 255, 0.75);
  color: #a5faff;
  background: rgba(0,240,255,0.08);
  box-shadow: 0 0 12px rgba(0,240,255,0.55);
}

.file-badge.default {
  border-color: rgba(200,200,200,0.55);
  color: #e4e4e4;
  background: rgba(200,200,200,0.09);
  box-shadow: 0 0 10px rgba(200,200,200,0.45);
}

.sales-card p {
  color: #dce6f7;
  opacity: 0.88;
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.45;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 12px;

  background: rgba(0, 120, 255, 0.85);
  color: white;
  font-weight: bold;
  text-decoration: none;

  box-shadow: 0 0 18px rgba(0,120,255,0.4);
  transition: 0.28s ease;
}

.download-btn:hover {
  background: rgba(0, 150, 255, 1);
  box-shadow: 0 0 26px rgba(0,150,255,0.7);
  transform: translateY(-2px);
}

.download-btn i {
  font-size: 14px;
}

.subcategory-title {
  margin-top: 50px;
  margin-bottom: 14px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.6px;
  color: #eaeaea;
  position: relative;
  padding-left: 4px;
}

.subcategory-title::after {
  content: "";
  display: block;
  height: 1px;
  background: rgba(255,255,255,0.12);
  width: 100%;
  margin-top: 6px;
  border-radius: 20px;
}

.subcategory-block {
  margin-top: 40px;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: 0.25s ease;
}

.subcategory-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  transition: 0.3s ease;
}

.subcategory-header h2 {
  font-size: 20px;
  color: #f0f0f0;
  letter-spacing: 0.6px;
  margin: 0;
}

.subcategory-header i {
  font-size: 16px;
  transition: transform 0.3s ease;
  color: #bbbbbb;
}

.subcategory-header:hover {
  background: rgba(255,255,255,0.05);
}

.subcategory-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 100%;
  background: linear-gradient(
      90deg,
      rgba(0,150,255,0),
      rgba(0,150,255,0.45),
      rgba(0,150,255,0)
  );
}

.subcategory-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
  padding: 0 20px;
}

.subcategory-block.open .subcategory-content {
  padding-top: 16px;
  padding-bottom: 18px;
}

.subcategory-block.open .subcategory-header i {
  transform: rotate(-180deg);
}

.search-bar-wrapper {
  position: relative;
  margin: 25px auto 35px;
  max-width: 420px;
}

#searchInput {
  width: 100%;
  padding: 12px 40px 12px 16px;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  color: #fff;
  font-size: 14.5px;
  backdrop-filter: blur(6px);
  transition: 0.25s;
}

#searchInput:focus {
  border-color: rgba(0,150,255,0.4);
  box-shadow: 0 0 12px rgba(0,150,255,0.35);
  outline: none;
}

.search-bar-wrapper i {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #aaa;
  font-size: 14px;
}


.subcategory-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.subcategory-icon {
  font-size: 18px;
  opacity: 0.75;
  color: #cfcfcf;
}

.sales-card {
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}

.sales-card::after {
  content: "";
  position: absolute;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  background: radial-gradient(
      circle at center,
      rgba(255,255,255,0.14),
      rgba(255,255,255,0.03) 40%,
      rgba(255,255,255,0) 70%
  );
  transform: translate3d(0,0,0);
  opacity: 0;
  transition: opacity 0.25s ease-out;
  pointer-events: none;
}

.sales-card:hover::after {
  opacity: 0.35;
}

.sales-card:hover {
  transform: translateY(-4px) scale(1.015);
}

