* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

  /* outline: 1px solid transparent; */
}

body {
  font-family: "Times New Roman", Times, serif;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

:root {
  --navbar-height: 12vh;
}

.header-divider--bottom {
  bottom: 54px;
}

:root {
  --blue: #000;
  --red: red;
  --white: #fff;
  --heading: "Ubuntu", sans-serif;
  --para: "Source Sans Pro", sans-serif;
}

body {
  overflow-x: hidden;
}

.navbar {
  width: 100%;
  height: 65px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

.logo img {
  width: 54px;
  height: 54px;
}

.hamburger {
  display: none;
}

.nav-links {
  width: 100%;
  height: 12vh;
  display: flex !important;
  justify-content: end;
  align-items: center;
  flex-direction: row;
}

.nav-links a {
  padding: 9px 22px;
  color: var(--blue);
  text-decoration: none;
  font-size: 22px;
  transition: all 100ms ease-in-out;
  cursor: pointer;
  font-family: var(--heading);
  transition: all 300ms ease-in-out;
}

.nav-links span {
  color: var(--red);
}

.nav-links a:hover {
  color: var(--red);
}


.carousel {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #f3f4f6;
}

.track {
  display: flex;
  height: 100%;
  transition: transform 700ms cubic-bezier(0.22, 0.9, 0.25, 1);
}

.slide {
  flex: 0 0 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.slide-inner {
  width: 100%;
  max-width: 1080px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 36px;
  align-items: center;
  padding: 36px;
}

/* LEFT TEXT */
.slide-text h2 {
  font-size: 43px;
  font-weight: 800;
  color: #111;
  line-height: 1.2;
}

/* RIGHT IMAGES */

.slide-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.img-box {
  background: #fff;
  border-radius: 13px;
  overflow: hidden;
  padding: 13px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.img-box img {
  width: 100%;
  height: 270px;
  object-fit: contain;
  /* ✅ no cutting */
  transition: transform 0.6s ease;
}

.img-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.15);
}

.img-box:hover img {
  transform: scale(1.35);
  /* ✅ strong zoom */
}

.caption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  color: #fff;
  background: rgba(0, 0, 0, 0.45);
  padding: 7px 11px;
  border-radius: 5px;
  font-size: 13px;
  backdrop-filter: blur(4px);
}

.start {
  width: 100%;
  height: 225px;
  background: var(--blue);
  display: flex;
}

.start_txt {
  width: 70%;
  height: 225px;
  padding-left: 4%;
}

.start_txt h1 {
  width: 100%;
  height: 90px;
  font-family: var(--heading);
  font-size: 27px;
  color: var(--white);
  display: flex;
  align-items: flex-end;
}

.start_txt p {
  width: 100%;
  height: 135px;
  font-family: var(--para);
  font-size: 18px;
  color: var(--white);
  display: flex;
  align-items: center;
}

.btn {
  width: 30%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.button {
  height: 45px;
  cursor: pointer;
  font-size: 0.9rem;
  border-radius: 9px;
  border: none;
  padding: 2px;
  background: radial-gradient(circle 72px at 80% -10%, #ffffff, #181b1b);
  position: relative;
}

.button::after {
  content: "";
  position: absolute;
  width: 65%;
  height: 60%;
  border-radius: 108px;
  top: 0;
  right: 0;
  box-shadow: 0 0 18px #ffffff38;
  z-index: -1;
}

.blob1 {
  position: absolute;
  width: 63px;
  height: 100%;
  border-radius: 9px;
  bottom: 0;
  left: 0;
  background: radial-gradient(circle 54px at 0% 100%,
      var(--white),
      var(--red),
      transparent);
  box-shadow: -10px 9px 27px #0051ff2d;
}

.inner {
  padding: 13px 22px;
  border-radius: 9px;
  color: #fff;
  z-index: 3;
  position: relative;
  background: radial-gradient(circle 72px at 80% -50%, #777777, #0f1111);
}

.inner::before {
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 9px;
  background: radial-gradient(circle 54px at 0% 100%,
      #00e1ff1a,
      #0000ff11,
      transparent);
  position: absolute;
}

.agenda-section {
  text-align: center;
  padding: 49px 0;
  width: 100%;
}

.agenda-section h2 {
  font-size: 32px;
  font-weight: bold;
  color: var(--red);
  height: 81px;
  font-family: var(--heading);
}

.agenda-section p.subtitle {
  color: #aaa;
  font-size: 12px;
  margin-bottom: 40px;
}

.agenda-container {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: auto;
}

.agenda-box {
  flex: 2;
  margin: 0 8px;
  padding: 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.agenda-box:last-child {
  border-right: none;
}

.agenda-box h3 {
  font-size: 49px;
  margin: 0;
  font-weight: bold;
  font-family: var(--heading);
}

.agenda-box h3 img {
  width: 202px;
  height: 202px;
}

.agenda-box .title {
  font-size: 20px;
  font-weight: bold;
  color: var(--blue);
  margin: 8px 0;
  letter-spacing: 1px;
  font-family: var(--heading);
}

.agenda-box p {
  font-size: 14px;
  color: var(--dark-blue);
  line-height: 1.5;
  font-family: var(--para);
}

.process {
  width: 100%;
  height: auto;
  background: var(--blue);
}

.process h1 {
  width: 100%;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--heading);
  color: var(--white);
  font-size: 45px;
}

.process_pnts {
  width: 100%;
  height: 720px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.pnts_1 {
  width: 100%;
  height: 108px;
  display: flex;
}

.pnts_1 img {
  width: 72px;
  height: 72px;
}

.pnts_1:nth-child(1) {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: var(--white);
}

.pnts_1:nth-child(1) .pnts_txt h2 {
  display: flex;
  height: 45px;
  align-items: center;
  font-family: var(--heading);
  font-size: 22px;
  padding-left: 2%;
}

.pnts_1:nth-child(1) .pnts_txt p {
  display: flex;
  height: 45px;
  align-items: center;
  font-family: var(--para);
  font-size: 18px;
  padding-left: 2%;
}

.pnts_1:nth-child(1) .pnts_txt {
  width: 45%;
  height: 108px;
  border-bottom: 2px solid var(--white);
  border-top: 2px solid var(--white);
  background-image: linear-gradient(to right, var(--blue), var(--light-blue));
}

.pnts_1:nth-child(1) .pnts_img {
  width: 10%;
  height: 108px;
  background: var(--blue);
  border: 2px solid var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 72px 0 0 72px;
}

.pnts_1:nth-child(2) {
  display: flex;
  justify-content: flex-start;
  color: var(--white);
}

.pnts_1:nth-child(2) .pnts_txt h2 {
  display: flex;
  height: 45px;
  align-items: center;
  font-family: var(--heading);
  font-size: 22px;
  padding-right: 2%;
  justify-content: flex-end;
}

.pnts_1:nth-child(2) .pnts_txt p {
  display: flex;
  height: 45px;
  align-items: center;
  font-family: var(--para);
  font-size: 18px;
  padding-right: 2%;
  justify-content: flex-end;
}

.pnts_1:nth-child(2) .pnts_img {
  width: 10%;
  height: 108px;
  border: 2px solid var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0 72px 72px 0;
}

.pnts_1:nth-child(2) .pnts_txt {
  width: 45%;
  height: 108px;
  border-bottom: 2px solid var(--white);
  border-top: 2px solid var(--white);
  background-image: linear-gradient(to right, var(--light-blue), var(--blue));
}

.pnts_1:nth-child(3) {
  display: flex;
  justify-content: flex-end;
  color: var(--white);
}

.pnts_1:nth-child(3) .pnts_txt h2 {
  display: flex;
  height: 45px;
  align-items: center;
  font-family: var(--heading);
  font-size: 22px;
  padding-left: 2%;
}

.pnts_1:nth-child(3) .pnts_txt p {
  display: flex;
  height: 45px;
  align-items: center;
  font-family: var(--para);
  font-size: 18px;
  padding-left: 2%;
}

.pnts_1:nth-child(3) .pnts_img {
  width: 10%;
  height: 108px;
  border: 2px solid var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 72px 0 0 72px;
}

.pnts_1:nth-child(3) .pnts_txt {
  width: 45%;
  height: 108px;
  border-bottom: 2px solid var(--white);
  border-top: 2px solid var(--white);
  background-image: linear-gradient(to right, var(--blue), var(--light-blue));
}

.pnts_1:nth-child(4) {
  display: flex;
  justify-content: flex-start;
  color: var(--white);
}

.pnts_1:nth-child(4) .pnts_txt h2 {
  display: flex;
  height: 45px;
  align-items: center;
  font-family: var(--heading);
  font-size: 22px;
  padding-right: 2%;
  justify-content: flex-end;
}

.pnts_1:nth-child(4) .pnts_txt p {
  display: flex;
  height: 45px;
  align-items: center;
  font-family: var(--para);
  font-size: 18px;
  padding-right: 2%;
  justify-content: flex-end;
}

.pnts_1:nth-child(4) .pnts_img {
  width: 10%;
  height: 108px;
  border: 2px solid var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0 72px 72px 0;
}

.pnts_1:nth-child(4) .pnts_txt {
  width: 45%;
  height: 108px;
  border-bottom: 2px solid var(--white);
  border-top: 2px solid var(--white);
  background-image: linear-gradient(to right, var(--light-blue), var(--blue));
}

.pnts_1:nth-child(5) {
  display: flex;
  justify-content: flex-end;
  color: var(--white);
}

.pnts_1:nth-child(5) .pnts_txt h2 {
  display: flex;
  height: 45px;
  align-items: center;
  font-family: var(--heading);
  font-size: 22px;
  padding-left: 2%;
}

.pnts_1:nth-child(5) .pnts_txt p {
  display: flex;
  height: 45px;
  align-items: center;
  font-family: var(--para);
  font-size: 18px;
  padding-left: 2%;
}

.pnts_1:nth-child(5) .pnts_txt {
  width: 45%;
  height: 108px;
  border-bottom: 2px solid var(--white);
  border-top: 2px solid var(--white);
  background-image: linear-gradient(to right, var(--blue), var(--light-blue));
}

.pnts_1:nth-child(5) .pnts_img {
  width: 10%;
  height: 108px;
  border: 2px solid var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 72px 0 0 72px;
}

.why-choose-us-section {
  max-width: 1080px;
  margin: 0 auto;
  padding: 36px;
  background-color: #ffffff;
  /* White background for the main content area */
  border-radius: 7px;
}

/* Section Heading */
.why-choose-us-section h2 {
  text-align: center;
  color: var(--red);
  /* Deep blue for the main heading */
  font-size: 2.25em;
  font-family: var(--heading);
  margin-bottom: 36px;
  border-bottom: 3px solid var(--red);
  /* Lighter blue underline */
  display: inline-block;
  padding-bottom: 9px;
  width: 100%;
}

/* Grid for the feature blocks - using Flexbox for arrangement */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  /* Allows items to wrap onto the next line */
  gap: 22px;
  /* Space between feature blocks */
  justify-content: center;
}

/* Individual Feature Block */
.feature-block {
  /* Use calc to define width, allowing for 2 columns with gaps */
  /* This mimics a basic 2-column grid without relying on media queries */
  flex: 0 1 calc(50% - 11px);
  /* Set to 50% width minus half the gap for spacing */
  min-width: 270px;
  /* Ensures stacking on very small screens, though not strictly responsive */
  padding: 27px;
  background-color: var(--blue);
  /* Very light blue background for features */
  /* Light blue border */
  border-radius: 7px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Fallback for older browsers: On screens where 270px isn't enough, it might wrap, but will generally stay in 2 columns on desktops */

/* Hover effect for engagement */
.feature-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 14px rgba(0, 51, 102, 0.15);
  /* Shadow using the deep blue */
}

/* Feature Title */
.feature-block h3 {
  color: var(--white);
  /* Medium blue for feature titles */
  font-size: 1.35em;
  font-family: var(--heading);
  margin-top: 0;
  margin-bottom: 14px;
  border-bottom: 2px solid var(--white);
  /* Very light blue separator */
  padding-bottom: 4px;
}

/* Feature Title Icon */
.feature-block h3::before {
  content: "";
  /* Example Unicode character/emoji */
  margin-right: 9px;
  color: #007bff;
  /* Bright blue accent */
}

/* Feature Content */
.feature-block p {
  color: var(--white);
  /* Dark grey for readability */
  line-height: 1.6;
}

.featured-section {
  width: 100%;
  padding: 36px 18px;
  background-color: var(--blue);
  /* White background for the main content */
}

/* Section Heading */
.featured-section h2 {
  text-align: center;
  color: var(--white);
  /* Deep blue */
  font-size: 1.98em;
  font-family: var(--heading);
  margin-bottom: 27px;
  padding-bottom: 9px;
  display: inline-block;
  width: 100%;
}

/* Content Grid (Flex Container) */
.case-study-grid {
  display: flex;
  flex-wrap: wrap;
  /* Allows items to wrap to the next line */
  gap: 22px;
  /* Space between items */
  justify-content: center;
  /* Centers items horizontally */
}

/* Individual Feature Item (Flex Item) */
.case-study-item {
  /* flex-basis combined with calc sets the width for 3 items per row on large screens. 
               The min-width ensures they take up full width on smaller screens, allowing wrap. */
  flex: 1 1 calc(33.333% - 15px);
  /* 3 items per row (1/3rd width minus space for two gaps) */
  min-width: 252px;
  /* Minimum width before forcing a wrap/stacking */
  padding: 22px;
  background-color: var(--white);
  /* Very light blue background */
  /* Light blue border */
  border-radius: 7px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 51, 102, 0.1);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

/* Hover effect */
.case-study-item:hover {
  /* Slightly darker blue on hover */
  transform: translateY(-3px);
  /* Subtle lift effect */
  box-shadow: 0 4px 9px rgba(0, 51, 102, 0.2);
}

/* Item Text */
.case-study-item p {
  color: var(--blue);
  /* Deep blue for the text */
  font-weight: bold;
  font-family: var(--para);
  font-size: 0.99em;
  line-height: 1.4;
}

.case-study-item img {
  width: 225px;
  height: 225px;
}

/* Icon/Separator before text (using pseudo-element) */
.case-study-item p::before {
  /* Link or chain icon */
  display: block;
  font-size: 1.35em;
  margin-bottom: 9px;
  color: #007bff;
  /* Bright blue accent */
}

footer {
  background-color: var(--dark-blue);
  color: var(--blue);
  padding: 54px 90px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 54px;
}

.footer-section h3 {
  font-size: 1.08rem;
  font-family: var(--heading);
  margin-bottom: 14px;
  color: var(--red);
}

.footer-section p,
.footer-section a {
  color: var(--blue);
  font-size: 0.855rem;
  line-height: 1.8;
  font-family: var(--para);
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
}

.footer-section a:hover {
  color: var(--red);
}

.social-links {
  display: flex;
  gap: 9px;
  margin-top: 9px;
}

.social-links a {
  display: inline-block;
  background: #333;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  text-align: center;
  line-height: 32px;
  color: #fff;
  font-size: 0.9rem;
  transition: background 0.3s;
}

.social-links a:hover {
  background: #007bff;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #333;
  margin-top: 36px;
  padding-top: 18px;
  font-size: 0.81rem;
  color: #a0a0a0;
}

.carousel {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #f3f4f6;
  position: relative;
  /* IMPORTANT */
}

.start {
  margin-top: 36px;
  padding-top: 36px;
}

/* ==================== RESPONSIVE STYLES ==================== */

/* Base responsive adjustments */
* {
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  min-width: 288px;
}

/* ===== NAVBAR RESPONSIVENESS ===== */

/* Tablet and Mobile Menu */
@media (max-width: 1024px) {
  .navbar {
    height: 65px;
    /* min-height: 10vh; */
    flex-wrap: nowrap;
    /* padding: 0 0.9rem; */
    position: relative;
    align-items: center;
    position: fixed;
  }

  .logo img {
    width: 45px;
    height: 45px;
  }

  .hamburger {
    display: block;
    background: none;
    border: none;
    font-size: 25px;
    color: var(--blue);
    cursor: pointer;
    text-align: right;
    padding-right: 0.9rem;
  }

  .nav-links {
    display: none !important;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    height: auto;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 0.9rem 0;
  }

  .nav-links.active {
    display: flex !important;
    max-height: calc(100vh - 65px) !important;
    overflow-y: auto !important;
  }

  .nav-links a {
    width: 100%;
    padding: 13px 18px;
    font-size: 16px;
    text-align: left;
    /* ✅ */
    border-bottom: 1px solid #eee;
  }

  /* Dropdown adjustments for mobile */
  .dropdown {
    width: 100%;
  }

  .dropdown-content {
    position: static !important;
    display: none;
    background: #f8f8f8;
    box-shadow: none;
    min-width: 100%;
    margin-top: 0;
  }

  .dropdown:hover .dropdown-content {
    display: block;
  }

  .sub-dropdown-content {
    position: static !important;
    left: 0 !important;
    background: #f0f0f0;
    box-shadow: none;
    min-width: 100%;
    display: none;
  }

  .has-submenu {
    padding-right: 22px;
  }

  .submenu-arrow {
    right: 9px;
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .logo img {
    width: 36px;
    height: 36px;
  }

  .nav-links a {
    font-size: 16px;
    padding: 11px 18px;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 0 0.45rem;
  }

  .logo img {
    width: 32px;
    height: 32px;
  }

  .hamburger {
    font-size: 22px;
    padding-right: 0.45rem;
  }

  .nav-links a {
    font-size: 14px;
    padding: 9px 14px;
  }
}

@media (max-width: 320px) {
  .logo img {
    width: 27px;
    height: 27px;
  }

  .nav-links a {
    font-size: 14px;
  }
}

/* ===== HEADER/CAROUSEL RESPONSIVENESS ===== */

@media (max-width: 1024px) {
  header {
    height: auto;
  }

  .slide-inner {
    grid-template-columns: 1fr;
    gap: 29px;
    padding: 29px 22px;
  }

  .slide-text h2 {
    font-size: 36px;
    text-align: center;
  }

  .slide-images {
    grid-template-columns: repeat(2, 1fr);
  }

  .img-box img {
    height: 234px;
  }
}

@media (max-width: 768px) {
  .slide-text h2 {
    font-size: 29px;
  }

  .slide-images {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .img-box {
    padding: 9px;
  }

  .img-box img {
    height: 198px;
  }
}

@media (max-width: 480px) {
  .slide-inner {
    padding: 22px 14px;
  }

  .slide-text h2 {
    font-size: 23px;
  }

  .img-box img {
    height: 171px;
  }
}

/* ===== START SECTION RESPONSIVENESS ===== */
@media (max-width: 992px) {
  .start {
    flex-direction: column;
    height: auto;
    padding: 1.8rem 0.9rem;
  }

  .start_txt {
    width: 100%;
    height: auto;
    padding: 0;
    text-align: center;
    margin-bottom: 1.8rem;
  }

  .start_txt h1 {
    height: auto;
    font-size: 23px;
    justify-content: center;
    margin-bottom: 0.9rem;
  }

  .start_txt p {
    height: auto;
    font-size: 16px;
    justify-content: center;
    text-align: center;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .button {
    font-size: 0.81rem;
    padding: 1px;
  }

  .inner {
    padding: 11px 18px;
  }
}

@media (max-width: 768px) {
  .start_txt h1 {
    font-size: 20px;
  }

  .start_txt p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .start {
    padding: 1.35rem 0.45rem;
  }

  .start_txt h1 {
    font-size: 18px;
  }

  .start_txt p {
    font-size: 13px;
    padding: 0 0.45rem;
  }

  .button {
    height: 40px;
    font-size: 0.765rem;
  }

  .inner {
    padding: 9px 16px;
  }
}

@media (max-width: 320px) {
  .start_txt h1 {
    font-size: 16px;
  }

  .start_txt p {
    font-size: 12px;
  }

  .button {
    height: 36px;
    font-size: 0.72rem;
  }
}

/* Extra large screens */
@media (min-width: 1921px) and (max-width: 2560px) {
  .start {
    height: 270px;
    max-width: 1800px;
    margin: 0 auto;
  }

  .start_txt h1 {
    font-size: 36px;
  }

  .start_txt p {
    font-size: 22px;
  }

  .button {
    height: 54px;
    font-size: 1.08rem;
  }

  .inner {
    padding: 16px 32px;
  }
}

/* ===== AGENDA SECTION RESPONSIVENESS ===== */
@media (max-width: 1200px) {
  .agenda-container {
    flex-wrap: wrap;
  }

  .agenda-box {
    flex: 1 1 calc(50% - 18px);
    margin: 9px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .agenda-box:nth-child(even) {
    border-right: none;
  }

  .agenda-box:last-child {
    border-bottom: none;
  }
}

@media (max-width: 768px) {
  .agenda-section {
    padding: 36px 0.9rem;
  }

  .agenda-section h2 {
    font-size: 29px;
    height: auto;
    margin-bottom: 27px;
  }

  .agenda-box {
    flex: 1 1 100%;
    margin: 14px 0;
    padding: 14px;
  }

  .agenda-box h3 img {
    width: 162px;
    height: 162px;
  }

  .agenda-box .title {
    font-size: 20px;
  }

  .agenda-box p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .agenda-section {
    padding: 27px 0.45rem;
  }

  .agenda-section h2 {
    font-size: 23px;
  }

  .agenda-box h3 img {
    width: 126px;
    height: 126px;
  }

  .agenda-box .title {
    font-size: 18px;
  }

  .agenda-box p {
    font-size: 14px;
  }
}

@media (max-width: 320px) {
  .agenda-section h2 {
    font-size: 20px;
  }

  .agenda-box h3 img {
    width: 108px;
    height: 108px;
  }

  .agenda-box .title {
    font-size: 16px;
  }

  .agenda-box p {
    font-size: 13px;
  }
}

/* Extra large screens */
@media (min-width: 1921px) and (max-width: 2560px) {
  .agenda-section {
    padding: 72px 1.8rem;
    max-width: 1800px;
    margin: 0 auto;
  }

  .agenda-section h2 {
    font-size: 45px;
    margin-bottom: 54px;
  }

  .agenda-container {
    max-width: 1620px;
    margin: 0 auto;
  }

  .agenda-box h3 img {
    width: 270px;
    height: 270px;
  }

  .agenda-box .title {
    font-size: 29px;
  }

  .agenda-box p {
    font-size: 20px;
  }
}

/* ===== PROCESS SECTION RESPONSIVENESS ===== */
@media (max-width: 1200px) {
  .process_pnts {
    height: auto;
    padding: 1.8rem 0;
  }

  .pnts_1 {
    height: auto;
    min-height: 90px;
    margin: 0.9rem 0;
  }

  .pnts_1:nth-child(odd) {
    justify-content: center;
  }

  .pnts_1:nth-child(even) {
    justify-content: center;
  }

  .pnts_txt {
    width: 60% !important;
  }

  .pnts_img {
    width: 15% !important;
  }
}

@media (max-width: 992px) {
  .process h1 {
    font-size: 36px;
    height: 72px;
  }

  .pnts_txt h2 {
    font-size: 20px !important;
  }

  .pnts_txt p {
    font-size: 16px !important;
  }

  .pnts_img img {
    width: 54px;
    height: 54px;
  }
}

@media (max-width: 768px) {
  .process {
    padding: 0 0.9rem;
  }

  .process h1 {
    font-size: 29px;
    height: 54px;
  }

  .pnts_1 {
    flex-direction: column !important;
    height: auto;
    margin: 1.35rem 0;
  }

  .pnts_1:nth-child(odd),
  .pnts_1:nth-child(even) {
    flex-direction: column !important;
    align-items: center;
  }

  .pnts_txt {
    width: 100% !important;
    height: auto !important;
    border: none !important;
    text-align: center;
    padding: 0.9rem;
    border-radius: 9px;
    margin: 0.45rem 0;
  }

  .pnts_img {
    width: 100% !important;
    height: auto !important;
    border: none !important;
    border-radius: 50% !important;
    padding: 0.9rem;
  }

  .pnts_txt h2 {
    justify-content: center !important;
    padding: 0 !important;
    height: auto;
    margin-bottom: 0.45rem;
  }

  .pnts_txt p {
    justify-content: center !important;
    padding: 0 !important;
    height: auto;
  }

  .pnts_img img {
    width: 63px;
    height: 63px;
  }
}

@media (max-width: 480px) {
  .process h1 {
    font-size: 25px;
  }

  .pnts_txt h2 {
    font-size: 18px !important;
  }

  .pnts_txt p {
    font-size: 14px !important;
  }

  .pnts_img img {
    width: 54px;
    height: 54px;
  }
}

@media (max-width: 320px) {
  .process h1 {
    font-size: 22px;
  }

  .pnts_txt h2 {
    font-size: 16px !important;
  }

  .pnts_txt p {
    font-size: 13px !important;
  }
}

/* Extra large screens */
@media (min-width: 1921px) and (max-width: 2560px) {
  .process {
    max-width: 1800px;
    margin: 0 auto;
  }

  .process h1 {
    font-size: 54px;
    height: 108px;
  }

  .process_pnts {
    height: 900px;
  }

  .pnts_1 {
    height: 135px;
  }

  .pnts_txt h2 {
    font-size: 29px !important;
  }

  .pnts_txt p {
    font-size: 23px !important;
  }

  .pnts_img img {
    width: 90px;
    height: 90px;
  }
}

/* ===== WHY CHOOSE US SECTION RESPONSIVENESS ===== */
@media (max-width: 1200px) {
  .why-choose-us-section {
    padding: 36px 1.8rem;
  }

  .feature-grid {
    gap: 18px;
  }

  .feature-block {
    flex: 0 1 calc(50% - 9px);
    min-width: 252px;
  }
}

@media (max-width: 768px) {
  .why-choose-us-section {
    padding: 36px 0.9rem;
  }

  .why-choose-us-section h2 {
    font-size: 29px;
    margin-bottom: 27px;
  }

  .feature-grid {
    flex-direction: column;
  }

  .feature-block {
    flex: 1 1 100%;
    min-width: 100%;
  }

  .feature-block h3 {
    font-size: 20px;
  }

  .feature-block p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .why-choose-us-section {
    padding: 27px 0.45rem;
  }

  .why-choose-us-section h2 {
    font-size: 23px;
  }

  .feature-block {
    padding: 18px;
  }

  .feature-block h3 {
    font-size: 18px;
  }

  .feature-block p {
    font-size: 14px;
  }
}

@media (max-width: 320px) {
  .why-choose-us-section h2 {
    font-size: 20px;
  }

  .feature-block h3 {
    font-size: 16px;
  }

  .feature-block p {
    font-size: 13px;
  }
}

/* Extra large screens */
@media (min-width: 1921px) and (max-width: 2560px) {
  .why-choose-us-section {
    max-width: 1800px;
    margin: 0 auto;
    padding: 54px 1.8rem;
  }

  .why-choose-us-section h2 {
    font-size: 45px;
    margin-bottom: 45px;
  }

  .feature-block {
    padding: 36px;
    min-width: 405px;
  }

  .feature-block h3 {
    font-size: 25px;
  }

  .feature-block p {
    font-size: 20px;
  }
}

/* ===== FEATURED SECTION RESPONSIVENESS ===== */
@media (max-width: 1200px) {
  .case-study-grid {
    gap: 18px;
  }

  .case-study-item {
    flex: 1 1 calc(50% - 9px);
    min-width: 252px;
  }

  .case-study-item:last-child {
    flex: 1 1 100%;
  }
}

@media (max-width: 768px) {
  .featured-section {
    padding: 36px 0.9rem;
  }

  .featured-section h2 {
    font-size: 29px;
    margin-bottom: 27px;
  }

  .case-study-grid {
    flex-direction: column;
  }

  .case-study-item {
    flex: 1 1 100%;
    min-width: 100%;
    margin-bottom: 18px;
  }

  .case-study-item img {
    width: 180px;
    height: 180px;
  }

  .case-study-item p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .featured-section {
    padding: 27px 0.45rem;
  }

  .featured-section h2 {
    font-size: 23px;
  }

  .case-study-item {
    padding: 18px;
  }

  .case-study-item img {
    width: 162px;
    height: 162px;
  }

  .case-study-item p {
    font-size: 14px;
  }
}

@media (max-width: 320px) {
  .featured-section h2 {
    font-size: 20px;
  }

  .case-study-item img {
    width: 135px;
    height: 135px;
  }

  .case-study-item p {
    font-size: 14px;
  }
}

/* Extra large screens */
@media (min-width: 1921px) and (max-width: 2560px) {
  .featured-section {
    max-width: 1800px;
    margin: 0 auto;
    padding: 54px 1.8rem;
  }

  .featured-section h2 {
    font-size: 45px;
    margin-bottom: 45px;
  }

  .case-study-item {
    padding: 36px;
  }

  .case-study-item img {
    width: 270px;
    height: 270px;
  }

  .case-study-item p {
    font-size: 22px;
  }
}

/* ===== FOOTER RESPONSIVENESS ===== */
@media (max-width: 1200px) {
  footer {
    padding: 36px 1.8rem;
  }

  .footer-container {
    gap: 36px;
    flex-wrap: wrap;
  }

  .footer-section {
    width: calc(50% - 18px);
    margin-bottom: 27px;
  }
}

@media (max-width: 768px) {
  footer {
    padding: 36px 0.9rem;
  }

  .footer-container {
    flex-direction: column;
    gap: 27px;
  }

  .footer-section {
    width: 100%;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .footer-bottom {
    margin-top: 27px;
    padding-top: 18px;
    font-size: 0.765rem;
  }
}

@media (max-width: 480px) {
  footer {
    padding: 27px 0.45rem;
  }

  .footer-section h3 {
    font-size: 0.99rem;
  }

  .footer-section p,
  .footer-section a {
    font-size: 0.81rem;
  }

  .footer-bottom {
    font-size: 0.72rem;
  }
}

@media (max-width: 320px) {
  .footer-section h3 {
    font-size: 0.9rem;
  }

  .footer-section p,
  .footer-section a {
    font-size: 0.765rem;
  }

  .social-links a {
    width: 27px;
    height: 27px;
    line-height: 27px;
    font-size: 0.81rem;
  }
}

/* Extra large screens */
@media (min-width: 1921px) and (max-width: 2560px) {
  footer {
    max-width: 1800px;
    margin: 0 auto;
    padding: 72px 1.8rem;
  }

  .footer-container {
    max-width: 1620px;
    margin: 0 auto;
  }

  .footer-section h3 {
    font-size: 1.35rem;
  }

  .footer-section p,
  .footer-section a {
    font-size: 0.99rem;
  }

  .social-links a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 1.08rem;
  }

  .footer-bottom {
    font-size: 0.9rem;
    padding-top: 27px;
    margin-top: 54px;
  }
}

/* HEADER */
.hero-header {
  margin-top: 12vh;
  background: #f3f4f6;

  border-top: 2px solid red;
  border-bottom: 2px solid red;

  padding: 0px 0;
  /* breathing space */

  /* padding-top: 72px;
  padding-bottom: 72px; */
}

.header-divider {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: red;
  transform: scaleY(1);
  transform-origin: top;
  z-index: 99;
}

/* top line */
.header-divider--top {
  top: 65px;

  height: 1px;
  /* real pixel */
  transform: scaleY(1.8);
  /* visual thinning */
  transform-origin: top;
}

/* bottom line */
.header-divider--bottom {
  bottom: 54px;
}

/* Carousel should fill available space */
.carousel {
  height: 100%;
}

/* Logo image */
.logo img {
  width: 50px;
  height: auto;
}

@media (max-width: 768px) {
  .logo img {
    width: 36px;
  }
}

@media (max-width: 480px) {}

@media (max-width: 768px) {}

@media (max-width: 480px) {}

/* Red letters (H, I, E) */

/* Bigger H & E only */

/* Responsive tuning */
@media (max-width: 768px) {}

@media (max-width: 480px) {}

/* ===== CLEAN LOGO FIX ===== */

.logo {
  width: 40%;
  height: 12vh;
  display: flex;
  align-items: center;
  gap: 11px;
  padding-left: 18px;
}

.logo img {
  width: 50px;
  height: auto;
}

.brand-text {
  font-family: "Times New Roman", Georgia, serif;
  font-size: 31px;
  font-style: italic;
  font-weight: 600;
  color: #000;
  white-space: nowrap;
  line-height: 1;
}

/* Red letters */
.brand-red {
  color: #EC130C;
}

/* Bigger H & E */
.brand-big {
  font-size: 1.125em;
  font-weight: 900;
  vertical-align: baseline;
  /* keep baseline same */
  line-height: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
  .brand-text {
    font-size: 23px;
  }

  .brand-big {
    font-size: 1.17em;
  }
}

@media (max-width: 480px) {
  .brand-text {
    font-size: 20px;
  }

  .brand-big {
    font-size: 1.215em;
  }
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* 🔑 */
  padding: 0 36px;
}

.logo {
  width: auto;
  /* ❌ remove 40% */
  flex-shrink: 0;
}

/* Reduce gap between H and I */
.brand-i {
  margin-left: -6px;
  /* adjust: -2px to -6px if needed */
}

.brand-text {
  font-family: "Times New Roman", Georgia, serif;
  font-size: 31px;
  font-style: italic;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  display: flex;
  /* align-items: baseline; */
}

/* Red letters */
.brand-red {
  color: #EC130C;
}

/* H & E — taller but NOT pushed down */
.brand-big {
  font-size: 1.215em;
  /* taller cap height */
  font-weight: 900;
  line-height: 1;
}

/* Other letters slightly smaller */
.brand-small {
  font-size: 0.828em;
  /* subtle reduction */
}

/* Reduce gap between H and I */
.brand-i {
  margin-left: -2px;
}

.brand-text {
  font-family: "Times New Roman", Georgia, serif;
  font-size: 31px;
  font-style: italic;
  font-weight: 600;
  white-space: nowrap;

  display: flex;
  /* align-items: baseline;  */
}

/* Red letters */
.brand-red {
  color: #EC130C;
}

/* Taller H & E (only upwards) */
.brand-big {
  font-size: 1.215em;
  /* taller cap height */
  font-weight: 900;
  line-height: 1;
}

/* Other letters slightly smaller */
.brand-small {
  font-size: 0.828em;
  /* subtle reduction */
}

/* Tighten H + I spacing */
.brand-i {
  margin-left: -2px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 11px;
}

.logo img {
  display: block;
}

.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
  max-width: calc(100% - 54px);
}

.logo img {
  width: 43px;
  height: auto;
  display: block;
}

.brand-text {
  display: flex;
  /* align-items: baseline; */
  font-family: "Times New Roman", Georgia, serif;
  font-style: italic;
  font-weight: 600;
  font-size: 29px;
  white-space: nowrap;
  line-height: 1;
}

.brand-red {
  color: #EC130C;
}

.brand-big {
  font-size: 1.215em;
  font-weight: 900;
}

.brand-small {
  font-size: 0.828em;
}

.brand-i {
  margin-left: -2px;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 25px;
  cursor: pointer;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 65px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
  }

  .nav-links.active {
    display: flex;
    max-height: calc(100vh - 65px) !important;
    overflow-y: auto !important;
  }
}

.navbar {
  height: 65px;
  padding: 0 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 1;
  max-width: 80%;
}

.logo img {
  width: 40px;
  height: auto;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  /* align-items: baseline; */
  font-family: "Times New Roman", Georgia, serif;
  font-style: italic;
  font-weight: 600;
  font-size: 27px;
  line-height: 1;
  white-space: nowrap;
}

.brand-red {
  color: #EC130C;
}

.brand-big {
  font-size: 1.215em;
  font-weight: 900;
}

.brand-small {
  font-size: 0.81em;
}

.brand-i {
  margin-left: -2px;
}

.hamburger {
  display: none;
  font-size: 23px;
  background: none;
  border: none;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .hamburger {
    display: block;
  }

  .brand-text {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .brand-text {
    font-size: 18px;
  }

  .logo img {
    width: 32px;
  }
}

/* ===== SMALL PHONES (≤382px) LOGO FIX ===== */
@media (max-width: 425px) {
  .navbar {
    height: 58px;
    /* slightly shorter navbar */
    padding: 0 9px;
  }

  .logo {
    gap: 5px;
    max-width: calc(100% - 45px);
  }

  .logo img {
    width: 29px;
    /* 🔥 smaller logo image */
    height: auto;
  }

  .brand-text {
    font-size: 16px;
    /* 🔥 main fix */
    line-height: 1;
  }

  .brand-big {
    font-size: 1.125em;
    /* still taller, but controlled */
  }

  .brand-small {
    font-size: 0.792em;
  }

  .hamburger {
    font-size: 20px;
  }
}

/* ===== FINAL LOGO ALIGNMENT FIX ===== */

.logo {
  display: flex;
  align-items: center;
  /* ✅ center image & text vertically */
  gap: 7px;
  height: 100%;
  /* inherit navbar height */
}

.logo img {
  display: block;
  /* ✅ removes baseline gap */
  align-self: center;
  /* extra safety */
}

.brand-text {
  display: flex;
  align-items: center;
  /* ✅ NOT baseline */
  line-height: 1;
}

.logo img {
  transform: translateY(-6px);
  /* tweak: -1px or -2px */
}

@media (max-width: 1100px) and (min-width: 1025px) {
  .nav-links a {
    font-size: 18px;
    /* 🔥 reduce text size */
    padding: 7px 14px;
    /* 🔥 reduce spacing */
  }

  .brand-text {
    font-size: 22px;
    /* 🔥 slightly smaller logo text */
  }
}

.nav-links {
  flex-wrap: nowrap;
}

@media (max-width: 480px) {
  .navbar {
    flex-wrap: nowrap;
    /* 🔑 prevent wrapping */
    align-items: center;
  }
}

.hamburger {
  margin-left: auto;
  /* 🔥 pins it to the right */
}

@media (max-width: 480px) {
  .logo {
    max-width: calc(100% - 43px);
    /* space for hamburger */
    flex-shrink: 1;
  }
}

@media (max-width: 480px) {
  .brand-text {
    font-size: 16px;
  }
}

/* REMOVE width-based layout */

/* Flex-based layout */
.footer-container {
  display: flex;
  gap: 54px;
}

/* Logo column wider */
.footer-section:first-child {
  flex: 1.4;
}

/* Other columns */
.footer-section:not(:first-child) {
  flex: 1;
}

/* Prevent logo/text overflow */
.footer-logo {
  max-width: 324px;
}

.footer-desc {
  max-width: 288px;
}

.footer-logo .logo {
  padding-left: 0px;
}

.footer-logo .brand-big {
  font-size: 2.16rem;
}

.footer-logo .brand-small {
  font-size: 1.26rem;
}

.footer {
  padding: 54px 54px;
}

/* 🌐 Floating Social Icons */
.social-floating {
  position: fixed;
  right: 18px;
  bottom: 50%;
  transform: translateY(50%);
  display: flex;
  flex-direction: column;
  gap: 11px;
  z-index: 9999;
}

/* Common icon styles */
.social-icon {
  width: 47px;
  height: 47px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  text-decoration: none;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

/* Hover effect */
.social-icon:hover {
  transform: translateX(-6px) scale(1.05);
  box-shadow: 0 9px 22px rgba(0, 0, 0, 0.35);
}

/* Individual platform colors */
.social-icon.whatsapp {
  background: #25d366;
}

.social-icon.email {
  background: #ea4335;
}

.social-icon.phone {
  background: #0a58ca;
}

/* Icon alignment */
.social-icon i {
  line-height: 1;
}

/* 📱 Mobile optimization */
@media (max-width: 768px) {
  .social-floating {
    right: 11px;
  }

  .social-icon {
    width: 41px;
    height: 41px;
    font-size: 18px;
  }
}

.start {
  margin-top: 36px;
  padding-top: 36px;
  padding-bottom: 36px;
  width: 100%;
  height: auto;
  min-height: 225px;
  background: var(--blue);
  display: flex;
  align-items: center;
  /* vertical center */
}

.start_txt {
  width: 70%;
  padding-left: 4%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* vertical center */
}

.start_txt h1 {
  font-family: var(--heading);
  font-size: 27px;
  color: var(--white);
  margin-bottom: 0px;
}

.start_txt p {
  font-family: var(--para);
  font-size: 18px;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 2.7rem;
}

/* ===== MAIN DROPDOWN ===== */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #000;
  min-width: 216px;
  z-index: 9999;
  white-space: nowrap;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* ===========================
   DROPDOWN BASE
=========================== */
.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ===========================
   FIRST LEVEL DROPDOWN
=========================== */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #000;
  min-width: 216px;
  display: none;
  z-index: 9999;
}

.nav-item:hover>.dropdown-menu {
  display: block;
}

.dropdown-menu li {
  position: relative;
}

.dropdown-menu a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 14px;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background: #fff;
  color: #000;
}

/* ===========================
   SECOND LEVEL (SUBMENU)
=========================== */
.submenu {
  position: absolute;
  top: 0;
  left: 100%;
  background: #000;
  min-width: 216px;
  display: none;
}

.has-submenu:hover>.submenu {
  display: block;
}

/* ===========================
   ARROWS
=========================== */
.dropdown-menu i {
  font-size: 11px;
}

/* ===========================
   MOBILE FIX
=========================== */
@media (max-width: 992px) {

  .dropdown-menu,
  .submenu {
    position: static;
    display: none;
    width: 100%;
  }

  .nav-item.active>.dropdown-menu {
    display: block;
  }

  .has-submenu.active>.submenu {
    display: block;
  }
}

/* ===== GLOBAL ACTIVE STATE FOR NAVIGATION ===== */
.nav-links a.active,
.nav-links a.active i,
.dropbtn.active,
.dropbtn.active i,
.dropdown-content a.active,
.sub-dropdown-content a.active {
  color: var(--red) !important;
}


/* ===== DROPDOWN FIX ===== */

.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #000;
  min-width: 198px;
  z-index: 9999;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Sub dropdown */
.sub-dropdown {
  position: relative;
}

.sub-dropdown-content {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  background: #000;
  min-width: 198px;
}

.sub-dropdown:hover .sub-dropdown-content {
  display: block;
}

/* Dropdown links */
.dropdown-content a {
  color: #fff;
  padding: 11px 14px;
  font-size: 16px;
  display: block;
}

.dropdown-content a:hover {
  background: #fff;
  color: black;
}




/* ===========================
   DROPDOWN BASE
=========================== */
.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ===========================
   FIRST LEVEL DROPDOWN
=========================== */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #000;
  min-width: 216px;
  display: none;
  z-index: 9999;
}

.nav-item:hover>.dropdown-menu {
  display: block;
}

.dropdown-menu li {
  position: relative;
}

.dropdown-menu a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 14px;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background: #fff;
  color: #000;
}

/* ===========================
   SECOND LEVEL (SUBMENU)
=========================== */
.submenu {
  position: absolute;
  top: 0;
  left: 100%;
  background: #000;
  min-width: 216px;
  display: none;
}

.has-submenu:hover>.submenu {
  display: block;
}

/* ===========================
   ARROWS
=========================== */
.dropdown-menu i {
  font-size: 11px;
}

/* ===========================
   MOBILE FIX
=========================== */
@media (max-width: 992px) {

  .dropdown-menu,
  .submenu {
    position: static;
    display: none;
    width: 100%;
  }

  .nav-item.active>.dropdown-menu {
    display: block;
  }

  .has-submenu.active>.submenu {
    display: block;
  }
}

/* ===== GLOBAL ACTIVE STATE FOR NAVIGATION ===== */
.nav-links a.active,
.nav-links a.active i,
.dropbtn.active,
.dropbtn.active i,
.dropdown-content a.active,
.sub-dropdown-content a.active {
  color: #EC130C !important;
}