/* ========================= */
  /* RESET */
  /* ========================= */

  *{
    margin:0;
    padding:0;
    box-sizing:border-box;
  }

  html{
    scroll-behavior:smooth;
  }
body{
    font-family:'Inter',sans-serif;
    background:black;
    color:white;
    overflow-x:hidden;
}


  /* ========================= */
  /* CONTAINER */
  /* ========================= */

  .container{
    width:90%;
    max-width:1280px;
    margin:auto;
  }


  /* ========================= */
  /* NAVBAR */
  /* ========================= */

  .navbar{
    position:fixed;
    top:0;
    left:0;

    width:100%;

    z-index:999;

    background:rgba(8,19,31,0.58);

    backdrop-filter:blur(16px);

    border-bottom:1px solid rgba(255,255,255,0.08);
  }

  .nav-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:10px 0;
  }

  .logo-area{
    display:flex;
    align-items:center;
    gap:14px;
  }

  .logo-area img{
    width:62px;
    height:62px;
  }

  .logo-text h1{
    font-size:24px;

    font-weight:900;

    letter-spacing:1px;
  }

  .logo-text p{
    color:#9ca3af;

    font-size:11px;

    letter-spacing:4px;

    margin-top:4px;
  }

.hero-btn-outline{

  display:inline-flex;

  align-items:center;

  justify-content:center;

  padding:18px 42px;

  border-radius:18px;

  border:1px solid rgba(255,255,255,0.18);

  background:rgba(255,255,255,0.03);

  color:#ffffff;

  text-decoration:none;

  font-weight:600;

  font-size:18px;

  backdrop-filter:blur(10px);

  transition:0.3s;
}

.hero-btn-outline:hover{

  background:rgba(255,177,0,0.12);

  border-color:#ffb100;

  color:#ffb100;
}
  /* ========================= */
  /* NAV MENU */
  /* ========================= */

  .mobile-menu-btn{
    display:none;

    font-size:30px;

    color:white;

    cursor:pointer;

    user-select:none;
  }

  .nav-menu{
    display:flex;
    gap:30px;
  }

  .nav-menu a{
    text-decoration:none;

    color:white;

    font-size:15px;

    transition:0.3s ease;
  }

  .nav-menu a:hover{
    color:#f7a600;
  }

  .nav-menu a.active{
    color:#f7a600;
  }

  /* ========================= */
  /* LANGUAGE SWITCHER */
  /* ========================= */

  .right-navbar{

    display:flex;

    align-items:center;

    gap:28px;
  }

  .language-switcher{

    display:flex;

    align-items:center;

    gap:8px;

    font-size:15px;

    font-weight:600;
  }

  .lang{

    cursor:pointer;

    color:rgba(255,255,255,0.55);

    transition:0.3s;
  }

  .lang:hover{
    color:#f59e0b;
  }

  .lang.active{

    color:#f59e0b;

    font-weight:700;
  }

  /* ========================= */
  /* HERO */
  /* ========================= */

  .hero{
    min-height:100vh;

    position:relative;

    display:flex;
    align-items:center;
  background:
  linear-gradient(
    rgba(8,19,31,0.38),
    rgba(8,19,31,0.62)
  ),

    url('./images/hero-bg.png');

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;
  }

  .hero-content{
    position:relative;
    z-index:2;
  }

  .hero-text{
    max-width:760px;
  }

  .hero-badge{
    display:inline-block;

    padding:12px 24px;

    border-radius:50px;

    background:rgba(245,158,11,0.06);

    border:1px solid rgba(245,158,11,0.12);

    color:#f59e0b;

    font-size:13px;
    font-weight:700;

    margin-bottom:30px;
  }

  .hero-text h1{

    font-size:74px;

    line-height:0.95;

    font-weight:900;

    margin-bottom:28px;
  }

  .hero-text h1 span{
    color:#f59e0b;
  }

  .hero-text h1 .white-text{
    color:white;
  }

  .hero-text p{

  max-width:540px;
    color:#d1d5db;

    font-size:20px;

    line-height:1.7;

    margin-bottom:40px;
  }

  .hero-buttons{
    display:flex;
    gap:20px;
  }

  .btn-primary{
    background:#f59e0b;

    color:#08131f;

  padding:15px 32px;

    border-radius:14px;

    text-decoration:none;

    font-weight:700;

    transition:0.3s;
  }

  .btn-primary:hover{
    transform:translateY(-4px);
  }

  .btn-secondary{
  border:1px solid rgba(255,255,255,0.28);

    color:white;

    padding:16px 34px;

    border-radius:14px;

    text-decoration:none;

    font-weight:700;

    transition:0.3s;
  }

  .btn-secondary:hover{
  border-color:rgba(245,158,11,0.45);

    color:#f59e0b;
  }


  /* ========================= */
  /* GENERAL SECTION */
  /* ========================= */

  section{
    padding:120px 0;
  }

  .section-title{
    text-align:center;

    margin-bottom:80px;
  }

  .section-tag{
    display:inline-block;

    padding:12px 22px;

    border-radius:50px;

    background:rgba(245,158,11,0.08);

    border:1px solid rgba(245,158,11,0.18);

    color:#f59e0b;

    margin-bottom:25px;

    font-size:13px;

    font-weight:700;
  }

.section-title h2{

    font-size:40px;

    line-height:1.15;

    max-width:980px;

    margin:auto;
}

  /* ========================= */
  /* ABOUT */
  /* ========================= */

  .about{
    background:#0d1b2a;
    padding-top:95px;
      padding:80px 0 80px;
  }

  .about-grid{
    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;
  }

  .about-text h2{
    font-size:56px; 

    line-height:1.2;

    margin-bottom:30px;
  }

  .about-text p{
    color:#cbd5e1;

    line-height:1.9;

    margin-bottom:22px;
  }

  .about-image img{

    width:100%;

    height:650px;

    object-fit:cover;

    border-radius:30px;

    filter:
    brightness(0.72)
    contrast(1.08)
    saturate(0.92);

    transition:0.4s;
  }
  .about-image img:hover{

    filter:
    brightness(0.88)
    contrast(1.12)
    saturate(1);

    transform:scale(1.01);
  }
  /* ========================= */
  /* VISION MISSION */
  /* ========================= */

  .vision-mission{

   padding:80px 0;

    background:#031427;
  }

  .section-title.center{

    text-align:center;

    margin-bottom:50px;
  }

  .certification-heading{

  font-size:58px;

  line-height:1.15;

  max-width:900px;

  margin:auto;
}
  .section-title.center h2{

    max-width:950px;

    margin:auto;

    font-size:clamp(30px,3vw,42px);

    line-height:1.15;

    font-weight:800;
  }

  .vm-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:30px;
  }

  .vm-card{

    background:
    rgba(255,255,255,0.04);

    border:
    1px solid rgba(255,255,255,0.08);

    border-radius:28px;

    padding:45px;

    transition:0.35s;
  }

  .vm-card:hover{

    transform:translateY(-6px);

    border-color:#f59e0b;
  }

  .vm-card h3{

    font-size:34px;

    margin-bottom:24px;

    color:#f59e0b;
  }

  .vm-card p{

    color:#d1d5db;
  max-width:520px;
    line-height:1.9;

    font-size:16px;
  }

  .vm-card ul{

    padding-left:18px;
  }

  .vm-card li{

    color:#d1d5db;

    line-height:1.9;

    margin-bottom:16px;

    font-size:16px;
  }

  .vm-card li::marker{

    color:#f59e0b;
  }
  /* ========================= */
  /* SERVICES */
  /* ========================= */

  /* SERVICES SPACING */

.services{
background:#08131f;
position:relative;
z-index:2;
  padding:80px 0 80px !important;
}

  .service-grid{
    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;
  }

  .service-card{

    background:rgba(255,255,255,0.04);

    border:1px solid rgba(255,255,255,0.08);

    padding:55px 45px;

    min-height:260px;

    border-radius:28px;

    transition:0.35s;
  }

  .service-card:hover{

    transform:translateY(-8px);

    border-color:#f59e0b;
  }

  .service-card h3{

    font-size:30px;

    line-height:1.3;

    margin-bottom:18px;

    font-weight:800;
  }

  .service-card p{

    color:#d7dde5;

    font-size:18px;

    line-height:1.8;

    max-width:520px;
  }

  /* ========================= */
  /* PRODUCTS */
  /* ========================= */

  .products-section{

  padding:80px 0 80px;

    background:#0d1b2a;
  }

.products-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:28px;

    margin-top:70px;
}

  .product-card{

    position:relative;

    overflow:hidden;

    min-height:560px;

    border-radius:28px;

    border:1px solid rgba(255,255,255,0.08);

    transition:0.4s;
  }

  .product-card:hover{

    transform:translateY(-10px);
  }

  .product-card img{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;   

    object-fit:cover;

    transition:0.5s;

    filter:
    saturate(0.88)
    contrast(0.92)
    brightness(0.92);
  }

  .product-card:hover img{

    transform:scale(1.06);
  }

  .product-overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
    to top,
    rgba(0,0,0,0.94) 12%,
    rgba(0,0,0,0.38) 58%,
    rgba(0,0,0,0.12) 100%
    );
  }

  .product-content{

    position:absolute;

    bottom:0;

    left:0;

    width:100%;

    padding:34px;
  }

  .product-content h3{

    font-size:30px;

    line-height:1.3;

    margin-bottom:14px;

    font-weight:800;

    color:white;
  }

  .product-content p{

    color:#d7dde5;

    font-size:17px;

    line-height:1.8;
  }


  /* ========================= */
  /* WHY US */
  /* ========================= */

  .why-grid{
    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;
  }

  .why-card{
    background:rgba(255,255,255,0.04);

    border:1px solid rgba(255,255,255,0.08);

    padding:35px;

    border-radius:24px;

    font-size:22px;

    font-weight:700;

    transition:0.3s;
  }

  .why-card:hover{
    border-color:#f59e0b;

    transform:translateY(-6px);
  }


  /* ========================= */
/* FOOTER */
/* ========================= */

.footer{

  position:relative;

  background:transparent;

  margin-top:-120px;

  z-index:2;
}

/* BANNER */

.footer-banner{

  position:relative;

  height:72vh;

  min-height:650px;

  overflow:hidden;
}

.footer-banner img{
  width:100%;
  height:100%;
  object-fit:cover;

  filter:
  brightness(0.38)
  contrast(1.08)
  saturate(0.9);
}

.footer-overlay{

  position:absolute;

  inset:0;

  background:linear-gradient(
    to bottom,
    rgba(0,0,0,0.10) 0%,
    rgba(0,0,0,0.18) 45%,
    rgba(0,0,0,0.08) 75%,
    rgba(0,0,0,0) 100%
  );
}

.footer-banner::after{

  content:"";

  position:absolute;

  left:0;
  right:0;
  bottom:0;

  height:420px;

  background:linear-gradient(
    to bottom,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,0.12) 35%,
    rgba(0,0,0,0.28) 70%,
    rgba(0,0,0,0.45) 100%
  );

  z-index:1;
}
.footer-banner-content{

  position:absolute;
  inset:0;

  display:flex;
  flex-direction:column;

  justify-content:center;
  align-items:center;

  text-align:center;

  padding:20px;

  transform:translateY(-65px);
}

.footer-banner-content h2{

  font-size:40px;

  line-height:1.08;

  max-width:760px;

  margin-bottom:20px;
}

.footer-banner-content p{
  max-width:620px;

  color:#d1d8e0;

  line-height:1.8;

  font-size:16px;

  margin-bottom:28px;
}

.footer-btn{
  display:inline-flex;

  align-items:center;
  justify-content:center;

  padding:15px 34px;

  background:#ffb100;

  color:#07111d;

  border-radius:999px;

  font-weight:700;

  text-decoration:none;

  transition:0.3s;
}

.footer-btn:hover{
  transform:translateY(-3px);
}

/* MAIN FOOTER */

.footer-main{

  margin-top:-220px;

  position:relative;

  z-index:5;
}

.footer-grid{

background:rgba(24, 3, 21, 0.38);

  border:1px solid rgba(255,255,255,0.06);

  border-radius:30px;

  padding:55px;

  display:grid;

  grid-template-columns:1.3fr 1fr 1fr 1fr;

  gap:50px;

  backdrop-filter:blur(18px);

box-shadow:
0 20px 80px rgba(0,0,0,0.35);
}

.footer-brand h3{
  font-size:28px;

  color:#ffb100;

  margin-bottom:20px;
}

.footer-brand p{
  color:#9eb0c4;

  line-height:1.9;

  font-size:16px;

  max-width:260px;
}

.footer-grid h4{
  color:#ffb100;

  margin-bottom:24px;

  font-size:18px;
}

.footer-grid ul{
  list-style:none;
}

.footer-grid li{
  margin-bottom:16px;

  color:#c7d1dc;

  line-height:1.7;

  font-size:15px;
}

.footer-grid a{
  color:#c7d1dc;

  text-decoration:none;

  transition:0.3s;
}

.footer-grid a:hover{
  color:#ffb100;
}

/* BOTTOM */

.footer-bottom{
  display:flex;

  justify-content:space-between;
  align-items:center;

  padding:24px 6px;

  margin-top:18px;
}

.footer-bottom p{
  color:#7d8ea3;

  font-size:12px;

  margin:0;
}

.footer-credit{
  letter-spacing:1px;
}

/* MOBILE */

@media(max-width:768px){

  .footer-banner{
    height:300px;
  }

  .footer-banner-content h2{
    font-size:34px;
  }

  .footer-banner-content p{
    font-size:14px;
  }

  .footer-grid{
    grid-template-columns:1fr;

    padding:34px 28px;

    gap:30px;
  }

  .footer-main{
      margin-top:-45px;
  }

  .footer-bottom{
    flex-direction:column;

    gap:8px;

    text-align:center;
  }
}
  /* ========================= */
/* WHY US */
/* ========================= */

.why-section{

     padding: 80px 0 80px !important;

  background:linear-gradient(to bottom,#031225,#04172d);
}

.why-top{

  display:flex;

  justify-content:center;

  align-items:center;

  text-align:center;

  margin-bottom:50px;
}

.why-heading{

  font-size:48px;

  line-height:1.08;

  max-width:620px;
}

.why-description{

  max-width:360px;

  color:#a8b4c2;

  line-height:1.7;

  font-size:15px;
}

.why-grid{

  display:grid;

  grid-template-columns:repeat(4,1fr);

  gap:24px;

  margin-bottom:40px;
}

.why-card{

  background:#0b1f38;

  border:1px solid rgba(255,255,255,0.08);

  border-radius:24px;

  padding:34px 28px;

  transition:0.3s;
}

.why-card:hover{

  transform:translateY(-6px);

  border-color:#ffb100;
}

.why-icon{

  font-size:34px;

  margin-bottom:26px;
}

.why-card h3{

  font-size:30px;

  line-height:1.2;

  margin-bottom:18px;
}

.why-card p{

  color:#aab6c3;

  line-height:1.8;

  font-size:15px;
}


/* SHIP SHOWCASE */

.ship-showcase{

  display:grid;

  grid-template-columns:1fr 1fr;

  gap:24px;
}

.ship-card{

  position:relative;

  overflow:hidden;

  border-radius:24px;

  height:380px;
}

.ship-card img{

  width:100%;

  height:100%;

  object-fit:cover;

  transition:0.5s;
}

.ship-card:hover img{

  transform:scale(1.05);
}

.ship-overlay{

  position:absolute;

  inset:0;

  display:flex;

  flex-direction:column;

  justify-content:flex-end;

  align-items:flex-start;

  padding:34px;

  background:linear-gradient(
    to top,
    rgba(0,0,0,0.88),
    rgba(0,0,0,0.1)
  );
}

.ship-overlay span{

  color:#ffb100;

  font-size:13px;

  letter-spacing:2px;

  margin-bottom:16px;
}

.ship-overlay h3{

  font-size:30px;

  line-height:1.1;

  margin-bottom:18px;

  max-width:420px;
}

.ship-overlay p{

  color:#d1d8e0;

  line-height:1.7;

  max-width:360px;

  font-size:14px;
}
  /* ========================= */
  /* CERTIFICATION */
  /* ========================= */

  .certification-section{

    padding:70px 0;

    background:#081a2f;
  }

 .certification-wrapper{

  margin-top:70px;

  display:grid;

  grid-template-columns:1.1fr 0.9fr;

  gap:60px;

  align-items:stretch;
}

.certification-content{

  background:rgba(255,255,255,0.03);

  border:1px solid rgba(255,255,255,0.08);

  box-shadow:0 0 0 1px rgba(255,255,255,0.03) inset;

  border-radius:32px;

  padding:50px;

  height:100%;

  display:flex;

  flex-direction:column;

  justify-content:center;
}

  .cert-title{

    font-size:38px;

    line-height:1.3;

    margin-bottom:24px;

    color:#fff;

    font-weight:800;
  }

  .cert-title{

   font-size:24px !important;

  line-height:1.35 !important;

  font-weight:700 !important;

  max-width:520px;

  padding-top:12px;
}
  .cert-desc{

    color:#c7d1dc;

    line-height:1.8;

    margin-bottom:40px;

      font-size:15px;
  }

  .cert-info{

    display:flex;

    flex-direction:column;

    gap:28px;
  }

  .cert-item span{

    display:block;

    color:#f59e0b;

    font-size:14px;

    font-weight:700;

    letter-spacing:1px;

    margin-bottom:10px;

    text-transform:uppercase;
  }

  .cert-item p{

    color:#fff;

    line-height:1.8;

   font-size:15px;

  }

.certificate-image{

  background:rgba(255,255,255,0.03);

  border:1px solid rgba(255,255,255,0.08);

  border-radius:28px;

  padding:24px;

  overflow:hidden;

  display:flex;

  align-items:flex-start;

  justify-content:center;
}

.certificate-image img{

  width:100%;

  max-width:620px;

  height:auto;

  display:block;

  margin:auto;

  object-fit:contain;

  opacity:0.92;

  padding:0;

  border-radius:12px;

  filter:
  brightness(0.96)
  contrast(1);
}
.email-break{

  word-break:break-word;
}

/* ========================= */
/* WHY US */
/* ========================= */

.why-heading{

  font-size:40px;

  line-height:1.15;

  max-width:980px;

  margin:auto;
}

.why-grid{

  margin-top:70px;

  display:grid;

  grid-template-columns:repeat(4,1fr);

  gap:28px;
}

.why-card{

  background:rgba(255,255,255,0.03);

  border:1px solid rgba(255,255,255,0.08);

  border-radius:28px;

  padding:38px;

  transition:0.4s;
}

.why-card:hover{

  transform:translateY(-8px);

  border-color:#f59e0b;
}

.why-icon{

  width:60px;

  height:60px;

  border-radius:50%;

  background:rgba(245,158,11,0.12);

  border:1px solid rgba(245,158,11,0.3);

  display:flex;

  align-items:center;

  justify-content:center;

  font-size:24px;

  margin-bottom:24px;
}

.why-card h3{

  font-size:22px;

  line-height:1.35;

  margin-bottom:18px;

  color:#fff;
}
.why-card p{

  color:#c7d1dc;

  line-height:1.9;

  font-size:16px;

  font-weight:400;
}



/* ========================= */
/* CONTACT */
/* ========================= */

.contact-section{

  position:relative;

  z-index:2;

  padding:70px 0 0;

  background:transparent;
}

.contact-wrapper{

  display:grid;

  grid-template-columns:1fr 1fr;

  gap:70px;

align-items:flex-start;
}

.contact-heading{

  font-size:58px;

  line-height:1.08;

  margin:26px 0;

  max-width:620px;
}

.contact-text{

  color:#c7d1dc;

  line-height:1.9;

  max-width:560px;

  margin-top:10px;

  margin-bottom:34px;

  font-size:16px;
}

.contact-btn{

  display:inline-flex;

  align-items:center;

  justify-content:center;
margin-top:10px;
  padding:18px 34px;

  border-radius:50px;

  background:#f59e0b;

  color:#fff;

  font-weight:700;

  transition:0.3s;
}

.contact-btn:hover{

  transform:translateY(-4px);
}

.contact-info{

  background:rgba(255,255,255,0.03);

  border:1px solid rgba(255,255,255,0.08);

  border-radius:30px;

  padding:50px;
}

.contact-item{

  margin-bottom:34px;
}

.contact-item:last-child{

  margin-bottom:0;
}

.contact-item span{

  display:block;

  color:#f59e0b;

  font-size:14px;

  font-weight:700;

  letter-spacing:1px;

  margin-bottom:14px;
}

.contact-item p{

  color:#fff;

  line-height:1.9;

  font-size:17px;
}

.email-break{

  word-break:break-word;
    font-size:15px;
}



/* ========================= */
/* TABLET */
/* ========================= */

@media(max-width:991px){

  .why-grid{

    grid-template-columns:repeat(2,1fr);
  }

  .contact-wrapper{

    grid-template-columns:1fr;
  }

  .contact-heading{

    font-size:52px;
  }

}



/* ========================= */
/* MOBILE */
/* ========================= */

@media(max-width:768px){

  .why-grid{

    grid-template-columns:1fr;
  }

  .why-heading{

    font-size:38px;
  }

  .why-card{

    padding:30px;
  }

  .why-card h3{

    font-size:22px;
  }

  .contact-section{

    padding:100px 0;
  }

  .contact-heading{

    font-size:40px;
  }

  .contact-info{

    padding:34px 28px;
  }

  .contact-item p{

    font-size:15px;
  }

  .ship-showcase{

  grid-template-columns:1fr;

  gap:20px;
}

.ship-card{

  height:320px;
}

.ship-overlay{

  padding:24px;
}

.ship-overlay h3{

  font-size:34px;

  max-width:280px;
}

.ship-overlay p{

  font-size:14px;

  max-width:260px;

  line-height:1.6;
}
}
  /* ========================= */
  /* TABLET */
  /* ========================= */

  @media(max-width:991px){

    .certification-wrapper{

      grid-template-columns:1fr;

   gap:80px;
    }

   .cert-title{

  font-size:30px;

  line-height:1.35;

  padding-top:12px;

  margin-bottom:24px;

  color:#fff;

  font-weight:700;

  max-width:520px;
}

  }


  /* ========================= */
  /* MOBILE */
  /* ========================= */

  @media(max-width:768px){

    .certification-content{

      padding:34px 28px;
    }

    .cert-title{

      font-size:28px;
    }

    .cert-desc,
    .cert-item p{

      font-size:15px;

      line-height:1.8;
    }

  }

  /* ========================= */
  /* RESPONSIVE TABLET */
  /* ========================= */

  @media(max-width:992px){

  .hero-text h1{

    font-size:36px;

    line-height:0.95;

    max-width:320px;
  }

    .hero-text p{
      font-size:18px;
        max-width:330px;
    }

  .about-grid,
  .service-grid,
  .why-grid,
  .footer-grid{

    grid-template-columns:1fr;

    gap:20px;
  }

  .products-grid{

    grid-template-columns:1fr;

    gap:24px;
  }
    .section-title h2,
    .about-text h2{
      font-size:px;
    }

    .vision-title{
    font-size:74px;
    line-height:0.95;
    font-weight:900;
    letter-spacing:-2px;
}

  }
/* ========================= */
/* FOOTER */
/* ========================= */

.footer{

  position:relative;

  margin-top:0;

  background:transparent;
  padding-bottom:40px;
}

.footer .container{

  width:100%;

  max-width:1400px;

  margin:auto;

  padding:0 60px;
}

.footer-bottom{

  display:flex;

  justify-content:space-between;

  align-items:center;

  padding:24px 6px;

  margin-top:18px;

  position:relative;

  z-index:5;
}

.footer-bottom p{

  margin:0;

  color:#7f91a6;

  font-size:12px;
}

.footer-credit{

  color:#5f7084;

  font-size:11px;

  letter-spacing:1.5px;

  text-align:right;
}

  /* ========================= */
  /* RESPONSIVE MOBILE */
  /* ========================= */

  @media(max-width:768px){

    .vm-grid{
  align-items:start;
    grid-template-columns:1fr;
      gap:24px;
  }

  .vm-card{

    padding:30px;
  }

  .vm-card h3{

    font-size:28px;
  }

  .vm-card p,
  .vm-card li{

    font-size:15px;

    line-height:1.8;
  }
    /* NAVBAR */

    .mobile-menu-btn{
      display:block;
    }

    .navbar{
      background:rgba(8,19,31,0.82);

      backdrop-filter:blur(14px);
    }

    .nav-wrapper{
      padding:10px 0;
    }

    .logo-area{
      gap:10px;
    }

    .logo-area img{
      width:42px;
      height:42px;
    }

    .logo-text h1{
      font-size:15px;
    }

    .logo-text p{
      font-size:8px;

      letter-spacing:3px;

      margin-top:2px;
    }

    .nav-menu{

      position:absolute;

      top:78px;

      right:14px;

      width:220px;

      background:rgba(8,19,31,0.94);

      backdrop-filter:blur(18px);

      border:1px solid rgba(255,255,255,0.08);

      border-radius:18px;

      padding:10px;

      display:none;

      flex-direction:column;

      gap:4px;

      box-shadow:
      0 20px 40px rgba(0,0,0,0.35);
    }

    .nav-menu.active{
      display:flex;
    }

  .nav-menu a.active{
    color:#f7a600;
  }

    .nav-menu a{

      width:100%;

      padding:14px 16px;

      border-radius:12px;

      font-size:14px;
    }


    /* HERO */

    .hero{

      min-height:100vh;

    padding:70px 0 50px;

      display:flex;

      align-items:flex-start;

      background:
      linear-gradient(
        rgba(8,19,31,0.18),
        rgba(8,19,31,0.50)
      ),

      url('./images/hero-bg.png');

      background-size:cover;

    background-position:74% center;

      background-repeat:no-repeat;
    }

    .hero-content{
      width:100%;

    padding-top:14px;
    }

    .hero-text{
      max-width:100%;

      padding:0 14px;
    }

  .hero-badge{

    font-size:10px;

    padding:10px 18px;

      margin-bottom:18px;
    }

    .hero-text h1{

      font-size:40px;

      line-height:1.0;

      letter-spacing:-2px;

      margin-bottom:22px;
    }

    .hero-text p{
  text-shadow:0 2px 10px rgba(0,0,0,0.35);
      font-size:16px;

      line-height:1.7;

      max-width:100%;

      margin-bottom:30px;
    }

    .hero-buttons{

      display:flex;

      flex-direction:column;

      gap:14px;
    }

    .btn-primary,
    .btn-secondary{

      width:100%;

      text-align:center;

    padding:15px 22px;

      border-radius:16px;

      font-size:15px;
    }


    /* SECTION */

    section{
      padding:80px 0;
    }

    .section-title{
      margin-bottom:45px;
    }

    .section-title h2,
    .about-text h2{

      font-size:34px;

      line-height:1.2;
    }

    .section-tag{

    font-size:11px;

      padding:9px 16px;
    }


    /* GRID */

.about-grid,
.service-grid,
.why-grid,
.footer-grid{

  grid-template-columns:1fr;

  gap:20px;
}

.products-grid{

  grid-template-columns:1fr;

  gap:24px;
}


    /* ABOUT */

    .about-text{
      order:2;
    }

    .about-image{
      order:1;
    }

    .about-image img{

      width:100%;

      height:320px;

      object-fit:cover;

      border-radius:24px;
    }

    .about-text p{

      font-size:15px;

      line-height:1.8;
    }


    /* CARDS */

  .service-card,
  .why-card{

    padding:28px;

    border-radius:22px;
  }

  .product-card{

    min-height:500px;

    border-radius:22px;
  }

    .service-card h3,
    .product-card h3{

      font-size:22px;
    }

    .service-card p{

      font-size:15px;

      line-height:1.7;
    }

.footer .container{

  padding:0 20px;
}

.footer-bottom{

  flex-direction:column;

  gap:8px;

  text-align:center;
}

.footer-credit{

  text-align:center;
} 
  
  }

.transparent-footer{

  background:transparent !important;

  margin-top:-220px;

  position:relative;

  z-index:10;
}

.transparent-footer .footer-grid{

  background:rgba(2,10,20,0.28);

  backdrop-filter:blur(14px);

  -webkit-backdrop-filter:blur(14px);

  border:1px solid rgba(255,255,255,0.05);

  box-shadow:
  0 20px 80px rgba(0,0,0,0.35);
}

.footer{

  background:transparent !important;
}

.products-more{
    text-align:center;
    margin-top:60px;
}

.more-products-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    padding:14px 28px;
    border:1px solid rgba(255,180,0,0.35);
    border-radius:999px;
    color:#ffb400;
    text-decoration:none;
    font-size:18px;
    font-weight:600;
    background:rgba(255,180,0,0.05);
    transition:0.3s ease;
}

.more-products-btn:hover{
    background:#ffb400;
    color:#08131f;
    transform:translateY(-2px);
}

.more-products-btn span{
    transition:0.3s ease;
}

.more-products-btn:hover span{
    transform:translateX(4px);
}