.first_line {
    font-size: 22px;
    /* color: #000; */
    color: #01122299;
    padding-bottom: 30px;
    text-align: center;
    padding-top: 25px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

/* HEADER */
.header {
  position: absolute;
  width: 100%;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  z-index: 10;
}

.logo img {
  height: 100px;
}
/* 
.nav {
  margin-left: 200px;
  padding-left: 200px;
} */

.nav a {
  margin-left: 25px;
  font-size: 14px;
}

.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  height: 100%;
  background: #fff;
  padding: 40px;
  transition: right 0.3s ease;
}

.mobile-menu a {
  display: block;
  margin-bottom: 25px;
  color: #000;
  font-size: 16px;
}

.close {
  font-size: 22px;
  color: black;
  text-align: right;
  cursor: pointer;
  margin-bottom: 40px;
  display: block;
}

/* HERO */
.hero {
  height: 100vh;
  background: url("../images/bg_main.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero h2 {
  font-size: 50px;
}

.hero p {
  margin-top: 10px;
}

.intro_box_heading {
  max-width: 1100px;
  margin: 20px auto;
  padding: 0 20px;
  color: #01122299;
  font-size: 28px;
}

/* COMMON */
.container {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
}

.hero + .container {
    margin-top: 80px;
}

.outlined-box {
  border: 1px solid #ccc;
  border-radius: 12px;
  padding: 30px;
  transition: box-shadow 0.3s;
}

.outlined-box p {
    color: #01122299;
    line-height: 1.6;
    
}

.outlined-box li {
    color: #01122299;
    line-height: 1.6;
    
}

.intro_box_heading_with_icon {
  display: flex;
  align-items: center;
  gap: 12px;
}

.intro_box_heading_with_icon img {
  width: 90px;
  height: 90px;
  object-fit: contain;
}

.intro_box_heading_with_icon span {
  font-size: 30px;
  color: #01122299;
}

.outlined-box:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

/* FOOTER */
/* .footer {
  background: #111;
  color: #fff;
  padding: 50px 20px 20px;
} */

.footer {
  background: url("../images/footer_bg.png") center/cover no-repeat;
  color: #fff;
  padding: 60px 20px 20px;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65); /* adjust if needed */
}

.footer > * {
  position: relative;
  z-index: 1;
}

/* Top heading */
.footer-heading {
  max-width: 1100px;
  margin: 0 auto 30px;
}

.footer-heading h2 {
  font-size: 22px;
  font-weight: 700;
}

/* Grid for columns */
.footer-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  /* grid-template-columns: repeat(4, 1fr); */
  grid-template-columns: repeat(4, minmax(0, 1fr));

  gap: 30px;
}

/* Section headings */
.footer h5 {
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 600;
}

/* Text & links */
.footer a {
  display: inline;
  font-size: 14px;
  margin-bottom: 8px;
  color: #ccc;
  text-decoration: none;
}

.footer p{
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
  color: #ccc;
  text-decoration: none;
}


.no-wrap {
  white-space: nowrap;
}

@media (max-width: 480px) {
  .no-wrap {
    white-space: normal;
  }
}

.footer a:hover {
  color: #fff;
}

/* Bottom copyright */
.footer-bottom {
  margin-top: 40px;
  text-align: center;
  font-size: 13px;
  color: #aaa;
  border-top: 1px solid #222;
  padding-top: 15px;
}

/* Mobile */
@media (max-width: 768px) {
  .footer-heading {
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}




/* RESPONSIVE */
@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Roman numeral lists */
.roman {
  list-style-type: lower-roman;
  padding-left: 22px;
  margin-bottom: 15px;
}

.roman li {
  margin-bottom: 6px;
}