body {
  font-family: "Poppins", sans-serif !important;
}

.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e9ecef;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.site-brand {
  font-weight: 700;
  letter-spacing: 0.2px;
}

.site-brand .site-logo {
  height: 50px;
  width: auto;
}

#mainNav ul li a {
  color: #343a40;
  font-weight: 500;
  padding: 10px 15px;
  font-size: 14px;
}

#mainNav ul li .join-us-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #2234aa;
  color: #ffffff;
  border-radius: 25px;
  font-weight: 600;
  height: 30px;
  padding: 0 15px;
  box-sizing: border-box;
  text-align: center;
  vertical-align: middle;
  line-height: 1;
  margin-top: 5px;
  font-size: 13px;
}

.landing-section {
  padding: 20px 0;
  background-color: rebeccapurple;
}

.decarbon-section {
  padding: 30px 0;
  background: linear-gradient(to bottom, #dff2ff, #ffffff);
}

.decarbon-container {
  width: 85%;
  max-width: 1300px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.decarbon-text {
  max-width: 550px;
}

.sub-heading {
  color: #4cae4f;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.decarbon-text h1 {
  font-size: 42px;
  font-weight: 700;
  color: #000;
  margin-bottom: 15px;
}

.desc {
  font-size: 18px;
  color: #555;
  margin-bottom: 30px;
  font-family: "Poppins", sans-serif !important;
}

.cta-btn {
  display: inline-block;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #2234aa;
  color: #ffffff;
  border-radius: 25px;
  font-weight: 500;
  padding: 0 15px;
  box-sizing: border-box;
  text-align: center;
  vertical-align: middle;
  line-height: 1;
  margin-top: 5px;
  font-size: 13px;
  text-decoration: none;
  transition: 0.3s;
  height: 40px;
}

.cta-btn:hover {
  background-color: #003fcc;
  text-decoration: none;
  color: white;
}

.decarbon-image {
  flex-shrink: 0;
  margin-left: 40px;
}

.decarbon-image img {
  width: auto;
  height: 400px;
}

@media (max-width: 575px) {
  .site-brand {
    font-size: 1rem;
  }

  #mainNav ul li .join-us-btn{
    margin-left: 7px;
  }
}

/* Slider */
.slick-slide {
  margin: 0px 20px;
}

.logo-carousel {
  overflow: inherit;
}

.slick-slide img {
  width: 100%;
}

.slick-track::before,
.slick-track::after {
  display: table;
  content: "";
}

.slick-track::after {
  clear: both;
}

.slick-track {
  padding: 1rem 0;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-arrow {
  position: absolute;
  top: 50%;
  background: url(https://raw.githubusercontent.com/solodev/infinite-logo-carousel/master/images/arrow.svg?sanitize=true)
    center no-repeat;
  color: #fff;
  filter: invert(77%) sepia(32%) saturate(1%) hue-rotate(344deg)
    brightness(105%) contrast(103%);
  border: none;
  width: 2rem;
  height: 1.5rem;
  text-indent: -10000px;
  margin-top: -16px;
  z-index: 99;
}

.slick-arrow.slick-next {
  right: -40px;
  transform: rotate(180deg);
}

.slick-arrow.slick-prev {
  left: -40px;
}

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

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 8%;
  background: #f7fafc;
  gap: 40px;
}

.hero-content {
  flex: 1;
}

.hero-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1a1a1a;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 15px;
  max-width: 500px;
}

/* --- Image Block --- */
.hero-image {
  flex: 1;
  position: relative;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;

  /* Soft fade effect */
  mask-image: linear-gradient(to left, black 70%, transparent);
  -webkit-mask-image: linear-gradient(to left, black 70%, transparent);
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-image img {
    mask-image: none;
    -webkit-mask-image: none;
  }
}

@media (max-width: 600px) {
  .hero-content{
    flex: none;
  }
  .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero-content p {
    font-size: 0.9rem;
  }

  .hero {
    padding: 40px 5%;
  }
}

/* Media Queries */

@media (max-width: 768px) {
  .slick-arrow {
    width: 1rem;
    height: 1rem;
  }
}

/* Medium / small tablets */
@media (max-width: 992px) {
  .decarbon-text h1 {
    font-size: 36px;
  }
  .decarbon-container {
    gap: 20px;
  }
}

/* Small devices: stack and optimize for narrow screens */
@media (max-width: 768px) {
  .decarbon-container {
    flex-direction: column-reverse; /* text above image if you prefer change to column */
    align-items: center;
    text-align: center;
    padding: 24px 12px;
  }

  .decarbon-text,
  .decarbon-image {
    width: 100%;
  }
  .decarbon-image {
    margin-bottom: 12px;
  }
  .decarbon-image img {
    width: 70%;
    max-width: 300px;
  }

  .sub-heading {
    font-size: 12px;
  }
  .decarbon-text h1 {
    font-size: 28px;
  }
  .desc {
    font-size: 15px;
    margin-bottom: 14px;
  }
  .cta-btn {
    padding: 10px 18px;
    font-size: 15px;
  }
}

/* Extra small phones */
@media (max-width: 480px) {
  .decarbon-container {
    padding-top: 0;
    padding-bottom: 40px;
  }
  .decarbon-section {
    padding: 0 !important;
  }

  .decarbon-image {
    margin: 0;
  }
  .decarbon-image img {
    height: 250px;
    width: auto;
  }
  .decarbon-text h1 {
    font-size: 22px;
  }
  .desc {
    font-size: 14px;
  }
  .cta-btn {
    padding: 9px 14px;
    font-size: 14px;
  }
}

/* TRADE SECTION */
.trade-section {
  padding: 60px 6%;
}

.small-title {
  color: #19b7ff;
  font-size: 0.9rem;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.big-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 60px;
}

/* CONTAINER */
.trade-container {
  display: flex;
  align-items: flex-start;
  gap: 50px;
  flex-wrap: wrap;
}

/* LEFT COLUMN */
.trade-left {
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding: 0;
}

.trade-item {
  font-size: 5rem;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 2px black; /* Black stroke by default */
  cursor: pointer;
  transition: all 0.3s ease;
  user-select: none;
}

.trade-item.active,
.trade-item:hover {
  color: black; /* Fill white on hover/active */
  -webkit-text-stroke: 2px black;
}

/* MIDDLE COLUMN */
.trade-middle {
  display: flex;
  align-items: center;
  gap: 30px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  margin-top: 100px;
}

.trade-middle.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.trade-video {
  width: 240px;
  height: 300px;
  object-fit: cover;
  border-radius: 30px;
  background: #000;
}

.trade-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.trade-text h2 {
  font-size: 2rem;
  font-weight: 700;
}

.trade-text p {
  font-size: 1rem;
  max-width: 400px;
  line-height: 1.5;
  opacity: 0.85;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .trade-container {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .trade-left {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
  }

  .trade-item {
    font-size: 4rem;
    margin: 0;
  }

  .trade-middle {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .trade-text {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .trade-middle {
    margin-top: 0;
  }
  .trade-item {
    font-size: 3rem;
  }

  .trade-video {
    width: 200px;
    height: 200px;
  }

  .trade-text h2 {
    font-size: 1.5rem;
  }

  .trade-text p {
    font-size: 0.95rem;
  }
}

.globe-section {
  position: relative;
  width: 100%;
  padding: 80px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #0a0e2b;
}

/* --- Globe image --- */
.globe {
  width: 400px;
  opacity: 0.9;
}

/* --- Text block --- */
.text-block small {
  color: #25b1ff;
  letter-spacing: 1px;
}
.text-block h1 {
  font-size: 48px;
  margin: 10px 0 20px 0;
  color: white;
}
.text-block p {
  font-size: 17px;
  color: #d4d8e1;
  max-width: 380px;
  line-height: 1.5;
}

/* --- Stats Card --- */
.stats-card {
  margin-top: 40px;
  display: flex;
  gap: 40px;
  background: linear-gradient(90deg, #0095ff, #2455c3);
  padding: 25px 45px;
  border-radius: 16px;
  width: fit-content;
}

.stat {
  text-align: center;
}
.stat-number {
  font-size: 40px;
  font-weight: 700;
  color: white;
}
.stat-label {
  font-size: 14px;
  opacity: 0.85;
  color: white;
}

/* --- Scrolling background text --- */
.scroll-text-container {
  width: 100%;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.06;
}

.scroll-text {
  display: flex;
  white-space: nowrap;
  font-size: 220px;
  font-weight: 900;
  letter-spacing: 10px;
  animation: scroll-left 25s linear infinite;
  color: white;
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .globe-section {
    flex-direction: column;
    text-align: center;
    padding: 60px 5%;
  }

  .globe {
    width: 300px;
    margin-bottom: 30px;
  }

  .text-block h1 {
    font-size: 32px;
  }

  .stats-card {
    flex-direction: row;
    padding: 20px 30px;
    justify-content: center;
    align-items: center;
  }
}

@media (min-width: 820px) and (max-width: 1366px) {
    /* iPad Pro & large tablets */
    .globe-section {
      flex-direction: column;
      text-align: center;
      padding: 60px 5%;
    }

    .globe {
      width: 300px;
      margin-bottom: 30px;
    }

    .text-block h1 {
      font-size: 32px;
    }

    .stats-card {
      flex-direction: row;
      padding: 20px 30px;
      justify-content: center;
      align-items: center;
    }
}

/* contact section */
.contact-container {
    display: flex;
    gap: 80px;
    max-width: 1300px;
    margin: auto;
    align-items: flex-start;
    padding: 40px 0 40px 0;
}

.left-col {
    width: 35%;
}

.right-col {
    width: 65%;
}

.section-title {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.address-text {
    font-size: 14px;
    line-height: 1.5;
}

.google-maps {
    display: inline-block;
    margin: 20px 0;
    color: #d4b47c;
    font-weight: 600;
    text-decoration: none;
}

.divider {
    border: none;
    height: 1px;
    background: #eee;
}

.contact-item {
    margin-bottom: 20px;
}

.contact-number {
    font-size: 14px;
    font-weight: 600;
}

.contact-type {
    color: #777;
    font-size: 14px;
}

.email-link {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
}

.intro-text {
    margin-bottom: 25px;
    color: #555;
    font-size: 14px;
}

.contact-form label {
    margin: 10px 0 5px;
    display: block;
    font-size: 14px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: none;
    border-bottom: 1px solid #ccc;
    font-size: 16px;
    outline: none;
}

.contact-form textarea {
    height: 120px;
    resize: vertical;
}

.submit-btn {
    margin-top: 25px;
    padding: 7px 10px;
    background: #000;
    color: #fff;
    border: none;
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
    text-transform: uppercase;
}

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

@media (max-width: 900px) {
    .contact-container {
        flex-direction: column;
        padding: 40px 20px;
        gap: 40px;
    }

    .left-col, 
    .right-col {
        width: 100%;
    }
}


.freshman-footer {
    position: relative;
  background: linear-gradient(to bottom, #dff2ff, #ffffff);
    color: #000;
    padding: 60px 20px 120px;
    min-height: 40vh;
}

/* ---------- CENTER CONTENT ---------- */
.center-section {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.top-logo {
    width: 80px;
    margin: 20px 0 10px;
}

.sub-title {
    font-size: 18px;
    margin-bottom: 20px;
}

.brand-title {
    font-size: 100px;
    font-weight: 800;
    margin: 0;
}

.brand-title .reg {
    font-size: 30px;
    vertical-align: super;
}

.description {
    margin: 40px auto 30px;
    max-width: 650px;
    font-size: 18px;
    line-height: 1.5;
}

.email-input-row {
    margin-top: 40px;
    display: inline-flex;
    align-items: center;
    border-bottom: 2px solid black;
    padding: 5px 10px;
    width: 360px;
    justify-content: space-between;
}

.email-input-row input {
    border: none;
    background: transparent;
    width: 100%;
    font-family: inherit;
    font-size: 18px;
    outline: none;
}

.email-input-row input::placeholder {
    color: black;
}


.arrow {
    font-size: 26px;
    font-weight: bold;
}

.footer-bottom{
  height: 50px;
  position: relative;
}

/* ---------- LEFT SOCIAL SECTION ---------- */
.left-socials {
    position: absolute;
    bottom: 0px;
    left: 0px;
    text-align: left;
    font-size: 14px;
}

.left-socials p {
    margin-bottom: 8px;
    font-style: italic;
}

.social-links a {
    margin-right: 12px;
    text-decoration: none;
    color: #000;
    font-weight: bold;
}

/* ---------- RIGHT CONTACT SECTION ---------- */
.right-contact {
    position: absolute;
    bottom: 0px;
    right: 0px;
    text-align: right;
    font-size: 14px;
}

.right-contact p {
    margin-bottom: 8px;
    font-style: italic;
}

.email-link {
    text-decoration: none;
    font-weight: bold;
    color: #000;
}

/* ---------- BOTTOM CENTER ---------- */
.bottom-center {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 15px;
    font-weight: 600;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {

    .footer-bottom{
      height: auto;
    }

    .brand-title {
        font-size: 50px;
    }

    .email-input-row {
        width: 260px;
    }

    .left-socials,
    .right-contact,
    .bottom-center {
        position: static;
        text-align: center;
        margin-top: 40px;
    }

    .freshman-footer {
        padding-bottom: 80px;
    }

    .bottom-center {
        transform: none;
    }
}

