* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.7;
  color: #222;
  background: #f8f9fa;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
}

/* Header */
.site-header {
  background: #062b45;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  width: 90%;
  max-width: 1300px;
  margin: auto;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 70px;
  height: auto;
}

.brand h1 {
  font-size: 24px;
  letter-spacing: 2px;
}

.brand span {
  font-size: 13px;
  color: #d8e9f3;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links a {
  font-size: 15px;
  font-weight: 600;
  transition: 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #f4b400;
}

.contact-btn {
  background: #f4b400;
  color: #062b45 !important;
  padding: 10px 18px;
  border-radius: 25px;
}

.contact-btn:hover {
  background: #fff;
}

/* Hamburger */
.menu-toggle {
  display: none;
}

.hamburger {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

/* Hero */
.hero {
  min-height: 80vh;
  background:
    linear-gradient(rgba(6, 43, 69, 0.75), rgba(6, 43, 69, 0.75)),
    url("../assets/images/hero-bg.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
}

.hero-overlay {
  width: 100%;
}

.hero-content {
  width: 90%;
  max-width: 900px;
  margin: auto;
  color: #fff;
}

.hero-content h2 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 19px;
  max-width: 700px;
  margin-bottom: 30px;
}

.primary-btn {
  display: inline-block;
  background: #f4b400;
  color: #062b45;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: bold;
  transition: 0.3s;
}

.primary-btn:hover {
  background: #fff;
}

/* NEWS SECTION */
.news-section {
    padding: 80px 0;
    background: #f8fafc;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 38px;
    color: #062b45;
    margin-bottom: 15px;
}

.section-header p {
    max-width: 700px;
    margin: auto;
    color: #555;
    font-size: 17px;
}

/* Featured News */
.featured-news {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 60px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-date {
    color: #f4b400;
    font-weight: 600;
    margin-bottom: 18px;
    display: inline-block;
}

.featured-content h3 {
    font-size: 32px;
    color: #062b45;
    margin-bottom: 20px;
    line-height: 1.3;
}

.featured-content p {
    color: #555;
    margin-bottom: 25px;
    line-height: 1.8;
}

.read-more-btn {
    display: inline-block;
    background: #062b45;
    color: #fff;
    padding: 14px 28px;
    border-radius: 30px;
    transition: 0.3s;
    width: fit-content;
}

.read-more-btn:hover {
    background: #f4b400;
    color: #062b45;
}

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transition: 0.3s ease;
}

.news-card:hover {
    transform: translateY(-8px);
}

.news-image img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.news-content {
    padding: 28px;
}

.news-content h4 {
    font-size: 22px;
    color: #062b45;
    margin: 15px 0;
    line-height: 1.4;
}

.news-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
}

.news-content a {
    color: #062b45;
    font-weight: 700;
    transition: 0.3s;
}

.news-content a:hover {
    color: #f4b400;
}

/* RESPONSIVE */
@media (max-width: 992px) {

    .featured-news {
        grid-template-columns: 1fr;
    }

    .news-grid {
        grid-template-columns: 1fr 1fr;
    }

    .featured-content h3 {
        font-size: 28px;
    }
}

@media (max-width: 600px) {

    .section-header h2 {
        font-size: 30px;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .featured-content {
        padding: 25px;
    }

    .featured-content h3 {
        font-size: 24px;
    }

    .news-content h4 {
        font-size: 20px;
    }
}
/* Services */
.services-preview {
  padding: 70px 0;
  background: #eef4f8;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.service-card {
  background: #fff;
  padding: 35px 25px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-card i {
  font-size: 42px;
  color: #f4b400;
  margin-bottom: 18px;
}

.service-card h3 {
  color: #062b45;
  margin-bottom: 12px;
}

/* Footer */
.site-footer {
  background: #041f33;
  color: #d8e9f3;
  padding-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 35px;
}

.footer-column h3,
.footer-column h4 {
  color: #fff;
  margin-bottom: 18px;
}

.footer-column p,
.footer-column li {
  font-size: 15px;
  margin-bottom: 10px;
}

.footer-column a:hover {
  color: #f4b400;
}

.footer-column i {
  color: #f4b400;
  margin-right: 8px;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding: 18px;
  background: #031625;
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 80px;
    right: -100%;
    width: 75%;
    height: calc(100vh - 80px);
    background: #062b45;
    flex-direction: column;
    align-items: flex-start;
    padding: 40px;
    gap: 25px;
    transition: 0.4s ease;
  }

  .menu-toggle:checked ~ .nav-links {
    right: 0;
  }

  .hero-content h2 {
    font-size: 38px;
  }

  .service-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .navbar {
    height: 70px;
  }

  .brand img {
    width: 55px;
  }

  .brand h1 {
    font-size: 20px;
  }

  .brand span {
    font-size: 11px;
  }

  .nav-links {
    top: 70px;
    width: 100%;
    height: calc(100vh - 70px);
  }

  .hero-content h2 {
    font-size: 30px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .welcome-section h2 {
    font-size: 26px;
  }

  .service-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}