*{margin:0;padding:0;box-sizing:border-box;}
body{font-family:'Inter',sans-serif;background:#f1f5f9;color:#0f172a}

/* HEADER */
.header{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 40px;
background:#0f172a;
color:#fff;
position:sticky;
top:0;
z-index:999;
}
.logo{font-size:20px;font-weight:700}
.nav a{
color:#fff;
margin:0 12px;
text-decoration:none;
font-size:14px;
}
.header-cta{
background:#22c55e;
padding:10px 16px;
border-radius:6px;
text-decoration:none;
color:#fff;
font-weight:600;
}
/* HEADER */
.header {
    position: sticky;
    top: 0;
    background: #0f172a;
    z-index: 999;
    padding: 12px 0;
}

.nav-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.logo {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}

/* NAV */
.nav ul {
    display: flex;
    gap: 25px;
    list-style: none;
}

.nav a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

/* CTA */
.header-cta {
    background: #22c55e;
    padding: 10px 16px;
    border-radius: 6px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

/* HAMBURGER */
.menu-toggle {
    display: none;
    font-size: 26px;
    color: #fff;
    cursor: pointer;
}

/* MOBILE */
@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    .nav {
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #0f172a;
        display: none;
        flex-direction: column;
        padding: 20px;
    }

    .nav ul {
        flex-direction: column;
        gap: 15px;
    }

    .nav.active {
        display: flex;
    }

    .header-cta {
        display: none; /* optional for mobile */
    }
}

/* HERO */
.hero{
background:linear-gradient(rgba(0,0,0,.3),rgba(0,0,0,.3)),
url('./img/_Hero\ PNO\ \(1\).webp') center/cover no-repeat;
background-size:cover;
padding:100px 20px;
text-align:center;
color:#fff;
}
.hero h1{font-size:40px;margin-bottom:10px;}
.hero p{font-size:18px;margin-bottom:20px;}

.hero-card{
background:rgba(255,255,255,0.1);
backdrop-filter:blur(10px);
padding:25px;
border-radius:12px;
display:inline-block;
}

.cta-btn{
background:#f2a900;
padding:14px 28px;
border-radius:8px;
color:#fff;
text-decoration:none;
font-weight:600;
display:inline-block;
margin-top:10px;
}

/* TRUST BAR */
.trust-bar{
display:flex;
justify-content:space-around;
background:#fff;
padding:20px;
box-shadow:0 4px 10px rgba(0,0,0,0.05);
}
.trust-bar div{text-align:center;font-size:14px}

/* SECTION */
.section{
max-width:1100px;
margin:auto;
padding:20px 20px;
}
.section h2{text-align:center;margin-bottom:30px}

/* CARDS */
.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
gap:20px;
}
.card{
background:#fff;
padding:25px;
border-radius:12px;
box-shadow:0 8px 20px rgba(0,0,0,0.05);
text-align:center;
}

/* CTA BANNER */
.cta-banner{
background:#0f172a;
color:#fff;
padding:50px 20px;
text-align:center;
border-radius:12px;
} 
/* CARD */
.feature-card {
    background: #e9eef5; 
    font-weight: 700;
    font-size: 18px;
    padding: 15px 20px;
    border-radius: 18px;
    transition: all 0.3s ease; 
    text-align: center;
}

/* HIGHLIGHT CARD */
.feature-card.highlight {
    border: 2px solid #c7d7f2;
    background: #edf4ff;
}

/* ICON */
.icon {
    font-size: 40px;
    margin-bottom: 20px;
}

/* HOVER EFFECT */
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 28px;
    }
} 



/* INFO */
.info {
  padding: 40px 20px;
}

.info .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.img img {
  width: 100%;
  border-radius: 15px;
}

.content h2 {
  font-size: 36px;
}

.content span {
  color: #f2a900 ;
}
/* SECTION */
.services-section {
    background: linear-gradient(180deg, #020617 0%, #020617 100%);
    padding: 80px 20px;
    color: #fff;
}

.container {
    max-width: 1200px;
    margin: auto;
}

/* TITLE */
.subtitle {
    text-align: center;
    letter-spacing: 4px;
    font-size: 14px;
    color: #c9a66b;
    margin-bottom: 10px;
}

.title {
    text-align: center;
    font-size: 52px;
    font-weight: 500;
    margin-bottom: 50px;
    font-family: serif;
}

/* GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */
.service-card {
    background: #0b1733;
    padding: 40px;
    border-radius: 6px;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}

/* HOVER */
.service-card:hover {
    transform: translateY(-6px);
    background: #10204a;
}

/* TEXT */
.service-card h3 {
    font-size: 30px;
    font-weight: 500;
    line-height: 1.3;
}

/* LINK */
.service-link {
    color: #c9a66b;
    text-decoration: none;
    font-size: 16px;
    margin-top: 20px;
    display: inline-block;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .title {
        font-size: 32px;
    }
}



/* FOOTER */
.footer{
background:#020617;
color:#cbd5f5;
padding:40px 20px;
margin-top:40px;
} 
.footer h4 , footer p{
    color: #fff;
}
.footer-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:20px;
}
.footer ul li{
color:#cbd5f5;
text-decoration:none;
display:block;
margin-bottom:8px;
font-size:14px; 
} 
.footer ul li a{
color:#cbd5f5;text-decoration:none;display:block;
margin-bottom:8px;font-size:14px;
}
.footer-bottom{
text-align:center;
margin-top:20px;
font-size:13px;
}

/* STICKY CALL */
.sticky-call{
position:fixed;
bottom:0;
width:100%;
background:#f2a900;
text-align:center;
padding:14px;
}
.sticky-call a{
color:#fff;
font-weight:700;
text-decoration:none;
}

/* MOBILE */
@media(max-width:768px){
.hero h1{font-size:26px;}
.header{padding:15px;}
.nav{display:none;} 
  .info .grid {
    grid-template-columns: 1fr;
  }
}


/* ===== SECTION ===== */
.ship-section {
  padding: 25px 20px;
  background: #f8fbff;
  font-family: 'Inter', sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* ===== HEADER ===== */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #0a2540;
}

.section-header p {
  font-size: 16px;
  color: #6b7c93;
  margin-top: 10px;
}

/* ===== GRID ===== */
.ship-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* ===== CARD ===== */
.ship-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
}

.ship-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* ===== IMAGE ===== */
.ship-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.ship-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

.ship-card:hover img {
  transform: scale(1.05);
}

/* ===== BADGE ===== */
.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #ff4d4d;
  color: #fff;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 50px;
}

.badge.new {
  background: linear-gradient(135deg, #ff7a18, #ff3d00);
}

/* ===== CONTENT ===== */
.ship-content {
  padding: 20px;
  flex: 1;
}

.ship-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #0a2540;
}

.ship-content p {
  font-size: 14px;
  color: #6b7c93;
  margin-bottom: 15px;
}

/* ===== LIST ===== */
.ship-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.ship-content ul li {
  font-size: 14px;
  margin-bottom: 6px;
  color: #334e68;
}

/* ===== BUTTON ===== */
.btn-primary {
  display: inline-block;
  text-align: center;
  background: #f2a900 !important;
  color: #fff;
  padding: 12px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #0056d2, #003f9e);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .ship-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .ship-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 24px;
  }

  .ship-img {
    height: 180px;
  }
}

.ship-img {
  width: 100%;
  aspect-ratio: 16 / 9; /* 🔥 modern responsive */
  overflow: hidden;
}

.ship-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}