@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/image-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: -5rem;
    }
    .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;
    }
}

.scrolling-wrapper {
    overflow: hidden;
    position: relative;
    top: -5rem;
    width: 100%;
    -webkit-mask-image: linear-gradient(to right, transparent, white 20%, white 80%, transparent);
    mask-image: linear-gradient(to right, transparent, white 20%, white 80%, transparent);
}

.scrolling-wrapper:hover .scrolling-content {
    animation-play-state: paused;
}

.scrolling-content {
    display: flex;
    width: fit-content;
    animation: scrollLeftRight 50s linear infinite; 
}

.service-box {
    flex: 0 0 auto;
    width: 220px;
    height: 180px;
    background-color: #222;
    color: white;
    margin: 0 15px; 
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: background-color 0.3s ease;
    font-size: 1.1rem;
    font-weight: 500;
}

.service-box:hover {
     background: linear-gradient(50deg, #4931C1, #29b5db);
    cursor: pointer;
}

.service-box .icon {
    margin-bottom: 1rem;
}

.service-box .icon svg {
    height: 50px;
    width: 50px;
    stroke: white; 
    stroke-width: 1.5;
    fill: none; 
    transition: stroke 0.3s ease;
}

@keyframes scrollLeftRight {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}


@media (max-width: 1600px) {
    .scrolling-wrapper{
        position: relative;
        top: -2rem;
    }
    .service-box {
        width: 190px; 
        height: 130px; 
        font-size: 1rem; 
        margin: 0 10px; 
    }

    .service-box .icon {
        margin-bottom: 0.5rem;
    }

    .service-box .icon svg {
        height: 43px; 
        width: 43px;
    }
}

@media (max-width: 800px) {
    .scrolling-wrapper{
        position: relative;
        top: -10rem;
    }
    .services-section h2 {
        font-size: 1rem; 
    }

    .service-box {
        width: 150px; 
        height: 130px; 
        font-size: 0.8rem; 
        margin: 0 10px;
    }

    .service-box .icon {
        margin-bottom: 0.5rem;
    }

    .service-box .icon svg {
        height: 35px;
        width: 35px;
    }

    .scrolling-wrapper {
        -webkit-mask-image: linear-gradient(to right, transparent, white 10%, white 90%, transparent);
        mask-image: linear-gradient(to right, transparent, white 10%, white 90%, transparent);
    }
}

@media (max-width: 450px) {
    .scrolling-wrapper{
        position: relative;
        top: -17rem;
    }
    .service-box {
        width: 90px; 
        height: 70px; 
        font-size: 0.55rem; 
    }

    .service-box .icon svg {
        height: 25px; 
        width: 25px;
    }
    .scrolling-wrapper {
        -webkit-mask-image: linear-gradient(to right, transparent, white 10%, white 90%, transparent);
        mask-image: linear-gradient(to right, transparent, white 10%, white 90%, transparent);
    }
}
.about-super {
  background: #000;
  min-height: 60vh;
  padding: 50px 20px;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Segoe UI', sans-serif;
  color: #fff;
}

.glass-container {
  background: rgba(255, 255, 255, 0.05);
  border: 3px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 50px;
  border-radius: 25px;
  max-width: 1400px;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
  border-image: linear-gradient(135deg, #4931C1, #29b5db) 1;
}

.glass-container h2 {
    color: #29b5db;
    font-size: 50px;
    margin-bottom: -8px;
}

.glass-container h3.tagline {
  font-size: 24px;
  margin-top: 30px;
  color: #ffffffdd;
}

.glass-container p {
  font-size: 18px;
  margin: 20px 0;
  line-height: 1.8;
}

.highlight-cyan {
  color: #29b5db;
  font-weight: bold;
}

.cta {
  font-size: 20px;
  margin-top: 30px;
  font-weight: bold;
}

.footer {
  margin-top: 40px;
  font-size: 14px;
  color: #aaa;
}

.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: 1600px) {
  .about-super {
    flex-direction: column;
    padding: 30px 15px;
    min-height: auto;
    top: 1rem;
  }
  .glass-container {
    max-width: 900px;
  }
}

@media (max-width: 800px) {
  .about-super {
    flex-direction: column;
    padding: 30px 15px;
    min-height: auto;
    top: -5rem;
  }

  .glass-container {
    padding: 30px 20px;
    border-radius: 20px;
  }

  .glass-container h2 {
    font-size: 28px;
  }

  .glass-container h3.tagline {
    font-size: 15px;
    margin-top: 20px;
  }

  .glass-container p {
    font-size: 12px;
    line-height: 1.6;
  }

  .cta {
    font-size: 18px;
  }

  .footer {
    font-size: 12px;
    margin-top: 30px;
  }

  .social-links {
    gap: 12px;
    flex-direction: row;
    flex-wrap: wrap;
  }

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

@media (max-width: 450px) {
  .about-super {
    flex-direction: column;
    padding: 30px 15px;
    min-height: auto;
    top: -12rem;
  }

  .glass-container h2 {
    font-size: 24px;
  }

  .glass-container h3.tagline {
    font-size: 13px;
    margin-top: 20px;
  }

  .glass-container p {
    font-size: 11px;
    line-height: 1.6;
  }
}


@media (max-width: 370px) {
  .about-super {
    flex-direction: column;
    padding: 30px 15px;
    min-height: auto;
    top: -14rem;
  }

  .glass-container h2 {
    font-size: 20px;
  }

  .glass-container h3.tagline {
    font-size: 11px;
    margin-top: 20px;
  }

  .glass-container p {
    font-size: 9px;
    line-height: 1.6;
  }

  .cta {
    font-size: 14px;
  }
}

.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: 5rem;
    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: 3rem;
    text-align: center;
    font-size: 1.5rem;
    letter-spacing: 2.5px;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    max-width: 70vw;
    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;  
    border-radius: 5rem;
    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;
    border-radius: 4.5rem; 
    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: 10%;
    right: 2rem;
    margin: 0;
}

.branding-card1, .branding-card3, .branding-card5 {
    position: relative;
    width: 1550px;
    top: 20rem;
    padding: 5px;  
    border-radius: 5rem;
    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;
    border-radius: 4.5rem; 
    padding: 50px;
    overflow: hidden;
    color: #7fd7ff;
}

.branding-card1 h2, .branding-card3 h2, .branding-card5 h2 {
    font-size: 3em;
    margin-bottom: 10px;
    color: #3aefff,;
    position: relative;
    left: 600px;
}
.branding-card1 .branding-content1 p, .branding-card3 .branding-content3 p, .branding-card5 .branding-content5 p  {
    top: 9%;
    letter-spacing: 2.5px;
    font-size: 20px;
    margin-bottom: 15px;
    color: #7fd7ff;
    line-height: 1.6;
    text-align: left;
    position: relative;
    left: 600px;
}

.branding-card1 ul, .branding-card3 ul, .branding-card5 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: 5.5%;
    width: 24rem;
}
.branding-card2 .branding-content2 img {
    top: 8%;
    width: 30rem;
}
.branding-card3 .branding-content3 img {
    top: 5%;
    width: 26rem;
}
.branding-card4 .branding-content4 img {
    top: 4%;
    width: 25rem;
    right: 5%;
}
.branding-card5 .branding-content5 img {
    position: absolute;
    top: 12%;
    left: 3rem;
    margin: 0;
    width: 22rem;
}
.branding-card6 .branding-content6 img {
    top: 20%;
    width: 28rem;
    right: 5%;
}

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

  .Services p {
    top: 4rem;
      font-size: 1.3rem;
      letter-spacing: 2.5px;
      max-width: 75vw;
      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;
    }

    .Services p {
        font-size: 0.7rem;
        letter-spacing: 2px;
        max-width: 70vw;
        margin-left: auto;
        margin-right: auto;
    }
    .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 .branding-content1 p, .branding-card3 .branding-content3 p, .branding-card5 .branding-content5 p {
        font-size: 10px;
        left: 195px;
        letter-spacing: 0.3px;
    }

    .branding-card1 ul, .branding-card3 ul, .branding-card5 ul {
        font-size: 10px;
        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: -6rem;
  }
}
@media (max-width: 580px) {
   .Services {
      position: relative;
      top: -17rem;
    }
    .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: 350px;
        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: 350px;
    }
    .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: 500px) {
   .Services {
      position: relative;
      top: -11rem;
    }
  }

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@600&display=swap');

.strip-fade {
  position: relative;
  width: 100%;
  height: 4rem;
  background-color: #000;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 58rem;
}

.text-left, .text-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Orbitron', sans-serif;
  font-size: 3.7rem;
  white-space: nowrap;
  color: #00f0ff;
  opacity: 0;
  animation-timing-function: linear;
}

.text-left {
  left: 50%;
  animation: moveLeftFade 3s infinite;
}

.text-right {
  right: 50%;
  animation: moveRightFade 3s infinite;
}

@keyframes moveLeftFade {
  0% {
    transform: translate(-50%, -50%);
    opacity: 1;
  }
  80% {
    transform: translate(-200%, -50%);
    opacity: 0;
  }
  100% {
    transform: translate(-200%, -50%);
    opacity: 0;
  }
}

@keyframes moveRightFade {
  0% {
    transform: translate(50%, -50%);
    opacity: 1;
  }
  80% {
    transform: translate(200%, -50%);
    opacity: 0;
  }
  100% {
    transform: translate(200%, -50%);
    opacity: 0;
  }
}
@media (max-width: 1600px) {
  .strip-fade {
    top: 58.5rem;
  }
  .text-left, .text-right {
    font-size: 3rem;
  }
}
@media (max-width: 800px) {
  .strip-fade {
    top: 45rem;
  }
  .text-left, .text-right {
    font-size: 2rem;
  }
}

@media (max-width: 500px) {
  .strip-fade {
    top: 37rem;
  }
  .text-left, .text-right {
    font-size: 1.4rem;
  }
}

@media (max-width: 400px) {
  .strip-fade {
    top: 37.5rem;
  }
  .text-left, .text-right {
    font-size: 1.2rem;
  }
}

.process-section {
  position: relative;
  top: 68rem;
  padding: 5rem 1.5rem;
  background-color: black;
  text-align: center;
  color: #eee;
  position: relative;
  overflow: hidden;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 800;
  background: linear-gradient(90deg, #66c2e8, #8a2be2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientMove 8s ease infinite;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.section-title .highlight {
  background: linear-gradient(90deg, #66c2e8, #8a2be2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  max-width: 700px;
  margin: 0 auto 4rem;
  color: #c5c4c4;
  font-size: 1.4rem;
  line-height: 1.6;
}

.process-steps {
  max-width: 1500px;
  height: auto;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 4rem;
  z-index: 1;
  position: relative;
}

.step {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(102, 194, 232, 0.2);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border 0.4s ease;
}

.step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 5px;
  width: 100%;
  background: linear-gradient(270deg, #66c2e8, #8a2be2, #66c2e8);
  background-size: 400% 400%;
  animation: gradientMove 8s ease infinite;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.step:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(138, 43, 226, 0.5);
  border: 1px solid rgba(138, 43, 226, 0.5);
}

.step-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #66c2e8;
  margin-bottom: 0.75rem;
  transition: color 0.4s, text-shadow 0.4s;
}

.step-desc {
  color: #ccc;
  font-size: 1.6rem;
  line-height: 1.7;
}

.process-section::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -20%;
  width: 150%;
  height: 150%;
  background: radial-gradient(circle at center, #331f75 0%, transparent 60%);
  opacity: 0.15;
  animation: floatBG 30s linear infinite alternate;
  z-index: 0;
}

@keyframes floatBG {
  0% { transform: translate(0, 0); }
  100% { transform: translate(20px, 20px); }
}

@media (max-width: 800px){
    .process-section {
        top: 50rem;
    }
    .process-section .section-title {
      font-size: 30px; 
    }
    .process-section .step-desc {
      font-size: 18px;       
      line-height: 1.5;
      text-align: center;
      margin-bottom: 2rem;
  }
}

@media (max-width: 500px) {
  .process-section {
    padding: 1.5rem 3.5rem;
    box-sizing: border-box;
     top: 38rem;
  }
  .process-section .section-title {
    font-size: 20px;         
    line-height: 1.3;       
    text-align: center;
    margin-bottom: 1rem;
  }

  .process-section .section-subtitle {
    font-size: 16px;       
    line-height: 1.5;
    text-align: center;
    margin-bottom: 5rem;
  }

  .process-section .step-title {
    font-size: 12px;         
    line-height: 1.3;
    text-align: center;
    margin-bottom: 0.5rem;
  }

  .process-section .step-desc {
    font-size: 15px;       
    line-height: 1.5;
    text-align: center;
    margin-bottom: 2rem;
  }

  .process-section .process-steps {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;             /* Space between steps remains decent */
    padding: 0;
  }

  .process-section .step {
    padding: 1rem;
  }
}

.timeline-section {
    position: relative;
    top: 73rem;
    padding: 4rem 1rem;
    background: linear-gradient(180deg, #000000, #0a0a23);
    position: relative;
}

.timeline-heading {
  text-align: center;
  font-size: 3.5rem;
  color: #66c2e8;
  margin-bottom: 0.5rem;
}

.timeline-subheading {
  text-align: center;
  color: #aaa;
  margin: 0 auto 3rem;
  font-size: 1.4rem;
  letter-spacing: 1px;
}

.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: linear-gradient(180deg, #66c2e8, #8a2be2);
  transform: translateX(-50%);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 2rem 2rem;
  box-sizing: border-box;
}

.timeline-item::after {
  content: '';
  position: absolute;
  top: 2rem;
  width: 20px;
  height: 20px;
  background: linear-gradient(45deg, #66c2e8, #8a2be2);
  border-radius: 50%;
  box-shadow: 0 0 15px #8a2be2;
  z-index: 2;
}

.timeline-item.left {
  left: 0;
  text-align: right;
}

.timeline-item.left::after {
  right: -10px;
}

.timeline-item.right {
  left: 50%;
  text-align: left;
}

.timeline-item.right::after {
  left: -10px;
}

.timeline-content {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.5rem;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 8px 25px rgba(138, 43, 226, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(138, 43, 226, 0.4);
}

.timeline-content .stars {
  margin-bottom: 0.5rem;
  font-size: 22px;
}

.timeline-content h3 {
  color: #66c2e8;
  margin-bottom: 0.5rem;
}

.timeline-content .role {
  color: #aaa;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.timeline-content p {
  color: #ddd;
  line-height: 1.5;
  font-size: 1.2rem;
}

/* Mobile Responsive */
@media (max-width: 800px) {
  .timeline-section {
    top: 49rem;
  }
  .timeline-heading {
    font-size: 2rem;
  }
  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 3rem;
    padding-right: 1rem;
    margin-bottom: 2rem;
  }

  .timeline-item.left,
  .timeline-item.right {
    left: 0;
    text-align: left;
  }

  .timeline-item::after {
    left: 10px;
  }
}
@media (max-width: 500px) {
  .timeline-section {
    top: 40rem;
  }
  .timeline-heading {
    font-size: 1.2rem;
  }
  .timeline-subheading {
    font-size: 1rem;
  }
    
  .timeline-content p {
    color: #ddd;
    line-height: 1.5;
    font-size: 1rem;
  }
}

.site-footer {
  position: relative;
  top: 72rem;
  background-color: #000;
  color: #ccc;
  padding: 4rem 2rem 2rem;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  font-size: 2rem;
  color: #29b5db;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  color: #aaa;
  font-size: 1rem;
}

.footer-links h4,
.footer-social h4,
.footer-newsletter h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color:  #29b5db;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 0.5rem;
}

.footer-links ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: #29b5db;
}

.social-icons a {
  display: inline-block;
  margin-right: 1rem;
}

.social-icons img {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
  position: relative;
  left: 1rem;
}

.social-icons img:hover {
  transform: scale(1.2);
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  color: #555;
  font-size: 0.9rem;
  border-top: 1px solid #222;
  padding-top: 1.5rem;
}

.back-to-top {
  display: inline-block;
  margin-top: 0.5rem;
  color: #66c2e8;
  text-decoration: none;
  transition: color 0.3s;
}

.back-to-top:hover {
  color: #8a2be2;
}

@media (max-width: 750px){
    .site-footer {
      top: 48rem;
    }
}
@media (max-width: 450px){
    .site-footer {
      top: 40rem;
    }
}
