/* VARIABLES */
:root {
  --accent: #f76922;
  --bg: #ffffff;
  --text: #111827;
  --muted: #6b7280;
  --max-width: 1200px;
  --radius: 10px;
  --glass: rgba(255, 255, 255, 0.85);
}


* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  font-family: Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

.container {
  width: calc(100% - 32px);
  max-width: var(--max-width);
  margin: 0 auto;
}

/* NAV */
header.navbar {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 4% 4px 4%;
  transition: background .25s ease, box-shadow .25s ease;
  /* border: solid 1px green; */
}

header.navbar.scrolled {
  background: #fff;
  box-shadow: 0 6px 18px rgba(16, 24, 40, 0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  padding: 0 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  /* border: solid 1px red; */
}

.brand img {
  width: 200px;
  height: 65px;
  object-fit: contain;
  border-radius: 6px;
}

.brand .title {
  font-weight: 700;
  color: var(--text);
}

nav.primary {
  display: flex;
  align-items: center;
  gap: 20px
}

nav.primary a {
  color: #f7f7f7;
  text-decoration: none;
  font-weight: 300;
  padding: 8px 6px;
}

header.navbar.scrolled nav.primary a {
  color: #111827; 
}

header.navbar.scrolled .cta{
  color: white !important;
}

nav.primary a:hover {
  color: var(--accent);
}

.cta {
  margin-left: 16px;
  padding: 5px 16px !important;
  border-radius: 5px;
  background: var(--accent);
  color: white;
  text-decoration: none;
  font-weight: 400;
  border: solid 1px red;
}



.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 8px;
  cursor: pointer;
}

.menu-toggle .bar {
  width: 22px;
  height: 2px;
  background: var(--text);
  display: block;
  margin: 4px 0;
  border-radius: 2px;
}

/* HERO */
.hero {
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 16px 80px;
  background-image: url('/imagess/hero.png');
  background-size: cover;
  background-position: center center;
  position: relative;
  color: white;
  text-align: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.354), rgba(0, 0, 0, 0.282));
}

.hero .hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero h1 {
  font-size: clamp(28px, 4.6vw, 54px);
  line-height: 1.02;
  margin-bottom: 14px;
  font-weight: 800;
}

.hero p.lead {
  font-size: clamp(15px, 1.6vw, 18px);
  opacity: 0.95;
  margin-bottom: 20px;
}

.hero .btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 10px;
  background: var(--accent);
  color: white;
  text-decoration: none;
  font-weight: 700;
}

/* SECTION */
section {
  padding: 72px 0;
}

.bg-section-2 {
  background-image: url('/imagess/BG3.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 5%;
}

.section-title {
  max-width: 900px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-title h2 {
  font-size: 28px;
  margin-bottom: 8px;
}

.section-title p {
  color: var(--muted);
  max-width: 800px;
  margin: 0 auto;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.two-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.card {
  background: white;
  border-radius: 12px;
  padding: 22px;
  box-shadow: 0 6px 18px rgba(16, 24, 40, 0.06);
}

h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

p {
  color: var(--muted);
}

ul {
  margin-top: 10px;
  margin-left: 18px;
  color: var(--muted);
}

.accent-pill {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 400;
  margin-bottom: 12px;
}

.founders {
  border: 1px solid rgba(0,0,0,0.06);
  padding: 18px;
  border-radius: 12px;
}

.founders h4 {
  margin-bottom: 8px;
}

/* ----------  section 3 */
.sbp-section {
  background: linear-gradient(180deg, #161825ee 0%, #1c1f2a 100%);
  padding: 90px 5%;
  color: #e5e7eb;
}

.sbp-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
}

.sbp-header h2 {
  font-size: 34px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.sbp-header p {
  font-size: 17px;
  color: #c7c9d1;
  line-height: 1.6;
}

/* MAIN CARD STYLE */
.sbp-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 30px;
  margin: 10px auto;
  max-width: 1000px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.15);
  border-left: 5px solid var(--accent);
}

.sbp-card h3 {
  color: #161825;
  font-size: 22px;
  font-weight: 700;
}

.sbp-card h4 {
  margin-top: 16px;
  font-size: 18px;
  color: #161825;
}

.sbp-card p {
  color: #555;
  line-height: 1.6;
}

.sbp-card ul {
  margin-left: 20px;
  margin-top: 10px;
  color: #444;
  line-height: 1.6;
}

.sbp-card li {
  margin-bottom: 6px;
}

.sbp-divider {
  height: 4px;
  width: 60px;
  background: var(--accent);
  border-radius: 4px;
  margin: 18px 0;
}

.sbp-cta {
  text-align: center;
  margin-top: 40px;
}

.sbp-cta .btn {
  padding: 14px 26px;
  background: var(--accent);
  color: white;
  font-size: 16px;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
}



/* group 2 section */
.group2-section {
  background-image: url('/imagess/BG4.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 5%;
}

.group2-title {
  text-align: center;
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111827;
}

.group2-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  color: #6b7280;
  font-size: 16px;
}

.group2-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 0 10px;
}

.group2-card {
  background: #ffffff;
  padding: 40px 28px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 8px 18px rgba(0,0,0,0.05);
  transition: all .25s ease;
  border: 1px solid #e5e7eb;
}

.group2-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 24px rgba(0,0,0,0.07);
  border-color: #f76922;
}

.group2-card .icon2 img {
  width: 60px;
  height: 60px;
  margin-bottom: 14px;
  filter: drop-shadow(0px 3px 4px rgba(0,0,0,0.12));
}

.group2-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #111827;
}

.group2-card p {
  color: #555;
  font-size: 14px;
  margin-bottom: 16px;
}

.group2-card a {
  color: #f76922;
  font-weight: 600;
  text-decoration: none;
  transition: color .25s ease;
}

.group2-card a:hover {
  color: #c54e17;
}


/* 5th */
.optionA {
  padding: 80px 5%;
  background: linear-gradient(180deg, #fff, #ffffff);
}

.ts-title {
  text-align: center;
  font-size:25px;
  color: #161825;
  font-weight: 700;
  margin-bottom: 10px;
}

.ts-subtitle {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 40px;
  color: #4a4f61;
  line-height: 1.55;
  font-size: 15px;
}

.ts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.ts-card {
  background: #f8f9ff;
  border-radius: 4px;
  padding: 18px;
  border: 1px solid #dbe1f7;
  transition: 0.25s;
  box-shadow: 0 8px 20px rgba(112, 144, 255, 0.08); 
}

.ts-card:hover {
  transform: translateY(-6px);
  border-color: #c54e17;
  box-shadow: 0 16px 34px rgba(77, 125, 255, 0.18);
}


.ts-img img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 14px;
  border: 1px solid #e8ebf9;
}

.ts-card h3 {
  font-size: 18px;
  color: #161825;
  margin-bottom: 8px;
  font-weight: 600;
}

.ts-card p {
  color: #4a4f61;
  font-size: 14px;
  margin-bottom: 12px;
  line-height: 1.45;
}

.ts-link {
  color: #f76922;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s;
}

.ts-link:hover {
  color: #c54e17;
}


/* ---------- FOOTER */
.cs-footer {
  background: #161825;
  color: #e5e7f5;
  padding: 60px 5%;
  margin-top: 40px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: start;
}

.footer-logo {
  width: 150px;
  margin-bottom: 12px;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #ffffff;
  font-weight: 600;
}

.footer-col p,
.footer-col a {
  font-size: 15px;
  color: #d0d4e4;
  margin-bottom: 6px;
  text-decoration: none;
}

.footer-col a:hover {
  color: #f76922;
}

/* SOCIAL LINKS */
.footer-socials {
  list-style: none;
  padding: 0;
  margin-bottom: 14px;
}

.footer-socials li {
  margin-bottom: 6px;
}

.footer-btn {
  display: inline-block;
  padding: 10px 16px;
  background: #f76922;
  border-radius: 8px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: 0.25s;
}

.footer-btn:hover {
  background: #c54e17;
}

.footer-copy {
  color: #aeb3cc;
  font-size: 14px;
  margin-top: 10px;
}

/* RESPONSIVE */
@media(max-width: 820px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col {
    margin-bottom: 20px;
  }

  .footer-logo {
    margin: 0 auto 14px;
  }
}





/* RESPONSIVE */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav.primary {
    display: none;
    position: absolute;
    right: 16px;
    top: 64px;
    background: var(--glass);
    backdrop-filter: blur(6px);
    padding: 12px;
    border-radius: 10px;
    flex-direction: column;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  }

  nav.primary.show {
    display: flex;
  }

  header.navbar {
    padding: 10px 0;
  }

  .hero {
    padding: 100px 16px 60px;
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  .hero p.lead {
    font-size: 15px;
  }

  .brand .title {
    display: none;
  }
}


/* group 2 */
@media (max-width: 1024px) {
  .group2-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .group2-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .group2-grid {
    grid-template-columns: 1fr;
  }
}

/* 5th */
@media(max-width: 1024px) {
  .ts-grid {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 640px) {
  .ts-grid {
    grid-template-columns: 1fr;
  }
}







