* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: #0b1a2b;
  color: #0b1a2b;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 40px;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo {
  display: flex;
  align-items: center;
  height: 100px;
}

.logo-img {
  height: 90px;
  width: auto;
  object-fit: contain;
  max-width: 350px;
}

.nav-menu {
  flex: 1;
  display: flex;
  justify-content: center;
  margin: 0 20px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 25px;
}

nav ul li {
  color: #0b1a2b;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav ul li:hover {
  color: #f4a825;
}

nav ul li a {
  cursor: pointer;
  text-decoration: none !important;
  color: inherit;
}

nav ul li a:hover {
  text-decoration: none;
}

nav ul li a:visited {
  text-decoration: none;
}

nav ul li a:active {
  text-decoration: none;
}

.hamburger {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: #0b1a2b;
}

.hamburger.active {
  color: #f4a825;
}

/* ABOUT SECTION */
.about {
  position: relative;
  min-height: 90vh;
  background: url("palete.png") center/cover no-repeat;
  display: flex;
  align-items: center;
}

/* DARK OVERLAY */
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(5,15,30,0.95) 45%,
    rgba(5,15,30,0.6) 70%,
    rgba(5,15,30,0.2) 100%
  );
}

/* CONTAINER */
.container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px;
  gap: 40px;
}

/* TEXT */
.about-text {
  max-width: 520px;
}

.about-text h1 {
  font-size: 60px;
  font-weight: 400;
  margin-bottom: 20px;
  color: #e5e5e5;
}

.about-text h2 {
  font-size: 32px;
  line-height: 1.3;
  margin-bottom: 15px;
  color: #fff;
}

.about-text span {
  color: #f4a825;
  font-weight: bold;
}

/* DIVIDER */
.divider {
  width: 80px;
  height: 2px;
  background: #ccc;
  margin: 15px 0 20px;
}

/* PARAGRAPH */
.about-text p {
  line-height: 1.7;
  font-size: 16px;
  color: #dcdcdc;
}

/* IMAGE */
.about-image img {
  width: 420px;
  max-width: 100%;
  border-radius: 10px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .container {
    flex-direction: column;
    text-align: left;
  }

  .about-text h1 {
    font-size: 45px;
  }

  .about-text h2 {
    font-size: 26px;
  }

  .about-image img {
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 10px 20px;
  }

  .logo {
    height: 70px;
  }

  .logo-img {
    height: 60px;
  }

  .nav-menu {
    display: none;
    position: absolute;
    background: #fff;
    top: 65px;
    left: 0;
    right: 0;
    width: 100%;
    flex-direction: column;
    margin: 0;
    padding: 10px 0;
    z-index: 999;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }

  .nav-menu.active {
    display: flex;
  }

  nav ul {
    flex-direction: column;
    padding: 10px 20px;
    gap: 0;
  }

  nav ul li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
  }

  nav ul li:last-child {
    border-bottom: none;
  }

  .hamburger {
    display: block;
  }

  .container {
    padding: 20px;
  }

  .about-text h1 {
    font-size: 36px;
  }

  .about-text h2 {
    font-size: 22px;
  }
}

.footer {
  background: #111;
  color: #ccc;
  padding: 50px 20px 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.footer-col h2,
.footer-col h3 {
  color: #fff;
  margin-bottom: 15px;
}

.footer-col p {
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  text-decoration: none !important;
  color: #ccc;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #ff6a00;
}

.social-icons {
  margin-top: 15px;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  color: white;
  background: #333;
  padding: 10px;
  border-radius: 50%;
  transition: 0.3s;
  text-decoration: none !important;
}

.social-icons a:hover {
  background: #ff6a00;
}

.newsletter input {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  border: none;
  outline: none;
  border-radius: 5px;
}

.newsletter button {
  margin-top: 10px;
  padding: 10px;
  width: 100%;
  background: linear-gradient(to right, #ff6a00, #ff3c00);
  border: none;
  color: white;
  cursor: pointer;
  border-radius: 5px;
}

.newsletter button:hover {
  opacity: 0.9;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #333;
  padding-top: 15px;
  font-size: 0.85rem;
}

/* SECTION */
.core-section {
  position: relative;
  background: url('background.jpg') center/cover no-repeat;
  padding-bottom: 40px;
}

/* OVERLAY */
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(5,15,30,0.85);
}

/* STATS */
.stats {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-around;
  padding: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.stat {
  text-align: center;
}

.stat img {
  width: 50px;
  margin-bottom: 10px;
}

.stat h3 {
  font-size: 22px;
  color: #fff;
}

.stat span {
  display: block;
  font-size: 14px;
  color: #ddd;
}

/* DIVIDER */
.divider-vertical {
  width: 1px;
  background: rgba(255,255,255,0.2);
}

/* CONTENT */
.content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px;
}

/* LEFT */
.left {
  max-width: 500px;
}

.left h2 {
  color: #f4c36b;
  margin-bottom: 10px;
}

.line {
  width: 70px;
  height: 2px;
  background: #ccc;
  margin-bottom: 25px;
}

/* VALUES */
.value {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  color: #fff;
}

.value img {
  width: 40px;
}

.value h3 {
  margin-bottom: 5px;
  color:#f4c36b ;
}

/* RIGHT */
.right img {
  width: 400px;
  border-radius: 10px;
}

/* CTA */
.cta {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-top: 20px;
}

.cta button {
  background: linear-gradient(to right, #1b5e20, #4caf50);
  padding: 15px 40px;
  border: none;
  font-size: 18px;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
}

/* RESPONSIVE */
@media(max-width: 768px){

  nav {
    display: none;
    position: absolute;
    background: #0b1f3a;
    width: 100%;
    top: 60px;
    right: 0;
  }

  nav ul {
    flex-direction: column;
    padding: 20px;
  }

  .hamburger {
    display: block;
  }

  .stats {
    flex-direction: column;
    gap: 20px;
  }

  .divider-vertical {
    display: none;
  }

  .content {
    flex-direction: column;
    padding: 20px;
  }

  .right img {
    width: 100%;
    margin-top: 20px;
  }
}