body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  background-color: #072e33;
  color:white;  
}

html {
  scroll-behavior: smooth;
}

/* HEADER */
.cta-btn {
  background-color: cyan; 
  color: #072E33;
  align-content:flex-end;
  padding: 15px 20px;
  border-radius: 15px;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
  transition: 0.5s ease-in-out;
  font-size: larger;
  margin: 0 20px;
  box-shadow: cyan 0px 0px 5px;
}

header {
  text-align: center;
  background-color: #0C7075;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  width: 100%;
  top: 0;
  right: 0;
}

.logo {
  padding-left: 20px;
}

.nav-btn {
  margin: 0 15px;
  align-content: space-evenly;
  text-decoration: none;
  font-weight: bolder;
  color: white; 
  font-size: larger;
  transition: 0.5s ease-in-out;
}

.nav-btn:hover { 
  color: cyan;
  transition: 0.5s ease-in-out;
  text-shadow: cyan 0px 0px 5px;
  font-weight: bolder;
  text-decoration: underline;
}

.cta-btn:hover { 
  background-color: #072E33;
  color: cyan;
  transition: 0.5s ease-in-out;
  box-shadow: cyan 0px 0px 5px;
}

.nav-btn-Active {
  color: cyan;
  transition: 0.5s ease-in-out;
  text-shadow: cyan 0px 0px 5px;
  font-weight: bolder;
  font-size: larger;
  text-decoration: underline;
}

.logo {
  max-width: 70px;
  height: auto;
  vertical-align: middle;
  padding-right: 10px;
  padding-bottom: 20px;
}

/* FOOTER */

.footer {
  background-color: #0C7075; /* primary color */
  color: #fff;
  padding: 40px 20px;
}

footer {
  text-align: center;
  background-color: #0C7075;
  color: #FFFFFF;
  padding: 0 40px;
  display: block;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-col h3 {
  margin-bottom: 15px;
  font-size: 18px;
  border-bottom: 2px solid #fff;
  display: inline-block;
  padding-bottom: 5px;
}

.footer-col p,
.footer-col ul {
  font-size: 14px;
  line-height: 1.5;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.5s;
}

.footer-col ul li a i{
  padding-right: 5px;
}

.footer-col ul li a:hover {
  color: cyan; 
  font-weight: bold;
  transition: color 0.5s;
}

.footer-logo {
  width: 60px;
  margin-bottom: 10px;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 15px;
}

.Legal-docs {
    color: white;
    text-decoration: none;
}

.Legal-docs:hover {
    color: cyan;
    transition: 0.5s ease-in-out;
    box-shadow: cyan 0px 0px 5px;
}

.social-links li,.footer-links li{
  text-align: center;
}

/*CREDITS FOOTER*/

.team-credit {
    margin-top: 3rem;
    padding: 2rem;
    background:linear-gradient(to top,rgba(5, 22, 26, 0.7),#0C7075);
    border-radius: 10px;
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.team-member {
    padding: 0.8rem;
    background: #6ae1e7;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.member-name {
    display: block;
    font-weight: bold;
    color: #2c3e50;
}

.member-role {
    display: block;
    font-size: 0.85rem;
    color: #6c757d;
    margin-top: 0.25rem;
}

.credit-note {
    font-style: italic;
    color: #495057;
    margin-top: 1rem;
    font-size: 0.9rem;
}

/* Icons */
.close-icon, .open-icon {
  display: none;
}

/* RESPONSIVE DESIGN */
/* ---------- Tablet View (<=1024px) ---------- */
@media (max-width: 1024px) {
  .close-icon, .open-icon {
  display: none;
  }

  header {
    flex-direction: column;
    align-items: center;
    padding-bottom: 30px;
  }

  .nav-btn {
    margin: 10px;
    padding: 15px 0;
  }

  .cta-btn {
    margin-top: 20px;
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) and (min-width: 701px) {
  .container {
    justify-content: center;
  }

  .form-section, .details-section {
    flex: 1 1 45%; /* Two side by side */
  }

  .map-section {
    flex: 1 1 100%; /* Full width underneath */
  }
}

/* ---------- Mobile View (<=700px) ---------- */
@media (max-width: 700px) {
  /* Footer responsiveness */
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo {
    margin: auto;
  }

  .cta-btn {
    font-size: 1em;
    padding: 10px 15px;
    margin-right: 15px;
  }

  /* Icons */
  .close-icon,
  .open-icon {
    display: block;
    color: white;
    margin: 10px;
    font-size: 1.5rem;
    cursor: pointer;
    border: #072e33 solid 2px;
    border-radius: 5px;
    padding: 5px;
    background-color: #072e33;
  }

  .close-icon,
  .open-icon:hover {
    background-color: cyan;
    color: #072e33;
    border: cyan solid 2px;
    transition: 0.3s ease-in-out;
  }

  /* Header layout */
  header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    position: fixed;
    width: 100%;
    z-index: 1002;
  }

  .logo {
    max-width: 70px;
    padding: 0;
    margin: 0;
  }

  header h1 {
    font-size: 30px;
    margin: 0;
    padding: 10px 0;
  }

  /* NAV MENU OVERLAY */
  nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 30%;
    height: 100vh; /* full screen */
    background-color: #0C7075;
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.4s ease-in-out;
    z-index: 1000;
    box-shadow: cyan 0px 0px 8px;
  }

  .container {
    flex-direction: column;
    align-items: center;
    margin-top: 200px;
  }

  nav.active {
    transform: translateY(0);
  }

  nav.active {
    transform: translateX(0);
  }

  .nav-btn {
    color: white;
    font-size: 1rem;
    padding: 10px;
  }
  .close-icon {
    display: none; /* Hide close icon by default */
  }

  /* Smooth icon toggle */
  .open-icon,
  .close-icon {
    transition: opacity 0.3s ease;
  }
}

/* BLOG CSS */

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #072e33;
  color: #05161A;
  line-height: 200%;
  color:white;
}

.images img {
  max-width: 450px;
  width: 20rem;
  height: auto;
  text-align: center;
  padding-left: 0;
  margin-left:0 ;
}

.imagesTwo img {
  max-width: 480px;
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.TextAndImageTwo {
  display: block;
}

.HiddenOne {
  display: none;
}

#Nothing {
  padding: 0;
  margin:0;

}

.intro,.title {
  display:flex;
  justify-content: space-evenly;
}

.Info,.hiddenOne {
  border-radius: 8px;
  text-align: justify;
  padding: 1%;
  margin:5% 0%;
  margin-bottom:2%;
  background-image: linear-gradient(to bottom right, #054f53,#05161A);
  box-shadow: 7.5px 7.5px 2px rgba(0, 0, 0, 0.205);
  scroll-margin-top: 120px; /* adjust this to your navbar height */
}

main {
  padding:0% 15%;
}

.TextAndImage {
  display: flex;
}
.text,.images {
  text-align: justify;
  border-radius: 8px;
  padding:0%;
  margin:1.9% 2%;
  
}

.images img {
  max-width: 200px;
  width: 20rem;
  height: auto;
  text-align: center;
  padding-left: 0;
  margin-left:0 ;
  border-radius: 8px;
}

.imagesTwo img {
  max-width: 200px;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.images {
  text-align: center;
}

.navbar a {
  text-decoration: none;
  color: white;
}

#article:hover {
  color:#05161A;
}

#article {
  color: cyan;
}

.title,.decript {
  padding:1%;
  margin:0.3%;
  text-align: center;
}

.links {
  width:100%;
  display: none;
}

 .container,.links {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto; /* optional, centers the whole box horizontally */
  cursor: pointer;  
}

.links a {
  box-shadow:0 0 .5rem rgba(0, 0, 0, .4) ;
  width:5%;
  text-align: center;
  padding:1%;
  margin:0.2%;
  border-radius: 8px;
  background-color: #0c70758f;
  color:white;
}

.container {
  position:fixed;
  top: 5.5rem;
  left: 4rem;
  width: 100%;
  transition: 500ms ease-in-out
} 

.plus-icon {
    cursor:pointer;
 } 

.plus-icon {
  background-color: #10cbd47c;
  color: white;
  padding: 1rem 1.5rem;
  font-size: 1.2rem; 
  cursor: pointer;
  width: 11%;
  border-radius: 8px;

  /* Center the icon perfectly */
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto; 
}

.plus-icon {
    text-align: center;
    
}

.links a {
  width: 100px;
}

#CenterPlease {
    text-align: center;
    justify-content: space-evenly;
}

.label-container {
  position:fixed;
  top: 5rem;
  left: 0rem;
  width: 100%;
  transition: 500ms ease-in-out
}

#FakeHero {
  padding-top:9%;
  padding-bottom: 2%;
}

ul li {
  text-align: left;
}

#BlogHeaderss {
  line-height: 100%;
}

.BrLine {
  border: 2px solid white
}

