@import url("https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;700&family=Poppins:wght@400;500;600&display=swap");
/* Base Style */

body {
  font-family: "Poppins", sans-serif;
  color: #333;
  width: 100%;
}
/* Header Styles */

h1,
h2,
h3,
h4,
h5 {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: #222;
}

h1 {
  font-size: 72px;
  font-weight: 700;
  margin: 20px 0;
}

h2 {
  font-size: 56px;
  font-weight: 600;
  margin: 16px 0;
}

h3 {
  font-size: 40px;
  font-weight: 500;
  margin: 14px 0;
}

h4 {
  font-size: 28px;
  font-weight: 500;
  margin: 12px 0;
}

h5 {
  font-size: 16px;
  font-weight: 500;
  margin: 12px 0;
}
/* Paragraph and Body Text */

p,
small,
.caption {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

p {
  font-size: 16px;
  color: #666;
  margin: 10px 0;
}

small,
.caption {
  font-size: 14px;
  color: #888;
}
/* Links */

a {
  font-size: 16px;
  font-weight: 500;
  color: #0066cc;
  text-decoration: none;
}

a:hover {
  color: #004999;
  text-decoration: underline;
}
/* Highlights */

.highlight {
  font-weight: 700;
  color: #e67e22;
  background-color: #fbeee6;
  padding: 2px 5px;
  border-radius: 3px;
}

.emphasis {
  font-style: italic;
  color: #333;
}
/* General Layout */

.section-p1 {
  padding: 40px 80px;
}

.section-m1 {
  margin: 40px 0;
}
/* Header Styling */

#header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 1000;
}

#header .logo {
  width: 200px;
  height: 50px;
  object-fit: cover;
  object-position: center;
}
/* Navbar Styles */

#navbar {
  display: flex;
  gap: 20px;
  padding: 0;
}

#navbar li {
  list-style: none;
  padding: 0 19px;
  position: relative;
}

#navbar li a {
  font-size: 16px;
  font-weight: 600;
  color: #222;
  transition: 0.3s ease;
}

#navbar li a:hover,
#navbar li a.active {
  color: #e67e22;
}

#navbar li a.active::after,
#navbar li a:hover::after {
  content: "";
  width: 20%;
  height: 4px;
  background: crimson;
  position: absolute;
  bottom: -8px;
  left: 20px;
}
/* Dropdown Menu */

.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  min-width: 200px;
  z-index: 1;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.dropdown-content a {
  color: white;
  padding: 10px 15px;
  text-decoration: none;
  display: block;
  transition: background 0.3s ease;
}

.dropdown-content a:hover {
  background-color: #ffffff;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-arrow::after {
  content: " ▼";
  font-size: 0.8rem;
  margin-left: 5px;
  color: #444;
}
/* Mobile Navbar Styles */

#mobile {
  display: none;
  align-items: center;
}

#close {
  display: none;
}

@media (max-width: 799px) {
  #navbar {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    position: fixed;
    top: 0;
    right: -500px;
    height: 50vh;
    width: 400px;
    background-color: #f5f5f5;
    box-shadow: 0 40px 60px rgba(0, 0, 0, 0.1);
    padding: 80px 0 0 10px;
    transition: 0.3s;
    border-radius: 12px;
    /* This adds a rounded edge */
  }
  #navbar li {
    margin-bottom: 25px;
  }
  #mobile {
    display: flex;
    align-items: center;
  }
  #mobile i {
    color: #1a1a1a;
    font-size: 24px;
    padding-left: 20px;
  }
  #navbar.active {
    right: 0px;
  }
  #close {
    display: initial;
    position: absolute;
    top: 30px;
    left: 30px;
    color: #000000;
    font-size: 24px;
  }
  /* Mobile Dropdown */
  .dropdown-content {
    position: static;
    width: 100%;
    background-color: #fff;
    box-shadow: none;
  }
  .dropdown-content a {
    padding: 15px 10px;
    background-color: #f1f1f1;
    border-bottom: 1px solid #ddd;
  }
  .dropdown:hover .dropdown-content {
    display: block;
  }
}

#mobile {
  display: none;
}

#navbar.active {
  right: 0;
}

@media (max-width: 799px) {
  #navbar {
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -300px;
    height: 100vh;
    width: 200px;
    background-color: rgb(180, 161, 161);
    transition: 0.3s;
  }
  #navbar li {
    margin-bottom: 25px;
  }
  #mobile {
    display: flex;
  }
  #close {
    display: initial;
    position: absolute;
    top: 30px;
    left: 30px;
    font-size: 24px;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.container {
  max-width: 1170px;
  margin: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

ul {
  list-style: none;
}

.footer {
  background-color: #24262b;
  padding: 70px 0;
}

.footer-col {
  width: 25%;
  padding: 0 15px;
}

.footer-col h4 {
  font-size: 18px;
  color: #ffffff;
  text-transform: capitalize;
  margin-bottom: 35px;
  font-weight: 500;
  position: relative;
}

.footer-col h4::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  background-color: #e91e63;
  height: 2px;
  box-sizing: border-box;
  width: 50px;
}

.footer-col ul li:not(:last-child) {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 16px;
  text-transform: capitalize;
  color: #ffffff;
  text-decoration: none;
  font-weight: 300;
  color: #bbbbbb;
  display: block;
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  color: #ffffff;
  padding-left: 8px;
}

.footer-col .social-links a {
  display: inline-block;
  height: 40px;
  width: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 0 10px 10px 0;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  color: #ffffff;
  transition: all 0.5s ease;
}

.footer-col .social-links a:hover {
  color: #24262b;
  background-color: #ffffff;
}
/* ################################### Media Queries ################################### */
/* Small Devices (Portrait phones, less than 576px) */
/* Medium Devices (Tablets, 576px to 768px) */

@media (max-width: 768px) {
  #header {
    padding: 15px 30px;
  }
  #hero h1 {
    font-size: 50px;
  }
  #hero h5 {
    font-size: 16px;
  }
  .card-container {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
  .boxes-container {
    gap: 15px;
  }
  #navbar li {
    padding: 0 10px;
  }
}
/* Large Devices (Small laptops, less than 992px) */

@media (max-width: 992px) {
  #hero h1 {
    font-size: 60px;
  }
  .card-container {
    flex-wrap: wrap;
    gap: 20px;
  }
}
/* Base Styles */

@import url("https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;700&family=Poppins:wght@400;500;600&display=swap");
body {
  font-family: "Poppins", sans-serif;
  color: #333;
  margin: 0;
  padding: 0;
  width: 100%;
  background-color: #f9f9f9;
}
/* Headings */

h1,
h2,
h3,
h4,
h5 {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: #222;
  margin: 0;
}

h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
}

h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 15px;
}

h3 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 10px;
}

h4 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
}

h5 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}
/* Paragraphs */

p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}
/* Links */

a {
  font-size: 16px;
  font-weight: 500;
  color: #0066cc;
  text-decoration: none;
}

a:hover {
  color: #004999;
  text-decoration: underline;
}
/* Container */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}
/* Content Blocks */

.content-block {
  background-color: #ffffff;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 40px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
/* Hover Effects (Removed for First Block) */

.content-block:not(:first-child):hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}
/* First Content Block (Headline Block) */

.content-block:first-child {
  flex: 1 1 100%;
  /* Full-width headline block */
  background-color: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  text-align: center;
  margin-bottom: 20px;
}

.content-block:first-child:hover {
  transform: none;
  /* No hover effect */
  box-shadow: none;
}
/* Headings in Content Blocks */

.content-block h2 {
  position: relative;
}

.content-block h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #e67e22;
  margin-top: 8px;
  border-radius: 2px;
}
/* Lists */

.content-block ul {
  padding-left: 20px;
}

.content-block ul li {
  margin-bottom: 10px;
  color: #555;
  line-height: 1.8;
  position: relative;
}

.content-block ul li::before {
  content: "✔";
  color: #e67e22;
  margin-right: 10px;
}
/* Eligibility Table */

.eligibility-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  border: 1px solid #ddd;
}

.eligibility-table th,
.eligibility-table td {
  padding: 12px;
  text-align: left;
  border: 1px solid #ddd;
}

.eligibility-table th {
  background-color: #f4f4f4;
  font-weight: 600;
}
/* Call-to-Action Buttons */

.content-block .cta-button {
  display: inline-block;
  background-color: #0066cc;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
}

.apply-now-wrapper {
  text-align: center;
  margin-top: 30px;
}

.apply-now-btn {
  display: inline-block;
  background-color: #e67e22;
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.apply-now-btn:hover {
  background-color: #cf650e;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}
