/* CSS Document */
/* Left and right columns */

/* Two images */
.image-double{
    width:100%;
	height:60%;
    display:inline-block;
    flex-direction:column;
    gap:20px;
	
}


/* Images */
.image-double img{
    flex:1;                  /* Each image gets half the height */
    width:100%;
    min-height:260px;
    object-fit:cover;
    object-position:center;

    border-radius:22px;
    border:1px solid rgba(25,184,242,.25);
    box-shadow:0 12px 30px rgba(0,0,0,.35);
    transition:.4s;
}

.image-double img:hover{
    transform:scale(1.02);
    border-color:#19b8f2;
    box-shadow:0 0 20px rgba(25,184,242,.4);
}
    @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Oswald:wght@400;500;600;700&display=swap');

    :root {
      --bg: #07131f;
      --bg2: #0c2238;
      --card: rgba(17, 44, 67, 0.75);
      --card2: rgba(11, 31, 49, 0.92);
      --cyan: #19b8f2;
      --cyan2: #62d7ff;
      --text: #f5f8ff;
      --muted: #a7bed2;
      --line: rgba(95, 211, 255, 0.18);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: "Montserrat", sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at 80% 10%, rgba(50, 161, 214, .18), transparent 30%),
        radial-gradient(circle at 20% 30%, rgba(42, 103, 148, .13), transparent 25%),
        var(--bg);
      line-height: 1.7;
      overflow-x: hidden;
    }

    img {
      max-width: 100%;
      display: block;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .container {
      width: min(1180px, 90%);
      margin: auto;
    }

    .section {
      padding: 95px 0;
    }

    .section-title {
      text-align: center;
      margin-bottom: 55px;
    }

    .section-title span {
      display: block;
      color: var(--cyan);
      letter-spacing: 8px;
      font-size: 13px;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .section-title h2 {
      font-size: clamp(38px, 6vw, 66px);
      line-height: 1.05;
      font-weight: 800;
    }

    .gradient-text {
      background: linear-gradient(90deg, #fff, #8fe3ff, #16b9ef);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .section-title p {
      color: var(--muted);
      max-width: 750px;
      margin: 18px auto 0;
    }

    /* NAVBAR */

    header {
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 999;
      background: rgba(5, 19, 32, .78);
      backdrop-filter: blur(15px);
      border-bottom: 1px solid rgba(255,255,255,.06);
    }

    nav {
      min-height: 82px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 30px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 13px;
      font-size: 25px;
      font-weight: 800;
      letter-spacing: 1px;
    }

    .logo-icon {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      border: 1px solid rgba(57,204,255,.5);
      display: grid;
      place-items: center;
      color: var(--cyan);
      box-shadow: 0 0 25px rgba(0,181,255,.2);
      font-size: 25px;
    }

    .logo strong {
      color: var(--cyan);
    }

    .nav-links {
      display: flex;
      gap: 35px;
      align-items: center;
      list-style: none;
    }

    .nav-links a {
      font-weight: 600;
      font-size: 14px;
      color: #c9d9e7;
      transition: .3s;
    }

    .nav-links a:hover {
      color: var(--cyan);
    }

    .btn {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      gap: 10px;
      padding: 14px 27px;
      border-radius: 40px;
      background: linear-gradient(135deg, #159cd8, #59bdeb);
      color: white;
      font-weight: 700;
      border: 0;
      cursor: pointer;
      box-shadow: 0 10px 35px rgba(25,184,242,.18);
      transition: .3s;
    }

    .btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 14px 45px rgba(25,184,242,.3);
    }

    /* HERO */

    .hero {
      min-height: 720px;
      padding-top: 150px;
      display: flex;
      align-items: center;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to bottom, rgba(7,19,31,.45), var(--bg)),
        url("images/marine-bg.jpg") center/cover no-repeat;
      opacity: .32;
      z-index: -2;
    }

    .hero::after {
      content: "";
      width: 600px;
      height: 600px;
      position: absolute;
      border-radius: 50%;
      background: rgba(26,184,242,.1);
      filter: blur(100px);
      top: -200px;
      right: -150px;
      z-index: -1;
    }

    .hero-label {
      color: var(--cyan);
      letter-spacing: 10px;
      font-weight: 700;
      font-size: 15px;
    }

    .hero h1 {
      font-size: clamp(55px, 9vw, 100px);
      line-height: 1;
      margin: 20px 0 25px;
    }

    .hero p {
      max-width: 820px;
      margin: auto;
      color: #b7cada;
      font-size: 18px;
    }

    .anchor-divider {
      margin: 45px auto;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 18px;
      color: var(--cyan);
      font-size: 28px;
    }

    .anchor-divider::before,
    .anchor-divider::after {
      content: "";
      width: 110px;
      height: 2px;
      background: var(--cyan);
    }

    /* SERVICE CARDS */

    .service-grid {
      display: grid;
      grid-template-columns: repeat(4,1fr);
      gap: 22px;
    }

    .service-card {
      border-radius: 25px;
      overflow: hidden;
      background: var(--card);
      border: 1px solid var(--line);
      position: relative;
      transition: .4s;
    }

    .service-card:hover {
      transform: translateY(-12px);
      border-color: rgba(25,184,242,.6);
      box-shadow: 0 25px 70px rgba(0,0,0,.35);
    }

    .service-card img {
      height: 220px;
      width: 100%;
      object-fit: cover;
      transition: .5s;
    }

    .service-card:hover img {
      transform: scale(1.07);
    }

    .service-content {
      padding: 24px;
    }

    .service-content h3 {
      margin-bottom: 8px;
      font-size: 19px;
    }

    .service-content p {
      color: var(--muted);
      font-size: 13px;
    }

    /* STATS */

    .stats {
      background: rgba(8,27,44,.72);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4,1fr);
      text-align: center;
    }

    .stat {
      padding: 50px 20px;
      border-right: 1px solid var(--line);
    }

    .stat:last-child {
      border: 0;
    }

    .stat h3 {
      color: var(--cyan);
      font-size: 48px;
      line-height: 1;
    }

    .stat p {
      color: var(--muted);
      margin-top: 12px;
    }

    /* TABLE */

    .table-wrap {
      overflow-x: auto;
      background: var(--card2);
      border: 1px solid var(--line);
      border-radius: 22px;
      padding: 10px;
    }

    table {
      width: 100%;
      border-collapse: collapse;
      min-width: 700px;
    }

    th,
    td {
      padding: 18px 20px;
      text-align: left;
      border-bottom: 1px solid rgba(255,255,255,.08);
    }

    th {
      color: var(--cyan);
      background: rgba(25,184,242,.07);
    }

    td {
      color: #bdd0df;
    }

    /* BRANDS */

    .brands {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: center;
    }

    .brand {
      padding: 10px 18px;
      border: 1px solid var(--line);
      border-radius: 30px;
      color: #bcd1e1;
      background: rgba(255,255,255,.025);
      transition: .3s;
    }

    .brand:hover {
      border-color: var(--cyan);
      color: white;
      transform: translateY(-3px);
    }

    /* SPLIT SECTION */

    .split {
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 55px;
      align-items: center;
    }

    .split-image {
      border-radius: 28px;
      overflow:NONE;
      border: 1px solid var(--line);
      box-shadow: 0 25px 60px rgba(0,0,0,.35);
	  
    }

    .split-image img {
      width: 100%;
      min-height: 420px;
      object-fit:COVER;
    }

    .split-content h2 {
      font-size: 44px;
      line-height: 1.15;
      margin-bottom: 20px;
    }

    .split-content p {
      color: var(--muted);
      margin-bottom: 20px;
    }

    .checks {
      list-style: none;
      display: grid;
      gap: 12px;
      margin: 25px 0;
    }

    .checks li::before {
      content: "";
      color: var(--cyan);
      margin-right: 12px;
      font-weight: 800;
    }

    /* INSPECTION */

    .inspection-grid {
      display: grid;
      grid-template-columns: repeat(2,1fr);
      gap: 15px;
    }

    .inspection-item {
      padding: 18px;
      border: 1px solid var(--line);
      border-radius: 15px;
      background: rgba(255,255,255,.025);
    }

    .inspection-item span {
      color: var(--cyan);
      margin-right: 8px;
    }

    /* GALLERY */

    .gallery {
      display: grid;
      grid-template-columns: repeat(3,1fr);
      gap: 20px;
    }

    .gallery-item {
      overflow: hidden;
      border-radius: 20px;
      border: 1px solid var(--line);
      cursor: pointer;
    }

    .gallery-item img {
      height: 260px;
      width: 100%;
      object-fit: cover;
      transition: .5s;
    }

    .gallery-item:hover img {
      transform: scale(1.08);
    }

    /* SPECIAL PRODUCTS */

    .product-grid {
      display: grid;
      grid-template-columns: repeat(3,1fr);
      gap: 25px;
    }

    .product {
      background: linear-gradient(
        145deg,
        rgba(20,50,75,.75),
        rgba(7,24,39,.92)
      );
      border: 1px solid var(--line);
      border-radius: 22px;
      overflow: hidden;
      transition: .35s;
    }

    .product:hover {
      transform: translateY(-8px);
      border-color: rgba(25,184,242,.5);
    }

    .product img {
      width: 100%;
      height: 240px;
      object-fit: cover;
    }

    .product-info {
      padding: 25px;
    }

    .product-info small {
      color: var(--cyan);
      letter-spacing: 2px;
    }

    .product-info h3 {
      margin: 8px 0 12px;
    }

    .product-info p {
      color: var(--muted);
      font-size: 14px;
    }

    /* CONTACT */

    .contact-box {
      padding: 55px;
      border-radius: 30px;
      background:
        linear-gradient(135deg,
        rgba(24, 72, 105, .55),
        rgba(8, 25, 41, .9)
      );
      border: 1px solid var(--line);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.3fr;
      gap: 50px;
    }

    .contact-info h2 {
      font-size: 44px;
      line-height: 1.15;
    }

    .contact-info p {
      color: var(--muted);
      margin-top: 18px;
    }

    form {
      display: grid;
      gap: 15px;
    }

    .input-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 15px;
    }

    input,
    textarea,
    select {
      width: 100%;
      border: 1px solid rgba(255,255,255,.12);
      outline: none;
      background: rgba(255,255,255,.05);
      color: white;
      padding: 15px 17px;
      border-radius: 12px;
      font-family: inherit;
    }

    textarea {
      min-height: 130px;
      resize: vertical;
    }

    input:focus,
    textarea:focus,
    select:focus {
      border-color: var(--cyan);
    }

    /* FOOTER */

    footer {
      padding: 60px 0 30px;
      border-top: 1px solid var(--line);
      background: #05101a;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 40px;
    }

    footer h3 {
      margin-bottom: 15px;
    }

    footer p,
    footer li {
      color: var(--muted);
      font-size: 14px;
    }

    footer ul {
      list-style: none;
      display: grid;
      gap: 8px;
    }

    .copyright {
      border-top: 1px solid rgba(255,255,255,.06);
      margin-top: 40px;
      padding-top: 25px;
      text-align: center;
      color: #70889b;
      font-size: 13px;
    }

    /* REVEAL */

    .reveal {
      opacity: 0;
      transform: translateY(35px);
      transition: .8s ease;
    }

    .reveal.active {
      opacity: 1;
      transform: translateY(0);
    }

    /* RESPONSIVE */

    @media(max-width: 950px) {
      .service-grid,
      .product-grid {
        grid-template-columns: repeat(2,1fr);
      }

      .split,
      .contact-grid {
        grid-template-columns: 1fr;
      }

      .nav-links {
        display: none;
      }
    }

    @media(max-width: 650px) {
      .section {
        padding: 70px 0;
      }

      .service-grid,
      .product-grid,
      .gallery,
      .inspection-grid,
      .stats-grid,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .stat {
        border-right: 0;
        border-bottom: 1px solid var(--line);
      }

      .input-row {
        grid-template-columns: 1fr;
      }

      .contact-box {
        padding: 30px 20px;
      }

      .logo {
        font-size: 19px;
      }
    }
