*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #162660;
  --primary-color-80: #162660cc;
  --flag: magenta;
  /* --light-color: #f9fafb; */
  --light-color: #8e8e8e;
  --dark-color: #272d35;
}

html,
body {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
}

/* Utility Classes */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-sm {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

.btn {
  display: inline-block;
  padding: 1.3rem 2.3rem;
  border: 1px solid var(--primary-color);
  border-radius: 32px;
  background: var(--primary-color);
  color: white;
  cursor: pointer;
  transition: all 0.2s;
}

.btn:hover {
  background-color: var(--primary-color-80) !important;
  color: white;
}

/* Text Classes */
.text-primary {
  color: var(--primary-color);
}

.text-secondary {
  color: lime;
}

.section {
  margin: 4rem 0;
}

/* Section Header */
.section-header {
  /* max-width: 750px; */
  margin: 0 auto;
  text-align: left;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 0.5rem;
}

.section-header p {
  font-size: 1.3rem;
  color: var(--dark-color);
}

.heading-border {
  width: 64px;
  height: 4px;
  background: var(--primary-color);
  margin: 0 0 1rem;
}

/* Navbar */
.navbar {
  background-color: var(--primary-color);
  color: #fff;
  padding: 1rem 2rem;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 70px;
  z-index: 1000;
  transition: background-color 0.5s ease-in-out;
}

.navbar.navbar-scroll {
  background-color: var(--primary-color-80);
  backdrop-filter: blur(10px);
}

.navbar-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar img {
  width: 100px;
}

.navbar .main-menu-list {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-weight: 600;
}

.navbar a {
  color: white;
}

.navbar a:hover {
  color: var(--light-color);
}

.navbar i {
  font-size: 1.5rem;
}

.navbar .header-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
}

.navbar .mobile-menu-toggle {
  color: #fff;
  cursor: pointer;
}

.navbar .mobile-menu-items {
  position: sticky;
  top: 100%;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0.95;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.navbar .mobile-menu-items.active {
  transform: translateX(0);
}

.navbar .mobile-menu-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  font-size: 1.2rem;
}

/* Hero */

.hero:before {
  content: '';
  position: absolute;
  height: 100%;
  width: 100vw;
  background-color: #000;
  opacity: 0.5;
  top: 0;
  left: 0;
}

.hero {
  background: #000 url('../images/header-bg.jpg') center center/cover no-repeat;
  padding: 11.5rem 2rem 8rem;
  color: white;
  overflow-x: hidden;
  position: relative;
  overflow: hidden;
  height: 75vh;
}

.hero .btn:hover {
  background-color: var(--primary-color);
  border: 1px solid white;
}

.hero-content {
  max-width: 45vw;
  z-index: 2;
}

.hero .hero-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6rem;
  padding-bottom: 8rem;
}

.hero h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.8;
  font-weight: 400;
}

.hero img {
  width: 100%;
}

/* Service Cards */

/* Card */
.card {
  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content: start;
  text-align: left;
  padding: 2rem 1.5rem;
  background: #fff;
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.3);
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 1rem 0 4rem;
}

.service-cards h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0.5rem 0;
}

.service-cards h4 {
  font-size: 1rem;
  font-weight: bold;
  font-style: italic;
  padding-bottom: 8px;
}

.service-cards .service-body {
  text-align: start;
  list-style: disc;
  padding-left: 1rem;
}

.service-body li::marker {
  color: var(--primary-color);
}
/* Info Section */
.info-container {
  background: url('../images/header-bg.jpg') top center/cover no-repeat;
  display: flex;
}

.info-content {
  background-color: var(--primary-color);
  color: #fff;
  flex: 1;
  padding: 4rem;
}

.info-content .heading-border {
  background: white;
}

.info-content h2 {
  font-size: 2rem;
  font-weight: normal;
  color: white;
  margin: 0 0 8px;
}

.info-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: white;
}

.info-content ul li {
  font-size: 1.2rem;
  line-height: 2;
}

.info-content i {
  margin-right: 0.5rem;
  color: white;
}

.info-left {
  width: 50%;
}

/* Takeaways
.takeaways-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 1.5rem 0;
}

.takeaways-cards .card {
  flex-direction: row;
  text-align: left;
}

.takeaways-cards .card i {
  margin-right: 1rem;
} */

/* Details */
.details .details-flex {
  padding: 80px 0px;
  display: flex;
  gap: 4rem;
  align-items: center;
  justify-content: center;
  flex-direction: row-reverse;
}

.details img {
  width: 100%;
  max-width: 500px;
}

.details .bulleted {
  list-style-type: disc;
  margin-left: 2rem;
  color: var(--flag);
}
.details h2 {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 auto 0.5rem auto;
  text-align: left;
}

.details p {
  margin: 1rem 0 2rem;
}

/* Testimonial */
.testimonial {
  background: var(--primary-color);
  padding: 4rem 2rem;
  text-align: center;
}

.testimonial cite {
  display: block;
  font-style: normal;
  font-weight: 600;
  margin-top: 0.5rem;
  color: white;
}

.testimonial .name {
  font-weight: lighter;
  font-style: italic;
  padding-top: 8px;
}

/* Social */
.social {
  margin-top: 0;
  background: #fff;
  color: var(--dark-color);
  padding: 6rem 2rem;
  text-align: center;
  font-size: 1.7rem;
  margin-bottom: 0;
}

.social a,
.footer a {
  color: var(--dark-color);
}

.social a:hover,
.footer a:hover {
  color: var(--light-color);
}

.social p {
  margin-bottom: 0.5rem;
}

.social .social-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

/* Footer */
.footer {
  background: var(--dark-color);
  color: #fff;
  border-top: 1px solid #384653;
  padding: 0.5rem 2rem;
}
.footer a {
  color: white;
}

.footer-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer ul {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
}

/* Inner Header */
.inner-header {
  background: var(--primary-color);
  color: magenta;
  height: 250px;
  padding-top: 8rem;
}

.inner-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: magenta;
  margin-bottom: 1rem;
}

/* Contact Form */

.contact-form .container-sm {
  padding-top: 2rem;
}

.contact-form input,
.contact-form textarea {
  display: block;
  font-family: inherit;
  font-size: medium;
  width: 100%;
  margin: 1.5rem 0;
  border: 1px solid #ccc;
  padding: 1.2rem 1rem;
  border-radius: 16px;
}

.contact-form textarea {
  height: 200px;
}

.contact-form h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 0.5rem;
  text-align: left;
}

.contact-form .btn {
  display: block;
  width: 50%;
  font-size: inherit;
  font-family: inherit;
  margin: 0 auto 2rem;
}

input.hidden {
  display: none !important;
}
/* Media Queries */
@media (max-width: 1200px) {
  .hero .hero-flex {
    gap: 2rem;
  }

  .hero img {
    max-width: 500px;
    margin-right: 0;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .topics {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .hero {
    text-align: center;
  }

  .hero .hero-flex {
    flex-direction: column;
    padding-bottom: 4rem;
  }

  .hero img {
    max-width: 600px;
    margin-top: 2rem;
  }

  .topics {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-cards,
  .takeaways-cards {
    grid-template-columns: 1fr;
  }

  .details-flex,
  .details + .details .details-flex,
  .stats .stats-flex {
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .main-menu-items,
  .info-left {
    display: none;
  }

  .navbar .mobile-menu {
    display: block;
  }

  .navbar .mobile-menu-toggle {
    display: block;
    padding: 10px;
  }

  .info-container {
    flex-direction: column;
  }

  .info-content {
    padding: 2rem;
  }

  .info-content h2 {
    font-size: 1.5rem;
  }

  .info-content p {
    font-size: 1rem;
  }

  .social .social-icons {
    flex-wrap: wrap;
  }

  .social p {
    font-size: 1.2rem;
  }

  .social i {
    font-size: 2rem;
  }

  .footer {
    padding: 0.5rem 1rem;
  }

  .footer-flex {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .hero {
    padding-right: 0.2rem;
    padding-left: 0.2rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero img {
    max-width: 350px;
  }

  .topics {
    grid-template-columns: 1fr;
  }

  .summary .container {
    padding: 0;
  }

  .stats .stats-numbers {
    flex-direction: column;
  }

  .newsletter h2 {
    font-size: 1.5rem;
  }

  .newsletter p {
    display: none;
  }
}
