   * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

body {
    
    position: relative;
    overflow-x: hidden;
       font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.7;      /* 🔥 improves readability */
    letter-spacing: 0.2px;
}


/* 🌊 WATER EFFECT LAYER */
body::after {
    content: "";    
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://assets.autorender.io/hVtAx6dPfz/water1.jpg') no-repeat center/cover;
    z-index:-1;             
    pointer-events: none;
}
        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }
       /* * {
    outline: 1px solid red;
}*/
.section-title {
    font-size: clamp(2rem, 4vw, 2.6rem);
    color: #0a3a5c;
    border-left: 6px solid #72b034;
    padding-left: 14px;
    margin-bottom: 30px;
    line-height: 1.3;
}
/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  padding: 12px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
  background: transparent;
  transition: background 0.3s ease, padding 0.3s ease;
}

.navbar.scrolled {
  background: #0e3a5c;
}

/* LOGO */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  min-width: 0;
}

.nav-logo img {
  height: 100px;
  width: auto;
  display: block;
  /*background: #eaeee6;*/
  background: #0e3a5c;
}

.nav-logo span {
  line-height: 1;
  white-space: nowrap;
}
/* Tablet */
@media (max-width: 991px) {
  .nav-logo img {
    height: 70px;
    max-width: 65px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .nav-logo img {
    height: 65px;
    max-width: 60px;
  }
}
/* TOGGLE */
.menu-toggle {
  display: none;
  font-size: 1.7rem;
  color: #fff;
  cursor: pointer;
  line-height: 1;
  z-index: 1001;
}

/* MENU DESKTOP */
.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  position: relative;
}

.nav-menu li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-menu li a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: #72b034;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-menu li a:hover::after {
  width: 100%;
}
/* DROPDOWN */
.dropdown-menu {
  display: none !important;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  margin: 0;
  padding: 10px 0;
  list-style: none;
  background: #0e3a5c;
  border: none;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 18px;
  color: #fff;
}

.dropdown-menu li a:hover {
  background: rgba(255, 255, 255, 0.08);
}

@media (min-width: 992px) {
  .dropdown:hover > .dropdown-menu {
    display: block !important;
  }
}

/* MOBILE */
@media (max-width: 991px) {
  .navbar {
    padding: 12px 16px;
  }

  .menu-toggle {
    display: block;
  }


  .nav-logo span {
    font-size: 1rem;
  }

  .nav-menu {
    position: fixed; /* 🔥 IMPORTANT */
    top: 70px;
    left: 16px;
    right: 16px;

    background: #0e3a5c;
    flex-direction: column;
    display: none;
    padding: 15px;

    max-height: calc(100vh - 80px); /* 🔥 FULL HEIGHT */
    overflow-y: auto;               /* 🔥 ENABLE SCROLL */
    gap:5px;
    border-radius: 12px;
    z-index: 1000;
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-menu > li {
    margin: 0;
  }

  .nav-menu > li > a {
    padding: 14px 20px;
    justify-content: space-between;
  }

  .dropdown-menu {
    position: static !important;
    min-width: 100%;
    display: none !important;
    padding: 0 0 8px;
    margin: 0;
    background: #144a72;
    border-radius: 0;
    box-shadow: none;
  }

  .dropdown.active > .dropdown-menu {
    display: block !important;
  }

  .dropdown-menu li a {
    padding: 12px 28px;
    font-size: 0.95rem;
  }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
  .navbar {
    padding: 10px 14px;
  }

  .nav-menu {
    left: 14px;
    right: 14px;
    max-width: calc(100% - 28px);
  }



  .nav-logo span {
    font-size: 0.95rem;
  }
}
.main-content {
        width: 100%;
    background: #f1f5f9bd;
   
}

/* FOOTER */
.footer {
    background: #0a2540;
    color: #fff;
    padding-top: 60px;
}

/* GRID */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* LOGO */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-logo img {
    height: 50px;
    background: #fff;
    padding: 5px;
    border-radius: 6px;
}

.footer-logo h3{
    font-size: 20px;
    font-weight: 700;
    color: #f4b400; 
}
.footer-col h4 {
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-col p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
}

/* LINKS */
.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #f4b400;
}

/* ICONS */
.footer-col i {
    margin-right: 8px;
    color: #f4b400;
}

.social-icons {
    margin-top: 10px;
}

.social-icons a {
    color: #fff;
    margin-right: 10px;
    font-size: 18px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #f4b400;
}

/* BOTTOM */
.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 40px;
    padding: 20px;
    font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .footer{
        padding-top: 40px;
        }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 30px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
}








/* ----- inner hero section ----- */
.inner-hero {
    background: linear-gradient(rgba(11,34,57,0.65), rgba(11,34,57,0.65)),
                url('https://assets.autorender.io/hVtAx6dPfz/Marine/vessel.jpg') center/cover no-repeat;
    color: #fff;
    min-height: 400px;
    padding: 0 5%;
    display: flex;
    align-items: center;
}

.inner-hero h1 {
    font-size: 42px;
    font-weight: 700;
}

.inner-hero p {
    margin-top: 10px;
    opacity: 0.9;
}


.esg-section {
    padding: 60px 40px;
    margin-top: 60px;
     background:  rgb(241 249 255 / 50%);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    border-radius: 15px;
   
}

.section-header h2 {
            text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #1a2b49;
}

.section-header .subtitle {
    color: #171c20;
    font-weight:500;
    margin-top: 10px;
    text-align: center;
}

.esg-grid {
    display: flex;
    flex-wrap: wrap;   /* allows wrapping */
    gap: 25px;
    margin-top: 40px;
}

.esg-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: 0.3s;
    flex: 1 1 calc(33.333% - 25px);
}

.esg-card:hover {
    transform: translateY(-5px);
}

.esg-icon {
    width: 50px;
    height: 50px;
    background: #2d6cdf;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 15px;
}

.esg-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1a2b49;
}

.esg-card ul {
    padding-left: 18px;
}

.esg-card ul li {
    margin-bottom: 8px;
    font-size: 14px;
    color: #555;
}
@media (max-width: 768px) {

    .esg-section {
        padding: 30px 15px;   /* reduce spacing */
        margin-top: 30px;
        border-radius: 10px;
    }

   .esg-grid {
        flex-direction: column;   /* stack vertically */
    }

    .esg-card {
        flex: 1 1 100%;   /* full width */
        max-width: 100%;
    }

    .section-header h2 {
        font-size: 24px;
        text-align: center;
    }

    .section-header .subtitle {
        text-align: center;
        font-size: 14px;
    }

    
    .esg-card h3 {
        font-size: 16px;
    }

    .esg-card ul li {
        font-size: 13px;
    }
}
@media (max-width: 992px) {
    .esg-card {
        flex: 1 1 calc(50% - 25px);
    }
}
/* Back To Top Button */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 52px;
    height: 52px;
    border: none;
    outline: none;
    border-radius: 50%;
    background: linear-gradient(135deg, #0a3a5c, #1f6e8c);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: none;
    z-index: 9999;
    box-shadow: 0 10px 25px rgba(0,0,0,0.18);
    transition: all 0.3s ease;
}

/* Hover */
#backToTop:hover {
    transform: translateY(-5px) scale(1.05);
    background: linear-gradient(135deg, #1f6e8c, #2c7da0);
    box-shadow: 0 15px 30px rgba(0,0,0,0.25);
}

/* Icon */
#backToTop i {
    font-size: 16px;
}

/* Mobile */
@media (max-width: 768px) {
    #backToTop {
        width: 46px;
        height: 46px;
        right: 20px;
        bottom: 20px;
        font-size: 15px;
    }
}