/* =========================
   MOBILE (0px - 767px)
========================= */
@media (max-width: 767px) {
  .banner {
    height: 60vh;
  }

  .banner-buttons {
    flex-direction: row;
  }

  .banner-buttons .btn {
    padding: 10px 20px;
    font-size: 12px;
  }

  .goquest-image img {
    width: 100%;
  }

  .cs-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    top: 18px;
    color: #fff;
    z-index: 2;
    background: rgb(0, 0, 0, 0.2);
    padding: 2px 14px;
  }

  .life-video iframe {
    height: 165px;
  }

  /* HEADER */
  .hd-container {
    padding: 3px 15px;
  }

  .logo img {
    height: 40px;
  }

  /* NAVBAR (STACK) */
  .nav ul {
    flex-direction: column;
    gap: 10px;
    background: #000;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    padding: 15px;
    display: none;
  }

  .nav ul.active {
    display: flex;
  }

  /* DROPDOWN FIX */
  .dropdown-menu {
    position: static;
    width: 100%;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  /* BANNER */
  .banner-content h1 {
    font-size: 24px;
  }

  .banner-content p {
    font-size: 14px;
  }

  /* CORE SERVICES */
  .cs-card {
    width: 100%;
  }

  .cs-image img {
    height: 220px;
  }

  /* LIFE SECTION */
  .life-container {
    flex-direction: column;
    gap: 20px;
  }

  .life-content h2 {
    font-size: 26px;
    padding-left: 7px;
  }

  .life-content ul li {
    font-size: 16px;
  }

  /* BUSINESS */
  .business-container {
    flex-direction: column-reverse;
    gap: 20px;
  }

  .business-right {
    flex: 1;
    width: 100%;
  }

  .tabs li:hover,
  .tabs li.active {
    transform: none;
  }

  .business-left {
    margin-top: 27px;
    width: 100%;
    min-height: 381px;
  }

  .business-subtitle {
    left: 0px;
  }

  .tab-content {
    position: absolute;
    top: 50px;
    left: 8px;
    width: 95%;
  }

  .tab-content h2 {
    font-size: 26px;
  }

  #tab1 h2,
  #tab2 h2,
  #tab3 h2 {
    font-size: 22px;
  }

  .tt-left p {
    font-size: 14px;
  }

  /* THINK TANK */
  .tt-container {
    flex-direction: column;
    padding: 20px;
  }

  .tt-left h2 {
    font-size: 30px;
  }

  /* MISSION VISION */
  .mv-container {
    flex-direction: column;
  }

  .mv-left {
    padding: 20px;
  }

  .mv-left h2 {
    font-size: 22px;
  }

  .mv-left p {
    font-size: 15px;
  }

  .mv-right {
    height: 250px;
  }

  /* PPP CARDS */
  .ppp-card {
    width: 100%;
  }

  /* SUBSCRIBE */
  .sub-container {
    flex-direction: column;
    text-align: center;
  }

  .sub-form {
    flex-direction: column;
  }

  .sub-form input {
    width: 100%;
  }

  .sub-form button {
    width: 100%;
  }

  /* FOOTER */
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
}

/* =========================
   TABLET (768px - 1024px)
========================= */
@media (min-width: 768px) and (max-width: 1024px) {

  /* HEADER */
  .hd-container {
    padding: 15px 25px;
  }

  /* NAV GAP */
  .nav ul {
    gap: 15px;
  }

  /* BANNER */
  .banner-content h1 {
    font-size: 30px;
  }

  .banner-content p {
    font-size: 16px;
  }

  /* CORE SERVICES */
  .cs-card {
    width: 48%;
  }

  .cs-image img {
    height: 280px;
  }

  /* LIFE */
  .life-container {
    flex-direction: column;
  }

  .life-content h2 {
    font-size: 32px;
  }

  /* BUSINESS */
  .business-container {
    flex-direction: column;
  }

  .tab-content h2 {
    font-size: 32px;
  }

  /* THINK TANK */
  .tt-container {
    flex-direction: column;
  }

  /* MISSION VISION */
  .mv-container {
    flex-direction: column;
  }

  .mv-right {
    height: 300px;
  }

  /* PPP */
  .ppp-card {
    width: 45%;
  }

  /* SUBSCRIBE */
  .sub-container {
    flex-direction: column;
    gap: 15px;
  }
}

/* HAMBURGER */
.menu-toggle {
  display: none;
  font-size: 22px;
  color: #fff;
  cursor: pointer;
}

/* MOBILE */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
  }

  .nav ul {
    flex-direction: column;
    background: #000;
    width: 100%;
    display: none;
    padding: 15px;
  }

  .nav ul.active {
    display: flex;
  }

  .nav ul li {
    width: 100%;
  }

  .nav ul li a {
    display: block;
    padding: 10px 0;
  }

  /* DROPDOWN FIX */
  .dropdown-menu {
    position: static;
    width: 100%;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    background: #111;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }

  /* CONTACT BUTTON HIDE (optional) */
  .contact-btn {
    display: none;
  }
}