    @font-face {
  font-family: 'Futura'; /* Give your font a name */
  src: url('fonts/FuturaCyrillicBook.ttf'); /* Best for modern browsers */
  font-weight: normal;
  font-style: normal;
  font-display: swap; /* Helps text appear faster while loading */
}
  @font-face {
  font-family: 'FuturaBold'; /* Give your font a name */
  src: url('fonts/FuturaCyrillicBold.ttf'); /* Best for modern browsers */
  font-weight: bold;
  font-style: normal;
  font-display: swap; /* Helps text appear faster while loading */
}
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: "Segoe UI", sans-serif;
    }

    body {
      overflow-x: hidden;
    }

    /* NAVBAR */
    .navbar {
        position: absolute;
        top: 0;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 40px;
        color: #2f6f73;
        z-index: 10;

        border-bottom: 2px solid #2f6f73; /* 👈 ADD THIS */
        }

    /* MENU ICON */
    .menu-icon {
      width: 30px;
      cursor: pointer;
    }

    .menu-icon div {
      height: 3px;
      background: #2f6f73;
      margin: 6px 0;
    }

    /* LOGO */
    .logo {
      font-weight: bold;
      font-size: 20px;
      letter-spacing: 2px;
    }

    .logo span {
      display: block;
      font-size: 12px;
      letter-spacing: 3px;
    }
    .logo img {
        height: 100px;   /* control size */
        width: auto;
        object-fit: contain;
    }

    /* HERO SECTION */
    .hero {
      height: 100vh;
      background: url('Home Elements/background.png') no-repeat center/cover;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: #2f6f73;
      position: relative;
    }

    .hero h1 {
      font-size: 48px;
      font-weight: 500;
      margin-bottom: 15px;
    }

    .hero p {
      font-size: 18px;
      margin-bottom: 30px;
    }

    .btn {
      border: 2px solid #2f6f73;
      padding: 12px 30px;
      text-decoration: none;
      color: #2f6f73;
      font-weight: bold;
      letter-spacing: 2px;
      transition: 0.3s;
    }

    .btn:hover {
      background: #2f6f73;
      color: white;
    }

    /* SECOND SECTION */
    .section2 {
      height: 100vh;
      background-color: #2f6f73;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 40px;
    }

    .section2 p {
      color: white;
      font-size: 28px;
      max-width: 800px;
      line-height: 1.5;
    }

    html {
      scroll-behavior: smooth;
    }
    .top-section{
  background:#2f6f73;
  color:white;
  padding:60px 100px;
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:40px;
}

.top-text h2{
  font-family:'Playfair Display',serif;
  font-size:36px;
  margin-bottom:20px;
}

.top-text p{
  line-height:1.7;
  margin-bottom:15px;
  font-size:15px;
}

.top-images img{
  width:60%;
  margin-bottom:20px;
}

/* VIDEO SECTION */
.video-section{
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh; /* better mobile support */
  overflow: hidden;
}

.video-section video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.overlay{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  display:flex;
  justify-content:space-evenly;
  align-items:center;
  color:white;
  text-align:center;
}

.feature{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
}

.feature img{
  width: 150px;
  opacity:0.9;
}

.feature span{
  font-size:16px;
}
.navbar {
        position: absolute;
        top: 0;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 40px;
        color: #2f6f73;
        z-index: 10;

        border-bottom: 2px solid #2f6f73; /* 👈 ADD THIS */
        }

    /* MENU ICON */
    .menu-icon {
      width: 30px;
      cursor: pointer;
    }

    .menu-icon div {
      height: 3px;
      background: #2f6f73;
      margin: 6px 0;
    }

    /* LOGO */
    .logo {
      font-weight: bold;
      font-size: 20px;
      letter-spacing: 2px;
    }

    .logo span {
      display: block;
      font-size: 12px;
      letter-spacing: 3px;
    }
    .logo img {
        height: 100px;   /* control size */
        width: auto;
        object-fit: contain;
    }
    .services-section {
  background: #2f6f73;
  padding: 60px 20px;
  overflow: hidden;
}

/* SCROLL CONTAINER */
.services-container {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 20px;
}

/* Hide scrollbar */
.services-container::-webkit-scrollbar {
  display: none;
}

/* CARDS */
.service-card {
  min-width: 280px;
  max-width: 300px;
  background: #6f9ea3;
  border-radius: 20px;
  padding: 20px;
  flex-shrink: 0;
  scroll-snap-align: center;
  text-align: center;
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.service-card h3 {
  font-family: FuturaBold;
  font-size: 15px;
  color: #1b444c;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.service-card .line {
  width: 80%;
  height: 1px;
  background: #2f6f73;
  margin: 10px auto;
}

.service-card p {
  font-size: 17px;
  color: #1b444c;
  letter-spacing: 2px;
  line-height: 1.6;
  font-family: Futura;
}
/* CONTACT SECTION */
.contact-section {
  background: #2f6f73;
  color: white;
  text-align: center;
  padding: 50px 20px;
}

.contact-section h2 {
  font-size: 60px;
  font-family:'Playfair Display',serif;
  margin-bottom: 30px;
  border-top: 1px solid white;
  border-bottom: 1px solid white;
  display: inline-block;
  padding: 10px 40px;
}

/* CONTAINER */
.contact-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* BOX */
.contact-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 250px;
}

.contact-box img {
  width: 80px;
  margin-bottom: 10px;
}

.contact-box h3 {
  margin-bottom: 10px;
  font-weight: 500;
}

.contact-box p {
  font-size: 20px;
  opacity: 0.9;
}

/* IMAGE SECTION */
.contact-image {
  height: 100vh; /* full screen */
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* SCROLL ANIMATION BASE */
.reveal {
  opacity: 1; /* 👈 visible by default */
  transform: translateY(0);
}

.reveal.animate {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ================= MOBILE IMPROVEMENTS ================= */
@media (max-width: 768px) {

  /* NAVBAR */
  .navbar {
    padding: 15px 20px;
  }

  .logo img {
    height: 60px;
  }

  /* HERO */
  .hero {
    padding: 20px;
    height: auto;
    min-height: 100vh;
  }

  .hero h1 {
    font-size: 50px;
  }

  .hero p {
    font-size: 15px;
  }

  .btn {
    padding: 10px 20px;
    font-size: 12px;
  }

  /* SECTION 2 */
  .section2 {
  height: 100vh; /* fallback */
  height: 100dvh; /* ✅ real mobile viewport height */

  background-color: #2f6f73;

  display: flex;
  justify-content: center;
  align-items: center;

  text-align: center;
  padding: 20px;
}

  .section2 p {
    font-size: 30px !important;
  }

  /* TOP SECTION */
  @media (max-width: 768px) {
  .top-section {
    display: grid;
    grid-template-columns: 1.2fr 1fr; /* keep side-by-side */
    align-items: center;
    padding: 30px 20px;
    gap: 20px;
  }

  .top-text h2 {
    font-size: 22px;
    border-bottom: 2px solid white;
    padding-bottom: 6px;
    margin-bottom: 12px;
  }

  .top-text p {
    font-size: 13px;
    line-height: 1.6;
  }

  .top-images {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .top-images img {
    width: 100%;
    height: 100px; /* smaller stacked images */
    object-fit: cover;
  }

   .video-section{
    height: auto;
    aspect-ratio: 16 / 9; /* YouTube-style */
  }

  .video-section video{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .overlay {
    flex-direction: row; /* 👈 keep them in a row */
    justify-content: space-around;
    align-items: center;

    padding: 0 10px;
    gap: 10px;
  }

  .feature {
    flex: 1;
    text-align: center;
  }

  .feature img {
    width: 60px; /* smaller like your image */
  }

  .feature span {
    font-size: 13px;
  }
  /* CONTACT MOBILE */
.contact-container {
  flex-direction: row;        /* keep row */
  flex-wrap: nowrap;          /* 👈 prevent wrapping */
  justify-content: space-between;
  gap: 10px;
}
.contact-section h2 {
    font-size: 50px;
    padding: 8px 20px;
  }

.contact-box {
  flex: 1;                    /* 👈 equal width */
  max-width: none;            /* remove restriction */
}

.contact-box img {
  width: 30px;                /* smaller icons for mobile */
}

.contact-box h3 {
  font-size: 14px;
}

.contact-box p {
  font-size: 11px;
}

/* IMAGE MOBILE */
.contact-image {
  height: 100dvh; /* 👈 full mobile screen */
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block; /* removes small gaps */
}
}
}

/* EXTRA SMALL PHONES */
@media (max-width: 480px) {

  .hero h1 {
    font-size: 24px;
  }

  .section2 p {
    font-size: 18px !important;
  }

  .top-text h2 {
    font-size: 22px;
  }

}