.custom-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  font-size: 14px;
}

.custom-list li {
  display: flex;
  align-items: center;
  font-size: 18px;
  margin-bottom: 10px;
  color: #fff;
  /* adjust based on background */
}

.text-space {
  margin-bottom: 0;
}

.custom-list li i {
  margin-right: 10px;
  color: #ffffff;
  /* or your brand color */
  min-width: 20px;
}

/* image list end */

/* corect fontawesome start */

.custom-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.custom-check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 16px;
  color: #333;
}

/* Icon Style */
.custom-check-list li i {
  color: #2d8f59;
  /* your green */
  font-size: 18px;
}

.footer-log {
  padding-top: 100px;
  /* padding-bottom: 53px; */
  vertical-align: middle;
}

/* popup start */

/* Modal Base */
.custom-modal {
  border-radius: 0;
  border: none;
  overflow: hidden;
  border-radius: 15px;
}

/* Close Button */
.custom-close {
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 10;
  /* background-color: #00ADDF !important; */
  opacity: 1;
  filter: invert(1);
}

/* LEFT IMAGE */
.left-image {
  background: url("../image/popup-1.jpg") center/cover no-repeat;
  min-height: 100%;
}

/* RIGHT SECTION */
.form-section {
  padding: 50px 40px;
  background: #f9f9f9;
  position: relative;
}

/* Subtle Circle Background */
.form-section::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background-image: radial-gradient(circle,
      rgba(0, 0, 0, 0.04) 60px,
      transparent 61px);
  background-size: 200px 200px; */
  opacity: 0.6;
}

/* Title */
.title {
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

/* Contact Info */
.contact-info {
  display: flex;
  gap: 20px;
  color: #147491;
  font-size: 14px;
  margin-bottom: 30px;
}

/* FORM STYLE */
form {
  position: relative;
  z-index: 2;
}

form input,
form textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #ccc;
  background: transparent;
  padding: 10px 5px;
  margin-bottom: 25px;
  outline: none;
  font-size: 14px;
}

/* Focus Effect */
form input:focus,
form textarea:focus {
  border-bottom: 1px solid #147491;
}

/* TEXTAREA */
textarea {
  height: 100px;
  resize: none;
}

/* BUTTON */
.send-btn {
  border: 2px solid #147491;
  color: #147491;
  background: transparent;
  padding: 10px 25px;
  border-radius: 30px;
  font-size: 14px;
  transition: 0.3s;
}

.send-btn:hover {
  background: #147491;
  color: #fff;
}

.hero-bg-video img {
  width: 100%;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f5f5f5;
}

/* Main container */
.section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 10%;
  gap: 50px;
}

/* Image grid */
.image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.image-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  transition: 0.3s;
}

.image-grid-content h2 {
  color: #fff;
  margin-bottom: 20px;
}

.image-grid-content p {
  color: #e7e7e7;
  font-size: 18px;
  line-height: 1.75;
}

.hero.dark-section {
  height: 115vh;
}

/* About text */

/* .container {
  max-width: 900px;
} */

/* SAME SIZE for both */
p {
  font-size: 18px;
  line-height: 1.6;
}

/* Optional: slight difference using weight only */
h1 {
  font-weight: 400;
  margin-bottom: 20px;
}

p {
  font-weight: 400;
  opacity: 0.9;
}

.value-service-list {
  padding-left: 20px;
  /* space for bullets */
  margin: 0;
  /* list-style-type: disc; */
}


.value-service-list li {
  font-size: 20px;
  font-style: italic;
  color: #808080;
  /* dark blue like your design */
  line-height: 1.6;
  margin-bottom: 12px;
  /* gap between items */
}

/* Optional: better bullet spacing */
.value-service-list li::marker {
  color: #808080;
  font-size: 18px;
}

/* SECTION */
.services-section {
  background: #ffffff;
}

/* CARD */
.service-card {
  background: #132042;
  border-radius: 20px;
  padding: 34px;
  color: #fff;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
  box-shadow: 0 15px 40px rgba(24, 30, 64, 0.25);
}

/* gradient glow border */
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.15), transparent);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

/* hover */
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(24, 30, 64, 0.35);
}

/* TITLE */
.service-title {
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 22px;
  letter-spacing: 0.3px;
}

/* LIST */
.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-list li {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 15px;
  font-size: 15px;
  color: #e6e9ff;
}

/* ICON CIRCLE */
.icon {
  min-width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ICON */
.icon i {
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
}

/* subtle divider between items */
.service-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 40px;
  right: 0;
  height: 1px;
  margin-top: 28px;
  background: rgba(255, 255, 255, 0.06);
}

/* responsive */
@media (max-width: 576px) {
  .service-card {
    padding: 24px;
  }

  .service-title {
    font-size: 18px;
  }

  .service-list li {
    font-size: 14px;
  }
}

/* GALLERY SECTION */

.gallery-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 10px;
}

/* Common */
.item {
  overflow: hidden;
  border-radius: 6px;
}

.item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* LEFT & RIGHT SAME HEIGHT */
.tall {
  grid-row: span 2;
}

/* LEFT POSITION */
.left {
  grid-column: 1;
}

/* RIGHT POSITION */
.right {
  grid-column: 5;
}

/* MIDDLE BIG */
.wide {
  grid-column: span 2;
}

/* Responsive */
@media (max-width: 992px) {
  .gallery-wrapper {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
  }

  .tall {
    grid-row: span 1;
  }
}

/* Login */

.custom-modal {
  border-radius: 6px;
}

.custom-close {
  position: absolute;
  top: 10px;
  right: 10px;
}

.form-section {
  padding: 20px;
}

.custom-input {
  border: none;
  border-bottom: 2px solid #1f3b57;
  border-radius: 0;
  padding-left: 0;
}

.custom-input:focus {
  box-shadow: none;
  border-color: #1f3b57;
}

.login-btn {
  background-color: #5b8db8;
  color: #fff;
  padding: 12px;
  border-radius: 0;
  border: none;
}

.login-btn:hover {
  background-color: #4a7aa3;
}

/* Tracking */

/* MODAL BASE */
.tracking-modal {
  border-radius: 8px;
  overflow: hidden;
}

/* CLOSE BUTTON */
.custom-close {
  position: absolute;
  right: 15px;
  top: 15px;
  z-index: 10;
}

/* TOP AREA */
.tracking-top {
  background: #f3f3f3;
  padding: 40px;
}

/* TITLE */
.tracking-title {
  font-size: 34px;
  font-weight: 700;
  color: #0d2c54;
  margin-bottom: 25px;
}

/* SEARCH BOX */
.tracking-box {
  border: 1px solid #3d6ea8;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
}

/* INPUT */
.tracking-box input {
  border: none;
  width: 100%;
  font-size: 18px;
  outline: none;
  color: #0d2c54;
  background: transparent;
}

/* UNDERLINE EFFECT */
.tracking-box input::placeholder {
  color: #3d6ea8;
}

/* BUTTON */
.search-btn {
  background: transparent;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: #000;
}

/* BOTTOM IMAGE */
.tracking-banner {
  width: 100%;
  height: 380px;
  background: url("../image/tracking-2.jpg") center/cover no-repeat;
}

/* New sectiom */

/* =================================== */

.ship-section {
  padding: 40px 0;
}

.ship-img {
  position: relative;
}

.ship-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 10px;
}

.ship-img .info-box {
  position: absolute;
  top: 25%;
  left: 5.75%;
  background-color: #152558;
  border-left: 5px solid #00a7db;
  padding: 20px 30px;
  border-radius: 0 10px 10px 0;
}

.ship-img .info-box ul {
  padding-left: 0;
}

.ship-img .info-box ul li {
  list-style-type: none;
  margin-bottom: 20px;
  color: #fff;
  font-size: 16px;
}

.ship-img .info-box ul li:last-child {
  margin-bottom: 0;
}

.ship-img .info-box-1 {
  position: absolute;
  top: 18%;
  left: 5.75%;
  background-color: #152558;
  border-left: 5px solid #00a7db;
  padding: 20px 30px;
  border-radius: 0 10px 10px 0;
}

.ship-img .info-box ul {
  padding-left: 0;
}

.ship-img .info-box ul li {
  list-style-type: none;
  margin-bottom: 20px;
  color: #fff;
  font-size: 16px;
}

.ship-img .info-box ul li:last-child {
  margin-bottom: 0;
}

.ship-img .info-box-2 {
  position: absolute;
  top: 14%;
  left: 5.75%;
  background-color: #152558;
  border-left: 5px solid #00a7db;
  padding: 20px 30px;
  border-radius: 0 10px 10px 0;
}

.ship-img .info-box ul {
  padding-left: 0;
}

.ship-img .info-box ul li {
  list-style-type: none;
  margin-bottom: 20px;
  color: #fff;
  font-size: 16px;
}

.ship-img .info-box ul li:last-child {
  margin-bottom: 0;
}

/* button stoke */
.enquiry-btn {
  border: 2px solid var(--accent-color);
  border-radius: 25px;
  padding: 8px 20px;
  border-radius: 6px;
  color: var(--accent-color);
  display: inline-block;
  text-decoration: none;
  transition: 0.3s;
}

.enquiry-btn:hover {
  background-color: lightblue;
  color: #fff;
}

.enquiry-btn1 {
  border: 2px solid var(--accent-color);
  border-radius: 25px;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 6px;
  color: #ffffff;
  background-color: transparent !important;
  display: inline-block;
  text-decoration: none;
  transition: 0.3s;
}

.enquiry-btn1:hover {
  background-color: white;
  color: grey;
}

.container-fix {
  max-width: 1362px !important;
}

.white-text {
  color: white;
}

/* When navbar scrolled */
.navbar.scrolled .enquiry-btn1 {
  color: #132042;
  border-color: #0b6b8a;
  background-color: transparent;
}

/* Hover after scroll */
.navbar.scrolled .enquiry-btn1:hover {
  background-color: #132042;
  color: #ffffff;
}

.navbar.scrolled .main-menu ul li a {
  color: #132042 !important;
}

.navbar.scrolled .main-menu ul li ul li a {
  color: #fff !important;
}

/* .bg-white-nav {
  background-color: #ffffffb3;
} */
.bg-white-nav1 {
  /* opacity: 70%; */
  padding: 10px;
  border-radius: 10px;
}

.px-15 {
    padding: 12px 20px !important; /* equal top & bottom so header bar is balanced */
}

@media (max-width: 991px) {
    .px-15 {
        padding: 10px 15px !important;
    }
}

/* Demo */


/* MAIN */
.gx-gallery {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 20px;
  padding: 30px;
  max-width: 1400px;
  margin: auto;
}

/* LEFT & RIGHT SAME HEIGHT */
.gx-left,
.gx-right {
  height: 600px;
  /* 🔥 FIXED HEIGHT */
}

/* CENTER GRID */
.gx-center {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 290px);
  /* 🔥 PERFECT FIT */
  gap: 20px;
}

/* IMAGE WRAPPER */
.gx-img-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 12px;
}

/* IMAGE */
.gx-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* HOVER EFFECT */
.gx-img-wrap:hover img {
  transform: scale(1.08);
}



/* glassmorphism text bg effect */

.glass-header {

  background: #132042;
  /* backdrop-filter: blur(10px); */
  -webkit-backdrop-filter: blur(10px);


  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  /* border: 1px #ffffffa4 solid; */


  padding: 20px 20px;
  /* box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.57); */


  display: inline-block;
}



/* ends */

/* RESPONSIVE */
@media (max-width: 992px) {
  .gx-gallery {
    grid-template-columns: 1fr;
  }

  .gx-left,
  .gx-right {
    height: 400px;
  }

  .gx-center {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .hero.dark-section {
    height: 73vh;
}

.fixmobi{
  margin-bottom: 25px !important;
}
.about-us-btn-gold {
    
    padding-top: unset !important;
    margin-top: unset !important;
}
.tifix{
  margin-top: 25px !important;
}
.footer-log {
     padding-top: unset !important;
}

.page-header-9{
  padding: 150px 0 150px !important;
}
.page-header-1 {
   padding: 150px 0 150px !important;
}
.page-header-2 {
    padding: 150px 0 150px !important;
}

.page-header-3 {
   padding: 150px 0 150px !important;
}
.page-header-4 {
padding: 150px 0 150px !important;
}
.page-header-5{
padding: 150px 0 150px !important;  
}
.page-header-6{
 padding: 150px 0 150px !important;   
}
.page-header-7{
 padding: 150px 0 150px !important;    
}
.page-header-8{
  padding: 150px 0 150px !important;    
 
}
.page-header-10{
    padding: 150px 0 150px !important; 
}
.page-header-11 {
   padding: 150px 0 150px !important; 
}

.title {
  margin-bottom: 35px;
}
.mbfix1{
  margin-bottom: 25px;

}
}