@import url('https://fonts.googleapis.com/css2?family=Aboreto&display=swap');
@import url('https://fonts.googleapis.com/css2?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&display=swap');

body{
    font-family: Poppins;
    margin: 0;
    font-size: 16px;
    background-color: #ffe500;
    overflow-x:hidden;  
}
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
}
:root{

    --w-image: 500px;
    --calculate: calc(3 / 2);
}

body.loaded header {
  opacity: 1;
}

header{
    position:relative;
    left:0;
    top:0;
    width:100%;
    height:80px;
    opacity: 0;
    transition: opacity 0.8s ease;
}

header h4{
    position:absolute;
    left:10%;
    top:50%;
    bottom : 1rem;
    font-size: 1.6rem;

}

/* Hide/reveal header on scroll */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 1000;
  background: #fff;
  transition: transform 0.35s cubic-bezier(.77,0,.18,1);
  will-change: transform;
}


/*Splash screen*/
.intro{
    position:fixed;
    z-index:2;
    left:0;
    top:0;
    width:100%;
    height:100vh;
    background-color:#161616;
    transition:1s;
}

.logo-header{
    position:absolute;
    top:40%;
    left:50%;
    transform:translate(-50%,-50%);
    color:#fff;

}

.mb-intro {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100vh;
  background-color: #131313; /* Mercedes black */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.8s ease;
}

.mb-intro.hidden {
  opacity: 0;
  pointer-events: none;
}

.mb-video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* or 'cover' if you want it to fill */
  opacity: 1;
  transition: opacity 0.8s ease;
}

.mb-video.fade-out {
  opacity: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #1c1c1c;
  padding: 12px 0;
  transition: background 0.3s ease;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

body.loaded .site-header {
  opacity: 1;
  transform: translateY(0);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link img.header-logo {
  height: 60px;
  filter: brightness(1.2);
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 32px;
}

.nav-list li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-family: Roboto Condensed, roboto, Microsoft JhengHei, sans-serif;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s ease;
  position: relative;
  padding-bottom: 4px;
}

.nav-list li a::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #ffe500 0%, #fff700 100%);
  border-radius: 2px;
  transition: width 0.35s cubic-bezier(.77,0,.18,1);
}

.nav-list li a:hover {
  color: #ffe500;
}

.nav-list li a:hover::after {
  width: 100%;
}

/* Hide nav and show hamburger on small screens */
.hamburger {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

/* Mobile styles */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }


  .nav {
    display: block;
    position: absolute;
    top: 0;
    left: -100vw; /* Hide off-screen to the left */
    width: 100vw;
    background: #1c1c1c;
    opacity: 0;
    transition: left 0.55s cubic-bezier(.77,0,.18,1), opacity 0.3s;
    z-index: 1001;
    top: 80px;
  }

  .nav.open {
    opacity: 1;
    left: 0; /* Slide in from the left */
    transition: left 0.55s cubic-bezier(.77,0,.18,1), opacity 0.3s;
    z-index: 1001;
    top: 80px;
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
  }

  .nav-list li {
    margin: 10px 0;
  }
}


/*hero section*/

.carousel{
    margin-top: -80px;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
.carousel .list{
    height: 100%;
    position: relative;
}
.carousel .list::before{
    position: absolute;
    width: var(--w-image);
    height: 100%;
    content: '';
    top: 0;
    left: calc(100% - calc(var(--w-image) * var(--calculate)));
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    z-index: 2;
    pointer-events: none;
}
.carousel .list::after{
    position: absolute;
    top: 50px;
    left: 50px;
    content: '';
    width: 400px;
    height: 300px;
    z-index: 2;
    pointer-events: none;
    border-radius: 20px  50px 110px  230px;
    filter: blur(150px);
    opacity: .6;
}
.carousel .list .item{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.carousel .list .item .image {
  width: var(--w-image);

  height: auto;
  position: absolute;
  top: 50%;
  left: calc(100% - calc(var(--w-image) * var(--calculate)));
  transform: translateY(-50%);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: 500;
}
.carousel .list .item .image img{
  position: relative;
  top:66px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  display: block;
  height:800px;
}

/* Target specific carousel item for worker image */
.carousel .list .item:nth-child(2) .image img {
  
  height: 900px;
}

/* Target specific carousel item for worker image */
.carousel .list .item:nth-child(1) .image img {
  height: 800px;
}

/* Target specific carousel item for worker image */
.carousel .list .item:nth-child(4) .image img {
  height: 850px;
  top:27px;
}


.carousel .list .item .image figcaption{
    font-family: 'Aboreto';
    font-weight: bold;
    font-size: 1.3em;
    text-align: right;
    margin-bottom: 30px;
    width: 70%;
}
.carousel .list .item .main-content{
    height: 100%;
    display: grid;
    grid-template-columns: calc(100% - calc(var(--w-image) * var(--calculate)));
}
.carousel .list .item .main-content .content{
    padding: 150px 20px  20px 80px;
  
}
.carousel .list .item .main-content .content h2{
    font-size: 5em;
    font-family: 'Aboreto';
}

.carousel .list .item .main-content .content p{
    font-size: 1.7em;
    margin: 20px 0;
    font-family: 'Oswald', 'Open Sans', Arial, Helvetica, sans-serif;
}

.arrows{
    position: absolute;
    bottom: 20px;
    width: calc(100% - calc(var(--w-image) * var(--calculate)));
    display: grid;
    grid-template-columns: repeat(2, 50px);
    grid-template-rows: 50px;
    justify-content: end;
    gap: 10px;
}
.arrows button{
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: #fff;
    font-family: monospace;
    font-size: large;
    font-weight: bold;
    line-height: 0;
    box-shadow: 0 10px 40px #5555;
    cursor: pointer;
    transition: 0.5s;
}
.arrows button:hover{
    background-color: #eee5;
}
.carousel .list .item{
    display: none;
}
.carousel .list .item.active,
.carousel .list .item.other_1,
.carousel .list .item.other_2{
    display: block;
}
.carousel .list .item.active{
    z-index: 2;
}
.carousel .list .item.other_1,
.carousel .list .item.other_2{
    pointer-events: none;
}
.carousel .list .item.active .main-content{
    animation: showContent 1s ease-in-out 1 forwards;
}
@keyframes showContent{
    from{
        clip-path: circle(0% at 70% 50%);
    }to{
        clip-path: circle(100% at 70% 50%);
    }
}
.next .item.other_1{
    z-index: 1;
}
.next .item .image img,
.next .item .image figcaption{
    animation: effectNext .5s ease-in-out 1 forwards;
}
@keyframes effectNext{
    from{
        transform: translateX(calc(var(--transform-from)));
    }to{
        transform: translateX(calc(var(--transform-from) - var(--w-image)));
    }
}
.next .item.active .image{
    --transform-from: var(--w-image);
}
.next .item.other_1 .image{
    z-index: 3;
    --transform-from: 0px;
    overflow: hidden;
}
.next .item.other_2 .image{
    z-index: 3;
    --transform-from: calc(var(--w-image) * 2);
}
.arrows{
    z-index: 10;
}
/* prev */
.prev .list .item .image img,
.prev .list .item .image figcaption{
    animation: effectPrev 0.5s ease-in-out 1 forwards;
}
@keyframes effectPrev{
    from{
        transform: translateX(calc(var(--transform-from)));
    }to{
        transform: translateX(calc(var(--transform-from) + var(--w-image)));
    }
}
.prev .list .item.active .image{
    --transform-from: calc(var(--w-image) * -1);
    overflow: hidden;
}
.prev .list .item.other_1 .image{
    --transform-from: 0px;
    z-index: 3;
}
.prev .list .item.other_2 .image{
    z-index: 3;
    --transform-from: var(--w-image);
}
.prev .list .item.other_2 .main-content{
    opacity: 0;
}
@media screen and (max-width: 1023px){
    :root{
        --calculate: 1;
        --w-image: 400px; 
    }
    .carousel .list .item .main-content .content h2{
        font-size: 3em;
    }
}
@media screen and (max-width: 767px){
    .carousel .list .item .image{
        width: 100%;
        left: 0;
        justify-content: center;
    }
    .carousel .list .item .image figcaption{
        color: #fff;
        width: 100%;
        text-align: center;
    }
    .carousel .list .item .main-content .content{
        display: none;
    }
    .arrows{
        left: 50%;
        justify-content: center;
    }
}



/* About Section */

.about-section {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    background: #161616;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
}

.about-bg-logo {
    position: absolute;
    left: -56px;
    bottom: -120px;
    width: 600px;
    opacity: 0.2;
    pointer-events: none;
    user-select: none;
    z-index: 1;
}

.about-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    width: 92%;
    margin: 0 auto;
    text-align: center;
    background: none;
    border-radius: 0;
    padding: 0 28px;
    position: relative;
    overflow: hidden;
}

.about-title {
    color: #ffe500;
    font-size: 2.8rem;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 18px;
    text-transform: uppercase;
    font-family: 'Oswald', 'Open Sans', Arial, Helvetica, sans-serif;
}

.about-lead {
    color: #fff;
    font-size: 1.18rem;
    font-weight: 700;
    margin-bottom: 22px;
    letter-spacing: 0.5px;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}

.about-click {
    color: #111;
    background: #ffe500;
    border-radius: 4px;
    padding: 2px 8px;
    font-weight: 700;
    margin-left: 2px;
    box-shadow: 0 2px 8px #ffbf0055;
    letter-spacing: 1px;
    transition: background 0.2s;
}

.about-desc {
    color: #bdbdbd;
    font-size: 1.08rem;
    font-weight: 400;
    line-height: 1.7;
    margin: 0 auto;
    max-width: 700px;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}

@media (max-width: 600px) {
    .about-container {
        padding: 22px 8px 18px 8px;
    }
    .about-title {
        font-size: 1.5rem;
    }
    .about-lead {
        font-size: 1rem;
    }
    .about-desc {
        font-size: 0.98rem;
    }
}

/* Responsive About Section */
@media (max-width: 900px) {
  .about-section {
    flex-direction: column;
    min-height: auto;
    padding: 40px 0;
  }
  .about-bg-logo {
    width: 350px;
    left: 50%;
    bottom: -60px;
    transform: translateX(-50%);
  }
  .about-container {
    padding: 0 10px;
    max-width: 98vw;
  }
  .about-title {
    font-size: 2rem;
  }
  .about-lead {
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  .about-section {
    flex-direction: column;
    min-height: auto;
    padding: 60px 0 190px 0;
  }
  .about-bg-logo {
    width: 180px;
    left: 50%;
    bottom: 10px;
    transform: translateX(-50%);
  }
  .about-container {
    padding: 0 4vw;
    max-width: 100vw;
  }
  .about-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  .about-lead {
    font-size: 0.95rem;
    margin-bottom: 12px;
  }
  .about-desc {
    font-size: 0.92rem;
    max-width: 98vw;
  }
}

.custom-carousel {
  text-align: center;
  padding: 110px 0px;
  background: #fff;
  overflow: hidden;
  font-family: Roboto Condensed, roboto, Microsoft JhengHei, sans-serif;
}

.carousel-title {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 40px;
}

.carousel-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
}

.carousel-track {
  display: flex;
  gap: 48px;
  overflow: hidden;
  scroll-behavior: smooth;
  width: 100%;
  max-width: 1400px;
}

.carousel-item {
  flex: 0 0 calc((100% - 192px) / 5); /* 5 items + 4 gaps of 48px */
  max-width: 280px;
  text-align: center;
  scroll-snap-align: start;
}

.carousel-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  margin-bottom: 16px;
  border: 2px solid #ccc;
  border-radius: 16px;
  background: #f8f8f8;
  box-sizing: border-box;
}

.carousel-item p {
  font-size: 1.15rem;
  color: #111;
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.4px;
}

.carousel-btn {
  position: relative;
  background: none;
  border: none;
  font-size: 3rem;
  color: #ffe500;
  cursor: pointer;
  padding: 8px;
  z-index: 2;
  line-height: 1;
  bottom: 22px;
}

.carousel-btn:disabled {
  opacity: 0.3;
  cursor: default;
}

.carousel-dots {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 90vw;
  margin-inline: auto;
}

.carousel-dots span {
  width: 24px;
  height: 12px;
  background: #d3d3d3;
  display: inline-block;
  transform: skewX(-30deg);
  border-radius: 2px;
  transition: background 0.3s ease;
}

.carousel-dots .active {
  background: #ffe500;
}

/* Remove hover and glow */
.carousel-dots span:hover {
  background: #d3d3d3;
  cursor: pointer;
}

/* Responsive Tweaks */
@media (max-width: 1200px) {
  .carousel-track {
    gap: 24px;
    max-width: 98vw;
  }
  .carousel-item {
    max-width: 200px;
    flex: 0 0 180px;
  }
}

@media (max-width: 768px) {
  .carousel-track {
    gap: 16px;
    max-width: 98vw;
  }
  .carousel-item p {
    font-size: 1rem;
  }

  .carousel-item {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .carousel-title {
    font-size: 1.8rem;
  }

  .carousel-dots span {
    width: 32px;
    height: 16px;
  }
}



@media (max-width: 576px) {
  .carousel-btn {
    font-size: 6rem;
    position: relative;
    bottom: 22px;
  }
  .carousel-item {
    width: 180px;
  }
  .carousel-item p {
    font-size: 0.91rem;
  }
}

@media (max-width: 480px) {
  .carousel-dots span {
    width: 24px;
    height: 12px;
  }
}


.site-footer{
  background: #000;
  color: #fff;
  padding: 32px 0 80px;
  font-family: 'Open Sans', sans-serif;
  position: relative;
  overflow: hidden;
  min-height: 560px;
  padding: 50px 0 100px; 
}

.site-footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Top nav + newsletter */
.site-footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}

.site-footer-nav {
  display: flex;
  gap: 17px;
  flex-wrap: wrap;
}
.site-footer-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
}
.site-footer-nav a:hover {
  color: #ffe500;
  transition: 300ms;
}

.site-footer-newsletter {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.newsletter-title {
  font-weight: 700;
  font-size: 0.8rem;
  margin-bottom: 6px;
  color: #ccc;
}
.site-footer-newsletter form {
  display: flex;
}
.site-footer-newsletter input[type="email"] {
  padding: 6px 12px;
  background: transparent;
  border: 1px solid #777;
  color: #fff;
  font-size: 0.9rem;
  width: 220px;
}
.site-footer-newsletter button {
  background: #ffe500;
  color: #000000;
  border: none;
  padding: 6px 18px;
  margin-left: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: 300ms;
}
.site-footer-newsletter button:hover {
  background: #fff;
  color: #000;
  transition: 300ms;
}

/* Social icons */
.site-footer-social {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.site-footer-social img {
  width: 24px;
  height: 24px;
  filter: invert(1);
  opacity: 0.85;
  transition: opacity 0.2s, transform 0.2s;
}
.site-footer-social a:hover img {
  opacity: 1;
  transform: scale(1.1);
}

/* Divider with tabs */
.site-footer-divider {
  position: relative;
  height: 1px;
  width: 100%;
  margin: 16px 0;
}
.divider-bar {
  background: #888;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
}
.divider-tab {
  width: 48px;
  height: 0;
  position: absolute;
}
.divider-tab.left {
  left: 0;
  border-top: 6px solid #888;
  border-right: 10px solid transparent;
}
.divider-tab.right {
  right: 0;
  border-top: 6px solid #888;
  border-left: 10px solid transparent;
}

.site-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.75rem;
  color: #ccc;
  gap: 16px;
}
.site-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  color: #b3b3b3;
  font-size: 14px;
  text-decoration: none;
  text-transform: uppercase;
  font-family: Roboto Condensed, roboto, Microsoft JhengHei, sans-serif;
}
.site-footer-links a {
  text-decoration: none;
  color: #ccc;
  font-weight: 600;
}
.site-footer-links a:hover {
  color: #ffe500;
}
.site-footer-links span {
  font-weight: 400;
}

.footer-icon svg {
  padding: 2px;
  box-sizing: content-box;
}

.footer-icon svg path {
  transition: fill 0.3s ease;
}

.footer-icon:hover svg path {
  fill: #ffe500;
}



.site-footer-logo {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 310px;
  opacity: 1;
  pointer-events: none;
  user-select: none;
  bottom: 120px;
  
}

/* Mobile */
@media (max-width: 768px) {
  .site-footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .site-footer-newsletter {
    align-items: flex-start;
  }
  .site-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer-social {
    align-self: center;
  }

  .site-footer-links span {
    text-align: -webkit-center;

  }
}

@media (max-width: 400px) {
  .site-footer-logo {
    width: 220px;
    bottom: 80px;
  }
  .site-footer-nav{
    gap:7px;
  }
}

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

.rog-pricing {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 32px;
  background: linear-gradient(120deg, #181818 60%, #232323 100%);
  font-family: 'Orbitron', sans-serif;
  padding-bottom:200px;
}

.pricing-card {
  border-radius: 16px;
  padding: 20px;
  color: #111;
  flex: 1 1 260px;       
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 400px;     
  max-width: 300px;      
  text-align: center;
}

.pricing-card.bronze {
  background: linear-gradient(120deg, #b87333 40%, #cd7f32 70%, #7c4a03 100%);
  box-shadow: 0 4px 24px 0 #b8733322, 0 1.5px 0 #fff2, 0 0.5px 0 #7c4a0333;
  border: 2px solid #b87333;

}

.pricing-card.silver {
  background: linear-gradient(120deg, #e6e6e6 30%, #bfc1c6 60%, #8e8e8e 100%);
  box-shadow: 0 4px 24px 0 #bfc1c655, 0 1.5px 0 #fff4, 0 0.5px 0 #8e8e8e33;
  border: 2px solid #bfc1c6;
}

.pricing-card.gold {
  background: linear-gradient(120deg, #ffd700 0%, #ffb300 40%, #f6e27a 70%, #bfa600 100%);
  box-shadow: 0 4px 32px 0 #ffd70055, 0 1.5px 0 #fff6, 0 0.5px 0 #bfa60033;
  border: 2px solid #ffd700;
}
.pricing-card:hover {
  border-color: #ffe500;
  box-shadow: 0 0 20px rgba(255, 229, 0, 0.6);
}

.pricing-card.bronze:hover {
  border-color: #ffb97a;
  box-shadow: 0 0 32px 0 #b87333cc, 0 0 12px #ffb97a99;
}

.pricing-card.silver:hover {
  border-color: #bfc1c6;
  box-shadow: 0 0 32px 0 #bfc1c6cc, 0 0 12px #e6e6e699;
}

.pricing-card.gold:hover {
  border-color: #ffd700;
  box-shadow: 0 0 40px 0 #ffd700cc, 0 0 16px #ffe50099;
}

.pricing-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.pricing-card.bronze h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #412508;
  letter-spacing: 1px;
}

.pricing-card.silver h3 {
  color: #444a57;
}

.pricing-card.gold h3 {
  color: #fff700;
  text-shadow: 0 0 12px #ffe500, 0 0 32px #ffd700, 0 2px 8px #bfa600;

}

.pricing-card .tag {
  font-size: 0.7rem;
  background: #ffe500;
  color: #000;
  padding: 3px 8px;
  border-radius: 4px;
  margin-left: 5px;
}

.price {
  font-size: 2rem;
  color: #111;
  font-weight: 700;
  margin: 12px 0 6px;
  font-family: 'Orbitron', sans-serif;
  text-align: center;
  letter-spacing: 0.5px;
}

.price span {
  font-size: 0.85rem;
  color: #333;
  margin-left: 4px;
  vertical-align: middle;
  font-weight: 500;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 22px 0;
}

.pricing-card ul li {
  margin: 10px 0;
  font-size: 0.95rem;
  color: #111;
  text-align: center;
  line-height: 1.5;
  font-family: 'Segoe UI', sans-serif;
}

.pricing-card ul li strong {
  font-weight: 700;
  color: #000;
}

.pricing-card button {
  background: transparent;
  border: 2px solid #ffe500;
  color: #ffe500;
  font-weight: bold;
  padding: 10px 24px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.4s ease;
}
.pricing-card button:hover {
  background: #ffe500;
  color: #000;
}

.gold-btn {
  border-color: #ffe500;
  color: #ffe500;
}
.gold-btn:hover {
  background: #ffe500;
  color: #000;
}

.pricing-card .btn-wrapper {
  margin-top: auto;
  display: flex;
  justify-content: center;
}

.pricing-section {
  background: linear-gradient(120deg, #181818 60%, #232323 100%);
  padding: 80px 20px 40px;
  text-align: center;
}

.pricing-title {
  font-family: Roboto Condensed, roboto, Microsoft JhengHei, sans-serif;
  font-size: 2.4rem;
  margin-bottom: 40px;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  color: #ffe500;
}

.pricing-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: #ffe500;
  margin: 12px auto 0;
  border-radius: 2px;
}

  
.split-contact {
  display: flex;
  min-height: 100vh;
  font-family: 'Open Sans', sans-serif;
  overflow: hidden;
}

.contact-left {
  background: #111103;
  color: #fff;
  flex: 1 1 50%;
  width: 50vw;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  transition:
    opacity 0.6s cubic-bezier(.77,0,.18,1),
    transform 0.6s cubic-bezier(.77,0,.18,1),
    flex 0.6s cubic-bezier(.77,0,.18,1),
    width 0.6s cubic-bezier(.77,0,.18,1);
  will-change: transform, opacity, flex, width;
  z-index: 2;
  position: relative;
  overflow: hidden;   /* ensures circles don't overflow */

}



.contact-left.fullscreen {
  flex: none;
  width: 100vw;
  align-items: center;
  text-align: center;
  justify-content: center;
}

.contact-left h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  width: auto;
  text-align: left;
  transition:
    opacity 0.5s cubic-bezier(.77,0,.18,1),
    transform 0.5s cubic-bezier(.77,0,.18,1);
}

.contact-left p {
  font-size: 1rem;
  margin-bottom: 28px;
  color: #e2e2b3;
  line-height: 1.6;
  transition:
    opacity 0.5s cubic-bezier(.77,0,.18,1),
    transform 0.5s cubic-bezier(.77,0,.18,1);
}

.contact-left h2.fade-out-left,
.contact-left p.fade-out-left {
  opacity: 0;
  transform: translateX(-60px);
}

.contact-left .info-block p {
  font-size: 1rem;
  margin-bottom: 14px;
}

.contact-right {
  background: #fff;
  flex: 1 1 50%;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: 
    opacity 0.6s cubic-bezier(.77,0,.18,1), 
    transform 0.6s cubic-bezier(.77,0,.18,1),
    flex 0.6s cubic-bezier(.77,0,.18,1),
    width 0.6s cubic-bezier(.77,0,.18,1);
  will-change: transform, opacity, flex, width;
  z-index: 2;
}

.contact-right.slide-out {
  opacity: 0;
  transform: translateX(100px) scale(0.98);
  pointer-events: none;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  flex: 1;
}

.form-group label {
  font-size: 0.95rem;
  margin-bottom: 6px;
  color: #333;
}

.form-group input,
.form-group textarea {
  padding: 12px;
  font-size: 1rem;
  border: none;
  border-bottom: 1px solid #ddd;
  outline: none;
  background: transparent;
  color: #444;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #ffe500;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.submit {
  position: relative;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: bold;
  color: #000;
  background: #ffe500;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 0 #c9b200;
  overflow: hidden;
}

.submit:hover {
  background: #f5d300;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.submit:active {
  transform: translateY(2px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

/* Default (desktop): shimmer goes right */
.submit::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
  transform: skewX(-20deg);
  transition: left 0.5s ease, height 0.5s ease, top 0.5s ease;
}

.submit:hover::after {
  left: 125%;
}

@media (max-width: 768px) {
  /* On mobile: shimmer goes down (height increases) */
  .submit::after {
    left: 0;
    top: -75%;
    width: 100%;
    height: 50%;
    transform: skewY(-10deg);
    transition: top 0.5s cubic-bezier(0.77,0,0.18,1), height 0.5s cubic-bezier(0.77,0,0.18,1);
  }
  .submit:hover::after {
    top: 125%;
    left: 0;
    width: 100%;
    height: 50%;
    transition: top 0.5s cubic-bezier(0.77,0,0.18,1), height 0.5s cubic-bezier(0.77,0,0.18,1);
  }
}

@media (max-width: 768px) {
  .split-contact {
    flex-direction: column;
  }
  .contact-left,
  .contact-right {
    width: 100%;
    padding: 40px 20px;
  }
  .form-row {
    flex-direction: column;
  }
  .contact-left.fullscreen {
    height: 100vh;
    padding: 40px 20px;
  }
}

.circle-bg {
  position: absolute;
  border-radius: 50%;
  opacity: 0.18;
  pointer-events: none;
  transition:
    top 0.8s cubic-bezier(.77,0,.18,1),
    right 0.8s cubic-bezier(.77,0,.18,1),
    left 0.8s cubic-bezier(.77,0,.18,1),
    bottom 0.8s cubic-bezier(.77,0,.18,1),
    width 0.8s cubic-bezier(.77,0,.18,1),
    height 0.8s cubic-bezier(.77,0,.18,1);
  z-index: 1;
}

.circle-bg.top-right {
  top: 32px;
  right: 32px;
  width: 220px;
  height: 220px;
  background: #ffe500;
}

.circle-bg.bottom-left {
  z-index: -1;
  bottom: -128px;
  left: -100px;
  width: 380px;
  height: 380px;
  background: #ffe500;
}

.circle-bg.expand {
  transform: scale(2); /* Adjust scale as you like */
  transition: transform 1.2s cubic-bezier(.77, 0, .18, 1);
}

/* When fullscreen, move circles to corners of the viewport */
.contact-left.fullscreen .circle-bg.top-right {
  top: 32px;
  right: 32px;
}

.contact-left.fullscreen .circle-bg.bottom-left {
  bottom: 32px;
  left: 32px;
}

.contact-right input,
.contact-right textarea {
  transition: all 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}


/* Responsive: adjust for mobile if needed */
@media (max-width: 600px) {
  .circle-bg.top-right {
    width: 60px;
    height: 60px;
    top: 12px;
    right: 12px;
  }
  .circle-bg.bottom-left {
    width: 90px;
    height: 90px;
    bottom: 12px;
    left: 12px;
  }
}


.js-tilt-glare{
  border-radius: 2px;
}

/* Download Buttons Styling */
.download-buttons {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Animation for download buttons */
.fixed-download-buttons {
  position: relative;
  transform: translateX(-50%);
  bottom: 250px;
  left:250px;
  z-index: 900; /* Lower than header's z-index (1000) */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  pointer-events: auto;
  opacity: 0;
  animation: downloadButtonsIn 0.7s cubic-bezier(.77,0,.18,1) 0.5s forwards;
}

.download-text-row {
  display: flex;
  justify-content: center;
  width: 23%;
  animation: downloadTextIn 0.7s cubic-bezier(.77,0,.18,1) 1s forwards;
  color: #111; /* Main color */
  font-weight: bold;
  font-size: 2.2rem;
  z-index: 1;
}

.download-buttons-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

@keyframes downloadButtonsIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.download-btn {
  display: inline-block;
  transition: transform 0.3s ease, opacity 0.3s ease;
  border-radius: 8px;
  overflow: hidden;
}

.download-btn:hover {
  transform: translateY(-2px) scale(1.05);
  opacity: 0.9;
}

.download-btn img {
  height: 48px;
  width: auto;
  display: block;
}

.download-buttons .download-btn img {
  height: 44px;
}

span .download-text {
  display: block;
  font-size: 0.9rem;
  color: #111;
  text-align: center;
  margin-top: 4px;
  font-weight: bold;
}
/* Responsive Design */
@media (max-width: 768px) {
  .fixed-download-buttons {
    bottom: 16px;
    gap: 12px;
    left: 50%;
    transform: translateX(-50%) translateY(60px);
    animation: downloadButtonsIn 0.7s cubic-bezier(.77,0,.18,1) 0.5s forwards;
    z-index: 900;
  }
  
  .download-btn img {
    height: 40px;
  }
  
  .download-buttons .download-btn img {
    height: 36px;
  }
  
  .download-buttons {
    gap: 8px;
    margin-top: 12px;
  }
}

@media (max-width: 480px) {
  .fixed-download-buttons {
    bottom: 852px;
    gap: 8px;
    transform: translateX(-50%) translateY(60px);   
    left: 91px;
    animation: downloadButtonsIn 0.7s cubic-bezier(.77,0,.18,1) 1s forwards;
    z-index: 900;
  }

  .download-btn img {
    height: 32px;
  }

  .download-buttons-row {
    flex-direction: inherit;
    position: relative;
    left: -30px;
  }
  
  .download-buttons .download-btn img {
    height: 28px;
  }
  
  .download-buttons {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

@media (max-width: 414px) {
    .fixed-download-buttons {
    bottom: 810px;
    z-index: 900;
  }

  .download-text-row {
    position: relative;
    font-size: 1.4rem;
    left: -30px;
  }
}

@media (max-width: 390px) {
    .fixed-download-buttons {
    bottom: 765px;
    z-index: 900;
  }

  .download-text-row {
    position: relative;
    font-size: 1.8rem;
    left: -15px;
  }
}

@media (max-width: 375px) {
    .fixed-download-buttons {
    bottom: 590px;
    z-index: 900;
  }

  .download-text-row {
    position: relative;
    font-size: 1.4rem;
    left: -30px;
  }
}

@media (max-width: 390px) and (max-height: 844px)  {
  .fixed-download-buttons {
    bottom: 700px;
    z-index: 900;
  }
}
