@media (max-width: 994px) {
  body {
    overflow-x: hidden;
  }

  /*****************************
        Header Section
********************************/
  .header-section {
    position: relative;
  }

  .Header-Content-Wrapper {
    transition: transform 0.3s ease;
    will-change: transform;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.18);
    padding: 12.5%;
    box-sizing: border-box;
    border-radius: 100%;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    background-color: #fff;
    position: absolute;
  }

  .header-grid {
    display: grid;
    grid-template-columns: 1fr;
    width: 80%;
    height: 80%;
    overflow: hidden;
    align-items: center;
    padding: 0px;
    gap: 0px;
    margin: auto;
    position: absolute;
    top: calc(120px + (100vh - 120px) / 2); /* middle of remaining space */
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .grid-colm-2 {
    display: flex;
    overflow: hidden;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #d4572f;
    background: #20241b;
  }

  .grid-colm-2-img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    object-fit: cover;
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100vh;
    background-color: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(5px);
    z-index: 75;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    pointer-events: none; /* prevent clicks when hidden */
  }

  .nav-links.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .navigation-link:link,
  .navigation-link:visited {
    text-decoration: none;
    color: #fff;
    font-family: "Anton";
    letter-spacing: 0.5px;
    font-size: 1.2rem;
    padding-bottom: 0.5rem;
    transition: color 0.3s ease;
    display: inline-block;
    position: relative;
    font-family: "inter";
  }

  /* Animation Underline */
  .navigation-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #d4572f;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
  }

  .navigation-link:active,
  .navigation-link:hover {
    color: #d4572f;
  }

  .navigation-link:hover::after {
    transform: scaleX(1);
  }

  .navigation-link.colored {
    color: #d4572f;
  }

  .hamburger {
    display: block;
    font-size: 28px;
    cursor: pointer;
    padding-bottom: 1rem;
    /* Hamburger Menu For The Mobile Navigation */
  }

  .close-btn {
    font-size: 4.5rem;
    color: #d4572f;
    cursor: pointer;
    display: block;
    position: absolute;
    top: -2rem;
    right: 1rem;
  }

  .close-btn:hover {
    color: #f5f5f5;
  }

  .main-navigation {
    display: flex;
    justify-content: space-evenly;
    gap: 0rem;
    align-items: center;
    width: 100%;
    max-width: 100%;
    position: static;
    transition: all 0.3s ease;
    top: 0;
    z-index: 50;
  }

  .Main-Title {
    font-size: 3.4rem;
    line-height: 4rem;
    font-family: "Anton";
    color: #20241b;
    letter-spacing: 3.5px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
    width: 75%;
  }

  .social-icons {
    display: flex;
    gap: 2rem;
    align-items: center;
    padding-top: 1.5rem;
  }

  .facebook-icon,
  .instagram-icon,
  .youtube-icon {
    color: #20241b;
    font-size: 1.3rem;
  }

  .header-btn:link,
  .header-btn:visited {
    text-decoration: none;
    font-size: 1.3rem;
    text-transform: uppercase;
    font-family: "Anton";
    letter-spacing: 1px;
    background-color: #d4572f;
    color: #fff;
    padding: 1rem 1.2rem;
  }

  .header-btn:active,
  .header-btn:hover {
    background-color: #20241b; /* darken on hover */
    box-shadow: rgba(184, 87, 46, 0.795);
    transform: translateY(-2px);
    transition: all 0.3s ease;
  }
  /*****************************
        Header Section End
********************************/

  /********************
 Features Section 
 /**********************/
  .Features-Section {
    background-color: #20241b;
    padding: 12rem 0rem;
    overflow: hidden;
  }

  .Features-Content-Wrapper {
    white-space: nowrap;
    overflow: hidden;
    width: 100%;
  }

  .marquee-track {
    display: flex;
    width: max-content;
    animation: scrollLoop 30s linear infinite;
    border-bottom: #fff 3px solid;
    border-top: #fff 3px solid;
  }

  .loop {
    display: flex;
  }

  .big-text {
    font-family: "Inter";
    font-size: 4.4rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fff;
    padding: 0 2rem;
    display: inline-block;
    margin: 0;
    white-space: nowrap;
    font-weight: bold;
  }

  .colored {
    color: #d4572f;
  }

  /********************
    Features Section End
 /**********************/

  /****************
   About - Section
**********************/
  .About {
    padding: 12rem 2.5rem;
    background-color: #f4efe8;
    position: relative;
  }

  .About-Main-Title {
    font-size: 4.4rem;
    font-family: "Anton";
    text-transform: uppercase;
    letter-spacing: 3.5px;
    color: #20241b;
    font-weight: bold;
    z-index: 20;
    position: sticky;
  }

  .about-text-shadow {
    font-family: "Inter";
    font-size: 4.4rem;
    color: rgba(255, 255, 255, 0.1);
    position: absolute;
    top: 140px;
    left: 16px;
    text-transform: uppercase;
    letter-spacing: 0px;
    z-index: 1;
    padding-left: 1rem;
  }

  /************************
  Main Grid Container */
  .about-main-grid-container {
    margin-top: 7.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
    color: #f5f5f5;
  }

  .btn-holder {
    margin-top: 4rem;
  }

  .about-me-slung {
    color: #a60e0e;
    font-size: 1rem;
    font-family: "Inter";
    text-transform: uppercase;
  }

  .left-column-main-title {
    font-size: 3rem;
    font-family: "Anton";
    color: #20241b;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 2.5px;
  }

  .left-column-lorem {
    color: #20241b;
    font-size: 0.9rem;
    font-family: "inter";
    line-height: 1.5;
    margin-bottom: 0;
    text-align: center;
  }

  .icon-text-lorem {
    font-size: 0.9rem;
    color: #20241b;
    font-family: "inter";
    line-height: 1.2;
    margin-bottom: 0rem;
  }

  .icon-holder {
    display: flex;
    margin-top: 3rem;
  }

  .main-grid-right-column {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: 35rem;
    gap: 2.5rem;
    margin-left: 0rem;
    margin-right: 0rem;
  }

  .flex-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .right-column-image {
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
    border-radius: 0%;
  }

  .image-2 {
    object-position: 70% center;
  }

  .image-4 {
    object-position: 15% center;
  }

  .image-5 {
    object-position: 50% 17%;
  }

  /****************
   About - Section End
**********************/

  /********************* 
    Packages Section 
********************/
  .Packages-Section {
    padding: 12rem 2.5rem;
    background-color: #20241b;
    position: relative;
  }

  .packages-main-title {
    font-size: 4.4rem;
    font-family: "Anton";
    text-transform: uppercase;
    color: #f5f5f5;
    z-index: 5;
    position: sticky;
    padding-left: 0rem;
    padding-right: 0rem;
    width: 100%;
    line-height: 5rem;
    letter-spacing: 2.5px;
    margin-bottom: 8rem;
  }

  .packages-shadow {
    font-family: "Inter";
    font-size: 4.4rem;
    color: rgba(255, 255, 255, 0.1);
    position: absolute;
    top: 134px;
    left: 16px;
    text-transform: uppercase;
    letter-spacing: 0px;
    z-index: 1;
    padding-left: 1rem;
  }

  .cta-container-background {
    background-image: url(/Background/Mike-Packages.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    min-height: 45rem;
    position: relative;
    margin-top: 7.5rem;
  }

  .cta-container-content-holder {
    position: absolute;
    top: 15%;
    left: 40%;
    transform: translateY(calc(-50% + 7rem));
    display: flex;
    flex-direction: column;
    padding: 0 2rem;
    gap: 1rem;
    max-width: 55%;
    text-align: center;
  }

  .cta-container-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(
      45deg,
      rgba(32, 36, 27, 0) 45%,
      rgba(32, 36, 27, 0.35) 45%,
      rgba(32, 36, 27, 0.95) 0%
    );
    width: 100%;
    height: 100%;
    pointer-events: none;
  }

  .cta-container-text-1 {
    font-family: "Inter";
    font-size: 1.8rem;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 0;
    width: 100%;
    line-height: 1.35;
  }

  .cta-container-text-2 {
    font-family: "Inter";
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.25);
    margin-bottom: 2.5rem;
    line-height: 1.2;
  }

  /***************************
      Grid Packages Cards 
  ****************************/
  .grid-packages-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-align: center;
    margin-top: 10rem;
    gap: 1rem;
    margin-left: -1rem;
    margin-right: -1rem;
  }

  .grid-card {
    min-height: 31rem;
    background-color: #20241b;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 1rem;
    padding: 2.5rem 2rem;
  }

  .card-2 {
    background-color: #d4572f;
  }

  .card-3 {
    grid-column: 1 / 3;
    width: 50%;
    justify-self: center;
  }

  .card-title {
    font-size: 1.6rem;
    font-family: "Inter";
    font-weight: bold;
    text-transform: uppercase;
  }

  .card-price {
    font-family: "Inter";
    font-size: 1rem;
  }

  .card-list {
    font-family: "Inter";
    margin-top: 2rem;
    text-transform: capitalize;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    list-style: none;
    font-size: 1.1rem;
    padding-left: 0rem;
  }

  .card-btn {
    text-decoration: none;
    font-family: "Inter";
    font-size: 1.3rem;
    font-weight: bold;
    color: #d4572f;
    padding: 0.5rem;
    text-transform: uppercase;
    background-color: #fff;
    margin-top: auto;
    border-radius: 1rem;
  }

  .btn-1,
  .btn-3 {
    background-color: transparent;
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.3rem;
  }
  /***************************
      Grid Packages Cards End
  ****************************/
  /********************* 
    Packages Section End
    ********************/

  /***************************/
  /* Why Choose Me Section 
  ***************************/
  .why-choose-me-section {
    background-color: #f4efe8;
    padding: 12rem 2.5rem;
    position: relative;
  }

  .why-me-title {
    color: #20241b;
  }

  .why-me-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2em;
    grid-auto-rows: auto;
    max-width: 800px;
    margin: auto;
  }

  .center-image-holder {
    display: flex;
    grid-row: 1 / 2;
    width: 53%;
    height: 80%;
    grid-column: 1 / -1;
    justify-self: center;
    align-self: center;
  }

  .left-column-holder {
    display: flex;
    justify-content: start;
    flex-direction: column;
    text-align: center;
    gap: 35px;
  }

  .right-column-holder {
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    gap: 35px;
  }

  .right-bottom-text-holder {
    grid-column: 2 / 3;
    line-height: 2;
  }

  .left-bottom-text-holder {
    line-height: 2;
  }

  .left-top-text-holder {
    line-height: 2;
  }

  .left-top-text {
    font-family: "Inter";
    font-size: 1.3rem;
    color: #20241b;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 0.1rem;
  }

  .left-bottom-text {
    font-family: "Inter";
    font-size: 1.3rem;
    color: #d4572f;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 0.1rem;
  }

  .left-bottom-text-lorem {
    font-family: "Inter";
    font-size: 0.8rem;
    color: #d4572f;
    font-weight: 500;
    line-height: 1.2;
  }

  .left-top-text-lorem {
    font-family: "Inter";
    font-size: 0.8rem;
    color: #20241b;
    font-weight: 500;
    line-height: 1.2;
  }

  .right-top-text {
    font-family: "Inter";
    font-size: 1.3rem;
    color: #20241b;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 0.1rem;
  }

  .right-top-text-lorem {
    font-family: "Inter";
    font-size: 0.8rem;
    color: #20241b;
    font-weight: 500;
    line-height: 1.2;
  }

  .right-bottom-text {
    font-family: "Inter";
    font-size: 1.3rem;
    color: #d4572f;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 0.1rem;
    text-align: center;
  }

  .right-bottom-text-lorem {
    font-family: "Inter";
    font-size: 0.8rem;
    color: #d4572f;
    font-weight: 500;
    text-align: center;
    line-height: 1.2;
  }

  .line {
    position: absolute;
    top: 8.8rem;
    left: 16.3rem;
    width: 11rem;
    height: 2px;
    background-color: #a60e0e;
    z-index: 20;
    display: none;
  }

  .line-2 {
    position: absolute;
    top: 6.5rem;
    right: 17.5rem;
    width: 11rem;
    height: 2px;
    background-color: #fff;
    z-index: 20;
    display: none;
  }

  .line-3 {
    position: absolute;
    top: 25rem;
    left: 16.5rem;
    width: 11rem;
    height: 2px;
    background-color: #fff;
    z-index: 20;
    display: none;
  }

  .line-4 {
    position: absolute;
    top: 26.5rem;
    right: 14rem;
    width: 11rem;
    height: 2px;
    background-color: #a60e0e;
    z-index: 20;
    display: none;
  }
  /***************************/
  /* Why Choose Me Section End
  ***************************/

  /**********************************
      Testimonials Section
************************************/
  .testimonials-section {
    padding: 7.5rem 2.5rem;
    background-color: #20241b;
    position: relative;
  }

  .testimonial-title {
    margin-bottom: 8rem;
    padding-left: 0;
    padding-right: 0;
    font-size: 4.4rem;
    line-height: 5rem;
    color: #f5f5f5;
    width: 75%;
  }

  .testimonials-shadow {
    top: 60px;
    font-family: "Inter";
    font-size: 4.4rem;
    color: rgba(255, 255, 255, 0.1);
    position: absolute;
    left: 16px;
    text-transform: uppercase;
    letter-spacing: 0px;
    z-index: 1;
    padding-left: 1rem;
  }

  .testimonial-container {
    border-bottom: none;
    border-top: none;
    position: relative;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    background-color: transparent;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
  }

  .testimonial-card {
    display: auto;
    opacity: 0;
    top: auto;
    left: auto;
    transform: none;
    position: relative;
    max-width: 100%;
    padding: 0;
    width: 100%;
    display: flex;
    gap: 2rem;
    pointer-events: none;
    transition: transform 0.5s ease-in, opacity 0.5s ease;
    transform: translateX(50px); /* Start a bit offset */
    background-color: transparent;
    margin-left: auto;
    margin-right: auto;
  }

  .testimonial-card.active {
    display: flex;
    pointer-events: auto;
    opacity: 1;
    transform: translateX(0); /* Animate into position */
  }

  .testimonial-image {
    width: 100%;
    max-width: 60rem;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
  }

  .testimonial-image-holder {
    position: relative;
    display: inline-block;
    padding: 1rem;
    border-radius: 50%;
    background-color: #d4572f;
  }

  .testimonial-content {
    display: flex;
    flex-direction: column;
    align-self: center;
    gap: 1.5rem;
    text-align: center;
  }

  .testimonial-icon {
    font-size: 1.3rem;
    color: gold;
  }

  .testimonial-text {
    font-size: 1rem;
    color: #fff;
    font-family: "Inter";
    line-height: 1.2;
  }

  .testimonial-button {
    padding: 0.5rem 1rem;
    font-size: 1.6rem;
    margin-top: 3rem;
  }

  .arrow-icon-left {
    position: absolute;
    top: 55rem;
    left: 18rem;
    cursor: pointer;
    width: 3rem;
  }

  .arrow-icon-right {
    position: absolute;
    top: 55rem;
    right: 18rem;
    cursor: pointer;
    width: 3rem;
  }

  /**********************************
      Contact Section
************************************/
  .contact-section {
    background-color: #d4572f;
    padding: 12rem 2.5rem;
    position: relative;
  }

  .contact-form-title {
    margin-bottom: 6.5rem;
  }

  .left-column-text-lorem {
    font-size: 1rem;
    line-height: 1.2;
    font-family: "Inter";
    color: #20241b;
    font-weight: 400;
    text-transform: capitalize;
  }

  .about-btn.form-submit-button {
    background-color: #20241b;
    color: #fff;
    width: auto;
    align-self: center;
    border: none;
  }

  .about-btn.form-submit-button:hover {
    background-color: #fff;
    color: #d4572f;
    box-shadow: 0 10px 20px rgba(13, 13, 13, 0.9);
    transform: translateY(-4px);
    transition: all 0.3s ease;
  }

  .contact-button {
    background-color: #20241b;
    color: #fff;
    width: auto;
    align-self: self-start;
    border: none;
    padding: 0.8rem 1rem;
    font-size: 1.2rem;
    align-self: center;
  }

  .contact-button:hover {
    background-color: #fff;
    color: #d4572f;
    box-shadow: 0 10px 20px rgba(13, 13, 13, 0.9);
    transform: translateY(-4px);
    transition: all 0.3s ease;
  }

  .grid-left-column {
    display: flex;
    flex-direction: column;
    gap: 0rem;
    align-self: flex-start;
  }
  /**********************************
      Contact Section End
************************************/

  /**********************************
      Footer Section
************************************/
  .footer-section {
    background-color: #f4efe8;
    padding: 6rem 2rem 1.5rem 2rem;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    justify-items: center;
    max-width: 50rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .column-2 {
    grid-column: 1 / 2;
  }

  .column-3 {
    grid-column: 2 / 3;
  }
  /**********************************
      Footer Section End
************************************/
}
