/* Base / Reset */
* { box-sizing: border-box; }
html, body { height: 100%; }
:root{
  --bg:#0b0d12;
  --surface:#0f1219;
  --soft:#151a24;
  --card:#111622;
  --text:#e7ecf5;
  --muted:#9aa6bf;
  --accent:#5eead4; /* teal */
  --accent-2:#a78bfa; /* violet */
  --stroke:#202637;
  --shadow: 0 10px 30px rgba(0,0,0,.35);
  --radius: 16px;
}
body{
  margin:0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background: linear-gradient(180deg, #0c111b 0%, #0a0f18 100%);
  line-height:1.6;
}



/* sliding box */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  background: #111;
  color: #fff;
}

.slider {
  position: relative;
  max-width: 800px;
  margin: 40px auto;
  overflow: hidden;
  border-radius: 12px;
}

.slides {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.slides img {
  width: 100%;
  flex-shrink: 0;
}



    .btn-link {
      display: inline-block;
      padding: 12px 24px;
      background: #0066cc;
      color: white;
      text-decoration: none;
      border-radius: 8px;
      font-size: 28px;
      transition: background 0.3s;
    }

    .btn-link:hover {
      background: #004a99;
    }

    /* Centering container */
    .button-container {
      display: flex;
      justify-content: center;
      margin-top: 30px;
    }





.button-container {
    text-align: center;
    margin-top: 30px;
  }

  .btn-link {
    display: inline-block;
    padding: 15px 25px;
    background: green;
    color: white;
    text-decoration: none;
    font-size: 30px;
    font-weight: bold;
    border-radius: 8px;
    animation: blink 1s infinite;
    transition: background 0.3s;
  }

  .btn-link:hover {
    background: #005fa3;
  }

  @keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.3; }
    100% { opacity: 1; }
  }





/* Navigation buttons */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  padding: 12px;
  cursor: pointer;
  border-radius: 50%;
}
.prev { left: 10px; }
.next { right: 10px; }
.prev:hover, .next:hover {
  background: rgba(0,0,0,0.8);
}










/* Layout helpers */
.container{ width:min(1100px, 92%); margin-inline:auto; }
.section{ padding: clamp(48px, 8vw, 96px) 0; }
.section-head{ text-align:center; margin-bottom:32px; }
.section-head h2{ font-size:clamp(28px, 4vw, 40px); margin:0 0 8px; }
.section-head p{ color:var(--muted); margin:0; }

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 18px; border-radius:999px; border:1px solid transparent;
  background:linear-gradient(180deg, var(--accent), #35e0c8);
  color:#021410; font-weight:700; text-decoration:none; transition:.2s transform ease, .2s box-shadow ease;
  box-shadow: 0 6px 20px rgba(94,234,212,.25);
  cursor:pointer;
}
.btn:hover{ transform: translateY(-1px); }
.btn-outline{
  background:transparent; color:var(--text); border-color:var(--stroke);
}
.btn-small{ padding:10px 14px; font-size:.9rem; }
.btn-ghost{ background:transparent; border:1px dashed var(--stroke); color:var(--muted); }
.btn-ghost:hover{ color:var(--text); border-color:var(--accent); }

/* Header */
.site-header{
  position:sticky; top:0; z-index:100; backdrop-filter: blur(8px);
  background:rgba(10,14,22,.6); border-bottom:1px solid rgba(255,255,255,.06);
}
.header-wrap{ display:flex; align-items:center; justify-content:space-between; padding:14px 0; gap:12px; }
.brand{ display:flex; align-items:center; gap:10px; text-decoration:none; color:var(--text); font-weight:800; letter-spacing:.2px; }
.brand-mark{ font-size:1.25rem; }
.nav{ display:flex; align-items:center; gap:18px; }
.nav a{ color:var(--muted); text-decoration:none; font-weight:600; }
.nav a:hover{ color:var(--text); }
.nav-toggle{ display:none; background:transparent; border:1px solid var(--stroke); color:var(--text); padding:8px 10px; border-radius:10px; }

/* Mobile nav */
@media (max-width: 820px){
  .nav{ position:fixed; inset:60px 0 auto 0; background:rgba(12,17,27,.98); border-top:1px solid var(--stroke); padding:18px 5%; display:none; flex-direction:column; gap:14px; }
  .nav.open{ display:flex; }
  .nav-toggle{ display:inline-block; }
}

/* Hero */
.hero{ padding: clamp(40px, 6vw, 80px) 0; }
.hero-grid{ display:grid; grid-template-columns: 1.1fr .9fr; gap:36px; align-items:center; }
.hero-copy h1{ font-size: clamp(34px, 5.5vw, 56px); line-height:1.1; margin:0 0 12px; }
.accent{ background: linear-gradient(90deg, var(--accent), var(--accent-2)); -webkit-background-clip:text; background-clip:text; color:transparent; }
.hero-copy p{ color:var(--muted); margin: 0 0 18px; max-width: 60ch; }
.hero-actions{ display:flex; gap:12px; flex-wrap:wrap; margin: 8px 0 10px; }
.hero-badges{ list-style:none; padding:0; margin:10px 0 0; display:flex; gap:16px; flex-wrap:wrap; color:#b7c3db; font-size:.95rem; }
.hero-media{ position:relative; }
.hero-media img{ width:100%; height:auto; border-radius: var(--radius); box-shadow: var(--shadow); object-fit:cover; }
.hero-card{
  position:absolute; right:10px; bottom:10px; background:rgba(17,22,34,.9);
  border:1px solid var(--stroke); padding:12px 14px; border-radius:12px; box-shadow: var(--shadow);
  display:flex; flex-direction:column; gap:4px; font-size:.95rem;
}
.hero-card strong{ color:var(--accent); }

@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
}



/* Inline CTA */
.cta-inline{
  margin-top:22px; padding:16px; background:linear-gradient(180deg, #0e1420 0%, #0c121b 100%);
  border:1px dashed var(--stroke); border-radius:14px; display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
}
.cta-inline p{ margin:0; color:#bfd0ee; }

/* Features */
.bg-soft{ background: radial-gradient(1200px 400px at 50% -10%, rgba(94,234,212,.06), transparent), linear-gradient(180deg, #0c111b 0%, #0a0f18 100%); }
.features{ display:grid; grid-template-columns: repeat(4, 1fr); gap:16px; margin-top:18px; }
.feature{ background:var(--card); border:1px solid var(--stroke); border-radius:var(--radius); padding:18px; box-shadow: var(--shadow); }
.feature .icon{ font-size:1.4rem; margin-bottom:8px; }
.feature h3{ margin:0 0 6px; }
.feature p{ margin:0; color:var(--muted); }
@media (max-width: 980px){ .features{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .features{ grid-template-columns: 1fr; } }

/* Steps */
.steps{ list-style:none; counter-reset: step; padding:0; margin:0; display:grid; grid-template-columns: repeat(4, 1fr); gap:14px; }
.steps li{
  background:var(--card); border:1px solid var(--stroke); border-radius:var(--radius);
  padding:16px; display:flex; align-items:center; gap:12px; font-weight:700;
}
.steps li span{
  display:inline-grid; place-items:center; width:32px; height:32px; border-radius:999px; border:1px solid var(--stroke); background:#0b1019; color:var(--accent);
}
@media (max-width: 960px){ .steps{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px){ .steps{ grid-template-columns: 1fr; } }

/* Quotes */
.quotes{ display:grid; grid-template-columns: 1fr 1fr 1fr; gap:14px; }
.quote{
  background:var(--card); border:1px solid var(--stroke); border-radius:var(--radius); padding:18px; box-shadow: var(--shadow);
}
.quote blockquote{ margin:0 0 8px; font-weight:600; }
.quote figcaption{ color:var(--muted); }
@media (max-width: 900px){ .quotes{ grid-template-columns: 1fr; } }

/* Contact */
.contact .contact-grid{ display:grid; grid-template-columns: 1.1fr .9fr; gap:22px; align-items:start; }
.contact-copy h2{ margin-top:0; font-size:clamp(26px, 4vw, 36px); }
.contact-bullets{ list-style:none; padding:0; margin:10px 0 16px; color:#cde0ff; display:grid; gap:6px; }
.contact-badge{ display:inline-flex; border:1px solid var(--stroke); padding:8px 12px; border-radius:999px; color:#bddaef; background:#0c111b; }
.lead-form{
  background:var(--card); border:1px solid var(--stroke); border-radius:var(--radius); padding:18px; box-shadow: var(--shadow);
  display:grid; gap:12px;
}
.lead-form label{ display:grid; gap:6px; font-weight:600; color:#bcd0f0; }
.lead-form input, .lead-form select, .lead-form textarea{
  width:100%; padding:12px 12px; border-radius:12px; border:1px solid var(--stroke); background:#0c111b; color:var(--text);
}
.form-footnote{ margin:0; color:var(--muted); font-size:.9rem; }
@media (max-width: 980px){ .contact .contact-grid{ grid-template-columns: 1fr; } }

/* Footer */
.site-footer{ border-top:1px solid var(--stroke); background:linear-gradient(180deg, #0a0f18 0%, #0a0f18 100%); }
.footer-grid{ display:grid; grid-template-columns: 1.2fr .8fr .8fr; gap:18px; padding:24px 0; }
.brand-footer{ margin-bottom:8px; }
.footer-list{ list-style:none; padding:0; margin:0; display:grid; gap:6px; }
.footer-list a{ color:#c7d6f3; text-decoration:none; }
.footer-list a:hover{ color:#fff; }
.muted{ color:var(--muted); }
.legal{ text-align:center; color:#7f8fb0; font-size:.9rem; padding:14px 0 24px; border-top:1px solid var(--stroke); }




/* Image side by side seminar and activities */

.image-row {
  display: flex;              /* Place images in a row */
  gap: 10px;                  /* Space between images */
  justify-content: center;    /* Center horizontally */
}

.image-row img {
  width: 200px;               /* Set size */
  height: auto;               /* Keep proportions */
  border-radius: 8px;         /* Rounded corners */
}




/* Floating banner style */
    .floating-banner {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background: skyblue;
      color: #000;
      text-align: center;
      padding: 15px;
      font-size: 18px;
      font-weight: bold;
      box-shadow: 0 -2px 6px rgba(0,0,0,0.3);
      z-index: 1000;
      display: flex;
      justify-content: center;
      align-items: center;
      opacity: 1;
      transition: opacity 0.5s ease;
    }

    .floating-banner button {
      background: #ff5733;
      color: white;
      border: none;
      padding: 10px 20px;
      margin-left: 20px;
      font-size: 16px;
      border-radius: 5px;
      cursor: pointer;
    }

    .floating-banner button:hover {
      background: #e94e2f;
    }

    /* Close button */
    .close-btn {
      position: absolute;
      right: 20px;
      top: 10px;
      background: none;
      border: none;
      font-size: 22px;
      cursor: pointer;
      color: #000;
    }

    .close-btn:hover {
      color: grey;
    }

    /* Animation keyframes */
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

}





    
