@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
body {
    margin: 0;
    background: black;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

html {
    margin: 0;
    padding: 0;
    height: 100%;
}

nav {
    position: fixed;
    top: 50px;
    left: 0;
    width: 100%;
    z-index: 100;
}

.navbar-box {
    background-color: #14151B;
    border-radius: 40px;
    padding: 3px 1px;
    margin: 0 15px; 
    display: flex;
    align-items: center;
    gap: 40px;
    box-shadow: 0 0 5px rgba(0, 191, 255, 0.15);
}

.logo img{
    width: 130px;
    position: relative;
    left: 20%;
    transform: translateX(-8%);
}

.nav-links {
    display: flex;
    gap: 150px;
    list-style: none;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 0;
    font-family: 'Bakbak One';
    font-weight: 200;
    font-style: normal;
}

.nav-links li a {
    color: white;
    text-decoration: none;
    font-size: 27px;
}

.nav-links li a:hover {
    background-image: linear-gradient(90deg, #29b5db, #6A49D3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.Book-A-Call {
    background: linear-gradient(90deg, #4931C1, #29b5db);
    color: white;
    font-weight: 600;
    font-size: 20px;
    padding: 15px 25px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: transform 0.2s;
    left: 10%;
    transform: translateX(-10%);
    text-decoration: none;
}

.Book-A-Call:hover {
    transform: translateX(-10%) scale(1.05);
    box-shadow: 0 0 10px 5px #0693BB, 0 0 10px 10px #4931C1;
}

.open-navbar {
    display: inline-block;
}

.slidebar {
    display: none;
} 

.hero-section {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('/static/Images/Home-image.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 800px;
    color: #fff;
    z-index: 1;
    backdrop-filter: blur(4px); 
}

.Book-A-Call {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background-color: #fff;
    color: #000;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.hero-section::before {
    content: "";
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.hero-content {
  max-width: 600px;
  width: 100%;
}

.hero-content h3 {
    font-size: 1.2rem;
    font-weight: 400;
    color: #ccc;
    margin: 230px 0 10px; 
}

.hero-content h1 {
    font-size: 2.4rem;
    font-weight: bold;
    line-height: 1.3;
    color: white;
    margin: 10px 0 20px; 
}

.hero-content p {
    font-size: 1rem;
    color: #aaa;
    margin: 10px 0 30px;
} 
.Book-A-Call {
    background: linear-gradient(to right, #6A11CB, #2575FC);
    color: white;
    padding: 12px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.Book-A-Call:hover {
    opacity: 0.9;
}

@media (max-width: 768px) {
    .hero-section {
        background-attachment: fixed; 
    }
}

@media (max-width: 2000px) {
    .navbar-box {
        width: 95vw;
        padding: 8px 35px;
    }
}

@media (max-width: 1800px) {
    .logo img{
        width: 110px;
    }

    .nav-links {
        gap: 100px;
    }
    .nav-links li a {
        font-size: 22px;
    }
}
@media (max-width: 1500px) {
  * {
        box-sizing: border-box;
    }

    nav {
        width: 50%;
        padding: 0 5px;
        display: flex;
        justify-content: center;
        position: fixed;
        top: 30px;
        z-index: 1000;
    }

    .navbar-box {
        background-color: #14151B;
        border-radius: 35px;
        padding: 1px 25px;
        margin-left: -20px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .open-navbar {
        display: none;
    }
    .slidebar {
        display: inline-block;
        width: 100%;
    }   
    .logo img{
        width: 80px;
        position: relative;
        left: 10%;
        transform: translateX(-10%);
    }
    .sidebar-image {
        width: 40px;
        cursor: pointer;
    }

    .sidebar-links {
        display: none;
        margin-top: 10px;
        border: 2px solid #0693BB;
        width: 25%;
        height: 35rem;
        position: absolute;
        top: 85%;
        left: 70%;
        border-radius: 30px 30px 30px 30px;
        background: linear-gradient(90deg, #14151B, #2a2f31);
    }

    .sidebar-links.show {
        display: block;
    }
    
    .sidebar-links li {
        position: relative;
        top: 3rem;
        left: 30%;
        list-style: none;
        padding: 20px 0;
    }

    .sidebar-links a {
        text-decoration: none;
        color: white;
        font-family: "Odor Mean Chey", serif;
        font-size: 20px;
    }

    .sidebar-links li a:hover {
        background-image: linear-gradient(90deg, #29b5db, #6A49D3);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        color: transparent;
    }
    .sidebar-links .Book-A-Call {
        position: relative;
        font-size: 20px;
        padding: 10px 15px;
        left: 30%;
        top: 3rem;
    }
    .hero-content {
        max-width: 450px;
        width: 100%;
    }

    .hero-content h3 {
        font-size: 1.3rem;
        font-weight: 400;
        color: #ccc;
        margin: 250px 0 10px; 
    }

    .hero-content h1 {
        font-size: 1.5rem;
        font-weight: bold;
        line-height: 1.3;
        color: white;
        margin: 15px 0 20px; 
    }

    .hero-content p {
        font-size: 0.9rem;
        color: #aaa;
        margin: 10px 0 30px;
    }  

}

@media (max-width: 1100px) {
  * {
        box-sizing: border-box;
    }

     nav {
        width: 100%;
        padding: 0 5px;
        display: flex;
        justify-content: center;
        position: fixed;
        top: 30px;
        z-index: 1000;
    }

    .navbar-box {
        background-color: #14151B;
        border-radius: 35px;
        padding: 1px 25px;
        margin-left: -20px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .logo img{
        width: 70px;
    }

    .sidebar-image {
        width: 30px;
    }
}

@media (max-width: 800px) {
    .logo img{
        width: 70px;
        position: relative;
        left: 10%;
        transform: translateX(-10%);
    }
    .sidebar-image {
        width: 30px;
        cursor: pointer;
    }

    .sidebar-links {
        left: 60%;
        width: 35%;
        height: 25rem;
    }
    .sidebar-links li {
        position: relative;
        top: 1.2rem;
    }

    .sidebar-links a {
        text-decoration: none;
        color: white;
        font-family: "Odor Mean Chey", serif;
        font-size: 12px;
        top: -10rem;
    }

    .sidebar-links home-img  {
        height:25px; 
        vertical-align:middle; 
        margin-right:15px;
    }
    .sidebar-links .Book-A-Call {
        position: relative;
        top: 0.1rem;
        font-size: 9px;
    }
    .hero-section {
        background-image: url('/static/Images/Home-image-phone-2.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        background-attachment: scroll;
        min-height: 50vh;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 1rem;
        text-align: center;
        top: -10rem;
    }
    .hero-content {
        max-width: 60vw;
        width: 100%;
        margin: 0 auto;
        padding: 0.5rem;
    }
    .hero-content h3 {
        font-size: 0.8rem;
        font-weight: 400;
        color: #ccc;
        margin: 10rem 0 0.5rem;
        line-height: 1.2;
    }
    .hero-content h1 {
        font-size: 1.2rem;
        font-weight: bold;
        line-height: 1.4;
        color: white;
        margin: 0.5rem 0 1rem;
        word-break: break-word;
    }
    .hero-content p {
        font-size: 0.75rem;
        color: #aaa;
        margin: 0.3rem 0 1rem;
        line-height: 1.5;
        word-break: break-word;
    }
    .Book-A-Call {
        font-size: 16px;
        padding: 10px 22px;
    }
}

@media (max-width: 660px) {
    .hero-section{
        top: -10rem;
    }
    .hero-content {
        max-width: 60vw;
        width: 100%;
        margin: 0 auto;
        padding: 0.5rem;
    }
    .hero-content h3 {
        font-size: 0.7rem;
        font-weight: 400;
        color: #ccc;
        margin: 11rem 0 0.5rem;
        line-height: 1.2;
    }
    .hero-content h1 {
        font-size: 1.2rem;
        font-weight: bold;
        line-height: 1.4;
        color: white;
        margin: 0.5rem 0 1rem;
        word-break: break-word;
    }
    .hero-content p {
        font-size: 0.65rem;
        color: #aaa;
        margin: 0.3rem 0 1rem;
        line-height: 1.5;
        word-break: break-word;
    }
    .Book-A-Call {
        font-size: 15px;
        padding: 10px 22px;
    }
}
@media (max-width: 550px) {
    .Book-A-Call {
        font-size: 15px;
        padding: 10px 22px;
    }
}
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1rem;
    }
    .hero-content p {
        font-size: 0.55rem;
    }
    .Book-A-Call {
        font-size: 15px;
        padding: 10px 22px;
    }
}
@media (max-width: 400px) {
    .navbar-box {
        padding: 1px 20px;
    }
    .sidebar-links {
        left: 30%;
        width: 60%;
        height: 27rem;
    }
    .sidebar-links li {
        position: relative;
        top: 1rem;
    }
    .sidebar-links a {
        text-decoration: none;
        color: white;
        font-family: "Odor Mean Chey", serif;
        font-size: 12px;
        top: -10rem;
    }
    .sidebar-links home-img  {
        height: 20px; 
        vertical-align:middle; 
        margin-right:15px;
    }
    .sidebar-links .Book-A-Call {
        position: relative;
        top: 1rem;
        font-size: 12px;
    }
    .hero-content {
        max-width: 70vw;
    }
    .hero-content h1 {
        font-size: 0.8rem;
    }
    .hero-content h3 {
        font-size: 0.5rem;
    }
    .hero-content p {
        font-size: 0.45rem;
    }
    .Book-A-Call {
        font-size: 10px;
        padding: 8px 17px;
    }
}

.Services .topic {
    background-image: linear-gradient(90deg, #60ddff, #331f75);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    position: relative;
    top: 12rem;
    text-align: center;
    font-family: 'Noto Sans Thai UI', sans-serif;
    font-size: 3.5rem;
    letter-spacing: 2.5px;
    line-height: 5rem;
}

.Services p {
    color: #AFDAEF;
    position: relative;
    top: 10rem;
    text-align: center;
    font-size: 1.5rem;
    letter-spacing: 2.5px;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    max-width: 60vw;
    margin-left: auto;
    margin-right: auto;
}

a {
  text-decoration: none;
}
.branding-card, .branding-card2, .branding-card4, .branding-card6 {
    position: relative;
    width: 1550px;
    top: 15rem;
    padding: 5px;  
    background: linear-gradient(45deg, #3aefff, #4C4CA8);
    transition: box-shadow 0.4s ease;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    flex-direction: column;
}

.branding-card:hover, .branding-card2:hover,  .branding-card4:hover,  .branding-card6:hover  {
    box-shadow: 0 0 20px 5px rgba(58, 239, 255, 0.6);
}

.branding-content, .branding-content2, .branding-content4, .branding-content6 {
    background-color: #000;
    padding: 50px;
    overflow: hidden;
    color: #7fd7ff;
}

.branding-card h2 , .branding-card2 h2, .branding-card4 h2, .branding-card6 h2{
    font-size: 3em;
    margin-bottom: 10px;
    color: #3aefff,
}
.branding-card .branding-content p, .branding-card2 .branding-content2 p, .branding-card4 .branding-content4 p, .branding-card6 .branding-content6 p {
    top: 9%;
    letter-spacing: 2px;
    font-size: 20px;
    margin-bottom: 15px;
    color: #7fd7ff;
    line-height: 1.6;
    text-align: left;
}

.branding-card ul, .branding-card2 ul, .branding-card4 ul, .branding-card6 ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  font-size: 20px;
}

.branding-card ul li, .branding-card2 ul li, .branding-card4 ul li  , .branding-card6 ul li  {
  margin: 15px 0;
  padding-left: 1em;
  position: relative;
}

.branding-card ul li::before, .branding-card2 ul li::before, .branding-card4 ul li::before, .branding-card6 ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #7fd7ff;
}

.branding-card .branding-content img, .branding-card2 .branding-content2 img, .branding-card4 .branding-content4 img, .branding-card6 .branding-content6 img {
    position: absolute;
    top: 5%;
    right: 2rem;
    margin: 0;
}

.branding-card1, .branding-card3, .branding-card5 {
    position: relative;
    width: 1550px;
    top: 20rem;
    padding: 5px;  
    background: linear-gradient(45deg, #3aefff, #4C4CA8);
    transition: box-shadow 0.4s ease;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    flex-direction: column;
}

.branding-card1:hover, .branding-card3:hover, .branding-card5:hover {
    box-shadow: 0 0 20px 5px rgba(58, 239, 255, 0.6);
}

.branding-content1, .branding-content3, .branding-content5 {
    background-color: #000;
    padding: 50px;
    overflow: hidden;
    color: #7fd7ff;
}

.branding-card1 h2, .branding-card3 h2 {
    font-size: 3em;
    margin-bottom: 10px;
    color: #3aefff,;
    position: relative;
    left: 600px;
}

.branding-card1 ul, .branding-card3 ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  font-size: 20px;
  position: relative;
  left: 600px;
}

.branding-card1 ul li, .branding-card3 ul li, .branding-card5 ul li {
  margin: 15px 0;
  padding-left: 1em;
  position: relative;
}

.branding-card1 ul li::before, .branding-card3 ul li::before, .branding-card5 ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #7fd7ff;
}

.branding-card1 .branding-content1 img, .branding-card3 .branding-content3 img, .branding-card5 .branding-content5 img {
    position: absolute;
    top: 10%;
    left: 3rem;
    margin: 0;
    width: 22rem;
}

.branding-card2 {
    top: 25rem;
}

.branding-card3 {
    top: 30rem;
}

.branding-card4 {
    top: 35rem;
}
.branding-card5 {
    top: 40rem;
}
.branding-card6 {
    top: 45rem;
}
.branding-card .branding-content img {
    top: 5%;
    width: 24.5rem;
}
.branding-card1 .branding-content1 img {
    top: 6%;
    width: 22rem;
}
.branding-card2 .branding-content2 img {
    top: 8%;
    width: 30rem;
}
.branding-card3 .branding-content3 img {
    top: 2%;
    width: 26rem;
}
.branding-card4 .branding-content4 img {
    top: 4%;
    width: 25rem;
    right: 5%;
}
.branding-card5 .branding-content5 img {
    position: absolute;
    top: 5%;
    left: 3rem;
    margin: 0;
    width: 22rem;
}
.branding-card6 .branding-content6 img {
    top: 20%;
    width: 28rem;
    right: 5%;
}

 .branding-card5 h2 {
    font-size: 3em;
    margin-bottom: 10px;
    color: #3aefff,;
    position: relative;
    left: 880px;
}

.branding-card5 ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  font-size: 20px;
  position: relative;
  left: 880px;
}

@media (max-width: 1600px) {
  .Services .topic {
      font-size: 3rem;
      line-height: 4rem;
  }

  .Services p {
    top: 10rem;
      font-size: 1.3rem;
      letter-spacing: 2.5px;
      max-width: 65vw;
      margin-left: auto;
      margin-right: auto;
  }
    .branding-card1, .branding-card3, .branding-card5 {
        position: relative;
        width: 1000px;
    }
    .branding-card1 h2 , .branding-card3 h2, .branding-card5 h2{
        font-size: 2em;
        left: 380px;
    }
    .branding-card1 .branding-content1 p, .branding-card3 .branding-content3 p, .branding-card5 .branding-content5 p {
        font-size: 13px;
        left: 380px;
    }

    .branding-card1 ul, .branding-card3 ul, .branding-card5 ul {
        font-size: 13px;
        left: 380px;
    }

    .branding-card1 .branding-content1 img, .branding-card3 .branding-content3 img, .branding-card5 .branding-content5 img {
        width: auto;
    }
    .branding-card, .branding-card2, .branding-card4, .branding-card6 {
        position: relative;
        width: 1000px;
    }
    .branding-card h2 , .branding-card4 h2, .branding-card6 h2{
        font-size: 2em;
    }
    .branding-card .branding-content p, .branding-card4 .branding-content4 p, .branding-card2 .branding-content2 p, .branding-card6 .branding-content6 p {
        font-size: 15px;
    }

    .branding-card ul, .branding-card4 ul, .branding-card2 ul {
        font-size: 15px;
    }

    .branding-card .branding-content img, .branding-card4 .branding-content4 img, .branding-card2 .branding-content2 img, .branding-card6 .branding-content6 img {
        width: auto;
    }
    .branding-card6 .branding-content6 img {
        top: 10rem;
    }
}
@media (max-width: 1000px) {
    .Services .topic {
        font-size: 2.5rem;
        line-height: 3rem;
    }

    .Services p {
        font-size: 1rem;
        letter-spacing: 2px;
        max-width: 50vw;
        margin-left: auto;
        margin-right: auto;
    }
    .branding-card1, .branding-card3, .branding-card5 {
        position: relative;
        width: 800px;
    }
    .branding-card1 h2 , .branding-card3 h2, .branding-card5 h2{
        font-size: 1.5em;
        left: 290px;
    }
    .branding-card1 .branding-content1 p, .branding-card3 .branding-content3 p, .branding-card5 .branding-content5 p {
        font-size: 10px;
        left: 290px;
    }

    .branding-card1 ul, .branding-card3 ul, .branding-card5 ul {
        font-size: 10px;
        left: 290px;
    }

    .branding-card1 .branding-content1 img, .branding-card3 .branding-content3 img, .branding-card5 .branding-content5 img {
        width: 12.5rem;
        top: 4rem;
    }
    .branding-card, .branding-card2, .branding-card4, .branding-card6 {
        position: relative;
        width: 800px;
    }
    .branding-card h2 , .branding-card4 h2, .branding-card2 h2, .branding-card6 h2{
        font-size: 1.5em;
    }
    .branding-card .branding-content p, .branding-card4 .branding-content4 p, .branding-card2 .branding-content2 p, .branding-card6 .branding-content6 p {
        font-size: 10px;
    }

    .branding-card ul, .branding-card4 ul, .branding-card2 ul, .branding-card6 ul {
        font-size: 10px;
    }

    .branding-card .branding-content img, .branding-card4 .branding-content4 img, .branding-card6 .branding-content6 img {
        width: 15rem;
    }
    .branding-card2 .branding-content2 img {
        width: 19rem;
        top: 3.1rem;
    }
}

@media (max-width: 1000px) {
    .Services .topic {
        font-size: 2rem;
        top: 9rem;
    }

    .Services p {
        font-size: 0.7rem;
        letter-spacing: 2px;
        max-width: 70vw;
        margin-left: auto;
        margin-right: auto;
        top: 8rem;
    }
    .branding-card1, .branding-card3, .branding-card5 {
        position: relative;
        width: 585px;
    }

    .branding-card1 h2 , .branding-card3 h2, .branding-card5 h2{
        font-size: 1.2em;
        left: 195px;
    }

    .branding-card1 ul, .branding-card3 ul, .branding-card5 ul {
        font-size: 11px;
        left: 195px;
    }

    .branding-card1 .branding-content1 img, .branding-card3 .branding-content3 img, .branding-card5 .branding-content5 img {
        width: 10rem;
        top: 4.5rem;
    }
    .branding-card, .branding-card2, .branding-card4, .branding-card6 {
        position: relative;
        width: 585px;
    }
    .branding-card h2 , .branding-card4 h2, .branding-card2 h2, .branding-card6 h2{
        font-size: 1.2em;
    }
    .branding-card .branding-content p, .branding-card4 .branding-content4 p, .branding-card2 .branding-content2 p, .branding-card6 .branding-content6 p {
        font-size: 10px;
        letter-spacing: 0.3px;
    }

    .branding-card ul, .branding-card4 ul, .branding-card2 ul , .branding-card6 ul {
        font-size: 9px;
    }

    .branding-card .branding-content img, .branding-card4 .branding-content4 img, .branding-card6 .branding-content6 img {
        width: 10rem;
        top: 5rem;
    }
    .branding-card2 .branding-content2 img {
        width: 12.5rem;
        top: 6.5rem;
    }
    .branding-card6 .branding-content6 img {
        width: 12.6rem;
        top: 6.5rem;
    }
}

@media (max-width: 800px){
  .Services {
    position: relative;
    top: 1rem;
  }
}
@media (max-width: 580px) {
   .Services {
      position: relative;
      top: 1rem;
    }
    .Services .topic {
      font-size: 1.15rem;
      line-height: 1.7rem;
      margin-top: 1rem;
      margin-bottom: 0.5rem;
    }
    .Services p {
      font-size: 0.65rem;
      letter-spacing: normal;
      max-width: 75vw;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.2rem;
    }
    .branding-card1, .branding-card3, .branding-card5 {
        position: relative;
        width: 310px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        text-align: center;
    }
    .branding-card1 h2, .branding-card3 h2, .branding-card5 h2 {
        font-size: 1.2em;
        left: 0;
        margin: 0 auto;
        position: static;
    }
    .branding-card1 .branding-content1 p, .branding-card3 .branding-content3 p, .branding-card5 .branding-content5 p {
        font-size: 8.5px;
        left: 0;
        letter-spacing: 0.2px;
        margin: 0 auto;
        position: static;
        text-align: center;
        margin-top: 1.5rem; 
    }

    .branding-card1 ul, .branding-card3 ul, .branding-card5 ul {
        font-size: 8.5px;
        left: 0;
        margin: 0 auto;
        position: static;
        text-align: center;
    }

    .branding-card1 .branding-content1 img, .branding-card3 .branding-content3 img, .branding-card5 .branding-content5 img {
        width: 8rem;
        top: 0;
        margin: 0 auto 0.5rem auto;
        display: block;
        position: static;
    }
    .branding-card, .branding-card2, .branding-card4, .branding-card6 {
        position: relative;
        width: 310px;
    }
    .branding-card h2, .branding-card4 h2, .branding-card2 h2, .branding-card6 h2 {
        font-size: 1em;
        margin: 0 auto;
        position: static;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .branding-card .branding-content p, .branding-card4 .branding-content4 p, .branding-card2 .branding-content2 p, .branding-card6 .branding-content6 p {
        font-size: 8.5px;
        letter-spacing: 0.3px;
        margin: 0 auto;
        position: static;
        text-align: center;
        margin-top: 1.5rem;
    }

    .branding-card ul, .branding-card4 ul, .branding-card2 ul, .branding-card6 ul {
        font-size: 8.5px;
        margin: 0 auto;
        position: static;
        text-align: center;
    }

    .branding-card .branding-content img, .branding-card4 .branding-content4 img, .branding-card6 .branding-content6 img {
        width: 8rem;
        top: 0;
        margin: 0 auto 0.5rem auto;
        display: block;
        position: static;
    }
    .branding-card2 .branding-content2 img {
        width: 11rem;
        top: 0;
        margin: 0 auto 0.5rem auto;
        display: block;
        position: static;
    }
}

@media (max-width: 450px) {
   .Services {
      position: relative;
      top: 1rem;
    }
}

@media (max-width: 390px) {
    .Services .topic {
      font-size: 1rem;
      line-height: 1.7rem;
      margin-top: 1rem;
      margin-bottom: 0.5rem;
    }
    .Services p {
      font-size: 0.55rem;
      letter-spacing: normal;
      max-width: 75vw;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.2rem;
    }
}
/* Footer */
.footer {
  margin-top: 800px;
  font-size: 26px;
  color: #aaa;
  text-align: center;
}

.social-links {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.social-links a {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s ease;
}

.social-links a:hover {
  color: #29b5db;
}

.social-links img {
  width: 18px;
  height: 18px;
}

@media (max-width: 1400px) {
   .footer {
        font-size: 20px;
        margin-top: 1000px;
    }
}


@media (max-width: 1100px) {
    .footer {
        font-size: 18px;
        margin-top: 1000px;
    }
}

@media (max-width: 800px) {
    .footer {
        font-size: 15px;
        margin-top: 1000px;
    }
}

@media (max-width: 550px) {
    .footer {
        font-size: 13px;
        margin-top: 700px;
    }
    .footer img {
        width: 25px;
    }
}

@media (max-width: 500px) {
    .footer {
        font-size: 10px;
        margin-top: 650px;
    }
    .footer img {
        width: 18px;
    }
}

@media (max-width: 400px) {
    .footer {
        font-size: 7.2px;
        margin-top: 600px;
    }
}
@media (max-width: 360px) {
   .footer {
        font-size: 7.2px;
        margin-top: 650px;
    }
} 

