
:root {
    --primary: #46957c;           /* Invest button green */
    --primary-dark: #3a7d68;
    --secondary: #6b4423;         /* Sienna brown */
    --secondary-light: #7d5a3c;
    --accent: #f0c14b;            /* Warm amber */
    --accent-dark: #d4a73d;
    --tertiary: #9a7b5b;          /* Fawn */
    --cream: #f9ece0;             /* Warm cream background */
    --cream-light: #fdf6f0;
    --white: #ffffff;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6b6b6b;
    --border-light: #e5e2dd;
    --new1: #ee4023;
    --new2: #f7f3eb;
    --new3: #3c805b;

}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans Regular', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

td {
  border-right: black solid 2px;
}
h1, h2, h3, h4, h5, h6 {
    /* font-family: 'Raleway', sans-serif; */
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    /* text-transform: lowercase; */
    margin-top: 0;
    letter-spacing: -0.01em;
}

h1{
    font-family:'Boogaloo', sans-serif;
}

h2, h3, button{
font-family: 'Noto Sans Bold', sans-serif;
}

.nav-link{
     font-family: 'Noto Sans Regular', sans-serif;
}


.hero-title, .hero-text, .hero-stats, .hero-links {
    padding-right: 30px;
    margin-left: 0 !important;
    /* text-align:justify; */
}


.introhead{
  font-family:'Boogaloo', sans-serif!important;
  color:var(--new1)
}
p:not(.contact-info p) {
    margin-bottom: 1rem;
    color: var(--text-medium);
    line-height: 1.8;
    font-weight: 400;
}

a {
    color: var(--secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary);
}

img {
    max-width: 100%;
    height: auto;
    /* display: block; */
}

.btn {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 12px;
    /* text-transform: lowercase; */
    letter-spacing: 0.03em;
    padding: 12px 24px;
    /* border-radius: 30px; */
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    background-color: var(--new3)!important;
}

/* .btn-round {
    border-radius: 30px;
} */

.contact-wrapper {
  background: white;
  border-radius: 20px;
  overflow: hidden;
}

.contact-info {
  background: linear-gradient(135deg, #EE4023, #F67A18);
  padding: 40px;
  color: white;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  transform: translateX(10px);
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink:0;
}

.social-links {
  margin-top: 30px;
}

.social-icon {
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  transition: all 0.3s ease;
  color: #ffffff;
}

.social-icon:hover {
  background: white;
  color: #0062cc;
  transform: translateY(-3px);
}

.contact-form {
  padding: 40px;
}

.form-control {
  border-radius: 10px;
  padding: 12px 15px;
  border: 2px solid #eee;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: #0062cc;
  box-shadow: none;
}

.form-label {
  font-weight: 500;
  margin-bottom: 8px;
}

.btn-submit {
  /* background: linear-gradient(135deg, #0062cc, #0096ff); */
  background: linear-gradient(135deg, #EE4023, #F67A18);
  border: none;
  padding: 12px 30px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  transform: translateY(-2px);
}

/* ------------- */

.chart {
    max-width: 1000px;
    margin: 40px auto;
  }

  .legend {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 15px;
  }

  .legend span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
  }

  .box {
    width: 14px;
    height: 14px;
  }

  .oil { background: #8B4513; }
  .gas { background: #4FA3D1; }

  .bars {
    display: flex;
    align-items: flex-end;
    height: 400px;
    border-left: 2px solid #333;
    border-bottom: 2px solid #333;
    padding: 10px;
    gap: 14px;
  }

  .year {
    display: flex;
    gap: 6px;
    align-items: flex-end;
  }

  .bar {
    width: 20px;
    border-radius: 3px 3px 0 0;
  }

  .label {
    text-align: center;
    font-size: 12px;
    margin-top: 8px;
  }

  .year-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .y-axis {
    position: absolute;
    left: -60px;
    top: 0;
    font-size: 12px;
  }

.btn-lg {
    padding: 15px 32px;
    font-size: 13px;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 11px;
}

.hero-phone-video {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  background: transparent;
}

.phone-video-shell {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-video-frame {
  position: relative;
  width: min(100%, 380px);
  border: 6px solid #ffffff;
  border-radius: 34px;
  overflow: hidden;
  background: #ffffff;
}

.phone-video {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #000;
}

.mute-btn {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  z-index: 2;
}

.mute-btn img {
  width: 20px;
  height: 20px;
  display: block;
}

  .video-container {
    /* max-width: 800px; */
    /* margin: 40px auto; */
  }

  video {
    width: 100%;
    max-height: 400px;
    border-radius: 12px;
    background-color:white;
  }

  .app-container {
      background: #e9e9e9;
      border-radius: 25px;
      padding: 40px 20px;
      max-width: 450px;
      width: 100%;
      text-align: center;
      border: 3px solid #f39c12;
      margin-left: auto;
      margin-right: auto;
    }

    .app-icon {
      width: 100px;
      height: 100px;
      border-radius: 20px;
      object-fit: cover;
      margin-bottom: 20px;
    }

    .title {
      font-size: 28px;
      font-weight: 700;
      letter-spacing: 1px;
      margin-bottom: 30px;
      color:black;
    }


    .store-btn {
      display: block;
      margin: 15px auto;
      width: 45%;
      max-width: 300px;
      transition: transform 0.2s ease;
    }

    .store-btn:hover {
      transform: scale(1.03);
    }

    .note {
      font-style: italic;
      margin-top: 25px;
      font-size: 16px;
      color: #333;
    }
/* Invest Button - Primary Green */
.btn-invest {
    background-color: var(--new3);
    /* border-color: var(--primary); */
    color: var(--white);
    font-weight: bold;
}

.btn-outline-dark:hover {
  color: #212529;
}

/* Secondary Button - Sienna Brown */
.btn-secondary {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: var(--white);
}

.btn-secondary:hover,
.btn-secondary:focus {
    background-color: var(--secondary-light);
    border-color: var(--secondary-light);
    color: var(--white);
}

/* Accent Button - Amber */
.btn-accent {
    background-color: var(--accent);
    border-color: var(--accent);
    color: var(--text-dark);
}

.btn-accent:hover,
.btn-accent:focus {
    background-color: var(--accent-dark);
    border-color: var(--accent-dark);
    color: var(--text-dark);
}

/* Outline Buttons */
.btn-outline-dark {
    background-color: var(--new3);
    /* border-color: var(--new1); */
    color: white;
}

/* .btn-outline-dark:hover {
    background-color: var(--new3);
    border-color: var(--new3);
    color: var(--white);
} */

.btn-group-custom {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.badge-pill {
    display: inline-block;
    background-color: var(--new3);
    color:white;
    font-family: 'Raleway', sans-serif;
    font-size: 17px;
    font-weight: 600;
    /* text-transform: lowercase; */
    letter-spacing: 0.05em;
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 1rem;
}

.badge-light {
    background-color: rgba(255,255,255,0.25);
    color: var(--white);
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    /* background-color: var(--white); */
    /* transition: all 0.7s ease; */
}

.navbar.scrolled {
    padding: 10px 0;
}

.navbar-logo {
    max-width: 120px;
    height: auto;
}

.navbar-nav {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 5px;
}
.nav-link{
    color:white!important;
    font-weight:bold!important;
}
.navbar-nav .nav-link {
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-dark);
    padding: 10px 15px;
    /* text-transform: lowercase; */
    letter-spacing: 0.03em;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary);
}

.navbar-toggler {
  border: 1px solid #ffffff;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.15rem #fff;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* .navbar-collapse.show {
  text-align: center;
} */

.hero-section {
    padding: 120px 0 80px;
    background-color: var(--cream);
}

.hero-content {
    padding-right: 30px;
}

.hero-title {
    font-size: 2.5rem;
    /* font-weight: 400; */
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.hero-text {
    font-size: 15px;
    color: var(--text-medium);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-value {
    display: block;
    font-family: 'Raleway', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
}

.stat-label {
    display: block;
    font-size: 11px;
    font-weight: 500;
    color: var(--text-light);
    text-transform: lowercase;
}

.hero-links {
    display: flex;
    gap: 25px;
}

.hero-links a {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
    /* text-transform: lowercase; */
    border-bottom: 1px solid var(--text-dark);
    padding-bottom: 2px;
}

.hero-links a:hover {
    color: var(--primary);
    border-color: var(--primary);
}

.hero-video-col {
    padding-left: 30px;
}

.video-wrapper {
    border: 3px solid black;
    border-radius: 4px;
    overflow: hidden;
}

.video-caption {
    background-color: var(--new3);
    color: var(--white);
    text-align: center;
    padding: 12px 15px;
    font-size: 15px;
    font-weight: 800;
    /* text-transform: lowercase; */
    letter-spacing: 0.02em;
}

.section {
    padding: 80px 0;
}

.section-white {
    background-color: var(--white);
}

.section-cream {
    background-color: var(--new2);
}

.section-primary {
    background-color: var(--primary);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 15px;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
}

.text-white {
    color: var(--white) !important;
}

.text-white-muted {
    color: rgba(255,255,255,0.8) !important;
}

.section-quote {
    padding: 50px 0;
    background-color: var(--white);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.section-quote blockquote {
    text-align: center;
    margin: 0;
}

.section-quote blockquote p {
    font-family: 'Raleway', sans-serif;
    font-size: 1.6rem;
    font-weight: 300;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.section-quote blockquote cite {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-light);
    font-style: normal;
}

.info-card {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 8px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
}

.info-card:hover {
    /* box-shadow: var(--shadow-md); */
    /* transform: translateY(-5px); */
}

.info-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 50%;
    font-size: 28px;
    color: var(--accent);
    border: 2px solid var(--accent);
}

.info-title {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    /* text-transform: lowercase; */
    margin-bottom: 10px;
}

.info-card p {
    font-size: 13px;
    color: var(--text-medium);
    margin-bottom: 0;
}

.awards-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.award-img {
    width: 80px;
    height: auto;
    opacity: 0.8;
    filter: grayscale(20%);
    transition: all 0.3s ease;
}

.award-img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.awards-row-large .award-img-large {
    width: 180px;
    height: auto;
    transition: all 0.3s ease;
    justify-content: center;
}

.awards-row-large .award-img-large:hover {
    transform: scale(1.1);
}

.news-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    margin: 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    flex-grow: 1;
}

.news-card:hover {
}

.news-img-wrapper {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.news-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-img-wrapper img {
    transform: scale(1.05);
}

.news-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-title {
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.5;
    margin-bottom: 15px;
    flex: 1;
    text-transform: none;
}

.news-body .btn {
    align-self: flex-start;
}

/* Slick Slider */
.slick-slide {
    padding: 0 10px;
}

.slick-prev, .slick-next {
    z-index: 10;
}

.slick-prev:before, .slick-next:before {
    color: var(--secondary);
    font-size: 24px;
}

.slick-dots {
    bottom: -40px;
}

.slick-dots li button:before {
    font-size: 10px;
    color: var(--accent);
}

.slick-dots li.slick-active button:before {
    color: var(--primary);
}

.section-image {
    position: relative;
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.section-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.55);
}

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

.section-image-2 {
    padding: 90px 0;
}

.image-section-content {
    text-align: center;
    max-width: 725px;
    margin: 0 auto;
    justify-content: center;
    display: flex;
    flex-direction: column;
}

.image-section-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.image-section-content h2,
.image-section-content h6 {
  text-align:left;
}

.image-section-content h6 {
  line-height: 1.8;
  margin-bottom:0;
}

.image-section-content .section-title {
  margin-bottom:0;
}

.content-col {
    padding: 20px;
}

.img-col {
    padding: 20px;
}

.content-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    /* box-shadow: var(--shadow-lg); */
    object-fit: cover;
   margin-left: 0;
    /* max-height: 475px; */
}

.img-align {
  align-self: end;
}

.section-stats {
    padding: 60px 0;
    background-color: var(--secondary);
    text-align: center;
}

.stats-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    letter-spacing: -0.02em;
}

.timeline-wrapper {
    /* overflow-x: auto; */
    padding: 20px 0;
    /* -webkit-overflow-scrolling: touch; */
}

.timeline {
    display: flex;
    justify-content: center;
    gap: 20px;
    min-width: max-content;
    padding: 20px;
}

.timeline-item {
    text-align: center;
    min-width: 180px;
    flex-shrink: 0;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
    color: var(--primary);
}

.timeline-content {
    background: var(--white);
    padding: 15px 20px;
    border-radius: 8px;
}

.timeline-content h6 {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 12px;
    color: var(--primary);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.timeline-content p {
    font-size: 12px;
    color: var(--text-medium);
    margin: 0;
}

.section-download {
    border-top: 1px solid var(--border-light);
    /* border-bottom: 1px solid var(--border-light); */
}

.download-logo {
    max-width: 180px;
    margin: 0 auto;
}

.team-card {
    text-align: center;
    background: var(--new2);
    border-radius: 8px;
    padding: 30px 20px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
}

.team-card:hover {
    /* box-shadow: var(--shadow-md); */
    /* transform: translateY(-5px); */
}

.team-img-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--new1);
}

.team-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-name {
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
    text-transform: capitalize;
}

.team-role {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 15px;
}

.modal-content {
    border-radius: 8px;
    border: none;
}

.modal-header {
    border-bottom: 1px solid var(--border-light);
    padding: 20px 25px;
}

.modal-title {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 20px;
}

.modal-body {
    padding: 25px;
}

.modal-body p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.portal-heading {
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
    text-transform: none;
}

.portal-list {
    padding-left: 20px;
    margin-bottom: 0;
}

.portal-list li {
    margin-bottom: 12px;
    color: var(--text-medium);
    font-size: 13px;
    line-height: 1.7;
}

.portal-img {
    max-width: 300px;
    height: auto;
    margin: 0 auto;
}

.footer {
    padding: 60px 0 30px;
    /* background-color: var(--secondary); */
    color: black
}

.footer-logo {
    max-width: 150px;
    margin: 0 auto 15px;
    filter: brightness(0) invert(1);
}

.footer-title {
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    font-weight: 700;
    /* color: var(--white); */
    /* text-transform: lowercase; */
    margin-bottom: 15px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-nav a {
    font-size: 13px;
    /* color: rgba(255,255,255,0.8); */
    /* text-transform: lowercase; */
}

.footer-nav a:hover {
    color: var(--accent);
}

.footer-contact {
    font-size: 13px;
    /* color: rgba(255,255,255,0.8); */
    margin-bottom: 8px;
}

.footer-contact a {
    /* color: rgba(255,255,255,0.8); */
}

.footer-contact a:hover {
    /* color: var(--accent); */
}

.footer-disclaimer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
    /* text-align: center; */
}

.disclaimer-title {
    font-weight: 600;
    font-size: 12px;
    /* color: var(--white); */
    margin-bottom: 10px;
}

.disclaimer-text {
    font-size: 11px;
    /* color: rgba(255,255,255,0.7); */
    line-height: 1.7;
}

/* ============================================
   Responsive Styles
   ============================================ */
@media (min-width: 992px) and (max-width: 1070px) {
     .timeline-item {
       min-width: 165px;
     }
      .content-img{
        margin-left:-30px!important;
    }
    .hero-title, .hero-text, .hero-stats, .hero-links, table{
        margin-left:0px!important;
    }
}

@media (min-width: 992px) and (max-width: 1059px) {
    .img-align {align-self: center;}
     .content-img{
        margin-left:-40px;
    }
    .hero-title, .hero-text, .hero-stats, .hero-links, table{
        margin-left:0px!important;
    }
}

@media (max-width: 1199px) {
    .hero-title, .hero-text, .hero-stats, .hero-links, table{
        margin-left:0px;
    }
     .content-img{
        margin-left:-40px;
    }
    .hero-title {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 991px) {
     .hero-title, .hero-text, .hero-stats, .hero-links, table{
        margin-left:0px!important;
        justify-content:center!important;
        text-align:center;
    }
     .content-img{
        margin-left:0px;
    }
    .hero-section {
        padding: 100px 0 60px;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-links {
        justify-content: center;
    }

    .hero-video-col {
        /* padding-left: 0; */
    }

    .hero-title {
        font-size: 2rem;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .content-col {
        text-align: center;
        margin-top: 30px;
    }

    /* .content-img {
        max-height: 400px;
    } */

    .btn-group-custom {
        justify-content: center;
    }

    .section-image {
        background-attachment: scroll;
        padding: 80px 0;
    }

    .stats-title {
        font-size: 1.5rem;
    }

    .timeline {
        justify-content: center;
        padding-left: 20px;
        flex-direction: column;
        align-items: center;
    }
    .timeline-item {
      min-width:50%;
      max-width:250px;
    }
    .award-img-large{
        margin-left:220px;
    }
}

@media (max-width: 767px) {

      .hero-links{
        padding-bottom:15px;
    }
     .content-img{
        margin-left:0px;
    }
    .navbar-logo {
        max-width: 100px;
    }

    .hero-section {
        padding: 90px 0 50px;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .hero-text {
        font-size: 14px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }

    .hero-stats .btn {
        width: 100%;
    }

    .section {
        padding: 50px 0;
    }

    .section-header {
        margin-bottom: 30px;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .info-card {
        margin-bottom: 20px;
    }
/*
    .content-img {
        max-height: 300px;
        margin-bottom: 20px;
    } */

    .awards-row {
        gap: 15px;
    }

    .award-img {
        width: 60px;
    }

    .awards-row-large .award-img-large {
        width: 80px;
    }

    .timeline {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .timeline-item {
        min-width: 250px;
        max-width: 250px;
    }

    .section-quote blockquote p {
        font-size: 1.2rem;
    }

    .team-card {
        margin-bottom: 20px;
    }

    .team-img-wrapper {
        width: 100px;
        height: 100px;
    }

    .portal-img {
        max-width: 250px;
    }

    .download-logo {
        max-width: 150px;
        margin-bottom: 20px;
    }
    .phone-video-frame {
    width: min(88vw, 360px);
    border-width: 5px;
    border-radius: 28px;
  }

  .mute-btn {
    top: 12px;
    left: 12px;
    width: 38px;
    height: 38px;
  }

  .mute-btn img {
    width: 18px;
    height: 18px;
  }

}

@media (max-width: 575px) {
  .app-container{
    max-width:350px;
  }

  .store-btn{
    width:175px;
  }
  .title{
    font-size: medium;
  }
    .hero-section {
        padding: 80px 15px 40px;
    }

    .hero-title {
        font-size: 1.4rem;
    }

    .section {
        padding: 40px 15px;
    }

    .section-title {
        font-size: 1.25rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 11px;
    }

    .btn-lg {
        padding: 12px 25px;
        font-size: 12px;
    }

    .btn-group-custom {
        flex-direction: column;
    }

    .btn-group-custom .btn {
        width: 100%;
    }

    .info-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .stats-title {
        font-size: 1.2rem;
    }

    .news-img-wrapper {
        height: 150px;
    }

    .news-title {
        font-size: 12px;
    }

    .team-name {
        font-size: 16px;
    }

    .footer {
        padding: 40px 15px 20px;
    }

    .footer-logo {
        max-width: 120px;
    }
    .timeline-item {
      min-width:100%;
    }
    .content-img{
        margin-left:0px;
    }
}

/* ============================================
   Utility Classes
   ============================================ */
/* .text-center {
    text-align: center;
} */

.mb-4 {
    margin-bottom: 1.5rem;
}

.mt-5 {
    margin-top: 3rem;
}

.spinner-wrapper img {
  filter: drop-shadow(0 0 12px rgba(237, 137, 54, 0.4));
  margin-bottom: 24px;
}

#loader-text {
  color: #ed8936;
  font-family: sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 11px;
  animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.5;
    transform: scale(0.98);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}


/* ============================================
   V4 HERO LAYOUT — 2-COLUMN GRID
   Left col: tagline (top) + download (bottom)
   Right col: video vertically centered at seam
   Everything stays inside the orange section.
   ============================================ */

/* --- RESET old hero classes that conflict --- */
.hero-phone-video,
.hero-phone-video.col-lg-6,
.hero-section .hero-phone-video,
.hero-section .hero-content,
.hero-stats-placeholder,
.hero-download-overlay {
    all: unset !important;
    display: none !important;
}

/* --- Hero section base --- */
.hero-section {
    position: relative !important;
    padding: 140px 0 60px !important;
    overflow: hidden !important;
    margin-bottom: 0 !important;
    background-color: var(--new1) !important;
}

.hero-section.mb-5 {
    margin-bottom: 0 !important;
}

/* --- 2-column grid --- */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

/* --- LEFT COLUMN --- */
.hero-left {
    display: flex;
    flex-direction: column;
}

.hero-left-top {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 32px;
}

.hero-left-bottom {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 32px;
}

/* --- Left col typography --- */
.hero-left-top .hero-title {
    font-family: 'Boogaloo', sans-serif !important;
    font-size: 2.6rem !important;
    font-weight: 400 !important;
    color: #ffffff !important;
    margin-bottom: 1.25rem !important;
    line-height: 1.12 !important;
    letter-spacing: -0.01em !important;
    text-transform: uppercase !important;
    max-width: 580px;
    margin-left: 0 !important;
    padding-right: 0 !important;
    text-align: left !important;
}

.hero-left-top .hero-text {
    font-family: 'Noto Sans', sans-serif !important;
    font-size: 15px !important;
    color: rgba(255,255,255,0.92) !important;
    margin-bottom: 0 !important;
    line-height: 1.75 !important;
    max-width: 520px;
    margin-left: 0 !important;
    padding-right: 0 !important;
    text-align: left !important;
}

/* --- Download card — compact & minimal --- */
.hero-left-bottom .app-container {
    width: 300px !important;
    max-width: 100% !important;
    margin: 0 !important;
    border: 2px solid rgba(255,255,255,0.3) !important;
    border-radius: 16px !important;
    background: rgba(255,255,255,0.1) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 20px 18px 16px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}

.hero-left-bottom .app-icon {
    width: 56px !important;
    height: 56px !important;
    margin-bottom: 10px !important;
    border-radius: 14px !important;
}

.hero-left-bottom .title {
    font-size: 0.85rem !important;
    margin-bottom: 12px !important;
    color: #fff !important;
    font-family: 'Noto Sans', sans-serif !important;
    font-weight: 600 !important;
    letter-spacing: 0.05em !important;
}

.hero-left-bottom .store-btn {
    width: 140px !important;
    margin: 5px auto !important;
}

.hero-left-bottom .note {
    margin-top: 8px !important;
    font-size: 0.72rem !important;
    line-height: 1.3;
    color: rgba(255,255,255,0.7) !important;
    font-style: normal !important;
}

/* --- RIGHT COLUMN: video centered at the seam --- */
.hero-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 20px 0;
}

.hero-right .phone-video-shell {
    width: auto !important;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-right .phone-video-frame {
    position: relative;
    width: 320px !important;
    max-width: 100%;
    border: 7px solid rgba(255,255,255,0.95) !important;
    border-radius: 32px !important;
    overflow: hidden;
    background: #000;
}

.hero-right .phone-video,
.hero-right video {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
    background: #000 !important;
    border-radius: 0 !important;
    aspect-ratio: auto !important;
}

/* --- Company Intro: clean spacing --- */
#opportunity,
#opportunity.section,
#opportunity.section.section-white {
    position: relative !important;
    padding-top: 80px !important;
    margin-top: 0 !important;
    background: var(--new2) !important;
}

#opportunity .row {
    align-items: center !important;
}

#opportunity .content-img {
    margin-left: 0 !important;
}

/* ========== RESPONSIVE ========== */

@media (min-width: 1400px) {
    .hero-left-top .hero-title {
        font-size: 2.8rem !important;
    }
    .hero-right .phone-video-frame {
        width: 360px !important;
    }
}

@media (max-width: 1199.98px) {
    .hero-section {
        padding: 130px 0 50px !important;
    }
    .hero-left-top .hero-title {
        font-size: 2.2rem !important;
    }
    .hero-right .phone-video-frame {
        width: 280px !important;
    }
    .hero-grid {
        gap: 30px;
    }
}

@media (max-width: 991.98px) {
    .hero-section {
        padding: 120px 0 50px !important;
    }

    .hero-grid {
        grid-template-columns: 1fr !important;
        gap: 24px;
    }

    .hero-left-top {
        text-align: center;
        justify-content: center;
        padding-bottom: 10px;
    }

    .hero-left-top .hero-title,
    .hero-left-top .hero-text {
        max-width: 100% !important;
        margin-inline: auto !important;
        text-align: center !important;
    }

    .hero-right {
        justify-content: center;
        order: -1;
    }

    .hero-right .phone-video-shell {
        justify-content: center;
    }

    .hero-right .phone-video-frame {
        width: 300px !important;
    }

    .hero-left-bottom {
        align-items: center;
        padding-top: 10px;
    }

    .hero-left-bottom .app-container {
        width: 280px !important;
    }

    #opportunity,
    #opportunity.section,
    #opportunity.section.section-white {
        padding-top: 60px !important;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 100px 0 40px !important;
    }

    .hero-left-top .hero-title {
        font-size: 1.8rem !important;
    }

    .hero-left-top .hero-text {
        font-size: 14px !important;
    }

    .hero-right .phone-video-frame {
        width: min(80vw, 280px) !important;
        border-width: 5px !important;
        border-radius: 26px !important;
    }

    .hero-left-bottom .app-container {
        width: min(80vw, 280px) !important;
        padding: 18px 14px 14px !important;
    }

    .hero-left-bottom .store-btn {
        width: 130px !important;
    }

    #opportunity,
    #opportunity.section,
    #opportunity.section.section-white {
        padding-top: 50px !important;
    }
}

@media (max-width: 575.98px) {
    .hero-section {
        padding: 85px 15px 35px !important;
    }

    .hero-left-top .hero-title {
        font-size: 1.5rem !important;
    }

    .hero-right .phone-video-frame {
        width: min(75vw, 260px) !important;
    }

    .hero-left-bottom .app-container {
        width: min(75vw, 260px) !important;
    }

    .hero-left-bottom .store-btn {
        width: 120px !important;
    }

    #opportunity,
    #opportunity.section,
    #opportunity.section.section-white {
        padding-top: 40px !important;
    }
}
