*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  vertical-align: middle;
}

:root {
  --primary: #cda34a;
  --secondary: #060165;
  --white: #ffffff;
  --text-clr: #3a3a3a;
  --black: #000000;
  --footer-bg: #252626;
}

::selection {
  background: var(--primary);
  color: var(--white);
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

@font-face {
  font-family: 'Satoshi-Variable';
  src: url('../fonts/Satoshi-Variable.woff2') format('woff2'),
       url('../fonts/Satoshi-Variable.woff') format('woff'),
       url('../fonts/Satoshi-Variable.ttf') format('truetype');
  font-weight: 300 900;
  font-display: swap;
  font-style: normal;
}
/**
* This is a variable font
* You can control variable axes as shown below:
* font-variation-settings: wght 900.0;
*
* available axes:
'wght' (range from 300.0 to 900.0
*/
@font-face {
  font-family: 'Satoshi-VariableItalic';
  src: url('../fonts/Satoshi-VariableItalic.woff2') format('woff2'),
       url('../fonts/Satoshi-VariableItalic.woff') format('woff'),
       url('../fonts/Satoshi-VariableItalic.ttf') format('truetype');
  font-weight: 300 900;
  font-display: swap;
  font-style: italic;
}


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


html {
  font-family: "Satoshi-Variable", sans-serif;
  font-size: 62.5%; /* Base: 1rem = 10px */
}

/* For screens up to 1024px */
@media (max-width: 1024px) {
  html {
    font-size: 56.25%; /* 1rem = 9px */
  }
}

/* For screens up to 786px */
@media (max-width: 786px) {
  html {
    font-size: 50%; /* 1rem = 8px */
  }
}

/* For screens up to 576px */
@media (max-width: 576px) {
  html {
    font-size: 43.75%; /* 1rem = 7px */
  }
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
  border: none;
  background: none;
  outline: none;
}

body {
  overflow-x: hidden;
}

.container-main {
  max-width: 144rem;
  margin: 0 auto;
}

.container-center {
  max-width: min(124rem, 95%);
  margin: 0 auto;
}

.section-header {
  height: 100vh;
  width: 100vw;
  background-image: url(../images/hero_bg.png);
  background-repeat: no-repeat;
  background-position: center;
  color: white;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  height: 100%;
  z-index: 3;
  text-align: center;
}

.hero__heading--primary {
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 3rem;
  background: linear-gradient(
    90deg,
    rgba(68, 133, 195, 0.8) 0%,
    rgba(124, 71, 201, 0.8) 100%
  );
  padding: 0.7rem 2.8rem;
  border-radius: 100px;
  display: flex;
  align-self: center;
  justify-content: end;
  gap: 7px;
}

.hero__heading--primary::before {
  content: url("../images/star.svg");
}

.hero__heading--sec {
  font-weight: 700;
  font-size: 6rem;
}

.hero__text {
  font-weight: 400;
  font-size: 2rem;
  max-width: 74rem;
  margin-bottom: 4rem;
}

.hero__btn {
  display: flex;
  gap: 4rem;
  justify-content: center;
  align-items: center;
}

.hero__video {
  position: absolute;
  bottom: 0;
  overflow: hidden;
  z-index: -1;
  transform-origin: bottom center;
  width: 100vw;
  height: 100vh;
  left: 0;
  transform-origin: center bottom;
  transform: scaleX(50%) scaleY(50%) translateY(50%);
  border-radius: 1.6rem;
}

.hero__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.navigation {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  background-color: white;
  width: 90%;
  justify-content: space-between;
  align-items: center;
  border-radius: 100px;
  padding: 1.2rem;
  z-index: 1000;
}

.navigation--menu {
  display: flex;
  max-width: 85rem;
  font-weight: 500;
  font-size: 1.6rem;
  gap: 4rem;
  color: black;
}

.nav__logo--transparent {
  display: none;
}

.navigation--logo {
  font-weight: 700;
  font-size: 2.2rem;
  color: #4485c3;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.navigation--app {
  color: white;
  font-weight: 500;
  font-size: 1.6rem;
  padding: 1rem 2rem;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: linear-gradient(90deg, #510eb2 0%, #4375b3 70.19%, #4485c3 100%);
  position: relative;
  overflow: hidden;
  z-index: 1;
  cursor: pointer;
}

.navigation--app::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #7b3fe4 0%, #5b9bd5 70.19%, #60a5fa 100%);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease-in-out;
}

.navigation--app:hover::before {
  opacity: 1;
}

.navigation--app::after {
  content: url("../images/arrow-top.svg");
  gap: 8px;
  width: 20px;
  height: 20px;
}

.navigation--menu>li>a {
  padding: 1rem 2rem;
  border-radius: 100px;
  transition: all 0.3s ease;
}

.navigation--menu>li>a:hover {
  color: #4485c3;
  background-color: #4485c315;
}

.navigation--menu>li>a.nav-active {
  background-color: #4485c361;
}

.section-about {
  padding: 10rem 0;
}

.about__container {
  background-color: #7c47c91f;
  border-radius: 2.4rem;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 1366px) {
  .hero__heading--sec {
    font-weight: 700;
    font-size: 4.5rem;
  }
}

@media (max-width: 1200px) {
  .navigation--menu {
    gap: 3rem;
  }
  .navigation--menu>li>a {
    padding: 1rem;
  }
}

@media (max-width: 1024px) {
  .navigation--logo {
    font-size: 32px;
  }
  .navigation--menu>li>a.nav-active {
    background-color: #1d1e1e61;
  }

  .nav__logo--transparent {
    display: block;
  }

  .nav__logo--colored {
    display: none;
  }
  .navigation {
    height: 7rem;
    background-color: rgba(255, 255, 255, 0.85);
    padding: 1.2rem 3rem;
  }
  .hamburger {
    display: none;
    position: relative;
    width: 36px;
    height: 26px;
    cursor: pointer;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0;
  }

  @media (max-width: 1024px) {
    .hamburger {
      display: flex;
      order: 2;
    }
  }

  .hamburger-line {
    display: block;
    height: 3.6px; /* Matches SVG stroke thickness */
    background: #ffffff; /* Enforce white color */
    border-radius: 999px;
    transition: transform 0.36s cubic-bezier(0.2, 0.9, 0.2, 1),
      opacity 0.2s ease, width 0.28s ease, background 0.3s ease;
    transform-origin: center;
    will-change: transform, opacity, width, background;
  }

  .hamburger-line-1 {
    width: 75%; /* Medium length, matches SVG top line (x=7 to x=28) */
  }

  .hamburger-line-2 {
    width: 100%; /* Longest, matches SVG middle line (x=0 to x=28) */
  }

  .hamburger-line-3 {
    width: 50%; /* Shortest, matches SVG bottom line (x=12.6 to x=28) */
  }

  .hamburger.active .hamburger-line-1 {
    transform: translateY(11px) rotate(45deg);
    width: 100%; /* Full width for cross */
    background: #ffffff ;
  }

  .hamburger.active .hamburger-line-2 {
    opacity: 0;
    transform: scale(0);
  }

  .hamburger.active .hamburger-line-3 {
    transform: translateY(-11px) rotate(-45deg);
    width: 100%; /* Full width for cross */
    background: #ffffff ;
  }

  .hamburger::after {
    content: "";
    position: absolute;
    inset: -8px; /* Expanded clickable area */
  }

  .navigation--menu {
    display: none;
    position: fixed;
    top: 10rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    background: linear-gradient(90deg, #7b3fe4 0%, #5b9bd5 70.19%, #60a5fa 100%);
    backdrop-filter: blur(30px);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 1.5rem;
    padding: 2rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 999;
    border-radius: 2rem;
  }

  .navigation--menu.active {
    display: flex;
  }

  .navigation--menu li {
    opacity: 0;
    transform: translateY(20px);
    width: 80%;
    text-align: center;
  }

  .navigation--app {
    display: none;
  }

  .navigation--app.active {
    display: flex;
    justify-content: center;
    font-size: 1.8rem;
    margin-right: 7rem;
  }

  .navigation--menu>li>a {
    font-size: 1.8rem;
    padding: 1.2rem 2rem;
    display: block;
    color: white;
  }

  .hero__heading--sec {
    font-size: 4rem;
    text-align: center;
  }

  .hero__text {
    text-align: center;
  }

  .hero__btn {
    gap: 2rem;
  }
}

@media (max-width: 808px) {
  .navigation--app.active {
    margin-right: 0;
  }
}

@media (max-width: 576px) {
  .hero__heading--primary {
    align-self: flex-start;
  }

  .hero__heading--sec {
    text-align: left;
  }
  .hero__text {
    font-size: 2.2rem;
    text-align: left;
  }
  .hero {
    padding-top: 30vh;
  }
}

@media (max-width: 400px) {
  .navigation--menu {
    top: 70px;
  }
  .navigation--app.active {
    margin-right: 0;
  }
  .navigation {
    width: 98%;
  }
}



footer{
    /* max-width:1440px; */
    width:100%;
    background-color: black;
    padding:50px 0 60px;
    margin: 0 auto;
}
.footer-wrapper {
  max-width: 1440px;
  margin: 0 auto;
}
.footer-container{
    width:80%;
    margin:0 auto;
    padding-bottom: 40px;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color:#FFFFFF;
    position: relative;
}
.footer-container::after{
    position: absolute;
    content:"";
    height:1px;
    width:100%;
    bottom:0;
    background-color: #FFFFFF61;
}
.footer-links{
    display: flex;
    gap:30px;
}
.footer-links #navigation {
  display: flex;
  gap: 30px;
}
.footer-link{
    text-decoration: none;
    color: white;
}
.social-links{
    display: flex;
    gap:24px;
}
.social-link{
    max-width:32px;
    width:100%;
}
.social-link img{
    height:100%;
    width:100%;
    object-fit: cover;
}
@media (max-width:1024px) {
  .footer-container{
    width:90%;
  }
  
}
@media (max-width:769px) {
  div#block-5{
    order:2;
  }
    .footer-container {
        flex-direction: column;
        gap:40px;
    }
    .footer-links {
        order:1;
    }
    .social-links {
        order: 2;
    }
    .copyright-text{
        order:3;
    }
}
@media (max-width:576px){
    .footer-container{
        padding-bottom:0;
    }
    .footer-container::after{
        display: none;
    }
}



.industry-standard-section{
    width: fit-content;
    margin: 0 auto;
}
.industry-standard-top{
    width:100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom:40px;
}
.industry-standard-heading{
    font-size: 40px;
    font-weight: 700;
    color:#FFFFFF;
}
.gradient-heading{
    background: linear-gradient(90deg, #4485C3, #7C47C9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.buttons-container{
    background:linear-gradient(90deg, #4485C399, #7C47C999);
    padding:4px;
    border-radius: 40px;
}
.industry-btns{
    background-color: transparent;
    padding:9px 28px;
    font-size: 20px;
    font-weight: 700;
    border-radius: 40px;
    color:#FFFFFF;
    outline: none;
    border: none;
}
.industry-btns.btn-active{
    background:linear-gradient(90deg, #4485C3, #7C47C9);
}
.industry-btns:hover{
    cursor: pointer;
}
.industry-standard-table{
    display: none;
    border-radius: 24px;
    overflow: hidden;
    border:1px solid #53535399;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 16px;
    font-weight: 500;
}
.table-column{
    border-bottom:1px solid #53535399;
    border-right:1px solid #53535399;
}
.table-row:last-child .table-column{
    border-bottom: none;
}
.table-column:last-child{
    border-right:none;
}
.industry-standard-table .table-row:first-child .table-column{
    padding:15px 15px;
    white-space: nowrap;
    border-bottom:none;
}
.industry-standard-table .table-row:first-child{
    background-color: #FFFFFF1A;
    backdrop-filter:blur(30px);
    color:#FFFFFF;
}
.table-row .table-column:first-child{
    color:#FFFFFF;
    max-width:170px;
    padding:17px 15px;
}
.table-row:not(:first-child) .table-column:not(:first-child){
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    
}
.table-row:not(:first-child).first-gradient .table-column:not(:first-child){
    background: linear-gradient(90deg, #4485C3, #4485C3CC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.table-row:not(:first-child).second-gradient .table-column:not(:first-child){
    background: linear-gradient(90deg, #7C47C9, #7C47C9CC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.industry-standard-table.table-active{
    display: block;
    animation: fadeIn 0.5s ease forwards;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.table-mobile-view{
    display: none;
}
.day-rate-accordion, .night-rate-accordion{
    display: flex;
    flex-direction: column;
}
.accordion-container{
    margin-bottom: 24px;
}
.accordion {
    background-color: #FFFFFF1A;
    backdrop-filter:blur(30px);
    color:#FFFFFF;
    cursor: pointer;
    padding: 16px 21px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
    border-radius: 24px;
    position: relative;
  }
  .accordion::before, .accordion::after{
    position: absolute;
    content:"";
    width:10px;
    height:2px;
    background-color: rgb(0, 0, 0);
    right:33px;
    top:50%;
    border-radius: 2px;
    transform: translateY(-50%);
    z-index:100;
  }
  .accordion::after{
    top:49%;
    transform: rotate(90deg);
  }
  .accord-text{
    font-size: 17px;
    display: block;
    max-width:200px;
    width:100%;
  }
  .accordion .accord-circle{
    right:28px;
    top:50%;
    transform: translateY(-50%);
    position: absolute;
    display: block;
    height:20px;
    width:20px;
    border-radius: 50%;
    background-color:#7C47C9;
  }
  .accordion.active, .accordion:hover {
    background-color: #FFFFFF1A;
    backdrop-filter:blur(30px);
  }
  .accordion.active{
    border-radius: 24px 24px 0 0;
  }
  .accordion.active::after{
    display: none;
  }
  @keyframes slideDown {
    0% {
      opacity: 0;
      transform: translateY(-10px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .panel {
    background-color: transparent;
    display: none;
    overflow: hidden;
    margin-bottom: 24px;
    animation:slideDown 0.4s ease forwards;
  }
  .panel table{
    width:100%;
    border-radius:0 0 24px 24px;
    overflow: hidden;
    border:1px solid #53535399;
    border-collapse: separate;
    border-spacing: 0;
  }
  .mobile-table-column{
    width: 50%;
    border-bottom:1px solid #53535399;
    border-right:1px solid #53535399;
  }
  .mobile-table-column:first-child{
    color:#FFFFFF;
    padding:20px 16px;
  }
  .mobile-table-row:last-child .mobile-table-column{
    border-bottom: none;
  }
  .mobile-table-column:last-child{
    text-align: center;
    border-right:none;
  }
  .mobile-table-row:nth-child(odd) .mobile-table-column:last-child{
    background: linear-gradient(90deg, #4485C3, #4485C3CC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .mobile-table-row:nth-child(even) .mobile-table-column:last-child{
    background: linear-gradient(90deg, #7C47C9, #7C47C9CC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; 
  }

  .tab-container {
    position: relative;
    display: inline-flex;
    padding: 4px;
    gap: 4px;
    background: linear-gradient(90deg, #4485C399, #7C47C999);
    border-radius: 40px;
  }

  /* hide the real radio buttons */
  .tab-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
  }

  /* ──────────────────────────────
2. The visible tab labels
────────────────────────────── */
  .tab-label {
    color:#ffffff;
    font-size: 18px;
    font-weight: 700;
    position: relative;
    z-index: 2; /* sit above the slider */
    padding: 10px 28px;
    cursor: pointer;
    border-radius: 6px;
    transition: color 0.25s ease;
    user-select: none;
  }
  

  /* colour when its radio is checked */
  .tab-input:checked + .tab-label {
    color: #fff;
  }

  /* ──────────────────────────────
3. The sliding background
────────────────────────────── */
  .slider {
    position: absolute;
    top: 4px;
    left: 4px; /* match container padding */
    height: calc(100% - 8px);
    width: calc(50% - 4px); /* 2 tabs → 50% each */
    background: linear-gradient(90deg, #4485C3, #7C47C9);/* highlight colour */
    border-radius: 30px;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    pointer-events: none;
  }

  /* Move slider when a radio is checked */
  #tab1:checked ~ .slider {
    transform: translateX(0%);
  }
  #tab2:checked ~ .slider {
    transform: translateX(100%);
  }

  #tab1:checked ~ .slider ~ .tab-label:hover,
  #tab2:checked ~ .slider ~ .tab-label:hover {
    color: rgba(255, 255, 255, 0.9);
  }
  
@media (max-width:1200px){
    .industry-standard-table .table-row:first-child .table-column {
        white-space: wrap;
    }
    .industry-standard-heading {
        font-size: 27px;
    }
    .industry-btns {
        font-size: 18px;
        padding: 9px 28px;
    }
}
@media (max-width:576px){
    main{
        padding:0px 0px;
    }
    .industry-standard-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
        margin-bottom: 30px;
    }
    .industry-standard-table.table-active{
        display: none;
    }
    .table-mobile-view{
        display: block;
    }
    .day-rate-accordion,.night-rate-accordion{
        display: none;
    }
    .day-rate-accordion.accordion-active, .night-rate-accordion.accordion-active{
        display: block;
    }
    .industry-standard-section {
        width:unset;
    }
}


.navigation--menu li a {
  color: #000;
  background-color: transparent;
  transition: all 0.3s ease;
}

.navigation--menu li a.active-link {
  color: #4485C3;
  background-color: #4485C361;
}


/* ==== 404 ==== */
.wrapper-404 {
  text-align: center;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: fadeIn 1.2s ease-in-out;
  min-height: 70vh;
  padding: 100px 0 50px;
  background: linear-gradient(90deg, #7b3fe4 0%, #5b9bd5 70.19%, #60a5fa 100%)
}

/* ==== 404 NUMBERS ==== */
.wrapper-404 ul {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 20px;
  margin-bottom: 20px;
}

.wrapper-404 ul li {
  font-size: 10rem;
  font-weight: 800;
  letter-spacing: 10px;
  position: relative;
  color: #fff;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
  animation: float 3s ease-in-out infinite;
}

/* subtle variation per digit */
.wrapper-404 ul li:nth-child(1) {
  animation-delay: 0s;
}
.wrapper-404 ul li:nth-child(2) {
  color: #230276;
  animation-delay: 0.2s;
}
.wrapper-404 ul li:nth-child(3) {
  animation-delay: 0.4s;
}

/* ==== TEXT & LINK ==== */
.wrapper-404 p {
  font-size: 1.5rem;
  color: #e0e0e0;
  margin-top: 10px;
  animation: slideUp 1.4s ease-out;
}

.wrapper-404 p a {
  color: #230276;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: color 0.3s ease;
}

.wrapper-404 p a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background: #230276;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.wrapper-404 p a:hover {
  color: #fff;
}

.wrapper-404 p a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* ==== ANIMATIONS ==== */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
    text-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }
  50% {
    transform: translateY(-20px);
    text-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==== RESPONSIVE ==== */
@media (max-width: 600px) {
  .wrapper-404 ul li {
    font-size: 6rem;
  }
  .wrapper-404 p {
    font-size: 1rem;
  }
}
