body {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "DM Sans", sans-serif;
}

a {
  text-decoration: none;
}

/* Navbar */
nav {
  background-color: #fff;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 100px;
  position: relative;
  z-index: 100;
}

.logo {
  font-weight: 700;
  font-size: 22px;
  color: #001542;
  letter-spacing: 1px;
}

.footer-logo {
  color: #fff;
}
.menu-icon {
  font-size: 28px;
  cursor: pointer;
  display: none;
  color: #001542;
}

nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  list-style: none;
  transition: all 0.3s ease;
}

li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.CTA-btn {
  background-color: #001542;
  color: #fff;
  padding: 8px 15px;
  border-radius: 5px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

/* Extra Small Devices (≤576px) */
@media (max-width: 576px) {
  nav {
    padding: 10px 20px;
  }
  .menu-icon {
    display: block;
  }

  nav ul {
    position: absolute;
    top: 38px;
    left: 0;
    width: 60%;
    height: 100vh;
    flex-direction: column;
    align-items: start;
    justify-content: flex-start;
    background-color: #fff;
    padding: 15px 0;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    display: none;
  }

  ul.active {
    display: flex;
    padding: 30px;
  }

  li {
    margin-bottom: 10px;
  }

  .CTA-btn {
    width: 90%;
    text-align: center;
  }
}

/* Small Devices (≤768px) */
@media (max-width: 768px) {
  nav {
    padding: 10px 20px;
  }
  .logo {
    font-size: 20px;
  }

  .menu-icon {
    font-size: 24px;
  }
}

/* Medium Devices (≤992px) */
@media (max-width: 992px) {
  nav {
    padding: 10px 20px;
  }
  .logo {
    font-size: 21px;
  }

  .menu-icon {
    font-size: 26px;
  }
}

/* Large Devices (≤1200px) */
@media (max-width: 1200px) {
  .logo {
    font-size: 22px;
  }

  .menu-icon {
    font-size: 28px;
  }
}

/* Extra Large Devices (≤1400px) */
@media (max-width: 1400px) {
  .logo {
    font-size: 22px;
  }
}

/* Hero Section */
.hero-containeR {
  background-color: #001542;
  margin: 30px 100px;
  border-radius: 8px;
  color: #fff;
  padding: 20px 100px;
  text-align: center;
}

/* Extra Small devices (phones, less than 576px) */
@media (max-width: 575.98px) {
  .hero-containeR {
    margin: 15px 15px;
    padding: 15px 15px;
  }
}

/* Small devices (sm, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-containeR {
    margin: 20px 30px;
    padding: 18px 30px;
  }
}

/* Medium devices (md, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-containeR {
    margin: 25px 50px;
    padding: 20px 50px;
  }
}

/* Large devices (lg, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hero-containeR {
    margin: 30px 70px;
    padding: 20px 70px;
  }
}

/* Extra Large devices (xl, 1200px and up) */
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .hero-containeR {
    margin: 30px 90px;
    padding: 20px 90px;
  }
}

/* XXL devices (1400px and up) */
@media (min-width: 1400px) {
  .hero-containeR {
    margin: 30px 100px;
    padding: 20px 100px;
  }
}

.about-section {
  padding: 40px 100px;
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
}

/* Accordion styles remain same but text size adjusts */
.accordion-item {
  margin-bottom: 15px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #ccc;
  background-color: #fff;
}

.accordion-header {
  width: 100%;
  text-align: left;
  background-color: #001542;
  color: #fff;
  padding: 15px 20px;
  font-size: 18px;
  font-weight: 600;
  font-family: "DM Sans", sans-serif;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-header i {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.accordion-header.active i {
  transform: rotate(180deg);
}

.accordion-content {
  padding: 20px;
  display: none;
  background-color: #fff;
  font-family: "Inter", sans-serif;
}

.accordion-content h3 {
  margin-top: 0;
  color: #000;
  font-weight: 600;
}

.accordion-content ul {
  padding-left: 20px;
  list-style-type: disc;
}

strong {
  font-family: "DM Sans";
}

/* Images container */

.images {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin: 20px;
  flex-wrap: wrap;
}

/* Images */
.images img {
  width: 250px;
  border-radius: 4px;
  transition: transform 0.3s ease;
}

.images img:hover {
  transform: scale(1.05);
}

/* Work container */
.work {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.services {
  margin-top: 30px;
}

.accordion-content a {
  color: #001542;
}

.accordion-content a:hover {
  text-decoration: underline;
}

.yellow-alert {
  background-color: #ffb30d;
}

.red-alert {
  background-color: red;
  color: #fff;
}
/* Responsive Media Queries */

/* Extra Small devices (phones < 576px) */
@media (max-width: 575.98px) {
  .about-section {
    padding: 20px 15px;
  }
  .accordion-header {
    font-size: 16px;
    padding: 12px 15px;
  }
  .accordion-content {
    padding: 15px;
  }
  .images img {
    width: 100%;
    max-width: 300px;
  }
}

/* Small devices (sm, 576px to 767.98px) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .about-section {
    padding: 30px 30px;
  }
  .accordion-header {
    font-size: 17px;
    padding: 13px 18px;
  }
  .accordion-content {
    padding: 18px;
  }
  .images img {
    width: 220px;
  }
}

/* Medium devices (md, 768px to 991.98px) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .about-section {
    padding: 35px 50px;
  }
  .accordion-header {
    font-size: 18px;
    padding: 15px 20px;
  }
  .accordion-content {
    padding: 20px;
  }
  .images img {
    width: 230px;
  }
}

/* Large devices (lg, 992px to 1199.98px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .about-section {
    padding: 40px 70px;
  }
  .images img {
    width: 240px;
  }
}

/* Extra Large devices (xl, 1200px to 1399.98px) */
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .about-section {
    padding: 40px 90px;
  }
  .images img {
    width: 250px;
  }
}

/* XXL devices (1400px and up) */
@media (min-width: 1400px) {
  .about-section {
    padding: 40px 100px;
  }
  .images img {
    width: 250px;
  }
}

.thank-you-section {
  background-color: #001542; /* TarakkiHub primary color */
  color: #fff;
  text-align: center;
  padding: 60px 100px;
  border-radius: 8px;
  margin: 50px 0px;
}

.thank-you-section h2 {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 700;
}

.thank-you-section i {
  font-size: 5rem;
  color: #fff; /* gold/yellow */
  margin-bottom: 20px;
  display: inline-block;
}

.thank-you-section p {
  font-size: 16px;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
  font-family: "Inter", sans-serif;
}

/* Extra Small devices (phones < 576px) */
@media (max-width: 575.98px) {
  .thank-you-section {
    padding: 30px 20px;
    margin: 30px 15px;
  }
  .thank-you-section h2 {
    font-size: 18px;
  }
  .thank-you-section i {
    font-size: 3rem;
    margin-bottom: 15px;
  }
  .thank-you-section p {
    font-size: 14px;
    max-width: 100%;
  }
}

/* Small devices (576px to 767.98px) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .thank-you-section {
    padding: 40px 40px;
    margin: 40px 30px;
  }
  .thank-you-section h2 {
    font-size: 20px;
  }
  .thank-you-section i {
    font-size: 4rem;
    margin-bottom: 18px;
  }
  .thank-you-section p {
    font-size: 15px;
    max-width: 90%;
  }
}

/* Medium devices (768px to 991.98px) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .thank-you-section {
    padding: 50px 70px;
    margin: 45px;
  }
  .thank-you-section h2 {
    font-size: 22px;
  }
  .thank-you-section i {
    font-size: 4.5rem;
    margin-bottom: 20px;
  }
  .thank-you-section p {
    font-size: 16px;
    max-width: 600px;
  }
}

/* Large devices (992px to 1199.98px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .thank-you-section {
    padding: 60px 100px;
    margin: 50px;
  }
  .thank-you-section h2 {
    font-size: 24px;
  }
  .thank-you-section i {
    font-size: 5rem;
    margin-bottom: 20px;
  }
  .thank-you-section p {
    font-size: 16px;
    max-width: 600px;
  }
}

/* Extra Large devices (1200px to 1399.98px) */
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .thank-you-section {
    padding: 70px 120px;
  }
  .thank-you-section h2 {
    font-size: 26px;
  }
  .thank-you-section i {
    font-size: 5.5rem;
    margin-bottom: 20px;
  }
  .thank-you-section p {
    font-size: 17px;
    max-width: 600px;
  }
}

/* XXL devices (1400px and above) */
@media (min-width: 1400px) {
  .thank-you-section {
    padding: 80px 140px;
  }
  .thank-you-section h2 {
    font-size: 28px;
  }
  .thank-you-section i {
    font-size: 6rem;
    margin-bottom: 25px;
  }
  .thank-you-section p {
    font-size: 18px;
    max-width: 600px;
  }
}

/* footer section */
.footer-section {
  background-color: #001542;
  color: #eee;
  padding: 20px 15px;
  font-family: "inter", sans-serif;
  font-size: 14px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo h2 {
  margin: 0 0 5px;
  font-size: 1.6rem;
  color: #ffb30d;
}

.footer-logo p {
  margin: 0;
  font-size: 0.9rem;
  color: #ccc;
}

.footer-links h3,
.footer-social h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
  color: #ffb30d;
}

.footer-links .ul {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links .ul li {
  margin-bottom: 8px;
}

.footer-links .ul li a {
  color: #eee;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links .ul li a:hover {
  color: #ffb30d;
}

.footer-social .social-icons {
  display: flex;
  justify-content: flex-start;
  gap: 15px;
}

.footer-social .social-icons a {
  color: #eee;
  font-size: 1.4rem;
  transition: color 0.3s ease;
}

.footer-social .social-icons a:hover {
  color: #ffb30d;
}

.footer-bottom {
  text-align: center;
  padding-top: 15px;
  border-top: 1px solid #333;
  font-size: 0.85rem;
  color: #fff;
}

/* Small devices (SM) 576px and up */
@media (min-width: 576px) {
  .footer-section {
    padding: 30px 20px;
    font-size: 15px;
  }

  .footer-logo h2 {
    font-size: 24px;
  }

  .footer-links h3,
  .footer-social h3 {
    font-size: 24px;
  }

  .footer-social .social-icons {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
  }
}

/* Medium devices (MD) 768px and up */
@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;

    justify-content: space-between;
    gap: 40px;
  }

  .footer-logo,
  .footer-links,
  .footer-social {
    flex: 1;
  }

  .footer-social .social-icons {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footer-logo h2 {
    font-size: 24px;
  }

  .footer-links h3,
  .footer-social h3 {
    font-size: 20px;
  }

  .footer-bottom {
    font-size: 0.9rem;
  }
}

/* Large devices (LG) 992px and up */
@media (min-width: 992px) {
  .footer-section {
    padding: 40px 50px;
    font-size: 16px;
  }

  .footer-logo h2 {
    font-size: 20px;
  }

  .footer-links h3,
  .footer-social h3 {
    font-size: 24px;
  }

  .footer-social .social-icons a {
    font-size: 1.6rem;
  }
}

/* Extra Large devices (XL) 1200px and up */
@media (min-width: 1200px) {
  .footer-section {
    padding: 50px 80px;
  }

  .footer-logo h2 {
    font-size: 24px;
  }

  .footer-links h3,
  .footer-social h3 {
    font-size: 22px;
  }
}

/* XXL devices 1400px and up */
@media (min-width: 1400px) {
  .footer-section {
    padding: 60px 120px;
  }

  .footer-logo h2 {
    font-size: 2.6rem;
  }

  .footer-links h3,
  .footer-social h3 {
    font-size: 1.8rem;
  }
}
