:root {
  --main: #F58220;
  --dark: #3C3C3C;
  --light: #FDF2D0;
  --back: #F3E2D4;
  --danger: #E74C3C;
  --body: #FAFAFA;
  --secondary: #8C8C8C;

  --font-heading: 'Bebas Neue', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

body {
    background-color: var(--body);
    font-family: var(--font-body);
}
.img-fluid {
    width: 100%;
    height: auto;
}

.bold {
    font-weight: 900;
}

.nav-bar, .nav-link, .dropdown-menu{
    font-family: var(--font-body);
    font-weight: 900;
}

.about {
    background-color: var(--light);
    padding: 20px;
    border-radius: 10px;
}

.context {
    margin: 3rem;
}

footer {
    font-family: var(--font-body);
}

.footer-heading {
    font-family: var(--font-heading);
    color: #FAFAFA;
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.footer-text {
    font-family: var(--font-body);
    color: #FAFAFA;
    font-size: 1rem;
    line-height: 1.5;
}

.footer-bold {
    font-weight: 600;
}

.custom-footer {
    background-color: var(--dark);
    color: var(--body);
    padding: 20px;
    text-align: center;
}
.footer-link {
    color: var(--body);
    text-decoration: none;
}
.footer-link:hover {
    color: var(--main);
    text-shadow: var(--main) 0px 0px 10px;
}
.custom-navbar {
    background-color: var(--dark);

}

.custom-navbar .nav-link{
    color: var(--body);
    font-size: 900;
}
.custom-navbar .nav-link:hover {
    color: var(--main);
}

.logo {
    border-radius: 50%;
}


.banner {
      height: 90vh;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      text-shadow: 1px 1px 6px rgba(0,0,0,0.7);
}

.banner h1 {
      font-size: 10rem;
      font-family: var(--font-heading);
      color: var(--main);
      text-shadow: var(--dark) 0px 0px 10px;
}

.banner p {
      font-size: 2rem;
      font-family: var(--font-body);
      color: var(--body);
      margin-top: 1rem;
}

.section-title {
      font-family: var(--font-heading);
      color: var(--color-primary);
      margin-bottom: 2rem;
      font-size: 2rem;
}

.lead {
    color: var(--dark);
    font-weight: 600;
}

    .service-card {
        height: 100%;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }

    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.15);
      z-index: 2;
    }

    .icon-box {
      font-size: 3rem;
      color: var(--color-primary);
      margin-bottom: 1rem;
    }

    .section-alt {
  background-color: var(--light);
  border-radius: 10px;
}

.team-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  padding: 3rem;

}

.team-card a {
  color: var(--dark);
  text-decoration: none;
}
.team-card a:hover {
  color: var(--main);
}
.team-section {
    background-color: var(--body);
    padding: 3rem;
}
.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  z-index: 2;
}

.logo-marquee {
  overflow: hidden;
  position: relative;
}

.logo-track {
  display: flex;
  width: max-content;
  animation: scroll-logos 40s linear infinite;
  gap: 3rem;
  align-items: center;
}

.logo-img {
  max-height: 60px;
  width: auto;
  flex-shrink: 0;
  object-fit: contain;
}

.project-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.project-card img {
  height: 200px;
  object-fit: cover;
  margin: 0 auto;
}


.featured-link {
  text-decoration: none;
  color: inherit;
}

.featured-card-img {
  height: 250px;
  background-size: cover;
  background-position: center;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.featured-card-img:hover {
  transform: scale(1.02);
}

.overlay {
  position: absolute;
  bottom: 0;
  background: rgba(0,0,0,0.6);
  color: #fff;
  width: 100%;
  height: 100%;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: background 0.3s ease;
}

.overlay .description {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.featured-card-img:hover .overlay {
  background: rgba(0,0,0,0.8);
}

.featured-card-img:hover .description {
  opacity: 1;
  max-height: 80px;
}

.overlay .title {
  font-size: 1.2rem;
  font-weight: bold;
}

.about-heading {
  font-family: var(--font-heading);
  color: var(--dark);
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.about-text {
  font-family: var(--font-body);
  color: var(--dark);
  font-size: 1.2rem;
  line-height: 1.6;
}

.project-heading {
  font-family: var(--font-heading);
  color: var(--dark);
  margin-bottom: 1rem;
  font-size: 2rem;
}

.project-title {
  font-family: var(--font-heading);
  color: var(--main);
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.project-text {
  font-family: var(--font-body);
  color: var(--dark);
  font-size: 1.1rem;
  line-height: 1.6;
}

.partnership-page {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.7;
  color: #333;
}

.partnership-page h1,
.partnership-page h3,
.partnership-page h4 {
  font-family: 'Bebas Neue', sans-serif;
}

.partnership-page .card-title {
  font-size: 1.4rem;
  color: var(--dark);
}

.partnership-page .card i {
  display: block;
}


.partnership-page .card {
  transition: transform 0.3s ease;
}

.partnership-page .card:hover {
  transform: translateY(-5px);
}

.partnership-page .highlight-box {
  background: linear-gradient(to right, var(--secondary), var(--dark));
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

.partnership-page .highlight-box h4,
.partnership-page .highlight-box p {
  color: #fff;
}

.subheading {
  font-family: var(--font-heading);
  color: var(--dark);
  font-size: 2.5rem;
  margin-bottom: 1rem;

}

.social-icon {
  font-size: 1.5rem;
  color: #FAFAFA;
  margin-right: 1rem;
}

.sub-subheading{
  font-family: var(--font-heading);
  color: var(--dark);
  font-size: 2rem;
  margin: 1rem;

}

.partner-icon {
  font-size: 2.5rem;
  color: var(--black);
  margin-bottom: 1rem;
}

.video-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
  }
  .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }


.offer-container {
  max-width: 600px;
  margin: 3rem auto;
  padding: 1.5rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  font-family: var(--font-body);
  border: 1px solid var(--dark);
}


.offer-container h1 {
  font-family: var(--font-heading);
  color: var(--dark);
  margin-bottom: 1.5rem;
}

h1 {
  text-align: center;
  color: var(--dark);
}

.offer-container input, textarea {
  width: 100%;
  padding: 1rem;
  margin: 0.4rem 0;
  border: 1px solid var(--dark);
  border-radius: 4px;
  font-size: 16px;
}

.offer-container button {
  background-color: var(--main);
  font-family: var(--font-heading);
  color: white;
  padding: 12px;
  border: none;
  border-radius: 1rem;
  font-size: 16px;
  cursor: pointer;
  width: 100%;
  border: 1px solid var(--dark);
}

.offer-container button:hover {
  background-color: var(--danger);
}

.card-img-top {
  height: 200px;
  object-fit: cover;
}

.card-title {
  font-weight: bold;
}





@keyframes scroll-logos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


