* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Clash Grotesk", sans-serif;
  background: #ffffff;

  overflow-x: hidden;
}
.nav-section {
  background: #ffffff;
}
/* HERO */

.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  margin-bottom: 25px;

  border-radius: 12px;

  /* Background */
  background: linear-gradient(
    135deg,
    rgba(201, 150, 58, 0.25) 0%,
    rgba(196, 112, 74, 0.2) 100%
  );

  /* Glass effect */
  backdrop-filter: blur(12px);

  /* Border using layered gold tones */
  border: 1px solid transparent;
  background-clip: padding-box;

  position: relative;
  color: #e8c99a;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
}

/* Gradient border effect */
.coming-soon-badge::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 1px;

  background: linear-gradient(
    135deg,
    #e8c99a,
    #e8c99a38,
    #e8c99a26
  );

  -webkit-mask: 
    linear-gradient(#000 0 0) content-box, 
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;

  pointer-events: none;
}

/* Glow dot */
.coming-soon-badge .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;

  background: radial-gradient(circle, #e8c99a 0%, #c8963a 70%, #8b5e3c 100%);
  box-shadow: 0 0 8px rgba(232, 201, 154, 0.8);
}
.hero-section {
  min-height: 100vh;
  background: url("assets/chukudu-banner-img.png") center center/cover no-repeat;
  position: relative;
}
.logo-img {
  width: 256px;
  height: 36px;
  object-fit: contain;
}
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.logo-text {
  font-size: 26px;
  font-weight: 600;
  color: #fff;
}

.hero-content {
  min-height: calc(100vh - 50px);
}

.content-wrapper {
  max-width: 850px;
}

.hero-title {
  font-size: 90px;
  line-height: 1;
  color: #fff;
  font-weight: 400;
  margin-bottom: 30px;
}

.hero-title span {
  font-family: "Instrument Serif", serif;
}

.hero-description {
  max-width: 700px;
  margin: auto;
  color: #ffffff;
  opacity: 80%;
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 40px;
}

.hero-buttons .btn {
  border-radius: 0;
  padding: 16px 30px;
  min-width: 220px;
  font-size: 16px;
  transition: 0.3s ease;
}

.ceo-btn {
  background: #5c3b2a;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  cursor: pointer;
  font-weight: 500;

  font-size: 16px;
  height: 72px;
}

.ceo-btn:hover {
  background: #5c3b2a;
  color: #fff;
}

.investor-btn {
  border: 1px solid #fff;
  color: #fff;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 500;

  font-size: 16px;
  height: 72px;
}

.investor-btn:hover {
  background: #fff;
  color: #000;
}

/* FEATURES */
.features-section {
  padding: 50px 0;
  background: #fff;
}

.feature-box {
  background: #ede0d8;
  opacity: 70%;
  text-align: center;
  padding: 20px;
  font-size: 18px;
  font-weight: 500;
  color: #1d1d1d;
}

/* ABOUT */
.about-section {
  padding: 100px 0;
}

.about-image img {
  height: 100%;
  object-fit: cover;
}

.about-content {
  padding-left: 40px;
}

.content-block {
  margin-bottom: 60px;
}

.content-block h2 {
  font-size: 48px;
  font-family: "Instrument Serif", serif;
  margin-bottom: 20px;
  color: #000000;
  font-weight: 400;
}

.content-block p {
  font-size: 18px;
  line-height: 24px;
  color: #000000;
  opacity: 70%;
  font-weight: 400;
}

/* STATS */
.stats-section {
  background: #EDE0D8;
  padding: 100px 0;
}

.stat-box h2 {
  font-size: 90px;
  color: #5C3B2A;
  margin-bottom: 10px;
  font-weight: 400;
}

.stat-box p {
  color: #5C3B2A;
  font-size: 18px;
}

/* COLLECTIONS */
.collections-section {
  padding: 100px 0;
  overflow: hidden;
  background: #fff;
}

.section-heading {
  margin-bottom: 30px;
}

.section-heading h2 {
  font-size: 60px;
  font-weight: 400;
  color: #1D1D1D;
}

.section-heading span {
  font-family: "Instrument Serif", serif;
}

/* Slider */
.collections-slider {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;

  /* Hide scrollbar */
  scrollbar-width: none;

  user-select: none;
  -webkit-user-select: none;
}

.collections-slider::-webkit-scrollbar {
  display: none;
}

/* Drag cursor only below 1500px */
@media (max-width: 1499px) {
  .collections-slider {
    cursor: grab;
  }

  .collections-slider.dragging {
    cursor: grabbing;
  }
}

/* Track */
.collections-track {
  display: flex;
  align-items: center;
  gap: 25px;
  width: max-content;
  padding: 0 75px;
}

/* Cards */
.collection-card {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

/* Images */
.collection-card img {
  width: auto;
  height: 450px;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

/* Overlay */
.collection-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 30px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.65),
    rgba(0, 0, 0, 0)
  );
}

.collection-overlay h3 {
  color: #fff;
  font-size: 34px;

  margin-bottom: 0;
  line-height: 1.2;
}

/* =============================== */
/* Above 1500px = Normal Container */
/* =============================== */
@media (min-width: 1500px) {
  .collections-slider {
    overflow: visible;
  }

  .collections-track {
    width: 1320px;
    max-width: 100%;
    margin: auto;
    padding: 0;
    justify-content: space-between;
  }

  .collection-card {
    flex: 1;
  }

  .collection-card img {
    width: 100%;
    height: 450px;
  }
}

/* Tablet */
@media (max-width: 991px) {
  .collections-section {
    padding: 80px 0;
  }

  .section-heading {
    margin-bottom: 45px;
  }

  .section-heading h2 {
    font-size: 52px;
  }

  .collections-track {
    gap: 20px;
    padding: 0 30px;
  }

  .collection-card img {
    height: 420px;
  }

  .collection-overlay {
    padding: 24px;
  }

  .collection-overlay h3 {
    font-size: 28px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .collections-section {
    padding: 70px 0;
  }

  .section-heading {
    margin-bottom: 35px;
  }

  .section-heading h2 {
    font-size: 40px;
    line-height: 1.2;
  }

  .collections-track {
    gap: 16px;
    padding: 0 20px;
  }

  .collection-card img {
    height: 320px;
  }

  .collection-overlay {
    padding: 18px;
  }

  .collection-overlay h3 {
    font-size: 22px;
  }
}

/* Small Mobile */
@media (max-width: 575px) {
  .section-heading h2 {
    font-size: 34px;
  }

  .collection-card img {
    height: 280px;
  }

  .collection-overlay h3 {
    font-size: 20px;
  }

  .content-wrapper {
    max-width: 850px;
    margin-top: 70px;
}
}
/* FOOTER */
.footer-section {
  background: #5C3B2A;
  color: #fff;
  padding: 80px 0 30px;
}

.footer-logo h5 {
  font-size: 26px;
}

.footer-text {
  color: #ddd;
  line-height: 1.8;
}

.footer-title {
  margin-bottom: 25px;
  font-size: 20px;
  color: #BA8E77;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 14px;
}

.footer-links a,
.social-icons a,
.privacy-link {
  color: #ddd;
  text-decoration: none;
}

.contact-heading {
  font-weight: 500;
  margin-bottom: 5px;
  color:#FFFFFF ;
}

.footer-section hr {
  border-color: #FFFFFF;
  margin: 40px 0 25px;
}

.footer-bottom p {
  color: #ddd;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .hero-title {
    font-size: 65px;
  }

  .section-heading h2 {
    font-size: 52px;
  }

  .content-block h2 {
    font-size: 46px;
  }

  .about-content {
    padding-left: 0;
  }
}

@media (max-width: 767px) {
  .hero-section {
    min-height: 850px;
  }

  .hero-title {
    font-size: 48px;
  }

  .hero-description {
    font-size: 18px;
    line-height: 28px;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .content-block h2 {
    font-size: 38px;
  }

  .section-heading h2 {
    font-size: 42px;
  }

  .stat-box h2 {
    font-size: 60px;
  }

  .collection-card img {
    height: 400px;
  }

  .footer-bottom {
    text-align: center;
  }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 60px;
        line-height: 65px;
    }

  .logo-text {
    font-size: 20px;
  }

  .feature-box {
    font-size: 14px;
    padding: 16px;
  }

  .section-heading h2 {
    font-size: 34px;
  }

  .content-block h2 {
    font-size: 32px;
  }
  .about-section {
    padding: 80px 0 25px 0;
}
}
/* =========================================================
   CEO'S WORDS PAGE
========================================================= */

/* HERO */
/* =========================================================
   CEO HERO SECTION
========================================================= */

/* =========================================================
   CEO HERO SECTION
========================================================= */

.ceo-hero-section {
  position: relative;
  overflow: hidden;
  min-height: 82vh;
  display: flex;
  align-items: center;
  background: #000;
}

.ceo-hero-bg {
  position: absolute;
  inset: 0;
}

.ceo-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ceo-hero-overlay {
  position: absolute;
  inset: 0;
}

.ceo-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 40px 0;
}

.back-home {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 50px;
  position: relative;
  bottom: 20px;
  right: 30px;
}

.back-home:hover {
  color: #fff;
}

.ceo-content h1 {
  font-size: 69px;
  line-height: 66px;
  font-weight: 400;
  margin-bottom: 25px;
  color: #ffffff;
}

.ceo-content p {
  font-size: 22px;
  line-height: 28px;
  color: #ffffff;
  opacity: 80%;
  margin-bottom: 35px;
}

.ceo-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ceo-author-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #7fd49b;
  color: #249f51;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
}

.ceo-author h5 {
  margin-bottom: 2px;
  font-size: 18px;
  color: #ffffff;
}

.ceo-author span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {
  .ceo-hero-section {
    min-height: 700px;
    padding: 120px 0 80px;
  }

  .back-home {
    right: 0;
    bottom: 0;
    margin-bottom: 40px;
  }

  .ceo-content h1 {
    font-size: 56px;
    line-height: 1.1;
  }

  .ceo-content p {
    font-size: 20px;
    line-height: 1.7;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {
  .ceo-hero-section {
    min-height: 100vh;
    padding: 60px 0;
    background: #5c3b2a;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* REMOVE IMAGE */
  .ceo-hero-bg {
    display: none;
  }

  .ceo-hero-overlay {
    display: none;
  }

  .ceo-hero-content {
    text-align: center;
    padding: 0 20px;
  }

  .back-home {
    position: relative;
    right: 125px;
    margin-bottom: 0px;

    justify-content: center;

    font-size: 13px;
  }

  .ceo-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .ceo-content h1 {
    font-size: 42px;
    line-height: 1.1;
    margin-bottom: 20px;
  }

  .ceo-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 100%;
  }

  .ceo-author {
    justify-content: center;
    text-align: left;
  }

  .ceo-author h5 {
    font-size: 16px;
  }

  .ceo-author span {
    font-size: 13px;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575px) {
  .ceo-hero-section {
    padding: 0px 0;
  }

  .ceo-content h1 {
    font-size: 34px;
  }

  .ceo-content p {
    font-size: 15px;
  }

  .ceo-author {
    gap: 10px;
  }

  .ceo-author-circle {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }
}
/* MESSAGE */
.ceo-message-section {
  padding: 80px 0 60px 0;
}

.ceo-small-title {
  color: #5C3B2A;
  opacity: 80%;
  font-size: 22px;
  margin-bottom: 30px;
  font-weight: 400;
}

.ceo-main-title {
  font-size: 78px;
  line-height: 90px;
  font-weight: 400;
  margin-bottom: 20px;
  color: #000000;
}

.ceo-message-content p {
  font-size: 22px;
  line-height: 1.7;
  color: #000000;
  font-weight: 400;
}

.ceo-quote-box {
  border-left: 4px solid #FD8120;
  padding-left: 22px;
  margin: 35px 0;
}

.ceo-quote-box h4 {
  font-size: 24px;
  line-height: 26px;
  font-weight: 400;
  color: #000000;
}

.ceo-side-image img {
  width: 100%;
}

/* BIG QUOTE */
.ceo-big-quote {
  padding-bottom: 120px;
}

.ceo-big-quote-inner {
  border-left: 4px solid #017340;
  padding-left: 30px;
}

.ceo-big-quote h2 {
    font-size: 49px;
    line-height: 60px;
    font-weight: 400;
    color: #000000;
    max-width: 901px;
}

.ceo-small-note {
  margin-top: 50px;
}

.ceo-small-note p {
    color: #000000;
    opacity: 80%;
    font-size: 20px;
    line-height: 26px;
}

/* LARGE TEXT */
.ceo-large-text {
  padding: 0 0 120px;
}

.ceo-large-text h2 {
  font-size: 88px;
  line-height: 90px;
  color: #5C3B2A;
  font-weight: 400;
  text-align: center;
}

/* CTA */
.ceo-cta-section {
  padding: 120px 0;
  text-align: center;
}
.responsiveSection{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-self: center;
}
.ceo-cta-section h2 {
    font-size: 60px;
    line-height: 66px;
    font-weight: 400;
    color: #1D1D1D;
    margin-bottom: 20px;
    max-width: 749px;
}


.ceo-cta-section span {
  font-family: "Instrument Serif", serif;
   font-weight: 400;
}

.ceo-cta-section p {
  font-size: 20px;
  color: #1D1D1D;
  opacity: 70%;
  margin-bottom: 25px;
}

.ceo-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.ceo-login-btn {
  background: #5c3b2a;
  color: #fff;
  border: none;
  padding: 18px 45px;
  min-width: 220px;
}

.ceo-home-btn {
  background: transparent;
  border: 1px solid #5c3b2a;
  color: #5c3b2a;
  padding: 18px 45px;
  min-width: 220px;
}
@media (min-width: 1500px) and (max-width: 4000px) {

.back-home {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 50px;
    position: relative;
    bottom: 120px;
    right: 260px;
}
}
/* RESPONSIVE */
@media (max-width: 991px) {
  .ceo-content h1 {
    font-size: 56px;
  }

  .ceo-main-title {
    font-size: 54px;
  }

  .ceo-big-quote h2 {
    font-size: 44px;
  }

  .ceo-large-text h2 {
    font-size: 60px;
  }

  .ceo-cta-section h2 {
    font-size: 50px;
  }

  .ceo-side-image {
    margin-top: 50px;
  }
}

@media (max-width: 767px) {

  .ceo-hero-content {
    padding: 20px 0 60px;
  }
.ceo-small-title {
    color: #5C3B2A;
    opacity: 80%;
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 400;
}
  .ceo-content {
    margin-top: 0px;
  }

     .ceo-content h1 {
        font-size: 45px;
        line-height: 60px;
    }

  .ceo-content p {
    font-size: 19px;
  }

  .ceo-message-section {
    padding: 55px 0;
  }

  .ceo-main-title {
         font-size: 50px;
        line-height: 65px;
    }

  .ceo-message-content p {
    font-size: 18px;
  }

  .ceo-quote-box h4 {
    font-size: 22px;
  }

  .ceo-big-quote h2 {
    font-size: 34px;
  }
.ceo-big-quote {
    padding-bottom: 0px;
}
  .ceo-large-text {
    padding: 20px 0 20px 0;
  }

    .ceo-large-text h2 {
        font-size: 35px;
        line-height: 61px;
    }

  .ceo-cta-section {
    padding: 65px 0;
  }

  .ceo-cta-section h2 {
    font-size: 36px;
  }

  .ceo-cta-section p {
    font-size: 18px;
  }
  .stats-section {
    background: #EDE0D8;
    padding: 65px 0;
}

}


/* =========================================================
   INVESTOR LOGIN PAGE
========================================================= */

.investor-login-section {
  height: 100vh;
  overflow: hidden;
  background: #fff;
}

/* =========================================================
   LEFT FIXED IMAGE
========================================================= */

.investor-left {
  position: fixed;
  left: 0;
  top: 0;

  width: 50%;
  height: 100vh;

  overflow: hidden;
}

.investor-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.investor-overlay {
  position: absolute;
  inset: 0;

}

.investor-left-content {
  position: absolute;
  inset: 0;
  z-index: 2;

  padding: 28px 42px;

  display: flex;
  flex-direction: column;
  justify-content:center;
}

.investor-back {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;

  display: inline-flex;
  align-items: center;
  gap: 2px;
  position: relative;
  bottom: 110px;
}

.investor-back:hover {
  color: #fff;
}

.back-icon img {
    width: 19px;
    height: 13px;
    object-fit: contain;
    display: block;
}
.investor-text {
  max-width: 520px;
  padding-bottom: 45px;
}

.investor-text h1 {
  font-size: 82px;
  line-height: 1;
  color: #fff;
  font-weight: 400;
  margin-bottom: 22px;
}

.investor-text p {
  font-size: 20px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.85);
}

/* =========================================================
   RIGHT SCROLL AREA
========================================================= */

.investor-right-wrapper {
  margin-left: 0;
  height: 100vh;
}

.investor-right {
  height: 100vh;
  overflow-y: auto;

  padding: 40px 50px;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

/* SCROLLBAR */
.investor-right::-webkit-scrollbar {
  width: 6px;
}

.investor-right::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.15);
}

/* LOGO */
.investor-logo {
    margin-bottom: 10px;
    display: inline-block;
    position: relative;
    right: 157px;
}

.investor-logo img {
  width: 190px;
}

/* FORM */
.investor-form-wrapper {
  max-width: 500px;
  width: 100%;
  margin-top: 20px;
}

.investor-form-wrapper h2 {
  font-size: 32px;
  line-height: 1.1;
  font-weight: 500;
  margin-bottom: 5px;
  color: #1D1D1D;
}

.investor-subtitle {
  font-size: 16px;
  color: #1D1D1D;
  margin-bottom: 18px;
  font-weight: 400;
}

/* LABEL */
.form-label {
  font-size: 15px;
  margin-bottom: 4px;
  color: #1D1D1D;
  font-weight: 300;
}

/* INPUT */
.investor-input {
  height: 50px;
  border-radius: 0;
  border: 1px solid #00000054;
  padding: 0 18px;
  font-size: 15px;
  box-shadow: none !important;
}

.investor-input::placeholder {
  color: #b8b8b8;
}

/* SPACING */
.mb-4 {
  margin-bottom: 16px !important;
}

/* PASSWORD */
.password-eye {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.5;
  font-size: 18px;
}

/* LOGIN BUTTON */
.investor-btn-login {
  width: 100%;
  height: 54px;

  border: none;
  background: #6a4330;
  color: #fff;

  font-size: 22px;
  font-weight: 500;

  margin-top: 4px;

  transition: 0.3s ease;
}

.investor-btn-login:hover {
  background: #5b3828;
}

/* GOOGLE BUTTON */
.investor-google-btn {
  width: 100%;
  height: 54px;

  background: #fff;
  border: 1px solid #ddd;

  margin-top: 14px;

  font-size: 18px;
  font-weight: 500;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.investor-google-btn img {
  width: 24px;
}

/* BOTTOM */
.investor-bottom-text {
  text-align: center;
  margin-top: 14px;

  font-size: 14px;
  color: #666;
}

.investor-bottom-text a {
  color: #6a4330;
  text-decoration: none;
  font-weight: 600;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1440px) {
  .investor-text h1 {
    font-size: 70px;
  }

  .investor-text p {
    font-size: 18px;
  }

  .investor-right {
    padding: 32px 40px;
  }
}

@media (max-width: 1199px) {
  .investor-right {
    padding: 28px 32px;
  }

  .investor-form-wrapper h2 {
    font-size: 38px;
  }

  .investor-input {
    height: 48px;
  }

  .investor-btn-login,
  .investor-google-btn {
    height: 52px;
    font-size: 18px;
  }
}

/* MOBILE */
@media (max-width: 991px) {
  html,
  body {
    overflow: auto;
  }

  .investor-login-section {
    height: auto;
  }

  .investor-left {
    display: none;
  }

  .investor-right-wrapper {
    margin-left: 0;
    height: auto;
  }

  .investor-right {
    height: auto;
    overflow: visible;

    padding: 40px 22px;
  }

  .investor-logo img {
    width: 170px;
  }

  .investor-form-wrapper {
    max-width: 100%;
    margin-top: 15px;
  }

  .investor-form-wrapper h2 {
    font-size: 34px;
  }

  .investor-btn-login,
  .investor-google-btn {
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  .investor-right {
    padding: 35px 18px;
  }

  .investor-form-wrapper h2 {
    font-size: 30px;
  }

  .investor-logo img {
    width: 160px;
  }
      .investor-logo {
    margin-bottom: 10px;
    display: inline-block;
    position: relative;
    right: 94px;
}
}