@media (max-width: 580px) {
  body {
    overflow: hidden;
  }

  /*****************************
        Header Section
********************************/
  .header-section {
    position: relative;
  }

  .header-background {
    background: #f4efe8;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
    height: 100vh;
    width: 100%;
    display: block;
  }

  .header-grid {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    height: 60%;
    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%);
  }

  .main-navigation {
    display: flex;
    justify-content: space-around;
    gap: 0rem;
    align-items: center;
    width: 100%;
    max-width: 100%;
    position: static;
    transition: all 0.3s ease;
    top: 0;
    z-index: 50;
  }

  .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;
  }

  .Main-Title {
    font-size: 3rem;
    line-height: 3.5rem;
    font-family: "Anton";
    color: #20241b;
    letter-spacing: 3px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 2.3rem;
    width: 100%;
  }

  .flex-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 4rem;
    gap: 2rem;
  }

  .social-icons {
    display: flex;
    gap: 2rem;
    align-items: center;
    padding-top: 0.5rem;
    align-self: center;
  }

  .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: 1.2rem 1rem;
  }

  .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: 10rem 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 4px solid;
    border-top: #fff 4px solid;
  }

  .loop {
    display: flex;
  }

  .big-text {
    font-family: "Inter";
    font-size: 3rem;
    letter-spacing: 1px;
    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: 10rem 2rem;
    background-color: #f4efe8;
    position: relative;
  }

  .About-Main-Title {
    font-size: 3rem;
    line-height: 3.2rem;
    font-family: "Anton";
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: #20241b;
    font-weight: bold;
    z-index: 20;
    position: sticky;
    text-align: center;
  }

  .about-me-slung {
    color: #d4572f;
    font-size: 1rem;
    font-family: "Inter";
    text-transform: uppercase;
    margin-bottom: 0.2rem;
  }

  .trophy-icon {
    font-size: 1.8rem;
    color: #20241b;
  }

  .fire-icon {
    font-size: 1.8rem;
    color: #d4572f;
  }

  .icon-text {
    font-size: 1.3rem;
  }

  .about-text-shadow {
    font-family: "Inter";
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.1);
    position: absolute;
    top: 120px;
    left: 16px;
    text-transform: uppercase;
    letter-spacing: 0px;
    z-index: 1;
    padding-left: 1rem;
    text-align: center;
  }

  .main-grid-right-column {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: 20rem;
    gap: 1rem;
    margin-left: 0rem;
    margin-right: 0rem;
  }

  .main-grid-left-column {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 0rem;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.15);
    padding: 40px 20px 55px 20px;
    border-radius: 15px;
    background-color: #fff;
  }

  .left-column-main-title {
    font-size: 2rem;
    font-family: "Anton";
    color: #20241b;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 2px;
  }

  .about-btn {
    font-size: 1.2rem;
    letter-spacing: 1.5px;
    font-family: "Anton";
    background-color: #d4572f;
    color: #fff;
    padding: 1.2rem 1rem;
    text-decoration: none;
    text-transform: uppercase;
  }

  .about-btn:hover {
    background-color: #20241b;
    box-shadow: rgba(184, 87, 46, 0.795);
    transform: translateY(-2px);
    transition: all 0.3s ease;
  }

  .image-2 {
    object-position: 65% center;
  }
  /****************
   About - Section End
**********************/

  /********************* 
    Packages Section 
********************/
  .Packages-Section {
    padding: 10rem 1rem;
    background-color: #20241b;
    position: relative;
  }

  .packages-main-title {
    font-size: 3rem;
    font-family: "Anton";
    text-transform: uppercase;
    color: #fff;
    z-index: 5;
    position: sticky;
    padding-left: 0rem;
    padding-right: 0rem;
    width: 100%;
    line-height: 3.3rem;
    text-align: center;
    letter-spacing: 1.2px;
    margin-bottom: 7rem;
  }

  .packages-shadow {
    font-family: "Inter";
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.1);
    position: absolute;
    top: 120px;
    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: left;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    min-height: 25rem;
    position: relative;
    margin-top: 7.5rem;
  }

  .cta-container-content-holder {
    position: absolute;
    top: 20%;
    left: 45%;
    transform: translateY(calc(-50% + 7rem));
    display: flex;
    flex-direction: column;
    padding: 0 1rem;
    gap: 2rem;
    max-width: 100%;
    text-align: center;
  }

  .cta-container-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(
      90deg,
      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.1rem;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 0rem;
    text-align: center;
  }

  .cta-container-text-2 {
    font-family: "Inter";
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.2);
    margin-bottom: 0.5rem;
    line-height: 1.4;
    text-align: center;
  }

  .packages-btn {
    padding: 1.2rem 1rem;
    font-size: 1.2rem;
    align-self: center;
  }

  /***************************
      Grid Packages Cards 
  ****************************/
  .grid-packages-cards {
    display: grid;
    grid-template-columns: 1fr;
    text-align: center;
    margin-top: 7.5rem;
    gap: 1rem;
    margin-left: 0rem;
    margin-right: 0rem;
  }

  .grid-card {
    min-height: 35rem;
    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: 3.5rem 2rem;
    width: 100%;
    justify-self: center;
  }

  .card-2 {
    background-color: #d4572f;
  }

  .card-3 {
    grid-column: 1 / 2;
    width: 100%;
    justify-self: center;
  }
  /***************************
      Grid Packages Cards End
  ****************************/

  /***************************/
  /* Why Choose Me Section 
  ***************************/
  .why-choose-me-section {
    background-color: #f4efe8;
    padding: 10rem 1rem;
    position: relative;
  }

  .why-me-grid {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 5rem;
    gap: 0em;
    row-gap: 1rem;
    width: 100%;
    margin-left: 0rem;
    margin-right: 0rem;
    grid-auto-rows: minmax(10rem, auto);
  }

  .why-me-title {
    color: #20241b;
    margin-bottom: 4rem;
  }

  .left-top-text {
    font-family: "Inter";
    font-size: 1.2rem;
    color: #20241b;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 0.1rem;
  }

  .left-bottom-text {
    font-family: "Inter";
    font-size: 1.2rem;
    color: #d4572f;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 0.1rem;
  }

  .right-bottom-text {
    text-align: center;
    font-size: 1.2rem;
  }

  .right-top-text {
    font-size: 1.2rem;
  }

  .left-column-holder {
    display: flex;
    justify-content: space-evenly;
    flex-direction: column;
    text-align: left;
    grid-row: 2 / 3;
    gap: 2rem;
    text-align: center;
  }

  .right-column-holder {
    display: flex;
    justify-content: space-around;
    flex-direction: column;
    text-align: center;
    grid-column: 1 / 2;
    gap: 2rem;
    max-height: 25rem;
  }

  .center-image-holder {
    display: flex;
    grid-row: 1 / 2;
    width: 100%;
    height: 80%;
    grid-column: 1 / -1;
    justify-self: center;
    align-self: center;
    margin-left: 0rem;
    margin-right: 0rem;
    min-height: 25rem;
  }
  /***************************/
  /* Why Choose Me Section End
  ***************************/

  /**********************************
      Testimonials Section
************************************/

  .testimonial-container {
    border-bottom: none;
    border-top: none;
    position: relative;
    overflow: visible;
    width: 70%;
    max-width: 100%;
    background-color: transparent;
    margin-left: auto;
    margin-right: auto;
    height: 100%;
    margin-top: 0rem;
  }

  .testimonial-card {
    display: flex;
    opacity: 0;
    top: auto;
    left: auto;
    transform: none;
    position: relative;
    max-width: 100%;
    padding: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    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 */
  }

  .arrow-icon-left {
    position: absolute;
    /*top: 65.6rem; */
    top: 53%;
    left: 1rem;
    cursor: pointer;
    width: 2.5rem;
  }

  .arrow-icon-right {
    position: absolute;
    top: 53%;
    right: 1rem;
    cursor: pointer;
    width: 2.5rem;
  }

  .testimonial-image-holder {
    position: relative;
    display: inline-block;
    padding: 1rem;
    border-radius: 50%;
    background-color: #d4572f;
  }
  /**********************************
      Testimonials Section End
************************************/

  /**********************************
      Contact Section
************************************/
  .contact-button {
    background-color: #20241b;
    color: #fff;
    width: auto;
    align-self: center;
    border: none;
    padding: 1rem 1.2rem;
    font-size: 1.2rem;
    margin-top: 2.5rem;
  }

  .contact-button:hover {
    background-color: #fff;
    color: #d4572f;
    box-shadow: rgba(184, 87, 46, 0.795);
    transform: translateY(-4px);
    transition: all 0.3s ease;
  }

  .contact-form-title {
    margin-bottom: 3rem;
  }
  /**********************************
      Contact Section  End
************************************/

  /**********************************
      Footer Section
************************************/
  .footer-section {
    background-color: #f4efe8;
    padding: 6rem 2rem 1.3rem 2rem;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: center;
    justify-items: center;
    max-width: 60rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .column-1 {
    align-self: flex-start;
    padding-top: 0.5rem;
    display: none;
  }

  .footer-text {
    font-family: "Inter";
    font-size: 1.2rem;
    text-transform: capitalize;
    color: #20241b;
    font-weight: bolder;
  }

  .footer-link:link,
  .footer-link:visited {
    text-decoration: none;
    font-family: "Inter";
    color: #20241b;
    font-size: 0.9rem;
    text-transform: capitalize;
    position: relative;
    padding: 0.5rem;
  }

  /* Animation Underline */
  .footer-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;
  }

  .footer-link:active,
  .footer-link:hover {
    color: #d4572f;
  }

  .footer-link:hover::after {
    transform: scaleX(1);
  }

  .footer-link.colored {
    color: #d4572f;
  }

  /**********************************
      Footer Section End
************************************/
}
