/*--INDEX.HTML----*/
:root {
      --bg: #ffffff;
      --text: #111111;
      --muted: #555555;
      --border: #e4e4e7;
      --accent: #111111;
      --container: 1160px;
    }

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

    body {
      font-family: "Poppins", sans-serif;
      background: var(--bg);
      color: var(--text);
    }

    .container {
      max-width: var(--container);
      margin: 0 auto;
      padding: 0 24px;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    /* ---------------- NAVBAR ---------------- */

    header {
      position: sticky;
      top: 0;
      background: rgba(255, 255, 255, 0.96);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--border);
      z-index: 20;
    }

    .nav {
      height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 14px;
    }

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

    .logo-mark {
      width: 32px;
      height: 32px;
      border-radius: 999px;
      border: 1px solid #111;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      font-weight: 600;
    }

    .logo-text {
      font-size: 18px;
      font-weight: 600;
    }

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

    .nav-links a {
      position: relative;
      font-size: 14px;
      font-weight: 400;
      color: #222;
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -6px;
      width: 0;
      height: 2px;
      background: var(--accent);
      transition: width 0.2s ease;
    }

    .nav-links a:hover::after,
    .nav-links a.active::after {
      width: 100%;
    }

    /* ---------------- HERO (Depth Parallax) ---------------- */

    .hero {
      padding: 96px 0 120px;
      border-bottom: 1px solid var(--border);
      position: relative;
      overflow: hidden;
    }

    .hero-inner {
      position: relative;
      padding-bottom: 40px;
    }

    /* Grid background */
    .hero-grid-bg {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(to right, rgba(0,0,0,0.04) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0,0,0,0.04) 1px, transparent 1px);
      background-size: 40px 40px;
      z-index: 0;
      pointer-events: none;
      will-change: transform;
      transition: transform 0.25s ease-out;
    }

    .hero-content {
      position: relative;
      z-index: 1;
      will-change: transform;
      transition: transform 0.25s ease-out;
    }

    .hero-title {
      font-size: clamp(40px, 5.3vw, 60px);
      font-weight: 500;
      line-height: 1.1;
      margin-bottom: 24px;
      will-change: transform;
      transition: transform 0.25s ease-out;
    }

    .hero-title span {
      display: block;
    }

    .hero-founder {
      margin-top: 90px;
      display: inline-flex;
      align-items: center;
      gap: 18px;
      padding: 14px 18px;
      border: 1px solid var(--border);
      background: #fff;
      will-change: transform;
      transition: transform 0.25s ease-out, box-shadow 0.25s ease-out;
    }

    .hero-founder-photo {
      width: 56px;
      height: 56px;
      border-radius: 6px;
      background: #111;
    }

    .hero-founder-text {
      font-size: 13px;
    }

    .hero-founder-text strong {
      display: block;
      margin-bottom: 4px;
    }

    .hero-founder-text a {
      margin-top: 2px;
      display: inline-block;
      border-bottom: 1px solid #111;
      padding-bottom: 1px;
      font-size: 12px;
    }
    

    /* ---------------- GENERIC SECTION ---------------- */

    section {
      padding: 96px 0;
      border-bottom: 1px solid var(--border);
    }

    .section-heading {
      margin-bottom: 40px;
    }

    .section-heading h2 {
      font-size: 30px;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .section-heading .underline {
      width: 70px;
      height: 3px;
      background: var(--accent);
      margin-bottom: 18px;
    }

    .section-heading p {
      max-width: 650px;
      font-size: 15px;
      color: var(--muted);
      line-height: 1.6;
    }

    /* ---------------- OUR BUSINESSES ---------------- */

    .businesses-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 24px;
    }

    .business-card {
      border: 1px solid var(--border);
      padding: 24px;
      display: flex;
      flex-direction: column;
      gap: 16px;
      background: #fff;
    }

    .business-logo-box {
      height: 190px;
      background: #111;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 26px;
      font-weight: 600;
      text-transform: uppercase;
    }

    .business-card h3 {
      font-size: 18px;
      font-weight: 500;
    }

    .business-card p {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.6;
    }

    /* ---------------- VISION + MISSION ---------------- */

    .two-column {
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
      gap: 56px;
      align-items: flex-start;
    }

    .vm-block + .vm-block {
      margin-top: 56px;
    }

    .vm-block h3 {
      font-size: 24px;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .vm-block .underline {
      width: 70px;
      height: 3px;
      background: var(--accent);
      margin-bottom: 18px;
    }

    .vm-block p {
      font-size: 15px;
      color: var(--muted);
      line-height: 1.7;
      max-width: 620px;
    }

    .vm-image {
      width: 100%;
      height: 360px;
      background: #ddd;
    }

    /* ---------------- CULTURE SECTION ---------------- */

    .culture-inner {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
      gap: 56px;
      align-items: center;
    }

    .culture-image {
      width: 100%;
      height: 320px;
      background: #dcdcdc;
    }

    .culture-text h3 {
      font-size: 26px;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .culture-text .underline {
      width: 70px;
      height: 3px;
      background: var(--accent);
      margin-bottom: 18px;
    }

    .culture-text p {
      font-size: 15px;
      color: var(--muted);
      margin-bottom: 24px;
      line-height: 1.7;
    }

    .btn-outline {
      display: inline-block;
      padding: 12px 26px;
      border-radius: 0;
      border: 1px solid #111;
      background: #111;
      color: #fff;
      font-size: 14px;
      font-weight: 500;
    }

    .btn-outline:hover {
      background: #000;
    }

    /* ---------------- PRODUCTS SECTION ---------------- */

   




    /* ---------------- IMPACT SECTION ---------------- */

    .impact-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 40px;
      margin-top: 40px;
    }

    .impact-card img {
      width: 100%;
      height: 260px;
      object-fit: cover;
      background: #dcdcdc;
      margin-bottom: 18px;
    }

    .impact-card h4 {
      font-size: 18px;
      margin-bottom: 8px;
    }

    .impact-card p {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.7;
    }

    .impact-cta {
      margin-top: 36px;
    }

    .impact-cta .btn-outline {
      background: #111;
      color: #fff;
    }

    /* ---------------- FOOTER ---------------- */

    footer {
      padding: 40px 0;
      background: #f7f7f9;
      font-size: 13px;
      color: #555;
    }

    .footer-inner {
      display: grid;
      grid-template-columns: 1.1fr 1fr 1fr;
      gap: 40px;
      border-top: 1px solid #e2e2e7;
      padding-top: 34px;
    }

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .footer-logo-mark {
      width: 30px;
      height: 30px;
      border-radius: 999px;
      border: 1px solid #111;
    }

    .footer-heading {
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 12px;
      color: #222;
    }

    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .footer-bottom {
      margin-top: 18px;
      font-size: 12px;
      color: #777;
    }

    /* ---------------- RESPONSIVE ---------------- */

    @media (max-width: 960px) {
      .nav-links {
        display: none;
      }
      .hero {
        padding-top: 72px;
      }
      .businesses-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      .two-column,
      .culture-inner,
      .performance-grid,
      .impact-grid,
      .footer-inner {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 640px) {
      .businesses-grid {
        grid-template-columns: 1fr;
      }
    }

    .cg-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 600;
}

.cg-logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid #111;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cg-logo-img {
  height: 28px;     /* Adjust based on your logo */
  width: auto;
  display: block;
}

/* ---------- GLOBAL RESET ---------- */
:root {
  --text:#111;
  --muted:#555;
  --border:#e5e5e5;
  --container:1160px;
  --bg:#fff;
}

* {margin:0; padding:0; box-sizing:border-box;}
body {font-family:"Poppins", sans-serif;}

/* ---------- HEADER ---------- */
.cg-header {
  position: sticky;
  top: 0;
  width: 100%;
  background: #ffffffcc;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  z-index: 999;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* Navigation Bar Layout */
.cg-nav {
  height: 72px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.cg-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 18px;
}

.cg-logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #111;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Desktop Menu */
.cg-menu {
  display: flex;
  gap: 32px;
}

.cg-menu a {
  color: var(--text);
  text-decoration: none;
  font-size: 15px;
  position: relative;
  padding-bottom: 4px;
}

.cg-menu a:hover::after,
.cg-menu a.active::after {
  content: "";
  width: 100%;
  height: 2px;
  background: #111;
  position: absolute;
  bottom: -4px;
  left: 0;
}

/* ---------- MOBILE MENU BUTTON ---------- */
.cg-menu-btn {
  width: 26px;
  height: 22px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.cg-menu-btn span {
  height: 3px;
  width: 100%;
  background:#111;
  border-radius: 3px;
}

/* ---------- MOBILE DROPDOWN ---------- */
.cg-mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}

.cg-mobile-menu a {
  padding: 14px 24px;
  text-decoration: none;
  color: #111;
  font-size: 15px;
  border-bottom: 1px solid #f3f3f3;
}

/* ---------- RESPONSIVE RULES ---------- */
@media(max-width:900px) {
  .cg-menu { display: none; }
  .cg-menu-btn { display: flex; }
}

.hero-description {
  max-width: 640px;
  margin-top: 24px;
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}




.products-section {
  margin-top: 60px;
}

.products-slider-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 30px;
}

/* Track holding slides */
.slider-track {
  display: flex;
  gap: 24px;
  will-change: transform;
  transition: transform 0.45s ease;
}

/* Product card */
.product-card {
  min-width: 320px;
  max-width: 320px;
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 14px;
  padding: 18px;
  box-sizing: border-box;
  transition: 0.3s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.06);
}

.product-img {
  width: 100%;
  height: 140px;
  object-fit: contain;
}

.product-title {
  font-size: 17px;
  font-weight: 600;
  margin-top: 10px;
}

.product-desc {
  font-size: 13px;
  color: #666;
  margin: 8px 0 14px;
  line-height: 1.45;
}

.product-link {
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  color: #000;
}

/* Arrows */
.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid #000;
  background: #fff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  z-index: 5;
}

.prev { left: -10px; }
.next { right: -10px; }

/* Tablet */
@media (max-width: 1024px) {
  .product-card {
    min-width: 280px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .product-card {
    min-width: 250px;
  }

  .prev { left: 0; }
  .next { right: 0; }
}

.cg-footer, .cg-footer * {
  font-family: 'Poppins', sans-serif !important;
}

.cg-footer {
  background:#fafafa;
  border-top:1px solid #eee;
  padding:50px 0 20px;
}

.footer-inner {
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  gap:40px;
  margin-bottom:30px;
}

/* Logo */
.cg-logo { display:flex; align-items:center; gap:12px; }
.cg-logo-img { height:34px; }
.cg-logo-text { font-size:20px; font-weight:600; }

/* Section Heading */
.footer-heading {
  font-size:16px;
  font-weight:600;
  margin-bottom:12px;
}

/* Bio */
.footer-bio {
  margin-top:12px;
  font-size:14px;
  color:#666;
  line-height:1.6;
  max-width:300px;
}

/* Links */
.f-link, .footer-links span {
  font-size:15px;
  font-weight:400;
  color:#555;
  line-height:1.7;
}

.footer-links strong {
  font-weight:600;
}

/* Hover effect */
.f-link:hover {
  color:#000;
  padding-left:4px;
  transition:0.2s;
}

/* COPYRIGHT CENTERED */
.footer-bottom {
  text-align:center;
  font-size:14px;
  color:#777;
  margin-top:10px;
}

/* MOBILE */
@media(max-width:800px){
  .footer-inner {
    grid-template-columns:1fr;
    gap:30px;
  }
  .footer-bio { max-width:100%; }
}

.impact-card img {
  width: 100%;
  filter: grayscale(100%);
  transition: all 0.35s ease;
  transform: scale(1);
}

.impact-card:hover img {
  filter: grayscale(0%);
  transform: scale(1.03);
}

.hero-title-main {
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 600;
  display: block;
}

.hero-title-sub {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 400;
  margin-top: 12px;
  color: #444;
  display: block;
}


/*--INDEX.HTML----*/




/*---FOunder----*/
/* RESET */
    * { margin: 0; padding: 0; box-sizing: border-box; }
    body { font-family: "Poppins", sans-serif; color: #111; background: #fff; }

    :root {
      --text:#111;
      --muted:#666;
      --border:#e5e5e5;
      --container:1160px;
    }

    .container {
      max-width: var(--container);
      margin: 0 auto;
      padding: 0 22px;
    }

    /* ============================
           HEADER
    ============================ */
    .cg-header {
      width: 100%;
      background: #ffffffdd;
      backdrop-filter: blur(10px);
      position: sticky;
      top: 0;
      border-bottom: 1px solid var(--border);
      z-index: 1000;
    }

    .cg-nav {
      height: 72px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .cg-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 600;
      font-size: 18px;
    }

    .cg-logo-img {
      height: 30px;
      width: auto;
    }

    /* Desktop Menu */
    .cg-menu {
      display: flex;
      gap: 32px;
    }

    .cg-menu a {
      text-decoration: none;
      color: #111;
      font-size: 15px;
      position: relative;
      padding-bottom: 4px;
    }

    .cg-menu a:hover::after {
      content: "";
      width: 100%;
      height: 2px;
      background: #111;
      position: absolute;
      bottom: -4px;
      left: 0;
    }

    /* Mobile Menu Button */
    .cg-menu-btn {
      width: 26px;
      height: 22px;
      display: none;
      flex-direction: column;
      justify-content: space-between;
      cursor: pointer;
    }

    .cg-menu-btn span {
      height: 3px;
      width: 100%;
      background:#111;
      border-radius: 3px;
    }

    /* Mobile Dropdown */
    .cg-mobile-menu {
      display: none;
      flex-direction: column;
      background: #fff;
      border-bottom: 1px solid var(--border);
    }

    .cg-mobile-menu a {
      padding: 14px 24px;
      color: #111;
      text-decoration: none;
      border-bottom: 1px solid #f1f1f1;
      font-size: 15px;
    }

    /* RESPONSIVE HEADER */
    @media(max-width:900px) {
      .cg-menu { display: none; }
      .cg-menu-btn { display: flex; }
    }

    /* ============================
           PAGE CONTENT
    ============================ */
    .page {
      max-width: 820px;
      margin: 60px auto;
      padding: 0 22px;
    }

    .date {
      font-size: 15px;
      color: #666;
      margin-bottom: 12px;
    }

    .title {
      font-size: clamp(28px, 6vw, 42px);
      font-weight: 600;
      line-height: 1.3;
      margin-bottom: 18px;
    }

    .subtitle {
      color: #444;
      font-size: 17px;
      line-height: 1.6;
      margin-bottom: 35px;
    }

    .divider {
      width: 100%;
      height: 1px;
      background: #e5e5e5;
      margin: 35px 0;
    }

    .content p {
      font-size: 17px;
      line-height: 1.75;
      margin-bottom: 22px;
      color: #222;
    }

    /* ============================
           FOOTER
    ============================ */
    footer {
      padding: 40px 0;
      background: #f7f7f9;
      font-size: 13px;
      color: #555;
    }

    .footer-inner {
      display: grid;
      grid-template-columns: 1.1fr 1fr 1fr;
      gap: 40px;
      border-top: 1px solid #e2e2e7;
      padding-top: 34px;
    }

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .footer-logo-mark {
      width: 30px;
      height: 30px;
      border-radius: 999px;
      border: 1px solid #111;
    }

    .footer-heading {
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 12px;
      color: #222;
    }

    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .footer-bottom {
      margin-top: 18px;
      font-size: 12px;
      color: #777;
    }

    .cg-footer, .cg-footer * {
  font-family: 'Poppins', sans-serif !important;
}

.cg-footer {
  background:#fafafa;
  border-top:1px solid #eee;
  padding:50px 0 20px;
}

.footer-inner {
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  gap:40px;
  margin-bottom:30px;
}

/* Logo */
.cg-logo { display:flex; align-items:center; gap:12px; }
.cg-logo-img { height:34px; }
.cg-logo-text { font-size:20px; font-weight:600; }

/* Section Heading */
.footer-heading {
  font-size:16px;
  font-weight:600;
  margin-bottom:12px;
}

/* Bio */
.footer-bio {
  margin-top:12px;
  font-size:14px;
  color:#666;
  line-height:1.6;
  max-width:300px;
}

/* Links */
.f-link, .footer-links span {
  font-size:15px;
  font-weight:400;
  color:#555;
  line-height:1.7;
}

.footer-links strong {
  font-weight:600;
}

/* Hover effect */
.f-link:hover {
  color:#000;
  padding-left:4px;
  transition:0.2s;
}

/* COPYRIGHT CENTERED */
.footer-bottom {
  text-align:center;
  font-size:14px;
  color:#777;
  margin-top:10px;
}

/* MOBILE */
@media(max-width:800px){
  .footer-inner {
    grid-template-columns:1fr;
    gap:30px;
  }
  .footer-bio { max-width:100%; }
}
.cg-footer a {
  color: #444 !important;
  text-decoration: none !important;
}

.cg-footer a:hover {
  color: #000 !important;
}


/*---FOunder----*/




/*---Business---*/
 :root {
      --text: #111;
      --muted: #555;
      --border: #e5e5e5;
      --container: 1160px;
      --bg: #fff;
    }

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

    body {
      font-family: "Poppins", sans-serif;
      background: var(--bg);
      color: var(--text);
    }

    a { color: inherit; text-decoration: none; }

    .container {
      max-width: var(--container);
      margin: 0 auto;
      padding: 0 24px;
    }

    /* =============== NAVBAR =============== */
  

    /* =============== HERO =============== */
    .biz-hero {
      position: relative;
      padding: 130px 0 100px;
      border-bottom: 1px solid var(--border);
      overflow: hidden;
    }

    .biz-hero-grid {
      position: absolute;
      inset: 0;
      opacity: 0.08;
      background-image:
        linear-gradient(to right, rgba(0,0,0,0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0,0,0,0.05) 1px, transparent 1px);
      background-size: 70px 70px;
      pointer-events: none;
    }

    .biz-hero-inner {
      position: relative;
      z-index: 2;
      text-align: center;
    }

    .biz-hero-kicker {
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: var(--muted);
      margin-bottom: 16px;
    }

    .biz-hero-title {
      font-size: clamp(40px, 5vw, 58px);
      font-weight: 600;
      line-height: 1.2;
      margin-bottom: 20px;
    }

    .biz-hero-sub {
      font-size: 16px;
      color: var(--muted);
      max-width: 650px;
      margin: 0 auto;
      line-height: 1.8;
    }

    /* =============== BUSINESS SECTIONS =============== */

    .biz-section {
      padding: 90px 0;
      border-bottom: 1px solid var(--border);
    }

    .biz-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
      gap: 70px;
      align-items: center;
    }

    .biz-grid.reverse {
      grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
    }

    @media (max-width: 960px) {
      .biz-grid,
      .biz-grid.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
      }
    }

    .biz-tag {
      display: inline-block;
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: var(--muted);
      margin-bottom: 10px;
    }

    .biz-title {
      font-size: 28px;
      font-weight: 600;
      margin-bottom: 12px;
    }

    .biz-description {
      font-size: 15px;
      color: var(--muted);
      line-height: 1.8;
      margin-bottom: 18px;
    }

    .biz-meta {
      font-size: 13px;
      color: #333;
      line-height: 1.6;
    }

    .biz-meta span {
      display: inline-block;
      margin-right: 14px;
    }

    .biz-meta span::before {
      content: "• ";
    }

    .biz-link {
      display: inline-block;
      margin-top: 20px;
      font-size: 14px;
      border-bottom: 1px solid #111;
      padding-bottom: 2px;
    }

    /* Abstract visual card */
    .biz-visual {
      border-radius: 14px;
      border: 1px solid var(--border);
      padding: 26px 24px;
      position: relative;
      background: #fcfcfc;
      overflow: hidden;
      min-height: 220px;
    }

    .biz-visual-label {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--muted);
      margin-bottom: 6px;
    }

    .biz-visual-title {
      font-size: 15px;
      font-weight: 500;
      margin-bottom: 18px;
    }

    .biz-visual-shape {
      position: absolute;
      border-radius: 8px;
      border: 1px solid #111;
      background: #fff;
    }

    .biz-visual-shape.light {
      border-style: dashed;
      opacity: 0.65;
    }

    .biz-visual-note {
      position: absolute;
      bottom: 18px;
      left: 24px;
      font-size: 12px;
      color: var(--muted);
      max-width: 220px;
      line-height: 1.5;
    }

    /* Position variants per business */

    /* CTS */
    .biz-cts .shape-1 {
      width: 130px; height: 70px;
      top: 70px; left: 30px;
    }
    .biz-cts .shape-2 {
      width: 170px; height: 50px;
      top: 40px; right: 28px;
    }
    .biz-cts .shape-3 {
      width: 120px; height: 40px;
      bottom: 60px; right: 60px;
    }

    /* Creatin Marketing */
    .biz-cm .shape-1 {
      width: 120px; height: 60px;
      top: 60px; left: 40px;
    }
    .biz-cm .shape-2 {
      width: 60px; height: 110px;
      top: 40px; right: 60px;
    }
    .biz-cm .shape-3 {
      width: 150px; height: 40px;
      bottom: 55px; left: 90px;
    }

    /* Creatin Digital */
    .biz-digital .shape-1 {
      width: 70px; height: 70px;
      top: 60px; left: 40px;
    }
    .biz-digital .shape-2 {
      width: 140px; height: 60px;
      top: 50px; right: 50px;
    }
    .biz-digital .shape-3 {
      width: 180px; height: 42px;
      bottom: 60px; left: 60px;
    }

    /* Creatin.ai */
    .biz-ai .shape-1 {
      width: 60px; height: 60px;
      top: 55px; left: 50px;
      border-radius: 999px;
    }
    .biz-ai .shape-2 {
      width: 120px; height: 50px;
      top: 40px; right: 60px;
    }
    .biz-ai .shape-3 {
      width: 80px; height: 80px;
      bottom: 55px; right: 40px;
      border-radius: 999px;
    }

    /* Raitana Angadi */
    .biz-ra .shape-1 {
      width: 110px; height: 60px;
      top: 55px; left: 40px;
    }
    .biz-ra .shape-2 {
      width: 90px; height: 90px;
      top: 40px; right: 55px;
    }
    .biz-ra .shape-3 {
      width: 160px; height: 40px;
      bottom: 55px; left: 80px;
    }

    /* Future ventures */
    .biz-future .shape-1 {
      width: 120px; height: 60px;
      top: 55px; left: 45px;
    }
    .biz-future .shape-2 {
      width: 150px; height: 50px;
      top: 45px; right: 45px;
    }
    .biz-future .shape-3 {
      width: 100px; height: 40px;
      bottom: 60px; left: 120px;
    }

    @media (max-width: 960px) {
      .biz-visual {
        min-height: 200px;
      }
    }

    /* =============== FOOTER =============== */
    footer {
      padding: 50px 0;
      background: #f7f7f7;
      border-top: 1px solid var(--border);
      margin-top: 60px;
    }

    .footer-inner {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 40px;
      font-size: 14px;
    }

    @media (max-width: 800px) {
      .footer-inner {
        grid-template-columns: 1fr;
      }
    }

    .footer-heading {
      font-size: 15px;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .footer-links span {
      display: block;
      margin-bottom: 6px;
      color: #555;
    }

    .footer-copy {
      margin-top: 20px;
      font-size: 13px;
      color: #777;
    }

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 18px;
      font-weight: 600;
    }

    .footer-logo-mark {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      border: 1px solid #111;
    }

    /* ==================== RESPONSIVE FIXES (ONLY ADDITIONS) ==================== */

/* Make all images responsive */
img {
  max-width: 100%;
  height: auto;
}

/* Mobile spacing improvements */
@media(max-width: 960px) {
  .biz-section {
    padding: 60px 0 !important;
  }
  .biz-grid {
    gap: 30px !important;
  }
  .biz-title {
    font-size: 24px !important;
  }
  .biz-description {
    font-size: 15px !important;
    line-height: 1.7 !important;
  }
  .biz-visual {
    min-height: 160px !important;
    padding: 18px !important;
  }
}

/* Small mobile screens */
@media(max-width: 600px) {
  .biz-hero {
    padding: 100px 0 70px !important;
  }
  .biz-hero-title {
    font-size: 28px !important;
    line-height: 1.3 !important;
  }
  .biz-hero-sub {
    font-size: 15px !important;
    padding: 0 10px !important;
  }
  .biz-title {
    font-size: 20px !important;
  }
  .biz-description {
    font-size: 14px !important;
  }
  .biz-meta span {
    font-size: 13px !important;
  }
  .biz-grid {
    gap: 20px !important;
  }
}

/* Prevent overflow of shape elements */
.biz-visual {
  overflow: hidden;
}

/* Responsive container padding */
@media(max-width: 500px) {
  .container {
    padding: 0 16px !important;
  }
}


:root {
  --text:#111;
  --muted:#555;
  --border:#e5e5e5;
  --container:1160px;
}

body { margin:0; font-family:"Poppins",sans-serif; }

/* HEADER */
.cg-header {
  position: sticky;
  top: 0;
  width: 100%;
  background: #ffffffcc;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  z-index: 999;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.cg-nav {
  height: 72px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO */
.cg-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 18px;
}

.cg-logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #111;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* DESKTOP MENU */
.cg-menu {
  display: flex;
  gap: 32px;
}

.cg-menu a {
  color: var(--text);
  text-decoration: none;
  font-size: 15px;
  position: relative;
  padding-bottom: 4px;
}

.cg-menu a:hover::after,
.cg-menu a.active::after {
  content: "";
  width: 100%;
  height: 2px;
  background: #111;
  position: absolute;
  bottom: -4px;
  left: 0;
}

/* MOBILE MENU BUTTON */
.cg-menu-btn {
  width: 26px;
  height: 22px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}
.cg-menu-btn span {
  height: 3px;
  width: 100%;
  background: #111;
  border-radius: 3px;
}

/* MOBILE DROPDOWN */
.cg-mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.cg-mobile-menu a {
  padding: 14px 24px;
  text-decoration: none;
  color: #111;
  font-size: 15px;
  border-bottom: 1px solid #f3f3f3;
}

/* RESPONSIVE */
@media(max-width:900px){
  .cg-menu { display: none; }
  .cg-menu-btn { display: flex; }
}

.cg-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 600;
}

.cg-logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid #111;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cg-logo-img {
  height: 28px;     /* Adjust based on your logo */
  width: auto;
  display: block;
}

.cg-footer, .cg-footer * {
  font-family: 'Poppins', sans-serif !important;
}

.cg-footer {
  background:#fafafa;
  border-top:1px solid #eee;
  padding:50px 0 20px;
}

.footer-inner {
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  gap:40px;
  margin-bottom:30px;
}

/* Logo */
.cg-logo { display:flex; align-items:center; gap:12px; }
.cg-logo-img { height:34px; }
.cg-logo-text { font-size:20px; font-weight:600; }

/* Section Heading */
.footer-heading {
  font-size:16px;
  font-weight:600;
  margin-bottom:12px;
}

/* Bio */
.footer-bio {
  margin-top:12px;
  font-size:14px;
  color:#666;
  line-height:1.6;
  max-width:300px;
}

/* Links */
.f-link, .footer-links span {
  font-size:15px;
  font-weight:400;
  color:#555;
  line-height:1.7;
}

.footer-links strong {
  font-weight:600;
}

/* Hover effect */
.f-link:hover {
  color:#000;
  padding-left:4px;
  transition:0.2s;
}

/* COPYRIGHT CENTERED */
.footer-bottom {
  text-align:center;
  font-size:14px;
  color:#777;
  margin-top:10px;
}

/* MOBILE */
@media(max-width:800px){
  .footer-inner {
    grid-template-columns:1fr;
    gap:30px;
  }
  .footer-bio { max-width:100%; }
}
/*---Busieness--*/




/*--products--*/

:root {
  --text: #111;
  --muted: #555;
  --border: #e5e5e5;
  --container: 1160px;
  --white: #fff;
}

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

body {
  font-family: "Poppins", sans-serif;
  background: #fff;
  color: var(--text);
}

a { text-decoration: none; color: inherit; }


header {
  position: sticky;
  top: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  z-index: 50;
}

.nav {
  max-width: var(--container);
  margin: auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 600;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #111;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-links {
  display: flex;
  gap: 36px;
  font-size: 15px;
}

.nav-links a {
  position: relative;
}

.nav-links a.active::after,
.nav-links a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: #111;
}

/* MOBILE MENU */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger div {
  width: 26px;
  height: 2px;
  background: #111;
}

@media(max-width: 820px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 72px;
    right: 0;
    width: 70%;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    padding: 40px 30px;
    gap: 20px;
    border-left: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
}

/* HERO */
.hero {
  padding: 110px 24px 80px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.hero h1 {
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 600;
  margin-bottom: 18px;
}

.hero p {
  max-width: 650px;
  margin: auto;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
}

/* PRODUCTS GRID */
.products-container {
  max-width: var(--container);
  margin: auto;
  padding: 70px 24px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

@media(max-width: 960px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media(max-width: 640px) {
  .products-grid { grid-template-columns: 1fr; }
}

.product-card {
  border: 1px solid var(--border);
  padding: 22px;
  border-radius: 14px;
  background: #fff;
  transition: transform .2s ease, box-shadow .2s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.06);
}

.product-img {
  width: 100%;
  height: 180px;
  background: #f5f5f5;
  border-radius: 10px;
  margin-bottom: 16px;
  object-fit: cover;
}

.product-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.product-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

.read-more {
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid #111;
  padding-bottom: 2px;
  width: fit-content;
}

/* FOOTER */
footer {
  margin-top: 60px;
  padding: 50px 24px;
  background: #f7f7f7;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: var(--container);
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}

.footer-heading {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
}

.footer-links span {
  display: block;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 6px;
}

.footer-copy {
  font-size: 13px;
  color: #777;
  margin-top: 20px;
}

@media(max-width: 820px) {
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: left;
  }
}

.cg-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 600;
}

.cg-logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid #111;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cg-logo-img {
  height: 28px;     /* Adjust based on your logo */
  width: auto;
  display: block;
}


/* ---------- GLOBAL RESET ---------- */
:root {
  --text:#111;
  --muted:#555;
  --border:#e5e5e5;
  --container:1160px;
  --bg:#fff;
}

* {margin:0; padding:0; box-sizing:border-box;}
body {font-family:"Poppins", sans-serif;}

/* ---------- HEADER ---------- */
.cg-header {
  position: sticky;
  top: 0;
  width: 100%;
  background: #ffffffcc;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  z-index: 999;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* Navigation Bar Layout */
.cg-nav {
  height: 72px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.cg-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 18px;
}

.cg-logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #111;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Desktop Menu */
.cg-menu {
  display: flex;
  gap: 32px;
}

.cg-menu a {
  color: var(--text);
  text-decoration: none;
  font-size: 15px;
  position: relative;
  padding-bottom: 4px;
}

.cg-menu a:hover::after,
.cg-menu a.active::after {
  content: "";
  width: 100%;
  height: 2px;
  background: #111;
  position: absolute;
  bottom: -4px;
  left: 0;
}

/* ---------- MOBILE MENU BUTTON ---------- */
.cg-menu-btn {
  width: 26px;
  height: 22px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.cg-menu-btn span {
  height: 3px;
  width: 100%;
  background:#111;
  border-radius: 3px;
}

/* ---------- MOBILE DROPDOWN ---------- */
.cg-mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}

.cg-mobile-menu a {
  padding: 14px 24px;
  text-decoration: none;
  color: #111;
  font-size: 15px;
  border-bottom: 1px solid #f3f3f3;
}

/* ---------- RESPONSIVE RULES ---------- */
@media(max-width:900px) {
  .cg-menu { display: none; }
  .cg-menu-btn { display: flex; }
}



.cg-footer, .cg-footer * {
  font-family: 'Poppins', sans-serif !important;
}

.cg-footer {
  background:#fafafa;
  border-top:1px solid #eee;
  padding:50px 0 20px;
}

.footer-inner {
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  gap:40px;
  margin-bottom:30px;
}

/* Logo */
.cg-logo { display:flex; align-items:center; gap:12px; }
.cg-logo-img { height:34px; }
.cg-logo-text { font-size:20px; font-weight:600; }

/* Section Heading */
.footer-heading {
  font-size:16px;
  font-weight:600;
  margin-bottom:12px;
}

/* Bio */
.footer-bio {
  margin-top:12px;
  font-size:14px;
  color:#666;
  line-height:1.6;
  max-width:300px;
}

/* Links */
.f-link, .footer-links span {
  font-size:15px;
  font-weight:400;
  color:#555;
  line-height:1.7;
}

.footer-links strong {
  font-weight:600;
}

/* Hover effect */
.f-link:hover {
  color:#000;
  padding-left:4px;
  transition:0.2s;
}

/* COPYRIGHT CENTERED */
.footer-bottom {
  text-align:center;
  font-size:14px;
  color:#777;
  margin-top:10px;
}

/* MOBILE */
@media(max-width:800px){
  .footer-inner {
    grid-template-columns:1fr;
    gap:30px;
  }
  .footer-bio { max-width:100%; }
}
/*--products*--*/





.hero {
  position: relative;
  padding: 140px 0 160px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr; /* text + empty/grid area */
  align-items: start;
  position: relative;
}

/* FULL-WIDTH FEEL TEXT */
.hero-text {
  grid-column: 1 / span 2; /* 🔥 THIS makes text span full width */
}

.hero-title {
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: none; /* 🔥 VERY IMPORTANT */
}

/* Founder card pushed down like Eternal */
.hero-founder {
  margin-top: 120px;
  justify-self: start;
  display: inline-flex;
  gap: 18px;
  padding: 16px 18px;
  border: 1px solid #e5e5e5;
  background: #fff;
}

/* Background grid */
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}








/* ================= HERO ================= */

.hero {
  padding: 96px 0 120px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  padding-bottom: 40px;
}

/* Grid background */
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 0;
  pointer-events: none;
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 1;
  text-align: left;
  max-width: 100%;
}

/* TITLE */
.hero-title {
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 500;
  line-height: 1.05;
  margin-bottom: 28px;
  max-width: 100%;
  text-align: left;
}

.hero-title span {
  display: block;
  text-align: left;
}

/* FOUNDER CARD */
.hero-founder {
  margin-top: 80px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 14px 18px;
  border: 1px solid var(--border);
  background: #fff;
  align-self: flex-start;
}

.hero-founder-photo {
  width: 56px;
  height: 56px;
  border-radius: 6px;
  background: #111;
}

.hero-founder-text {
  font-size: 13px;
}

.hero-founder-text strong {
  display: block;
  margin-bottom: 4px;
}

.hero-founder-text a {
  display: inline-block;
  margin-top: 2px;
  font-size: 12px;
  border-bottom: 1px solid #111;
  padding-bottom: 1px;
}

.hero-title-strong {
  font-weight: 600;   /* bold line */
}

.hero-title-light {
  font-weight: 400;   /* NOT bold */
  color: #333;        /* slightly softer like Eternal */
}



/* Mobile menu hidden by default */
.cg-mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 9999;
}

/* When active */
.cg-mobile-menu.active {
  display: flex;
}

/* Hamburger clickable */
.cg-menu-btn {
  cursor: pointer;
}
