* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f7f7f7;
  color: #333;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
}
a {
  text-decoration: none;
  color: inherit;
}
/*---------------- Navbar ---------------*/
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  padding: 15px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
  display: block;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
}
.nav-links li a {
  color: brown;
  font-weight: 700;
  transition: 0.3s;
}
.nav-links li a:hover,
.nav-links li a.active {
  color: blue;
}
/* ----------------------------------- */
/*------------ Hero Section ----------*/
/* .hero {
  background-image: url(./img/news_bgimg.avif);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  color: white;
  text-align: center;
  height: 400px;
  padding: 80px 20px;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.hero p {
  font-size: 1.2rem;
} */
/* ----------------------------------- */
/*----------- Section---------------- */
.section {
  /* border: 2px solid red; */
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
}
.section h2 {
  margin-bottom: 15px;
  font-size: 1.8rem;
  border-bottom: 2px solid #ccc;
  padding-bottom: 5px;
}
/* Video & Instagram */
.video-box iframe,
.insta-box iframe {
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  border: none;
}
/* -------------------- */
/*--------------- Contact ---------*/
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contact-form input,
.contact-form textarea {
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1rem;
}
.contact-form button {
  background: #ff5c5c;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
}
.contact-form button:hover {
  background: #e64545;
}
/* --------------------------------- */
/*--------------- Footer------------ */
footer {
  /* border: 2px solid red; */
  text-align: center;
  background: rgb(66, 66, 160);
  color: white;
  padding: 20px 10px;
  margin-top: 60px;
}
/* Mobile Bottom Navigation */
.footer-nav {
  display: none;
  justify-content: center;
  gap: 20px;
  list-style: none;
  flex-wrap: wrap;
  margin-top: 15px;
  padding: 10px 0;
}
.footer-nav a {
  color: #ff5c5c;
  font-weight: 600;
  text-decoration: none;
}
.footer-links {
  /* border: 2px solid red; */
      display: flex;
      justify-content: center;
      gap: 10px;
      padding: 10px 0;
    }
    .footer-links a {
      color: white;
      text-decoration: none;
      font-size: 18px;
      text-decoration: underline;
    }
/* ---- Responsive Media Query ------*/
@media (max-width: 768px) {
  /* Hide nav links */
  .nav-links {
    display: none !important;
  }
  /* Top header only logo */
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    justify-content: center;
    padding: 10px;
    z-index: 1000;
  }
  .logo img{
    /* border: 2px solid red; */
    height: 70px;
  }
  /* Bottom nav */
  .footer-nav {
    /* border: 2px solid red; */
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background:rgb(66, 66, 160);
    z-index: 999;
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    margin: 0;
    border-top: 1px solid #444;
  }
  .footer-nav li {
    /* border: 2px solid red; */
    flex: 1;
    text-align: center;
  }
  .footer-nav a {
    /* border: 2px solid red; */
    display: block;
    color:white;
    font-weight: bold;
    font-size: 10px;
  }
  .footer-nav a.active {
    color: #ff5c5c;
    text-decoration: underline;
  }
  footer p {
    display: none; 
   /* hide copyright */
  }
footer {
    padding: 0;
    margin: 0;
    background: transparent;
  }
  body {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .section h2 {
    font-size: 1.5rem;
  }
  .footer-links {
  display: none;
}
.footer-links a:hover {
  text-decoration: underline;
}
}

