      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      body {
        font-family: "Open Sans", sans-serif;
        color: #1f2937;
        background: #ffffff;
        line-height: 1.7;
        overflow-x: hidden;
      }

      :root {
        --primary: #0b2c5d;
        --secondary: #0f6dda;
        --light: #f4f7fb;
        --dark: #071c3b;
        --white: #ffffff;
        --gray: #6b7280;
      }

      h1,
      h2,
      h3,
      h4,
      h5 {
        font-family: "Montserrat", sans-serif;
        font-weight: 700;
        line-height: 1.2;
      }

      .container {
        width: 90%;
        max-width: 1200px;
        margin: auto;
      }

      header {
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 1000;
        background: rgba(11, 44, 93, 0.95);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      }

      .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 18px 0;
      }

      .logo {
        display: flex;
        align-items: center;
        gap: 14px;
      }

      .logo img {
        width: 55px;
        height: 55px;
        object-fit: contain;
      }

      .logo-text h2 {
        color: white;
        font-size: 28px;
        font-weight: 800;
      }

      .logo-text p {
        color: rgba(255, 255, 255, 0.7);
        font-size: 11px;
        letter-spacing: 1px;
      }

      .nav-links {
        display: flex;
        gap: 30px;
        list-style: none;
      }

      .nav-links a {
        text-decoration: none;
        color: white;
        font-weight: 600;
        transition: 0.3s;
        font-size: 15px;
      }

      .nav-links a:hover {
        color: #66b3ff;
      }

      .hero {
        min-height: 100vh;
        background: linear-gradient(rgba(5, 17, 37, 0.75), rgba(5, 17, 37, 0.8)),
          url("assets/hero-shipping.png");
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: center;
        position: relative;
        color: white;
      }

      .hero::before {
        content: "";
        position: absolute;
        width: 600px;
        height: 600px;
        background: rgba(15, 109, 218, 0.15);
        border-radius: 50%;
        top: -200px;
        right: -150px;
        filter: blur(40px);
      }

      .hero-content {
        position: relative;
        z-index: 2;
        max-width: 760px;
      }

      .hero-content h1 {
        font-size: 68px;
        margin-bottom: 20px;
        text-transform: uppercase;
      }

      .hero-content h1 span {
        color: #4ea2ff;
      }

      .hero-content p {
        font-size: 20px;
        color: rgba(255, 255, 255, 0.85);
        margin-bottom: 35px;
      }

      .hero-buttons {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
      }

      .btn {
        padding: 15px 34px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 700;
        transition: 0.3s;
        display: inline-block;
      }

      .btn-primary {
        background: var(--secondary);
        color: white;
      }

      .btn-primary:hover {
        background: #0b5ec0;
        transform: translateY(-2px);
      }

      .btn-outline {
        border: 2px solid white;
        color: white;
      }

      .btn-outline:hover {
        background: white;
        color: var(--primary);
      }

      section {
        padding: 100px 0;
      }

      .section-title {
        text-align: center;
        margin-bottom: 60px;
      }

      .section-title h2 {
        font-size: 42px;
        color: var(--primary);
        margin-bottom: 15px;
      }

      .section-title p {
        color: var(--gray);
        max-width: 700px;
        margin: auto;
      }

      .about-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 60px;
        align-items: center;
      }

      .about-image img {
        width: 100%;
        border-radius: 20px;
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
      }

      .about-content h3 {
        font-size: 38px;
        color: var(--primary);
        margin-bottom: 25px;
      }

      .about-content p {
        margin-bottom: 20px;
        color: #4b5563;
      }

      .stats {
        margin-top: 30px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
      }

      .stat-box {
        background: var(--light);
        padding: 25px;
        border-radius: 16px;
        text-align: center;
      }

      .stat-box h4 {
        font-size: 34px;
        color: var(--secondary);
        margin-bottom: 5px;
      }

      .services {
        background: var(--light);
      }

      .services-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
      }

      .service-card {
        background: white;
        padding: 40px 35px;
        border-radius: 20px;
        transition: 0.4s;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      }

      .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
      }

      .service-icon {
        width: 75px;
        height: 75px;
        border-radius: 18px;
        background: linear-gradient(135deg, var(--primary), var(--secondary));
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 30px;
        margin-bottom: 25px;
      }

      .service-card h3 {
        color: var(--primary);
        margin-bottom: 18px;
        font-size: 24px;
      }

      .why-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
        align-items: center;
      }

      .why-image img {
        width: 100%;
        border-radius: 24px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
      }

      .feature-item {
        display: flex;
        gap: 20px;
        margin-bottom: 35px;
      }

      .feature-icon {
        min-width: 65px;
        height: 65px;
        background: linear-gradient(135deg, var(--primary), var(--secondary));
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 26px;
      }

      .feature-text h4 {
        color: var(--primary);
        margin-bottom: 8px;
        font-size: 22px;
      }

      .vision {
        background: linear-gradient(
            rgba(11, 44, 93, 0.92),
            rgba(11, 44, 93, 0.92)
          ),
          url("assets/vision-mission.png");
        background-size: cover;
        background-position: center;
        color: white;
      }

      .vision-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
      }

      .vision-box {
        background: rgba(255, 255, 255, 0.06);
        padding: 45px;
        border-radius: 20px;
        backdrop-filter: blur(8px);
        border: 1px solid rgba(255, 255, 255, 0.08);
      }

      .vision-box h3 {
        font-size: 32px;
        margin-bottom: 20px;
      }

      .vision-box ul {
        padding-left: 20px;
      }

      .vision-box li {
        margin-bottom: 15px;
      }

      .contact {
        background: #071a35;
        color: white;
      }

      .contact-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 60px;
        align-items: center;
      }

      .contact-info h2 {
        font-size: 42px;
        margin-bottom: 25px;
      }

      .contact-item {
        margin-bottom: 18px;
        font-size: 18px;
      }

      .contact-form {
        background: rgba(255, 255, 255, 0.06);
        padding: 40px;
        border-radius: 20px;
        backdrop-filter: blur(10px);
      }

      .contact-form input,
      .contact-form textarea {
        width: 100%;
        padding: 16px;
        margin-bottom: 18px;
        border: none;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.1);
        color: white;
        font-size: 15px;
      }

      .contact-form input::placeholder,
      .contact-form textarea::placeholder {
        color: rgba(255, 255, 255, 0.7);
      }

      .contact-form button {
        width: 100%;
        border: none;
        cursor: pointer;
      }

      footer {
        background: #04101f;
        color: rgba(255, 255, 255, 0.7);
        text-align: center;
        padding: 25px;
        font-size: 14px;
      }

      @media (max-width: 991px) {
        .hero-content h1 {
          font-size: 52px;
        }

        .about-grid,
        .why-grid,
        .vision-grid,
        .contact-grid,
        .services-grid {
          grid-template-columns: 1fr;
        }

        .stats {
          grid-template-columns: 1fr;
        }
      }

      @media (max-width: 768px) {
        .navbar {
          flex-direction: column;
          gap: 20px;
        }

        .nav-links {
          flex-wrap: wrap;
          justify-content: center;
          gap: 15px;
        }

        .hero-content h1 {
          font-size: 42px;
        }

        .hero-content p {
          font-size: 17px;
        }

        .section-title h2 {
          font-size: 32px;
        }

        .about-content h3,
        .contact-info h2 {
          font-size: 32px;
        }
      }
      
#form-status{
    margin-top:20px;
    display:none;
    padding:16px 20px;
    border-radius:10px;
    font-size:14px;
    font-weight:600;
    animation:fadeIn 0.3s ease;
}

#form-status.success{
    background:#16a34a;
    color:#ffffff;
    border-left:5px solid #22c55e;
}

#form-status.error{
    background:#dc2626;
    color:#ffffff;
    border-left:5px solid #ef4444;
}

@keyframes fadeIn{
    from{
        opacity:0;
        transform:translateY(10px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}
