  :root {
      --primary-color:#204B65;
      --bg-color: #f9f9f9;
      --dark-color: #333;
      --white: #fff;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Segoe UI', sans-serif;
    }
    
    body {
      background: var(--bg-color);
      color: var(--dark-color);
      line-height: 1.6;
    }

    header{
      background: var(--white);
      position: relative;
      padding: 1rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      transition: top 0.3 ease-in-out;
      position: fixed;
      top:0px; 
      width: 100%;
      z-index: 1000;
    }
.header-hide{
  top:-130px;
  transition: 0.3 ease-in-out;
}
.drop{
  position: absolute;
  margin-left: 90px;
  display: flex;
  margin-top: 60px;
  flex-direction: column;
  background-color: #fff;
  padding: 60px;
  opacity: 0;
}

.drop.activ{
  opacity: 1;
}
.drop a{
  color: #0056b3;
}
#fa{
  position: absolute;
  color: #3DB8B0;
  font-size:25px;
  top: -20px;
  margin-left:20px;
}
    .logo {
        background-image:url(/img/newlogo.png);
        border-radius: 15px;
        background-repeat: no-repeat;
        background-position: center;
        background-size:cover;
        margin-left: 5%;
        width: 270px;
        height: 120px;
      font-size: 1.5rem;
      font-weight: bold;
      color: var(--primary-color);
      cursor: pointer;
    }
    #mobile-menu{
      display: none;
    }
    nav {
      display: flex;
      margin-right: 10%;
      gap: 1.5rem;
    }

    nav a {
      text-decoration:none;
      color: var(--primary-color);
      font-size: larger;
      font-weight: 800;
    }
    nav a:hover{
      text-decoration: underline;
      text-decoration-thickness: 3px;
      transition: 3 ease-in-out;
      
    }
    .menu-toggle {
      display: none;
      flex-direction: column;
      gap: 4px;
      cursor: pointer;
      z-index: 1000;
    }

    .menu-toggle div {
      width: 25px;
      height: 3px;
      background: var(--dark-color);
    }
  
      .menu-bars {
      display: none;
      flex-direction: column;
      gap: 4px;
      cursor: pointer;
    }

    .menu-bars div {
      width: 25px;
      height: 3px;
      background: var(--dark-color);
    }

    .mobile-menu {
      position: fixed;
      top: 0;
      right: -100%;
      height: 100%;
      width: 250px;
      background: white;
      box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
      padding: 2rem;
      flex-direction: column;
      gap: 1.5rem;
      transition: right 0.3s ease;
      z-index: 200;
    }

    .mobile-menu.active {
      right: 0;
    }

    .mobile-menu a {
      color: var(--dark-color);
      font-size: 1.2rem;
      text-decoration: none;
    }

    .section {
      padding: 4rem 2rem;
      text-align: center;
    }

    .hero {
      background: var(--primary-color);
      margin-top: 70px;
      color: white;
      padding: 6rem 2rem;
      align-content: center;
    }
    .hero-div{
      margin:0 auto;
      width: 60%;
      /* background-color: red; */
      align-content: center;
    
    }
   .hero h5{
    text-decoration: underline;
    text-underline-offset:3px;
    text-decoration-color: #000;
    font-weight: 800px;
   }
    .hero h1 {
      width: 90%;
      font-size: 2.5rem;
    }

    .btn {
      display: inline-block;
      margin-top: 1rem;
      padding: 0.7rem 1.5rem;
      background: #3DB8B0;
      color: var(--primary-color);
      font-weight: bold;
      border-radius: 5px;
      text-decoration: none;
       margin-left: 40%;
    }
    .img{
      position: relative;
      background-image: url(/img/logo.jpg);
      background-size: cover;
      background-repeat: no-repeat;
      margin-top: 20px;
      float: right;
      right: 10%;
      min-width: 500px;
      height: 300px;
      background-color: red;
      display:none;
    }
     /* about text start here */
     #about-page-section div{
      width: 70%;
      margin: 0 auto;
     }
     /* about text end here */
   
     #form{
      max-width: 700px;
      margin: 0 auto;
     }
     #form input, textarea{
      background-color: lightgrey;
     }
     #button{
      margin: 0 auto;
     }
       .visually-hidden {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Newsletter Section */
#subscribe {
  padding: 2rem 1rem;
  background-color: var(--bg-color);
  width: 100%;
  max-width: 700px;         /* ✅ prevents over-expansion */
  text-align: center;
  color: var(--dark-color);
  margin: 0 auto;
}

#subscribe form {
  position: relative;
  display: grid;
  justify-content: center;
  align-items: center;
  gap: .75rem;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  padding: 30px;
}

#subscribe input {
  width: 100%;              /* ✅ no fixed 500px */
}

#subscribe input[type="email"] {
  padding: 0.7rem 0.9rem;
  width: 100%;              /* ✅ ensures responsiveness */
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
  transition: border-color 150ms, box-shadow 150ms;
}

#subscribe input[type="email"]:focus {
  border-color: #3DB8B0;
  box-shadow: 0 0 0 4px rgba(61,184,176,.15);
}

#subscribe button {
  padding: 0.7rem 1.2rem;
  background-color: #3DB8B0;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 150ms;
}
#subscribe button:hover { background-color: #0056b3; transform: translateY(-1px); }
#subscribe button:active { transform: translateY(0); }

/* Footer */
footer {
  background: #222;
  color: #eee;
  padding: 2rem;
  text-align: center;
}
footer p, footer a { color: #eee; margin-bottom: 0.5rem; }
footer a:hover { text-decoration: underline; }
     @media (max-width: 900px) {
 .img{
  position: relative;
  margin-top: 10%;
 }
 .drop{
     display: none;
 }
 .drop.activ{
     display: none;
 }
     }
    @media (max-width: 768px) {
      header{
        position: fixed;
        top: 0;
        width: 100%;
      }
      .header-hide{
        top:-130px;
      }
     .logo{
      z-index: 1000;
      margin-left: -10px;
     }
     .hero-div{
      width: 100%;
     }
    .hero h1{
      width: 100%;
    }
   .hero-div a{
     position: relative;
     margin:0 auto ;
     left:25%;
   }
    .menu-toggle {
  display: flex;
  cursor: pointer;
  padding: 10px;
  /* background-color: #204B65; */
  color: white;
  font-size: 18px;
  margin-top: -30px;
  border: none;
}

#menu-toogle{
  z-index: 10000;
}
    .menu-bars {
      position: absolute;
      right: 30px;
  display: flex;
  cursor: pointer;
  padding: 10px;
  /* background-color: #204B65; */
  color: white;
  font-size: 18px;
  border: none;
  
}
.nav.active #menu-toggle:nth-child(){
  background-color: red;
}
.mobile-menu {
  display:block ;
  flex-direction: column;
  transition: .3 ease-in-out;
  position: absolute;
  top: -450px;
  left: 0;
  width: 100%;
  height: calc(100vh - 50px);
  background: #204B65;
  color: white;
  padding: 20px;
  z-index: 999;
}
nav {
  position: absolute;
  top: 110px;
  left: 0;
  width: 60%;
  height: 100vh;
  background-color: #fff;
  transform: translateX(-100%);
  transition: transform .3s ease-in-out;
  display: flex;
  flex-direction: column;
}

nav.active {
  transform: translateX(0);
  z-index: 1000;
}

#mobile-menu a{
  position: relative;
  top: 30px;
  left: 5%;
  font-size: 20px;
}

    nav a{
      position: relative;
      top: 50px;
      left: 14%;
      color: #204B65;
      text-transform: uppercase;
      text-size-adjust:bold;
    }
      .hero{
        position: relative;
        margin-top: 80px;
      }
      .img{
        position: relative;
        background-size: cover;
        background-position: center;
        max-width: 100%;
        margin-top: 10%;
         right: -10%; 
      }
      .hero h1{
        min-width: 100%;
      }
       .drop{
     display: none;
 }
 .drop.activ{
     display: none;
 }
 #subscribe button {
  padding:5px;
  background-color: #cc0000;
  margin: 0 auto;
  color: white;
  border: none;
  cursor: pointer;
  
}
    }