
@font-face {
  font-family: 'heebo sans-serif';
  src: url('../fonts/heebo.regular.ttf') format('opentype');
}

@font-face {
  font-family: 'Rubik-Medium';
  src: url('../fonts/Rubik-Medium.ttf') format('opentype');
}
@font-face {
  font-family: 'Damion-Regular';
  src: url('../fonts/Damion-Regular.ttf') format('opentype');
}



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "heebo sans-serif";
}

/* Announcement Bar */
.announcement-bar {
  background: #05371E;
  color: #fff;
  padding: 10px 0;
  overflow: hidden;
  position: relative;
}

.marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.marquee-content {
  display: inline-block;
  white-space: nowrap;
  animation: scroll 15s linear infinite;
  font-size: 18px;
  font-weight:700;
  font-style:normal
  font-family:"Damion-Regular";
}

.divider {
  margin: 0 20px;
}

/* Animation */
@keyframes scroll {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}



/* Header */
.header {
  background: #F3F1E5;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 40px;
}

.logo img {
  height: 40px;
  width: auto;
}

.nav a {
  color: #fff;
  text-decoration: none;
  margin: 0 18px;
  font-size: 16px;
}

.nav i {
  font-size: 12px;
  margin-left: 4px;
}

.icons i {
  margin-left: 18px;
  font-size: 18px;
  cursor: pointer;
}

/* Hero Section */
.hero {
    height: calc(100vh - 120px);
    background-image: url(../../assets/images/desktop.png);
    background-size: cover;
    background-position: auto;
    display: flex;
    align-items: center;
    align-content: space-around;
    justify-content: center;
}
.welcome-text {
  font-family:"Damion-Regular";
  font-size: 65px;
  margin-bottom: 10px;
}
.sub-text {
  font-family:"heebo sans-serif";
  font-size: 25px;
  font-weight: 400;
}
.main-heading {
  font-family: "Rubik-Medium";
  font-size: 60px;
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 20px 0;
}


.hero-content {
  color: #fff;
  max-width: 800px;
  text-align: center;
}



/* Heading */
.hero h1 {
  font-size: 52px;
  line-height: 1.2;
  font-weight: 400;
}

/* Button */
.hero-btn {
  display: inline-block;
    margin-top: 32px;
    padding: 14px 36px;
    border: 1.5px solid #50804C;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    background: #50804C;
    border-radius: 8px;
    font-family: "Rubik-Medium";
}

.hero-btn:hover {
  background: #fff;
  color: #000;
}
.footer {
  background: #05371E;
  color: #fff;
  padding: 10px;
}

/* Footer Bottom */
.footer-bottom {
  margin-top: 10px;
  text-align: center;
}
.footer-link{
    color:#fff;
    font-family: heebo sans-serif;
}

/* Responsive */
@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .hero-content {
    padding: 0 20px;
  }
  .hero {
  background-image: url("../../assets/images/mobilec.png"); /* Replace with your hero image */
   /* padding-top: 70px; */
        align-items: center;
  }
  
  .hero h1 {
    font-size: 36px;
  }
}
/* Responsive */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
@media (max-width: 768px) {

  .announcement-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 14px;
    white-space: normal;
  }

  .divider {
    display: none;
  }

}

