* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #0e2747;
  color: white;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background: #dbe3eb;
}

.navbar nav a {
  margin: 0 15px;
  text-decoration: none;
  color: black;
}

.navbar nav a.active {
  color: #2c66d6;
  font-weight: bold;
}

/* BUTTONS */
.btn-primary {
  background: #1e5bb8;
  color: white;
  border: none;
  padding: 10px 18px;
  cursor: pointer;
}

.btn-secondary {
  border: 2px solid #2ecc71;
  color: #2ecc71;
  background: transparent;
  padding: 10px 18px;
}

/* HERO */
/* HERO FULL REDESIGN */

.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px 60px;
  background: #0f2a44;
  color: white;
  gap: 40px;
}

.hero-left {
  width: 50%;
}

.hero-left h1 {
  font-size: 40px;
  line-height: 1.3;
  margin-bottom: 20px;
}

.hero-left p {
  margin-bottom: 20px;
  color: #cbd5e1;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.btn-primary {
  background: #2563eb;
  color: white;
  padding: 10px 20px;
  border: none;
}

.btn-secondary {
  border: 2px solid #22c55e;
  color: #22c55e;
  padding: 10px 20px;
  background: transparent;
}

.hero-right {
  width: 50%;
}

.hero-right img {
  width: 100%;
  border-radius: 10px;
}

/* SERVICES */
.services {
  padding: 80px;
}

.service-grid {
  display: flex;
  gap: 30px;
}

.card {
  background: #f5f5f5;
  color: #000;
  padding: 20px;
  border-radius: 10px;
  width: 30%;
}

/* PRODUCTS */
.products {
  padding: 80px;
}

.product-grid {
  display: flex;
  gap: 20px;
}

.product {
  background: #1c3d66;
  padding: 20px;
  border-radius: 10px;
}

/* CONTACT */
.contact {
  padding: 80px;
}

.contact-container {
  display: flex;
  gap: 40px;
}

.form {
  background: #fff;
  color: #000;
  padding: 20px;
  border-radius: 10px;
  width: 40%;
}

.form input, .form textarea {
  width: 100%;
  margin: 10px 0;
  padding: 10px;
}

/* FOOTER */
footer {
  background: #dbe3eb;
  color: #000;
  padding: 20px;
  display: flex;
  justify-content: space-between;
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .hero, .contact-container, .service-grid, .product-grid {
    flex-direction: column;
  }

  .hero-text, .form {
    width: 100%;
  }
}
/* ABOUT PAGE */

.about-hero {
  padding: 80px;
  background: #0e2747;
  color: white;
}

.about-container {
  display: flex;
  gap: 50px;
  align-items: center;
}

.about-text {
  width: 50%;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
}

/* OWNER */
.owner-section {
  padding: 80px;
  background: #f5f5f5;
  color: #000;
}

.owner-container {
  display: flex;
  gap: 50px;
  align-items: center;
}

.owner-image img {
  width: 300px;
  border-radius: 10px;
}

/* TEAM */
.team-section {
  padding: 80px;
  background: white;
  color: black;
}

.team-grid {
  display: flex;
  gap: 30px;
}

.team-card {
  text-align: center;
}

.team-card img {
  width: 150px;
  border-radius: 10px;
}

/* VALUES */
.values {
  padding: 80px;
  background: #eaeaea;
}

.values-grid {
  display: flex;
  gap: 30px;
}

.value-card {
  background: white;
  padding: 20px;
  border-radius: 10px;
}
.logo img {
  height: 50px;
  width: auto;
}
/* ========================= */
/* MOBILE RESPONSIVENESS */
/* ========================= */

@media (max-width: 900px) {

  /* NAVBAR */
  .navbar {
    flex-direction: column;
    padding: 15px;
    text-align: center;
  }

  .navbar nav {
    margin: 10px 0;
  }

  .navbar nav a {
    display: inline-block;
    margin: 5px 10px;
  }

  /* HERO SECTION */
  .hero {
    flex-direction: column;
    padding: 30px 20px;
  }

  .hero-left, 
  .hero-right {
    width: 100%;
  }

  .hero-left h1 {
    font-size: 26px;
  }

  .hero-right img {
    width: 100%;
  }

  /* PRODUCT LIST */
  .product-list {
    flex-direction: column;
    gap: 15px;
  }

  /* SERVICES */
  .service-grid {
    flex-direction: column;
  }

  .card {
    width: 100%;
  }

  /* PRODUCTS */
  .product-grid {
    flex-direction: column;
  }

  .product {
    width: 100%;
  }

  /* CONTACT */
  .contact-container {
    flex-direction: column;
  }

  .form {
    width: 100%;
  }

  /* TEAM */
  .team-grid {
    flex-direction: column;
  }

  /* GALLERY */
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  /* FOOTER */
  footer {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

}
img {
  max-width: 100%;
  height: auto;
}
/* your existing CSS above */

.hero {
  display: flex;
}

/* ✅ PASTE HERE (AT THE END) */

@media (max-width: 768px) {

  .hero {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }

  .hero-left,
  .hero-right {
    width: 100%;
  }

  .hero-left h1 {
    font-size: 26px;
  }

  .hero-buttons {
    justify-content: center;
  }
}
.logo img {
  height: 35px !important;
  width: auto !important;
}
