html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Heebo", sans-serif, Arial, Helvetica, sans-serif;
    box-sizing: border-box;
}

.header {
    background: linear-gradient(to right, #163C1C, #0E5A2A);
    color: white;
    display: grid;
    grid-template-columns: max-content 1fr;
    align-items: center;
    padding: 0.6rem 0.6rem;
    column-gap: 1rem;
    border-bottom: none;
    position: relative;
    overflow: visible;
    z-index: 1000;
}

.header::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;

    background: linear-gradient(
        to right,
        transparent 0%,
        rgba(216, 180, 106, 0.4) 10%,
        #D8B46A 30%,
        #F4D58D 50%,
        #D8B46A 70%,
        rgba(216, 180, 106, 0.4) 90%,
        transparent 100%
    );

    box-shadow:
        0 0 4px rgba(244, 213, 141, 0.5),
        0 1px 6px rgba(216, 180, 106, 0.35);
}


/* *************************** */
/* HEADER SECTION */
/* *************************** */

.header .logo-title {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}

.logo {
    height: 6.6rem;
    margin-right: 0.5rem;
    margin-left: 0.3rem;
}

.headline {
    line-height: 0.8;
    margin: 0;
    padding-top: 0.4rem;
    /* padding-right: 3.2rem; */
}

.head-line1 {
   font-size: 1.4rem;
    font-weight: 700;
    color: #F4B400;
    letter-spacing: 1px;
}

.head-line2 {
  font-size: 1rem;
    font-weight: 500;
    color: #9CCC65;
}

.head-tagline {
    font-size: 0.8rem;
    font-style: italic;
    font-weight: 400;
    color: #D8B46A;
    margin-top: 9px;
    opacity: 0.85;
    letter-spacing: 0.4px;
    margin-left: 10px;  /* moves right */
}

/* *************************** */
/* BUTTON CLOSE AND OPEN SECTION */
/* *************************** */
.mobile-toggle{
    display: none;
}

#menuIcon{
    display: block;
}

#closeIcon{
    display: none;
}

/* *************************** */
/* NAVIGATION SECTION */
/* *************************** */

.main-nav-links {
   display: flex;
  align-items: center;
  gap: 1.3rem;
  list-style: none;
      margin: 0;
    padding-left: 0;
}

.dropbtn {
  background: transparent;
  border: none;
  cursor: pointer;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  /* padding: 8px 14px;    */
  gap: 4px;

  font-family: "Montserrat", Arial, sans-serif;
}

.dropbtn:hover {
  background-color: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
}

/* ===== NAV ICON ABOVE TEXT ===== */

/* Icon styling */
.nav-icon {
  font-size: 1.4rem;
  color: #9CCC65;
  transition: color 0.3s ease;
}

/* Text styling */
.nav-icon-btn span {
  font-size: 0.8rem;
  font-weight: 500;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Hover effect */
.dropbtn:hover .nav-icon {
  color: #F4B400;
}

.dropbtn:hover span {
  color: #F4C542;
}

/* ===== VERTICAL DIVIDERS ===== */
.main-nav-links li {
  position: relative;
}

/* Divider line */
.main-nav-links li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 15%;
  height: 70%;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(255, 255, 255, 0.35),
    transparent
  );
}

/* Dropdown caret smaller & subtle */
.caret {
  font-size: 0.7rem;
  opacity: 0.8;
   transition: transform 0.3s ease;
}

.caret.rotate {
  transform: rotate(180deg);
}

/* Dropdown Container */
.dropdown {
    position: relative;
    text-align: center;
}


.nav-icon-btn .dropbtn {
  flex-direction: column;
  gap: 6px;
  /* padding: 14px 18px; */
}

/* ===== DROPDOWN APPEAR EFFECT ===== */
.dropdown-content {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;

    min-width: 320px;

    background: #0E3B24;
    border-radius: 12px;

    padding: 8px 0;

    opacity: 0;
    visibility: hidden;

    transform: translateY(10px);

    transition: all .3s ease;

    z-index: 9999;
}

.dropdown-content.show {
  opacity: 1;
  visibility: visible;
  /* transform: translate(-50%, 0); */
   transform:translateY(0);
}

.dropdown-content{

    box-shadow:
        0 15px 40px rgba(0,0,0,.35);

    border:1px solid rgba(255,255,255,.08);
}



/* Links Inside the Dropdown */
dropdown-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;

  width: 4px;
  height: 100%;
  background-color: #E6B800;
  border-radius: 12px 0 0 12px;
}

.dropdown-content a {
  display: block;
  padding: 8px 12px;

  color: #F1F7F3;
  font-size: 1rem;
  font-weight: 500;

  text-decoration: none;
  transition: background 0.2s ease;
}

.main-nav-links li:last-child .dropdown-content{
    right:0;
    left:auto;
}

/* Change Color of Dropdown Links on Hover */
.dropdown-content a:hover {
  background-color: #1F5E3B;
    color: #F4C542;

    padding-left:30px;


}


/* Show the Dropdown Menu When Clicked */


.dropdown-icon {
    width: 1rem;
    height: 1rem;
    padding: 0;
}


/* *************************** */
/* HEADER IMAGE SECTION */
/* *************************** */
.header-content-image {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 1rem 0;
    background: #fff;
}

.main-img-link {
    width: 90%;        /* Try 80%, 85%, or 90% */
    max-width: 1400px;
    height: auto;
    display: block;
    margin: auto;
}
.slider {
  display: flex;
  height: 100%;
  transition: transform 1s ease-in-out;
}

.slide {
  flex: 0 0 100%;   /* Each slide takes exactly one screen width */
  height: 100%;
  width: 100%;
  position: relative;
}

.slider,
.slide,
.main-image {
    width: 100%;
    height: 100%;
}

.main-image,
.main-img-link {
  width: 100%;
  height: 100%;
}

.marine-header {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  z-index: 2;
  color: white;
  width: 45%;
}
/* *************************** */
/* PARAGRAPH SECTION */
/* *************************** */

/* .paragraph-grid {
  display: grid;
  grid-template-columns: 1fr;
  padding: 30px;
  background-color: #556b2f;
  color: #fffff0;
  font-size: 30px;
  font-family: none;
}

.paragraph-content strong {
  color: #ff7f50;
} */


/* ===========================
   MISSION SECTION
=========================== */

.mission-section {
  padding: 5rem 8%;
  background: #F8FAF8;
}

.mission-heading {
  text-align: center;
  max-width: 900px;
  margin: auto;
}

.mission-heading h2 {
  font-size: 2.8rem;
  color: #0E5A2A;
  margin-bottom: 1rem;
  position: relative;
}

.mission-heading h2::after {
  content: "";
  width: 90px;
  height: 4px;
  background: #F4B400;
  display: block;
  margin: 15px auto 0;
  border-radius: 20px;
}

.mission-heading p {
  font-size: 1.1rem;
  color: #5B5B5B;
  line-height: 1.9;
  margin-top: 2rem;
}

/* Cards */

.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.mission-card {
  background: #ffffff;
  padding: 2.5rem 2rem;
  border-radius: 22px;
  text-align: center;

  box-shadow:
    0 12px 35px rgba(0,0,0,0.08);

  transition: all 0.35s ease;
  border-top: 5px solid #9CCC65;
}

.mission-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 18px 40px rgba(0,0,0,0.14);
}

.mission-card i {
  font-size: 3rem;
  color: #F4B400;
  margin-bottom: 1.5rem;
}

.mission-card h3 {
  font-size: 1.4rem;
  color: #0E5A2A;
  margin-bottom: 1rem;
}

.mission-card p {
  font-size: 1rem;
  color: #666;
  line-height: 1.8;
}

/* *************************** */
/* FOOTER SECTION */
/* *************************** */
/* ========================= */
/* FOOTER */
/* ========================= */

.footer {
  background: linear-gradient(to right, #0B2F1A, #0E5A2A);
  color: #D1E7D3;
  /* background: linear-gradient(135deg, #0B2E1B, #123524);
    color: #F5F5F5; */
}

/* GRID */
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 1rem 1rem;
  align-items: start;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-grid a {
    color: #D8E3D2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-grid a:hover {
    color: #E8C547;
}

/* LOGO + TITLE */


.logo-title-tag {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-img {
  height: 6.6rem;
  width: auto;
}

/* TITLE */
.footer-headline-1 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #E8C547;
    letter-spacing: 1px;
    margin-bottom: 0.1rem;
    margin-top: 0.1rem;
    }

.footer-headline-2 {
    font-size: 1rem;
    font-weight: 500;
    color: #B7D89B;
    margin-top: 4px;
    margin-bottom: 0.3rem;
}

.footer-tagline {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  font-size: 0.8rem;
  color: #CBB26A;
  font-style: italic;
  margin-left: 0.8rem;
}

.footer-tagline span {
  line-height: 1.2;
}


/* HEADINGS */
.footer-follow-us,
.footer-heading {
  color: #F4C542;
  /* font-size: 1.1rem;
  margin: 1.5rem 0 0.5rem; */
   color: #E8C547;
    font-weight: 600;
}

/* SOCIAL ICONS */

.footer-tagline i {
  font-size: 1rem;
}

.social-links {
  list-style: none;
  display: flex; 
  gap: 2rem;
  padding: 0;
  margin: 0.5rem 0 0;
}

.social-media {
  width: 50px;
  height: 50px;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.footer-link-icons:hover .social-media {
  opacity: 1;
  transform: translateY(-3px) scale(1.1);
}

/* RIGHT COLUMN */
/* Right column */

.footer-grid-2{
    display:flex;
    justify-content:flex-start;
    align-items:flex-start;
}

/* Contact Box */

.contact-box{
    width:100%;
    max-width:420px;
}

/* Heading */

.footer-heading{
    margin:0 0 20px 0;
    padding-left:5px;      /* move slightly left */
    font-size:1.6rem;
    color:#E8C547;
    font-weight:700;
}

/* Contact information */

.contact-info p{
    display:flex;
    align-items:flex-start;
    gap:12px;

    margin-bottom:14px;

    color:#D8E3D2;

    font-size:1rem;

    line-height:1.8;
}

.contact-info p:nth-child(2){
    display:block;
    padding-left:30px;
}

.contact-info i{
    color:#F4C542;
    font-size:18px;
    margin-top:5px;
    min-width:18px;
}

.contact-info strong{
    color:#ffffff;
    font-weight:600;
}


/* *************************** */
/* FOOTER COPYRIGHT SECTION */
/* *************************** */

.copyright.section {
  background-color: #071E11;
  padding: 1rem;
  text-align: center;
}

.copyright {
  /* color: #A7C9B5; */
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
    background: #081F13;
    color: #D8E3D2;
}
