@import url('https://fonts.googleapis.com/css2?family=Baloo+Bhai+2:wght@400..800&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

/* navbar part */

.logo {
    position: absolute;
    top: 10px;
    left: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.logo img {
    border-radius: 13px;
    height: 48px;
    width: 48px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo img:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

/* #FAFAFA
#D7CCC8 */

.nav {
    width: 100%;
    height: 70px;
    background-color: #0b2d32;
}

.nav-bar ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.nav-bar li {
    margin: 15px;
    list-style: none;
}

/* 
.nav-bar a {
    text-decoration: none;
    color: white;
    font-size: 20px;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
} */
.nav-bar a {
  text-decoration: none;
  padding: 0.5rem 1rem;
  position: relative;
  color: #e0e0e0; 
  border-radius: 0.75rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-bar a.active {
  background-color: #f5f5f5; 
  color: #0b2d32;            
}

::view-transition-old(nav-item),
::view-transition-new(nav-item) {
  height: 100%;
}

::view-transition-group(nav-item) {
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  animation-duration: 0.3s; 
}


:root {
  --bounce: linear(
    0,
    1 37.8%,
    0.883 44.2%,
    0.855 47.1%,
    0.846 50%,
    0.853 52.7%,
    0.875 55.5%,
    1 65.5%,
    0.967 69.4%,
    0.957 73.1%,
    0.964 76.5%,
    1 84.5%,
    0.993 89.3%,
    1
  );
}


#button {
    background-color: rgb(126, 187, 34);
    border-radius: 8px;
    padding: 8px 16px;
    cursor: pointer;
}

#button:hover {
    background-color: rgb(186, 203, 38);
    color: white;
    box-shadow: 0 0 10px green;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform: scale(1.1);
}

/* moto */

.moto {
    width: 100%;
    height: 30px;
    background-color: #D7CCC8;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 500;
}

@media (max-width: 575.98px) {
    .moto {
        font-size: 12px;
        height: 25px;
        padding: 0 5px;
        text-align: center;
    }
}

/* Small devices (landscape phones, 576px–767.98px) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .moto {
        font-size: 14px;
        height: 28px;
    }
}

/* Medium devices (tablets, 768px–991.98px) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .moto {
        font-size: 15px;
        height: 30px;
    }
}

/* Large devices (desktops, 992px–1199.98px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .moto {
        font-size: 16px;
        height: 32px;
    }
}

/* Extra large devices (1200px and up) */
@media (min-width: 1200px) {
    .moto {
        font-size: 18px;
        height: 35px;
    }
}

/* theme */

/* body {
      margin: 0;
      font-family: sans-serif;
      transition: background 0.3s, color 0.3s;
    }

    body.dark-mode {
      background: #121212;
      color: #f5f5f5;
    }

    .toggle-container {
      position: fixed;
      top: 20px;
      right: 20px;
    }

    .toggle-btn {
      width: 60px;
      height: 30px;
      background: #ddd;
      border-radius: 30px;
      position: relative;
      cursor: pointer;
      transition: background 0.3s;
    }

    .toggle-btn::before {
      content: "";
      width: 24px;
      height: 24px;
      background: #fff;
      border-radius: 50%;
      position: absolute;
      top: 3px;
      left: 3px;
      transition: transform 0.3s;
    }

    body.dark-mode .toggle-btn {
      background: #555;
    }

    body.dark-mode .toggle-btn::before {
      transform: translateX(30px);
      background: #ffdd57;
    } */

/* hero section */
.middle {
    height: 600px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 45px;
}

.middle-img {
    padding: 10px;
    height: 550px;
    width: 80%;
}

.middle-img img {
    height: 550px;
    width: 100%;
    border-radius: 20px;

}

.main {
    height: 200px;
    width: 100%;
    padding: 20px;
}

html {
    scroll-behavior: smooth;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

#punch_line {
    font-style: italic;
    color: #555;
    margin-top: 10px;
    font-size: 1.2em;
}

.content p {
    display: flex;
    justify-content: center;
    gap: 4px;
}


.bn {
    border: none;
    padding: 10px 20px;
    background-color: rgb(45, 224, 45);
    border-radius: 9px;
    cursor: pointer;
}

.bn a {
    text-decoration: none;
    color: black;
    font-size: 20px;
    font-weight: 500;
}

.bn:hover {
    background-color: rgb(34, 179, 34);
    color: white;
    box-shadow: 0 0 10px green;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform: scale(1.1);
}

/* Extra small devices (phones <576px) */
@media (max-width: 575.98px) {
    .middle {
        height: auto;
        margin-top: 20px;
        padding: 0 10px;
    }

    .middle-img {
        width: 95%;
        height: auto;
        margin: 0 auto;
    }

    .middle-img img {
        width: 100%;
        height: auto;
        max-height: 300px;
        border-radius: 20px;
    }

    #punch_line {
        font-size: 1em;
        text-align: center;
        padding: 0 10px;
    }

    .bn a {
        font-size: 16px;
        padding: 8px 16px;
    }
}

/* Small devices (576px–767.98px) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .middle {
        height: auto;
    }

    .middle-img {
        width: 90%;
        height: auto;
        margin: 0 auto;
    }

    .middle-img img {
        width: 100%;
        height: auto;
        max-height: 400px;
    }

    #punch_line {
        font-size: 1.1em;
    }

    .bn a {
        font-size: 18px;
        padding: 9px 18px;
    }
}

/* Medium devices (768px–991.98px) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .middle {
        height: 500px;
    }

    .middle-img {
        width: 85%;
        height: 450px;
    }

    .middle-img img {
        width: 100%;
        height: 100%;
    }

    #punch_line {
        font-size: 1.15em;
    }
}

/* Large devices (992px–1199.98px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .middle {
        height: 550px;
    }

    .middle-img {
        width: 80%;
        height: 500px;
    }

    .middle-img img {
        width: 100%;
        height: 100%;
    }
}

/* Extra large devices (1200px and up) */
@media (min-width: 1200px) {
    .middle {
        height: 600px;
    }

    .middle-img {
        width: 75%;
        height: 550px;
    }

    .middle-img img {
        width: 100%;
        height: 100%;
    }
}


/* about us section */
#about {
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

#heading {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #08775c;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#heading::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: #08775c;
    border-radius: 2px;
    transition: width 0.5s ease;
}

#heading:hover::after {
    width: 100%;
}

.content2 {
    display: flex;
    flex-direction: row;
    gap: 50px;
    background: linear-gradient(135deg, #08775c, #c0cbcd);
    width: max-content;
    align-items: center;
    justify-content: center;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    color: white;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1s forwards;
}

.content2-img img {
    height: 160px;
    width: 160px;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, rotate 0.5s ease;
    cursor: pointer;
}

.content2-img img:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.content2 p {
    font-size: 1.2rem;
    line-height: 1.8;
    text-align: justify;
    max-width: 700px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.content2 p:hover {
    transform: scale(1.03);
    color: #ffe082;
}


@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 575.98px) {
    #heading {
        font-size: 1.8rem;
    }

    .content2 {
        flex-direction: column;
        gap: 20px;
        width: 100%;
        padding: 20px;
    }

    .content2-img img {
        height: 120px;
        width: 120px;
    }

    .content2 p {
        font-size: 1rem;
        line-height: 1.6;
        padding: 0 5px;
        text-align: center;
    }
}

/* Small devices (576px–767.98px) */
@media (min-width: 576px) and (max-width: 767.98px) {
    #heading {
        font-size: 2.2rem;
    }

    .content2 {
        flex-direction: column;
        gap: 25px;
        width: 100%;
        padding: 25px;
    }

    .content2-img img {
        height: 130px;
        width: 130px;
    }

    .content2 p {
        font-size: 1.05rem;
        line-height: 1.7;
    }
}

/* Medium devices (768px–991.98px) */
@media (min-width: 768px) and (max-width: 991.98px) {
    #heading {
        font-size: 2.5rem;
    }

    .content2 {
        flex-direction: row;
        gap: 30px;
        width: 90%;
        padding: 30px;
    }

    .content2-img img {
        height: 140px;
        width: 140px;
    }

    .content2 p {
        font-size: 1.1rem;
    }
}

/* Large devices (992px–1199.98px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .content2 {
        width: 85%;
        gap: 40px;
    }

    .content2 p {
        font-size: 1.15rem;
    }
}

/* Extra large devices (1200px and up) */
@media (min-width: 1200px) {
    .content2 {
        width: max-content;
    }
}

/* Service section */
.total {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 50px;
    margin-top: 50px;
    padding: 20px;
}

.services {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    width: 100%;
    max-width: 1100px;
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* .services:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
} */


.our_services {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
    max-width: 600px;
}

#service {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #08775c;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.our_services ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.our_services ul li {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 10px;
    color: #333;
    position: relative;
    padding-left: 20px;
    transition: transform 0.3s ease, color 0.3s ease;
}


.our_services ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #08775c;
    font-weight: bold;
}

.our_services ul li:hover {
    transform: translateX(8px);
    color: #08775c;
}

.service_image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service_image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
}

.service_image img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

total {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 50px;
    margin-top: 50px;
    padding: 20px;
}

.services {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    width: 100%;
    max-width: 1100px;
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.our_services {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
    max-width: 600px;
}

#service {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #08775c;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.our_services ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.our_services ul li {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 10px;
    color: #333;
    position: relative;
    padding-left: 20px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.our_services ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #08775c;
    font-weight: bold;
}

.our_services ul li:hover {
    transform: translateX(8px);
    color: #08775c;
}

.service_image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service_image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
}

.service_image img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* ------------------ Responsive ------------------ */

/* Extra small devices (phones <576px) */
@media (max-width: 575.98px) {
    .services {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    #service {
        font-size: 1.8rem;
    }

    .our_services ul li {
        font-size: 0.95rem;
    }

    .service_image img {
        width: 90%;
        max-width: 250px;
    }
}

/* Small devices (576px–767.98px) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .services {
        flex-direction: column;
        gap: 25px;
        padding: 25px;
    }

    #service {
        font-size: 2rem;
    }

    .our_services ul li {
        font-size: 1rem;
    }

    .service_image img {
        width: 80%;
        max-width: 300px;
    }
}

/* Medium devices (768px–991.98px) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .services {
        flex-direction: row;
        gap: 25px;
        padding: 30px;
    }

    #service {
        font-size: 2.2rem;
    }

    .our_services ul li {
        font-size: 1.05rem;
    }

    .service_image img {
        width: 100%;
        max-width: 350px;
    }
}

/* Large devices (992px–1199.98px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .services {
        gap: 30px;
        padding: 35px;
    }

    #service {
        font-size: 2.4rem;
    }

    .service_image img {
        max-width: 400px;
    }
}

/* Extra large devices (1200px and up) */
@media (min-width: 1200px) {
    .services {
        gap: 30px;
        padding: 40px;
    }

    #service {
        font-size: 26px;
    }

    .service_image img {
        max-width: 450px;
    }
}

/* why us section */
.why {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    width: 100%;
    max-width: 1100px;
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}


.us {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
    max-width: 600px;
}

#choosing {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #08775c;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

#reason {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #08775c;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.us ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.us ul li {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 10px;
    color: #333;
    position: relative;
    padding-left: 20px;
    transition: transform 0.3s ease, color 0.3s ease;
}


.us ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #08775c;
    font-weight: bold;
}

.us ul li:hover {
    transform: translateX(8px);
    color: #08775c;
}

.whyus_image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.whyus_image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
}

.whyus_image img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.why {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    width: 100%;
    max-width: 1100px;
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.us {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
    max-width: 600px;
}

#choosing {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #08775c;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

#reason {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #08775c;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.us ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.us ul li {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 10px;
    color: #333;
    position: relative;
    padding-left: 20px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.us ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #08775c;
    font-weight: bold;
}

.us ul li:hover {
    transform: translateX(8px);
    color: #08775c;
}

.whyus_image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.whyus_image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
}

.whyus_image img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* ------------------ Responsive ------------------ */

/* Extra small devices (phones <576px) */
@media (max-width: 575.98px) {
    .why {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    #choosing {
        font-size: 1.8rem;
    }

    #reason {
        font-size: 1.1rem;
    }

    .us ul li {
        font-size: 0.95rem;
    }

    .whyus_image img {
        width: 90%;
        max-width: 250px;
    }
}

/* Small devices (576px–767.98px) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .why {
        flex-direction: column;
        gap: 25px;
        padding: 25px;
    }

    #choosing {
        font-size: 2rem;
    }

    #reason {
        font-size: 1.2rem;
    }

    .us ul li {
        font-size: 1rem;
    }

    .whyus_image img {
        width: 80%;
        max-width: 300px;
    }
}

/* Medium devices (768px–991.98px) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .why {
        flex-direction: row;
        gap: 25px;
        padding: 30px;
    }

    #choosing {
        font-size: 2.2rem;
    }

    #reason {
        font-size: 1.3rem;
    }

    .us ul li {
        font-size: 1.05rem;
    }

    .whyus_image img {
        width: 100%;
        max-width: 350px;
    }
}

/* Large devices (992px–1199.98px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .why {
        gap: 30px;
        padding: 35px;
    }

    #choosing {
        font-size: 2.4rem;
    }

    .whyus_image img {
        max-width: 400px;
    }
}

/* Extra large devices (1200px and up) */
@media (min-width: 1200px) {
    .why {
        gap: 30px;
        padding: 40px;
    }

    #choosing {
        font-size: 26px;
    }

    .whyus_image img {
        max-width: 450px;
    }
}

/* how section  */

.how-section {
    padding: 60px 20px;
    text-align: center;
    background: linear-gradient(135deg, #fdfbfb, #ebedee);
    border-radius: 20px;
    margin: 50px auto;
    max-width: 1100px;
}

.how-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #222;
}

.steps {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    flex-wrap: wrap;
}

.step {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    width: 220px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.step span {
    display: inline-block;
    font-size: 1.5rem;
    background: #00c6ff;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    margin-bottom: 15px;
}

#steps {
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
    font-size: large;
}

#How {
    font-size: 28px;
    font-weight: 700;
    padding-bottom: 15px;
}

.how-section {
    padding: 60px 20px;
    text-align: center;
    background: linear-gradient(135deg, #fdfbfb, #ebedee);
    border-radius: 20px;
    margin: 50px auto;
    max-width: 1100px;
}

.how-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #222;
}

.steps {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    flex-wrap: wrap;
}

.step {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    width: 220px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.step span {
    display: inline-block;
    font-size: 1.5rem;
    background: #00c6ff;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    margin-bottom: 15px;
}

#steps {
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
    font-size: large;
}

#How {
    font-size: 28px;
    font-weight: 700;
    padding-bottom: 15px;
}

/* ------------------ Responsive ------------------ */

/* Extra small devices (phones <576px) */
@media (max-width: 575.98px) {
    .how-section {
        padding: 40px 15px;
    }

    .how-section h2 {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }

    .steps {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .step {
        width: 90%;
        max-width: 300px;
        padding: 20px;
        box-sizing: border-box;
    }

    .step span {
        font-size: 1.2rem;
        padding: 8px 16px;
    }

    #steps {
        font-size: 1rem;
    }

    #How {
        font-size: 22px;
    }
}

/* Small devices (576px–767.98px) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .how-section h2 {
        font-size: 2rem;
    }

    .steps {
        flex-wrap: wrap;
        gap: 25px;
        justify-content: center;
    }

    .step {
        width: 45%;
        max-width: 250px;
        padding: 22px;
        box-sizing: border-box;
    }

    .step span {
        font-size: 1.3rem;
        padding: 9px 18px;
    }

    #steps {
        font-size: 1.05rem;
    }

    #How {
        font-size: 24px;
    }
}

/* Medium devices (768px–991.98px) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .steps {
        gap: 30px;
        justify-content: space-around;
    }

    .step {
        width: 180px;
        max-width: 220px;
        padding: 23px;
        box-sizing: border-box;
    }

    .step span {
        font-size: 1.4rem;
        padding: 9px 18px;
    }
}

/* Large devices (992px–1199.98px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .step {
        width: 200px;
    }
}

/* Extra large devices (1200px and up) */
@media (min-width: 1200px) {
    .step {
        width: 220px;
    }
}

/* footer section */


footer {
    background-color: #0b2d32;
    height: 270px;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    gap: 200px;
    padding: 20px;
    flex-wrap: wrap;
}


footer p,
h2 {
    color: white;
}

.social-media {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
}

.social-media img {
    margin: 10px;
    height: 40px;
    width: 40px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-media img:hover {
    height: 48px;
    width: 48px;
    transform: scale(1.2) translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    border-radius: 18px;
}

iframe {
    justify-content: flex-end;
    border-radius: 20px;
    max-width: 100%;
}

/* Twitter iframe */
#twitter {
    border-radius: 13px;
}


/* Extra small devices (phones <576px) */
@media (max-width: 575.98px) {
    footer {
        flex-direction: column;
        gap: 20px;
        height: auto;
        padding: 20px 10px;
    }

    .social-media img {
        height: 35px;
        width: 35px;
    }

    iframe {
        width: 90%;
        height: auto;
        margin: 0 auto;
    }
}

/* Small devices (576px–767.98px) */
@media (min-width: 576px) and (max-width: 767.98px) {
    footer {
        flex-direction: column;
        gap: 30px;
        height: auto;
        padding: 25px;
    }

    .social-media img {
        height: 38px;
        width: 38px;
    }

    iframe {
        width: 80%;
        height: auto;
    }
}

/* Medium devices (768px–991.98px) */
@media (min-width: 768px) and (max-width: 991.98px) {
    footer {
        flex-direction: row;
        justify-content: center;
        gap: 100px;
        height: 250px;
    }

    .social-media img {
        height: 40px;
        width: 40px;
    }

    iframe {
        width: 50%;
        height: auto;
    }
}

/* Large devices (992px–1199.98px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    footer {
        gap: 150px;
        height: 270px;
    }

    iframe {
        height: 200px;
        width: max-content;
    }
}

/* Extra large devices (1200px and up) */
@media (min-width: 1200px) {
    footer {
        gap: 200px;
        height: 270px;
    }

    iframe {
        height: 200px;
        width: max-content;
    }
}