/* ─────────────────────────────── 1720 ─────────────────────────────── */
@media (max-width: 1720px) {}

/* ─────────────────────────────── 1450 ─────────────────────────────── */
@media (max-width: 1450px) {

  /* ==== Common ==== */
  .container {
    padding-left: 30px;
    padding-right: 30px;
  }

  /* ==== Header ==== */
  .header.absolute .container {
    width: calc(100% - 60px);
  }

  .process-item:not(:first-child)::before {
    right: calc(100% - 60px);
    width: calc(100% - 100px);
  }
  .industry-name {
    font-size: 16px;
  }
  .industry-icon {
  width: 20px;
  height: 20px;
  }

}

/* ─────────────────────────────── 1399 ─────────────────────────────── */
@media (max-width: 1399px) {}

/* ─────────────────────────────── 1320 ─────────────────────────────── */
@media (max-width: 1320px) {

  /* ==== Common ==== */
  .common-sec {
    padding-block: 90px 90px;
  }

  .sec-title {
    font-size: 36px;
  }

  /* ==== Header ==== */
  .header nav ul li {
    margin-right: 10px;
  }

  .logo-wrapper {
    height: 24px;
  }

  .header .btn {
    padding: 14px 16px;
  }

  .header nav ul li a {
    font-size: 15px;
  }

  .one-team-sec .common-card {
    padding: 30px 20px;

  }

  .one-team-sec .common-card__title {
    font-size: 32px;
  }
}

/* ─────────────────────────────── 1199 ─────────────────────────────── */
@media (max-width: 1199px) {

  /* ====== Common =====*/
  .sec-head:has(p) {
    margin-bottom: 40px;
  }

  /* ==== Header & Nav ==== */
  .main-nav {
    display: none;
  }

  /* ==== Hero Section ==== */
  .hero-title {
    font-size: 58px;
  }

  .hero-title br {
    display: none;
  }

  /* ==== Logos Section ==== */
  .logos-title {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .logos-track {
    gap: 50px;
  }

  .logo-item img {
    height: 28px;
  }

  .logos-sec::before,
  .logos-sec::after {
    height: 600px;
    width: 600px;
    filter: blur(400px);
  }

  .logos-sec::before {
    left: -300px;
  }

  .logos-sec::after {
    right: -300px;
  }

  /* ==== Industries Section ==== */

  /* ==== Footer ==== */
  .top-foot-wrap {
    padding: 40px 50px;
  }

  /* ==== Nav Drawer ==== */
  .shadow-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
  }

  body.nav-open .shadow-overlay {
    opacity: 1;
    visibility: visible;
  }

  .nav-drawer {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 320px;
    background-color: var(--white);
    z-index: 1100;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.12);
    overflow: hidden;
  }

  body.nav-open .nav-drawer {
    transform: translateX(0);
  }

  .nav-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid #f0f0f0;
    flex-shrink: 0;
  }

  .nav-drawer-logo {
    display: block;
    height: 26px;
    width: auto;
  }

  .nav-drawer-logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
  }

  .nav-close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #f5f5f5;
    cursor: pointer;
    border: none;
    outline: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
    flex-shrink: 0;
  }

  .nav-close-btn:hover {
    background-color: #ffe8b3;
    transform: rotate(90deg);
  }

  .nav-close-btn svg {
    width: 18px;
    height: 18px;
    color: var(--black);
  }

  .nav-drawer-menu {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 10px 0;
  }

  .nav-drawer-menu::-webkit-scrollbar {
    width: 4px;
  }

  .nav-drawer-menu::-webkit-scrollbar-track {
    background: transparent;
  }

  .nav-drawer-menu::-webkit-scrollbar-thumb {
    background-color: #e0e0e0;
    border-radius: 4px;
  }

  .nav-drawer-menu>ul {
    padding: 10px 0;
    margin: 0;
    list-style: none;
  }

  .nav-drawer-menu ul li {
    display: block;
    margin: 0;
    position: relative;
    border-bottom: 1px solid #f5f5f5;
  }

  .nav-drawer-menu ul li:last-child {
    border-bottom: none;
  }

  .nav-drawer-menu ul li>a {
    display: block;
    padding: 14px 50px 14px 24px;
    font-size: 16px;
    font-weight: 500;
    color: var(--black);
    text-decoration: none;
    transition: color 0.2s ease, padding-left 0.2s ease;
    width: 100%;
  }

  .nav-drawer-menu ul li>a:hover {
    color: var(--primary-color);
    padding-left: 30px;
  }

  .nav-drawer-menu ul li ul {
    display: none;
    padding: 0;
    margin: 0;
    background-color: #fafafa;
    border-top: 1px solid #f0f0f0;
  }

  .nav-drawer-menu ul li ul li {
    border-bottom: 1px solid #f0f0f0;
  }

  .nav-drawer-menu ul li ul li:last-child {
    border-bottom: none;
  }

  .nav-drawer-menu ul li ul li a {
    padding: 12px 24px 12px 36px;
    font-size: 14px;
    font-weight: 400;
    color: #555;
  }

  .nav-drawer-menu ul li ul li a:hover {
    color: var(--primary-color);
    padding-left: 44px;
  }

  .nav-drawer-menu ul li.has-submenu {
    cursor: pointer;
  }

  .nav-drawer-menu ul li.has-submenu>.vector-arrow {
    position: absolute;
    right: 18px;
    top: 0;
    width: 30px;
    height: 53px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    cursor: pointer;
    transition: transform 0.3s ease;
    mask-size: 16px;
  }

  .nav-drawer-menu ul li.has-submenu.show>.vector-arrow {
    transform: scaleY(-1);
  }

  .nav-drawer-footer {
    padding: 20px 24px;
    border-top: 1px solid #f0f0f0;
    flex-shrink: 0;
  }

  .nav-drawer-footer .btn {
    width: 100%;
    justify-content: center;
  }

  /* ==== Platform Guide ==== */
  .platform-card {
    padding: 30px 24px;
  }

  .platform-card-header {
    margin-bottom: 20px;
  }

  .platform-features {
    padding-top: 20px;
  }

  .digital-img-wrap {
    min-height: 600px;
  }

  .platform-pricing .price {
    font-size: 24px;
  }

  .digital-card {
    padding: 24px;
  }

  .digital-cards-row {
    --bs-gutter-x: 16px;
  }

  .problems-wrap {
    gap: 12px;
  }

  .problem-card,
  .common-card {
    padding: 20px;
  }

  .mt-50 {
    margin-top: 40px;
  }

  .one-team-sec .common-card__title {
    font-size: 24px;
  }

  .one-team-sec .sec-head {
    margin-bottom: 20px;
  }

  /* ==== Process Section ==== */
  .process-wrapper {
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
  }

  .process-item:nth-child(4)::before {
    display: none;
  }

  .process-item {
    flex: 0 0 calc(50% - 20px);
  }

  .stats-grid {
    gap: 5px;
  }

  .stat-item {
    padding: 20px 10px;
  }

  .stat-number {
    font-size: 38px;
  }

  .stat-label {
    font-size: 13px;
  }

  .testimonial-left .sec-title br {
    display: none;
  }

  .testimonial-text {
    font-size: 20px;
  }

  .quote-icon {
    margin-bottom: 20px;
  }

  .quote-icon img {
    width: 50px;
  }

  .testimonial-slider {
    padding-left: 20px;
  }

  .top-foot-wrap .top_foot_title {
    font-size: 24px;
  }

  .foot-logo {
    height: 22px;
    margin-bottom: 10px;
  }

  .foot-col p {
    font-size: 14px;
  }

  .foot-col ul li {
    font-size: 14px;
    margin-bottom: 5px;
  }

  .foot-contact-wrap {
    gap: 14px;
  }

  .foot-col {
    flex: 1;
    max-width: 100%;
    width: 100%;
  }

  .foot-row {
    gap: 30px 15px;
  }

  .foot-col.column-3::before {
    right: -3%;
  }

  .bottom-foot-wrap p {
    font-size: 14px;
  }
  .industries-grid {
    flex-wrap: wrap;
    height: auto;
    justify-content: center;
  }

  .industry-item {
    flex: 0 0 33%;
    height: 300px;
  }

  
}

/* ─────────────────────────────── 991 ─────────────────────────────── */
@media (max-width: 991px) {

  /* ==== Common ==== */
  .sec-head:has(p) {
    margin-bottom: 34px;
  }

  .common-sec {
    padding-block: 60px 60px;
  }

  .sec-title {
    font-size: 32px;
  }

  .btn {
    padding: 14px 20px;
    font-size: 15px;
  }

  /* ==== Hero Section ==== */
  .hero-title {
    font-size: 44px;
  }

  .hero-desc {
    margin-bottom: 25px;
  }

  .first_page {
    padding-top: 150px !important;
  }

  .hero-floating-elements .shopify-partner {
    top: -20px;
    left: 30px;
  }

  .hero-floating-elements .clutch-badge {
    bottom: -50px;
    right: 30px;
  }

  .hero-floating-elements .woo-expert {
    top: 45px;
    right: 30px;
  }

  .f-badge {
    font-size: 14px;
  }

  .f-arrow {
    width: 20px;
    height: 20px;
  }

  .clutch-badge .f-arrow {
    transform: scale(-1) rotate(-1deg) translate(9px, 15px);
  }

  .shopify-partner .f-arrow {
    transform: rotate(-15deg) translate(15px, 20px);
  }

  .woo-expert .f-arrow {
    transform: scaleX(-1) rotate(0deg) translate(16px, 20px);
  }

  /* ==== Logos Section ==== */
  .logos-title {
    font-size: 24px;
    margin-bottom: 32px;
  }

  .logos-sec {
    padding: 40px 0;
  }

  .logos-track {
    gap: 40px;
  }

  .logo-item img {
    height: 24px;
  }

  .logos-sec::before,
  .logos-sec::after {
    height: 450px;
    width: 450px;
    filter: blur(300px);
    opacity: 0.08;
  }

  .logos-sec::before {
    left: -225px;
  }

  .logos-sec::after {
    right: -225px;
  }

  /* ==== Stats Section ==== */
  .stats-grid {
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }

  .stat-item {
    flex: 0 0 calc(33.333% - 14px);
  }

  /* ==== Industries Section ==== */
  

  .industry-icon {
    width: 24px;
    height: 24px;
  }

  .industry-content {
    gap: 10px;
  }



  /* ==== Footer ==== */
  .top-foot-wrap {
    flex-direction: column;
    text-align: center;
    border-radius: 40px;
    padding: 40px 20px;
    gap: 24px;
  }

  .foot-row {
    gap: 30px 15px;
    flex-wrap: wrap;
  }

  .foot-col {
    flex: 0 0 calc(33.33% - 10px);
    max-width: calc(33.33% - 10px);
  }

  .foot-col.column-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .foot-col::before {
    display: none;
  }

  .foot-logo-side p {
    margin-bottom: 18px;
  }

  /* .column-2 {
    justify-content: flex-start;
  } */

  .contact-foot-detail {
    padding: 0;
  }

  .footer-title {
    margin-bottom: 7px;
  }


  .foot-contact-item {
    gap: 10px;
  }

  .foot-contact-item p {
    font-size: 13px;
  }

  .digital-card-head .img {
    height: 20px;
    padding: 4px;
    width: 20px;
  }

  .digital-card p {
    font-size: 14px;
  }

  .digital-card-head .title {
    font-size: 18px;
  }

  .digital-card-head {
    gap: 5px;
  }

  .digital-card {
    padding: 15px 10px 15px 15px;
  }

  .digital-img-wrap {
    min-height: 450px;
  }

  .digital-cards-row {
    --bs-gutter-x: 16px;
    --bs-gutter-y: 16px;
    padding-top: 50px;
  }

  .problems-wrap {

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

  .one-team-sec .sec-head {
    text-align: center;
  }

  .one-team-sec .sec-head p {
    margin: 0 auto;
  }

  .common-card__icon {
    height: 50px;
    width: 50px;
    padding: 10px;
  }

  .marquee-track {
    gap: 16px;
  }

  .marquee-row {
    margin-bottom: 16px;
  }

  .service-card .common-card__title {
    font-size: 20px;
  }

  .side-shade {
    width: 20%;
  }

  .service-card {
    width: 100%;
    max-width: 280px;
  }

  .process-item:not(:first-child)::before {
    right: calc(100% - 55px);
    width: calc(100% - 60px);
  }

  .process-item {
    flex: 0 0 calc(50% - 20px);
  }

  .process-item {
    max-width: 200px;
  }

  .process-title {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .process-icon-wrap {
    margin-bottom: 12px;
  }

  .process-content p {
    font-size: 14px;
    padding: 0;
  }

  .process-wrapper {
    gap: 20px 30px;
  }

  .result-name,
  .result-stat {
    font-size: 18px;
  }

  .result-cat,
  .result-label {
    font-size: 12px;
  }

  .result-badge {

    top: 12px;
    left: 12px;
    padding: 6px 12px;
    font-size: 12px;
  }

  .why-ecom-list li a {

    padding: 12px 15px;
    font-size: 18px;
  }

  .why-ecom-list li a .icon-wrap img {
    width: 20px;
    height: 20px;
  }

  .testimonial-left p {

    margin-bottom: 25px;
  }

  .insights-sec .row {
    --bs-gutter-x: 16px;
  }

  .blog-img {
    margin-bottom: 12px;
  }

  .blog-meta {
    margin-bottom: 12px;
    font-size: 14px;
  }

  .blog-title {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .platform-features li {
    font-size: 14px;
  }

  .platform-card-header {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: end;
  }

  .platform-brand {
    width: 100%;
  }

  .choose-card {
    flex-direction: column;
  }

  .platforms-grid {
    margin-top: 50px;
    gap: 12px;
  }

  .logofade-wrapper {
    margin-bottom: 30px;
    margin-top: 0;
  }

  .right-platform-sec .left-side {
    padding: 0;
  }

  .sec-head:not(:has(p)) .sec-title {
    margin-bottom: 30px;
  }
}

/* ─────────────────────────────── 767 ─────────────────────────────── */
@media (max-width: 767px) {

  /* ==== Common ==== */
  .common-sec {
    padding-block: 40px 40px;
  }

  .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .right-platform-sec {
    max-width: calc(100% - 30px);
  }

  /* ==== Header ==== */
  .header-right .btn {
    display: none;
  }

  .hamburger svg {
    height: 2.3em;
    margin: -10px 0;
  }

  .header.absolute .container {
    width: calc(100% - 30px);
    top: 10px;
  }

  /* ==== Hero Section ==== */
  .hero-floating-elements {
    display: none;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-desc {
    font-size: 16px;
  }

  .first_page {
    padding-top: 100px !important;
    padding-bottom: 70px !important;
  }

  .hero-badge {
    margin-bottom: 20px;
  }



  /* ==== Comparison Table ==== */
  .comparison-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .comparison-table {
    min-width: 800px;
  }

  /* ==== Industries Section ==== */
  .industry-overlay {
    padding-top: 60px 10px 20px;
  }

  .industry-content {
    gap: 5px;
  }

  .industry-icon {
    width: 16px;
    height: 16px;
  }

  .industry-item {

    height: 220px;
  }

  .digital-overlay {
    background: linear-gradient(180deg, rgba(8, 3, 0, 0) 0%, #000000 0%);
  }

  .mt-50 {
    margin-top: 24px;
  }

  .problem-card__title {
    font-size: 20px;
  }

  .comparison-table tbody td {
    font-size: 16px;
    padding: 6px 14px;
  }

  .stars img {
    width: 16px;
    height: 16px;
  }

  .comparison-table thead th {
    padding: 10px 14px;
    font-size: 18px;
  }

  .comparison-table th {
    min-width: 160px;
    width: auto !important;

  }

  .marquee-track {
    animation-duration: 25s !important;
  }

  @keyframes scroll-left {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(calc(-100% - 0px));
    }
  }

  @keyframes scroll-right {
    0% {
      transform: translateX(calc(-100% - 0px));
    }

    100% {
      transform: translateX(0);
    }
  }

  .process-item:not(:first-child)::before {
    display: block !important;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 40px;
    background-image: linear-gradient(to bottom, var(--primary-color) 60%, transparent 40%);
    background-size: 1px 12px;
    background-repeat: repeat-y;
    right: auto;
    animation: marchingAntsVertical 0.8s linear infinite;
  }

  .process-item {
    max-width: 100%;
    flex: 0 0 100%;
  }

  .process-wrapper {
    gap: 40px;
  }

  /* 
 
  .process-wrapper {
    justify-content: flex-start;
  } */
  .why-ecom-sec .sec-head {
    text-align: center;
  }

  .why-ecom-sec .sec-head p {
    margin: 0 auto;
  }

  .pricing-card {
    padding: 15px 10px;
    border-width: 2px;
    box-shadow: 0px 4px 0px 0px #000000;
  }

  .pricing-price {
    font-size: 40px;
    margin-bottom: 24px;
  }

  .pricing-card-header {
    margin-bottom: 18px;
  }

  .pricing-features li {
    font-size: 15px;
    padding-left: 20px;
  }

  .pricing-badge {

    padding: 4px 10px;
    font-size: 14px;
  }

  .pricing-features li::before {
    height: 15px;
    width: 15px;
  }

  .pricing-features li:last-child {
    margin-bottom: 0;
  }

  .row {
    --bs-gutter-x: 16px;
    --bs-gutter-y: 16px;
  }

  .testimonial-slider {
    padding-left: 0;
  }

  .testimonial-text {
    margin-bottom: 24px;
  }

  .testimonial-left p {
    margin-bottom: 0;
  }

  .top-foot-wrap .top_foot_title {
    font-size: 20px;
  }

  .bottom-foot-wrap {
    justify-content: center;
  }

  .bottom-footer .container {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .main-footer {
    padding: 30px 0 20px;
  }

  .industry-item:hover .industry-overlay {
    padding-bottom: 30px;
  }

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

  .right-platform-sec .common-card {
    gap: 24px;
    padding: 24px;
  }

  .right-platform-sec .common-card_left img {
    height: 34px;
  }

  .sec-head:not(:has(p)) .sec-title {
    margin-bottom: 20px;
  }
}

/* ─────────────────────────────── 568 ─────────────────────────────── */
@media (max-width: 568px) {

  /* ==== Common ==== */
  .sec-title {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .sec-head:has(p) {
    margin-bottom: 25px;
  }

  p {
    font-size: 14px;
  }

  .btn {
    padding: 10px 15px;
    font-size: 13px;
    gap: 6px;
  }

  /* ==== Hero Section ==== */
  .hero-badge {
    font-size: 12px;
    padding: 5px 12px;
  }

  .hero-title {
    font-size: 30px;
    margin-bottom: 12px;
  }

  .hero-desc {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .hero-btns {
    flex-wrap: wrap;
    justify-content: center;
  }

  /* ==== Logos Section ==== */
  .logos-title {
    font-size: 22px;
    padding: 0 12px;
    margin-bottom: 30px;
  }

  .logos-sec {
    padding: 30px 0;
  }

  .logos-track {
    gap: 30px;
  }

  /* ==== Industries Section ==== */
  .industry-item {
    flex: 0 0 49%;
  }

  /* ==== Process Section ==== */
  .process-item {
    flex: 0 0 100%;
  }

  /* ==== Footer ==== */
  .foot-col,
  .foot-col.column-4 {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
  }

  .bottom-foot-wrap {
    flex-direction: column;
    gap: 10px;
    text-align: center;

  }

  .column-2 {
    justify-content: flex-start;
  }

  /* ==== Nav Drawer ==== */
  .nav-drawer {
    width: 290px;
  }

  /* ==== Platform Guide ==== */
  .platform-card {
    padding: 35px 25px;
  }

  .platform-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .platform-pricing {
    text-align: left;
  }

  /* ==== Extra tweaks ==== */
  .sec-head p {
    font-size: 15px !important;
  }

  .cards-wrap {
    flex-wrap: wrap;
  }

  .side-shade {
    width: 30px;
  }

  .service-card .common-card__title {
    font-size: 18px;
  }

  .service-card {
    padding: 20pox 12px 20px 20px;
  }

  .process-icon img {
    width: 24px;
    height: 24px;
  }

  .process-icon {
    width: 45px;
    height: 45px;
  }

  /* ==== Stats Section ==== */
  .stat-item {
    flex: 0 0 calc(50% - 10px);
  }

  .stat-number {
    font-size: 32px;
  }

  .why-ecom-list li a {


    font-size: 16px;
  }

  .why-ecom-list li a .icon-wrap img {
    width: 18px;
    height: 18px;
  }

  .pricing-price {
    font-size: 32px;
  }

  .why-ecom-list li a {
    padding: 12px 6px;
  }

  .testimonial-text {
    font-size: 18px;
  }

  .author-img {
    width: 45px;
    height: 45px;
  }

  .author-name {
    font-size: 18px;

  }

  .testimonial-author {
    gap: 10px;
  }

  .testi-btn {
    width: 36px;
    height: 36px;
  }

  .testimonial-nav {
    gap: 10px;
  }

  .testimonial-card {
    padding: 0;
  }

  .testimonial-left .sec-title {
    margin-bottom: 15px;
  }

  .quote-icon img {
    width: 40px;
  }

  .quote-icon {
    margin-bottom: 15px;
  }

  .location-marker .dot {
    width: 8px;
    height: 8px;
  }

  .expert-cta-img-wrap {
    padding: 0;
  }

  .sub-title::before {
    height: 15px;
    width: 15px;
  }
}

/* ─────────────────────────────── 489 ─────────────────────────────── */
@media (max-width: 489px) {
  .sec-title {
    font-size: 24px;
  }

  /* ==== Stats Section ==== */
  .stat-item {
    flex: 0 0 100%;
  }

  .problems-wrap {

    grid-template-columns: repeat(1, 1fr);
  }

  .testimonial-text {
    font-size: 16px;
  }

  .place {
    font-size: 12px;
    padding: 6px 8px;
    bottom: 10px;
  }

  .location-marker.active .place,
  .location-marker:hover .place {
    bottom: 18px;
  }

  .foot-col,
  .foot-col.column-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .foot-row {
    gap: 15px;
  }
}

/* ─────────────────────────────── 350 ─────────────────────────────── */
@media (max-width: 350px) {}

/* ─────────────────────────── Desktop Only ─────────────────────────── */
@media (min-width: 1200px) {

  /* ==== Header ==== */
  .hamburger {
    display: none;
  }

  /* ==== Navigation Drawer ==== */
  .nav-drawer {
    display: none;
  }

  .shadow-overlay {
    display: none;
  }

  /* ==== Submenu Styling ==== */
  .main-nav ul li ul {
    position: absolute;
    top: calc(100% + 15px);
    left: 0;
    min-width: 240px;
    background: var(--white);
    padding: 15px 0;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 99;
    border-top: 4px solid var(--primary-color);
  }

  .main-nav ul li:hover>ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .main-nav ul li ul li {
    display: block;
    margin: 0;
    padding: 0 12px;
  }

  .main-nav ul li ul li a {
    padding: 6px 0;
    font-size: 15px;
    font-weight: 400;
    color: var(--black);
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
    display: block;
    white-space: nowrap;
  }

  .main-nav ul li ul li:last-child a {
    border-bottom: none;
  }

  .main-nav ul li ul li a:hover {
    color: var(--primary-color);
    font-weight: 400;

  }

  .main-nav li.has-submenu .vector-arrow {
    transition: transform 0.3s ease;
  }

  .main-nav li.has-submenu:hover>.vector-arrow {
    transform: scaleY(-1);
  }
}