

html {
    scroll-behavior: smooth;
}

:root {
    --default-font: "Montserrat", sans-serif;
}

:root {
    --primary-color: #ffd406;
    --secondary-color: #000;
    --background-color: #f9f9f7;
    --text-color: #0e1010;
    --text-white-color: #f9f9f7;
}

h1,h2,h3,h4,h5,p,a{
  font-family: var(--default-font) !important;
  overflow-x: hidden;
  text-decoration: none;
}


  body {
    background-color: var(--background-color);
    overflow-x: hidden;
    user-select: none;
   
  }

  /* HEADER */
.header {
  position: fixed; /* change from sticky */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 12px 40px;
  background: transparent;
  border-bottom: none;
  transition: all 0.3s ease;
}

.header.scrolled {
  background: #f9f9f7;
  border-bottom: 1px solid #ebebeb;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  padding: 12px 40px;
}

.header.hide {
  transform: translateY(-100%);
}



  .header .container {
    width: 100%;
    z-index: 1000;
    padding: 12px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  /* LOGO */

  .logo img {
    width: 120px;
  }

  .logo .logo-color {
    display: none;
  }

  .logo .logo-color.scrolled{
    display: block;
  }

  .logo .logo-white.scrolled {
    display: none;
  }

  .logo .logo-white {
    display: block;
  }

  /* RIGHT SIDE */
  .header-right {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .header-right .white {
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: var(--default-font);
    font-size: clamp(0.8rem, 1.5vw, 1rem); 
    border-radius: 50px;
  }

  .header-right .white.scrolled {
    text-decoration: none;
    color: #000;
    font-weight: 600;
    transition: all 0.2s ease;
    font-family: var(--default-font);
    font-size: clamp(0.8rem, 1.5vw, 1rem); 
    
  }

  .header-right .white:hover {
    color: #000000;
    font-weight: 700;
  }

  /* BUTTONS */
  .btn {
    font-family: var(--default-font);
    padding: 8px 20px;
    font-size: 1rem;
    border-radius: 50px;
    background: transparent;
    cursor: pointer;
    font-weight: 500;
  }

  .btn-header {
    background: transparent;
    border: 2px solid #000;
    font-weight: 700;
  }

  .btn-header-primary{
    text-decoration: none;
    font-family: var(--default-font);
    font-size: clamp(0.8rem, 1.5vw, 1rem); 
    color: #000;
    font-weight: 600;
    transition: all 0.2s ease;
    padding: 8px 20px;
    border-radius: 50px;
    background-color: var(--background-color);
  }

  .btn-header-primary.scrolled {
    background: #ffd406;
    transition: all 0.2s ease;
  }

  .btn-header-primary:hover {
    background: color-mix(in srgb, var(--primary-color) 100%, rgb(255, 255, 255));
    color: #000000;
    font-weight: 700;
  }


  /* BURGER */
  .burger {
    width: 20px;
    height: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
  }

  .burger span {
    height: 3px;
    width: 100%;
    background: #000;
    border-radius: 2px;
    transition: 0.3s;
  }

  /* BURGER ACTIVE (X) */
  .burger.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .burger.active span:nth-child(2) {
    opacity: 0;
  }

  .burger.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  /* FULLSCREEN MENU */
  .menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #fff;
    overflow: hidden;
    transition: height 0.4s ease-in-out;
    z-index: 999;
    
  }

   .menu .container{
    padding: 0;
   }

  .menu.active {
    height: auto;
    background-color: #ffffff;
    transition: all 0.8s ease-in-out;
  }

  .menu-content {
    margin-top: 90px;
    text-align: center;
    padding: 20px 0;
  }

  /* SMOOTH FADE */
  .menu-content {
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.4s ease-in-out;
  }

  .menu.active .menu-content {
    opacity: 1;
    transform: translateY(0);
  }


@media (max-width: 600px) {
  .logo img {
    width: 80px;
  }
  .header-right .white.scrolled,
  .header-right .white,
  .btn-header-primary,
  .btn-header-primary.scrolled {
    display: none;
  }

}

  .hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* SLIDES */
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
    opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3); /* adjust darkness here */
  z-index: 0;
}

.slide.active {
  opacity: 1;
}

/* YELLOW SHAPE */
.overlay {
  position: absolute;
  right: 0;
  top: 0;
  width: 55%;
  height: 100%;
  
  display: flex;
  
  align-items: center;
  justify-content: center;
  padding: 40px;
  
  
}

.overlay1{
    position: absolute;
    right: -120px;
    top: 0;
    width: 60%;
    height: 104%;
    background: rgba(255, 212, 6, 0.7);
    rotate: 10deg;
    transform: translateY(-80px);
    border-radius: 100px;
    z-index: 0; /* higher than slide overlay */
}

/* CONTENT */
.hero .content {
  max-width: 700px;
  text-align: right;
}

.tag {
  display: inline-block;
  font-weight: bold;
  font-size: clamp(1.7rem, 4vw, 4rem);
  font-family: var(--default-font);
  
}

.text {
  width: fit-content;
  padding: 6px 12px;
  position: relative;
  display: inline-block;
  font-size: clamp(2.3rem, 4vw, 4rem);
  font-weight: bold;
  font-family: var(--default-font);
  user-select: none;
  white-space: nowrap;
  z-index: 9;
  
  &:before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: 3px 5px 3px 5px;
    background: 
      conic-gradient(at 0 100%, rgb(var(--mark-color) / 100%) 1% , #fff0 3%) no-repeat 0 0 / auto 120%,
      conic-gradient(from 180deg at 100% 0, #fff0, rgb(var(--mark-color) / 100%) 1%, #fff0 4%) no-repeat 100% 100% / auto 120%,
       rgb(var(--mark-color) / 85%) no-repeat center / auto;
  }
  
  &.white:before {
    rotate: 1deg;
    scale: 1;
    transform: skew(-5deg);
    --mark-color: 255 255 255;
    --mark-bg-angle: 10deg;
  }
}

.title {
  font-size: clamp(2.3rem, 4vw, 4rem);
  font-family: var(--default-font);
  font-weight: bold;
  color: var(--text-white-color);
  margin-bottom: 20px;
  text-shadow: 2px 2px 13px rgba(0, 0, 0, 0.3);
  z-index: 999;
}

.desc {
  font-size: 24px;
  margin-bottom: 30px;
}

/* BUTTONS */
.buttons {
  display: flex;
  gap: 15px;
  justify-content: right;
  z-index: 9;
}

.btn {
  padding: 12px 20px;
  border-radius: 10px;
  border: 2px solid black;
  cursor: pointer;
  font-weight: bold;
  font-size: clamp(0.7rem, 1.5vw, 1.2rem);
}

.btn.primary {
  background: black;
  color: #ffd406;
  border: none;
}

.hero .buttons .btn:hover {
  background: color-mix(in srgb, var(--primary-color) 100%, rgb(255, 255, 255));
  color: #000000;
  font-weight: 700;
}

/* RESPONSIVE */
@media(max-width: 768px){
  .overlay {
    width: 100%;
    clip-path: none;
  }

  .hero .overlay{
    padding: 15px;
  }

  .hero .content {
    text-align: center;
    max-width: 100%;
  }

  .hero .overlay .buttons {
    justify-content: center;
    gap: 10px;
  }

  .btn {
    padding: 8px 20px;
    border-radius: 20px;
    border: 1px solid rgb(255, 255, 255);
    cursor: pointer;
    font-weight: 600;
    font-family: var(--default-font);
    color: #fff;
  }

  .overlay1{
    right: 0;
    top: 0;
    border-radius: 0;
    width: 120%;
    height: 120%;
    rotate: 0deg;
    transform: translateY(0);
    background: rgba(42, 38, 19, 0.381);
  }

}

.module {
  padding: 100px 0;
  background: #f9f9f9;
}

.module .container {
  max-width: 1200px;
  margin: 0 auto;
  background: transparent;
}

.module .section-header {
  font-size: 32px;
  margin-bottom: 30px;
  text-align: center;
}

.module .section-header .header-title {
    color: #000;
    font-weight: bold;
    font-size: clamp(2.3rem, 4vw, 2.7rem);
    font-family: var(--default-font);
}

.module .section-header .header-desc {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: #555;
    margin-top: 10px;
    width: 60%;
    justify-self: center;
}

.slider-wrapper {
  position: relative;
  display: flex;
  width: 80%;
  align-items: center;
  overflow-x: visible;
  background: transparent;
}

.card-slider {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px;
  overflow-x: visible;
  overflow-y: hidden;
  cursor: grab;
  user-select: none;
  scroll-snap-type: x mandatory;
}

.card-slider:active {
  cursor: grabbing;
}

.card-slider::-webkit-scrollbar {
  display: none;
}

@media (max-width: 500px) {
  .module .section-header .header-desc{
    width: 100%;
  }
}




/* NAV BUTTONS */
.nav {
  background: black;
  color: #ffd406;
  border: none;
  font-size: 24px;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 50%;
  position: absolute;
  z-index: 10;
}

.prev {
  left: -10px;
}

.next {
  right: -10px;
}

/* RESPONSIVE */
@media(max-width: 768px){
  .card {
    min-width: 200px;
  }
}

.carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
}

.carousel .carousel-track {
  display: flex;
  gap: 10px;
  transition: transform 0.5s ease;
  cursor: grab;
  user-select: none;
}

.carousel .carousel-track .card {
  flex: 0 0 auto;
  transition: transform 0.4s ease, opacity 0.4s ease;
width: 350px;
    height: 550px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    display: flex;
    transition: all 0.3s ease;
}

.carousel .carousel-track .card .card-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* 🔥 makes it behave like background */
    z-index: 0;
    pointer-events: none;
    transition: transform 0.4s ease;
}

.carousel .carousel-track .card .card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,1),
        rgba(0,0,0,0.9),
        rgba(0,0,0,0.5),
        rgba(0,0,0,0)
    );
    z-index: 1;
     pointer-events: none;
}

.carousel .carousel-track .yellow .card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgb(255, 212, 6),
        rgba(255, 212, 6,0.9),
        rgba(255, 212, 6,0.5),
        rgba(255, 212, 6,0)
    );
    z-index: 1;
     pointer-events: none;
}
.carousel .carousel-track .red .card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgb(137, 0, 0),
        rgba(137, 0, 0,0.9),
        rgba(137, 0, 0,0.5),
        rgba(137, 0, 0,0)
    );
    z-index: 1;
     pointer-events: none;
}

.carousel .carousel-track .card .card-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    color: #fff;
    
}

.carousel .carousel-track .card h3 {
    font-size: clamp(1.2rem, 1.5vw, 1.5rem);
    font-family: var(--default-font);
    font-weight: bold;
}


.carousel .carousel-track .yellow h3 {
    font-size: clamp(1.2rem, 1.5vw, 1.5rem);
    font-weight: bold;
    color: #000;
    font-family: var(--default-font);
}

.carousel .carousel-track .card p {
    font-size: clamp(0.92rem, 1.5vw, 1.12rem);
    margin: 10px 0 20px;
    font-family: var(--default-font);
    color: #828282;
    font-weight: 600;
}

.carousel .carousel-track .card .btn-primary {
    background: #ffd406;
    color: #000;
    border: none;
    padding: 10px 18px;
    border-radius: 20px;
    font-weight: bold;
}

.carousel .carousel-track .yellow .btn-primary,
.carousel .carousel-track .red .btn-primary {
    background: #000000;
    color: #ffd406;
    border: none;
    padding: 10px 18px;
    border-radius: 20px;
    font-weight: bold;
}


.carousel .carousel-track .card:hover .card-bg {
    transform: scale(1.05);
}

.carousel .carousel-track .card:hover {
  transform: translateY(-5px);
}

@media (max-width: 1100px) {
  .carousel {
    padding: 0;
  }
  .carousel .carousel-track {
    padding: 0 0 0 10px;
  }
}

@media (max-width: 1000px) {
  .carousel .carousel-track .card {
    width: 300px;
    height: 450px;
  }
}

.safety-section {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 100px 40px;
    overflow: hidden;
    
}

.safety-section .container {
    max-width: 1200px;
    margin: 0 auto;
    background: transparent;
    display: flex;
    align-items: center;
    gap: 40px;
}

.safety-section .container .safety-box {
    background-color: #0e1010;
    height: fit-content;
    width: 100%;
   position: relative;
    overflow: hidden; /* prevents scroll issues */
    border-radius: 20px;
}

.safety-section .container .safety-box::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: #ffd406;
    border-radius: 50%;
    filter: blur(200px);
    top: 50%;
    left: -80px;
    z-index: 0;
}

.safety-section .container .safety-box::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: #ffd406;
    border-radius: 50%;
    filter: blur(190px);
    bottom: 50%;
    right: 5%;
    z-index: 0;
}

.safety-section .container .safety-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    z-index: 2;
    
}



.safety-section .container .safety-grid .safety-text {
     padding: 30px;
     z-index: 2;
     -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}

.safety-section .container .safety-grid .safety-text .highlight{
    background-color: var(--primary-color);
    border-radius: 20px;
    padding: 8px 20px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 20px;
    color: #000;
    font-size: 14px;
    
}

.safety-section .container .safety-grid .safety-text h2 {
    font-size: clamp(1.5rem, 2.5vw, 1.8rem);
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--text-white-color);
}

.safety-section .container .safety-grid .safety-text p {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    line-height: 1.6;
    color: #ddd;
}



.safety-section .container .safety-grid .safety-point {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.safety-section .container .safety-grid .point-card {
    background-color: #545454;
    padding: 10px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.safety-section .container .safety-grid .point-card .icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 212, 6, 0.2); /* 0.5 = 50% opacity */
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.safety-section .container .safety-grid .point-card .icon i{
    color: var(--primary-color);
    font-size: 20px;
}

.safety-section .container .safety-grid .point-card .point-content h3 {
    font-size: clamp(0.85rem, 1.5vw, 1rem);
    font-weight: bold;
    color: var(--text-white-color);
}


.safety-section .container .safety-grid .point-card .point-content p {
    font-size: clamp(0.6rem, 1.5vw, 0.8rem);
    color: var(--text-white-color);
}

.safety-section .container .safety-grid .safety-card {
    position: relative;
      width: 100%;
      overflow: visible;
    user-select: none;
}

.safety-section .container .safety-grid .safety-card .card-img{
    position: absolute;
    width: 350px;
    height: auto;
    border-radius: 16px;
    box-shadow :  0px 0px 50px rgba(0,0,0,1.5);
    transition: 0.3s ease;
    overflow: hidden;
}

.safety-section .container .safety-grid .safety-card .card-img img {
    width: 100%;
    height: auto;
    user-select: none;
         user-select: none;
         -moz-user-select: none;
         -webkit-user-drag: none;
         -webkit-user-select: none;
         -ms-user-select: none;
}

.safety-section .container .safety-grid .safety-card .card-img.card-1{
    top: 25%;
  right: -10px;
    z-index: 3;
}

.safety-section .container .safety-grid .safety-card .card-img.card-2{
    top: 5%;
  right: -15%;
  z-index: 2;
  animation: float 6s ease-in-out infinite;
}

.safety-section .container .safety-grid .safety-card .card-img.card-3{
    top: 45%;
  right: -25%;
  z-index: 1;
}

@media (max-width: 1000px) {

  .safety-section {
    display: flex;
    align-items: center;
    padding: 50px 10px;
    overflow: hidden;
  }

  .safety-section .container {
    max-width: 1200px;
    margin: 0 auto;
    background: transparent;
    display: flex;
    align-items: center;
  }

  .safety-section .container .safety-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    z-index: 2;
  }

  .safety-section .container .safety-grid .safety-point {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }

  .safety-section .container .safety-grid .safety-card {
   margin-top: 70px;
  }

}

@media (max-width: 500px) {

  .safety-section {
    display: flex;
    align-items: center;
    padding: 50px 10px;
    overflow: hidden;
  }

  .safety-section .container {
    max-width: 1200px;
    margin: 0 auto;
    background: transparent;
    display: flex;
    align-items: center;
  }

  .safety-section .container .safety-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
    z-index: 2;
  }

  .safety-section .container .safety-grid .safety-card {
   margin-top: 0;
  }

  .safety-section .container .safety-grid .safety-text {
    padding: 20px;
  }

  .safety-section .container .safety-grid .point-card {
    gap: 10px;
  }

  .safety-section .container .safety-grid .safety-card .card-img{
    width: 275px;
  }

  .safety-section .container .safety-grid {
    display: grid;
    grid-template-rows: 1.5fr 1fr;
  }

}

.language-section {
    background: #ffd406;
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 100px 40px;
    height: 100vh;
}

.language-section .container {
    max-width: 1200px;
    margin: 0 auto;
    background: transparent;
    align-items: center;
    gap: 40px;
}

.language-section .container .section-header{
    font-size: 32px;
  margin-bottom: 30px;
  text-align: center;
}

/* HEADER */
.language-section .container .section-header .highlight {
   background-color: var(--secondary-color);
    border-radius: 20px;
    padding: 8px 20px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 10px;
    color: var(--text-white-color);
    font-size: 14px;
}

.language-section .container .section-header .header-title {
    color: #000;
    font-weight: bold;
    font-size: clamp(2.3rem, 4vw, 2.7rem);
    font-family: var(--default-font);
}

.language-section .container .section-header .header-desc{
  font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: #555;
    margin-top: 10px;
    font-family: var(--default-font);
}

.language-section .container .language-card {
  background: linear-gradient(135deg, #000 60%, #1a1a1a 100%);
  border-radius: 20px;
  padding: 40px;
  height: fit-content;
  overflow: hidden;
}



.language-section .container .language-card .card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  align-items: center;
 
}


.language-section .container .language-card .card-grid .language-text{
 color: var(--text-white-color);
}

.language-section .container .language-card .card-grid .language-text .mini-badge {
    color: #ffd406;
    font-size: 15px;
    display: inline-block;
    margin-bottom: 10px;
}

.language-section .container .language-card .card-grid .language-text h3 {
    font-size: clamp(1.5rem, 2.5vw, 1.8rem);
     color: var(--text-white-color);
    font-family: var(--default-font);
    font-weight: bold;
    margin-bottom: 10px;
}

.language-section .container .language-card .card-grid .language-text p {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    opacity: 0.8;
    font-family: var(--default-font);
}

.language-section .container .language-card .card-grid .language-chat {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.language-section .container .language-card .card-grid .language-chat .chat-box {
  padding: 20px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  width: 100%;
  max-width: 450px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.language-section .container .language-card .card-grid .language-chat .chat-box.user {
  align-self: flex-end;
  background: rgba(255, 255, 255, 0.12);
}


.language-section .container .language-card .card-grid .language-chat .chat-box.driver {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.08);
  animation-delay: 0.2s;
}

.language-section .container .language-card .card-grid .language-chat .chat-box small {
  color: #ffd500;
  font-size: 12px;
}

.language-section .container .language-card .card-grid .language-chat .chat-box p {
  margin: 8px 0;
  font-size: 15px;
}

.language-section .container .language-card .card-grid .language-chat .chat-box span {
  font-size: 13px;
  opacity: 0.5;
  font-style: italic;
}

.typing::after {
    content: "|";
    animation: blink 2s infinite;
    margin-left: 3px;
}

@keyframes blink {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0; }
}

@media (max-width: 500px) {
  .language-section {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 50px 10px;
    height: auto;
  }

  .language-section .container {
    max-width: 1200px;
    margin: 0 auto;
    background: transparent;
    align-items: center;
    gap: 20px;
  }

  .language-section .container .section-header{
      font-size: 24px;
      margin-bottom: 20px;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;

  }

  .language-section .container .language-card {
    padding: 20px;
  }

}


.cta-section{
  background: #0e1010;
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 100px 40px;
    height: 100vh;
}

.container{
  max-width: 1200px;
  margin: 0 auto;
  background: transparent;
  align-items: center;
  gap: 40px;
  
}

.cta-section .container .section-header{
    font-size: 32px;
  margin-bottom: 30px;
  text-align: center;
  align-content: center;
  justify-content: center;
  justify-items: center;
}


.cta-section .container .section-header .header-title {
    font-weight: bold;
    color: var(--text-white-color);
    font-size: clamp(2.3rem, 4vw, 2.7rem);
    font-family: var(--default-font);
}

.cta-section .container .section-header .header-title span {

    color: var(--primary-color);

}

.cta-section .container .section-header .header-title span::before {
  content:"\a";
  white-space: pre;
}

.cta-section .container .section-header .header-desc{
  font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: var(--text-white-color);
    margin-top: 10px;
    font-family: var(--default-font);
    opacity: 0.7;
    width: 60%;
}

.cta-section .container .cta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  align-items: center;
  width: 70%;
  justify-self: center;
}

.cta-section .container .cta-grid .cta-text{
  color: var(--text-white-color);
}

.cta-section .container .cta-grid .cta-text .tabs{
  display: flex;
  width: 190px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.cta-section .container .cta-grid .cta-text .tabs .tab-btn {
  font-size: 0.9rem;
  font-family: var(--default-font);
  padding-bottom: 8px;
  cursor: pointer;
  position: relative;
  padding-right: 40px;
}

.cta-section .container .cta-grid .cta-text .tabs .tab-btn.active {
  font-weight: bold;
  color: var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
}

.cta-section .container .cta-grid .cta-text .tab-content {
  display: none;
  font-size: 1rem;
  opacity: 0.8;
  font-family: var(--default-font);
  transition: all 0.3s ease;
}

.cta-section .container .cta-grid .cta-text .tab-content.active {
  display: block;
}

.cta-section .container .cta-grid .cta-text .tab-content .content-wrapper h3 {
  font-size: clamp(1.5rem, 1.5vw, 1.75rem);
  font-weight: bold;
  font-family: var(--default-font);
  margin-bottom: 10px;
}

.cta-section .container .cta-grid .cta-text .tab-content .content-wrapper p {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  opacity: 0.7;
  font-family: var(--default-font);
}

.cta-section .container .cta-grid .cta-text .tab-content .content-wrapper .buttons{
  display: flex;
  gap: 15px;
  margin-top: 20px;
  text-align: left;
  justify-content: left
}

.cta-section .container .cta-grid .cta-text .tab-content .content-wrapper .buttons .btn{
  background-color: var(--primary-color);
  color: #000;
  border: none;
  padding: 5px 14px;
  border-radius: 8px;
  font-weight: bold;
  display: flex;
  gap: 10px;
  align-items: center;
}

.cta-section .container .cta-grid .cta-text .tab-content .content-wrapper .buttons .btn:hover{
  background: var(--primary-color);
}

.cta-section .container .cta-grid .cta-text .tab-content .content-wrapper .buttons .btn .icon{
  display: flex;
  justify-content: center;
  justify-self: center;
  justify-items: center;
  align-items: center;
  align-self: center;
  align-content: center;
}

.cta-section .container .cta-grid .cta-text .tab-content .content-wrapper .buttons .btn i{
  font-size: clamp(1.5rem, 1.5vw, 1.875rem);
}

.cta-section .container .cta-grid .cta-text .tab-content .content-wrapper .buttons .btn .btn-text{
  display: flex;
  flex-direction: column;
  text-align: left;
  font-family: var(--default-font);
}

.cta-section .container .cta-grid .cta-text .tab-content .content-wrapper .buttons .btn .btn-text small{
  font-size: clamp(0.55rem, 1.5vw, 0.75rem);
}

.cta-section .container .cta-grid .cta-text .tab-content .content-wrapper .buttons .btn .btn-text strong{
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 800;
}

.cta-section .container .cta-grid .cta-img{
    display: flex;
    justify-self: center;
  align-self: center;
  justify-content: center;
  justify-items: center;
  align-items: center;
  align-content: center;
}

.cta-section .container .cta-grid .cta-img img{
  user-select: none;
  -moz-user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  width: 100%;
  
}

@media (max-width: 1024px) {
  .cta-section {
    background: #0e1010;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 50px 10px;
    height: auto;
  }

  .cta-section .container {
    max-width: 1200px;
    margin: 0 auto;
    background: transparent;
    align-items: center;
    gap: 20px;
  }

  .cta-section .container .section-header{
      font-size: 24px;
      margin-bottom: 20px;
      text-align: center;
  }

  .cta-section .container .cta-grid {
    width: 100%;
    padding: 10px;
    gap: 20px;
  }

  .cta-section .container .cta-grid .cta-img img{
    width: 70%;
    justify-self: center;
  }

  .cta-section .container .cta-grid .cta-text{
    text-align: center;
    justify-items: center;
  }

  .cta-section .container .cta-grid .cta-text .tabs .tab-btn {
    padding: 0 20px;
  }


}

@media (max-width: 500px) {
  .cta-section {
    background: #0e1010;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 50px 10px;
    height: auto;
  }

  .cta-section .container {
    max-width: 1200px;
    margin: 0 auto;
    background: transparent;
    align-items: center;
    gap: 20px;
  }

  .cta-section .container .section-header{
      font-size: 24px;
      margin-bottom: 20px;
      text-align: center;
  }



  .cta-section .container .section-header .header-title span::before {
    content:"";
    white-space: pre;
  }

  .cta-section .container .section-header .header-desc{
    font: 1rem ;
    width: 100%;
  }

  .cta-section .container .cta-grid {
    width: 100%;
    padding: 10px;
    gap: 20px;
  }

  .cta-section .container .cta-grid > *:nth-child(1) {
    order: 2;
  }

  .cta-section .container .cta-grid > *:nth-child(2) {
    order: 1;
  }

  .cta-section .container .cta-grid .cta-img img{
    width: 70%;
    justify-self: center;
  }

  .cta-section .container .cta-grid .cta-text{
    text-align: center;
    justify-items: center;
  }

  .cta-section .container .cta-grid .cta-text .tabs .tab-btn {
    padding: 0 20px;
  }


}

@media (max-width: 400px) {
  .cta-section .container .cta-grid .cta-text .tab-content .content-wrapper .buttons .btn .btn-text{
    display: none;
  }

  .cta-section .container .cta-grid .cta-text .tab-content .content-wrapper .buttons{
    text-align: center;
    justify-content: center;
    align-content: center;
  }

  .cta-section .container .cta-grid .cta-text .tab-content .content-wrapper .buttons .btn{
    border-radius: 100%;
    width: 50px;
    height: 50px;
    justify-content: center;
    background-color: var(--primary-color);
  }
}

.news-section{
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 100px 40px;
}

.news-section .container {
    max-width: 1200px;
    margin: 0 auto;
    background: transparent;
    align-items: center;
    gap: 40px;
}

.news-section .container .section-header .header-title {
    font-weight: bold;
    color: #000;
    font-size: clamp(2.3rem, 4vw, 2.7rem);
    font-family: var(--default-font);
}

.news-section .container .section-header .header-desc{
  font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: #555;
    margin-top: 10px;
    font-family: var(--default-font);
    opacity: 0.7;
    width: 60%;
}

.news-section .container .news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    grid-template-rows: auto;
    gap: 25px;
    margin-top: 30px;
}

.news-section .container .news-grid .news-card {
  cursor: pointer;
}

.news-section .container .news-grid .news-card h3 {
  font-size: clamp(1.2rem, 1.5vw, 1.5rem);
  margin: 12px 0;
  line-height: 1.4;
}

.news-section .container .news-grid .news-card small {
  font-size: 13px;
  color: #777;
}

.news-section .container .news-grid .news-card .news-img {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.news-section .container .news-grid .news-card .news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  transition: all 0.3s ease;
}

.news-section .container .news-grid .news-card .news-img img:hover {
  transform: scale(1.05);
  
}

.news-section .container .news-grid .news-card .badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: #645615;
  color: var(--primary-color);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--default-font);
}


.news-section .container .news-btn {
  text-align: right;
  margin-top: 30px;
  gap: 20px;
}

.news-section .container .news-btn button {
  padding: 10px 20px;
  border-radius: 5px;
  border: none;
  background: #e5e5e5;
  cursor: pointer;
  font-weight: 500;
}

@media (max-width: 1000px) {
  .news-section {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 50px 10px;
  }

  .news-section .container {
    max-width: 1200px;
    margin: 0 auto;
    background: transparent;
    align-items: center;
    gap: 20px;
  }

  .news-section .container .section-header{
      text-align: center;
      justify-content: center;
      justify-items: center;
  }

  .news-section .container .news-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    grid-template-rows: auto;
    gap: 20px;
    margin-top: 30px;
  }
}

.footer {
  background: #0f0f0b;
  color: #d8d7cf;
  padding: 60px 40px 30px;
  font-family: var(--default-font);
}

.footer-container {
  max-width: 1200px;
  margin: auto;
}

/* GRID */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 40px;
}

.footer-col h4 {
  color: #ffffff;
  margin-bottom: 15px;
  font-size: 14px;
  font-family: var(--default-font);
}

.footer-col a {
  display: block;
  color: #a7a69b;
  font-family: var(--default-font);
  text-decoration: none;
  font-size: 13px;
  margin-bottom: 8px;
  transition: 0.3s;
}

.footer-col a:hover {
  color: #ffffff;
}

/* Divider */
.footer-divider {
  margin: 40px 0;
  height: 1px;
  background: #1f1e1a;
}

/* Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand {
  width: 100px;
  font-weight: bold;
  color: #ffffff;
}

.brand img{
  width: 100px;
}

.socials a {
  color: #a7a69b;
  margin-right: 10px;
  text-decoration: none;
}

.socials a i {
  color: #a7a69b;
  margin-right: 5px;
  text-decoration: none;
  font-size: 13px;
}

.footer-center {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-center a {
  font-size: 12px;
  color: #a7a69b;
  text-decoration: none;
  font-family: var(--default-font);
}

.footer-center a:hover {
  color: #ffffff;
}

.footer-right {
  display: flex;
  gap: 10px;
}

.footer .footer-container .footer-right .buttons{
  display: flex;
  gap: 15px;
  text-align: left;
}

.footer .footer-container .footer-right .buttons .btn{
  background: var(--primary-color);
  color: #000;
  border: none;
  padding: 5px 14px;
  border-radius: 8px;
  font-weight: bold;
  display: flex;
  gap: 10px;
  align-items: center;
  align-content: center;
  justify-content: center;
  justify-items: center;
}

.footer .footer-container .footer-right .buttons a{
  transition: all 0.3s ease;
}

.footer .footer-container .footer-right .buttons a:hover{
  scale: 1.02;
}

.footer .footer-container .footer-right .buttons .btn .icon{
  font-size: 20px;
  
}

.footer .footer-container .footer-right .buttons .btn i{
  font-size: 20px;
  
}

.footer .footer-container .footer-right .buttons .btn .btn-text{
  display: flex;
  flex-direction: column;
  text-align: left;
  font-family: var(--default-font);
}

.footer .footer-container .footer-right .buttons .btn .btn-text small{
  font-size: 7px;
}

.footer .footer-container .footer-right .buttons .btn .btn-text strong{
  font-size: 10px;
  font-weight: 800;
}

/* Copy */
.footer-copy {
  margin-top: 20px;
  text-align: right;
  font-size: 12px;
  color: #6c7570;
}

/* Responsive */
@media (max-width: 1000px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .footer-copy {
    text-align: left;
  }
}

.mega-menu {
  display: grid;
  grid-template-columns: 1fr 3fr;
  width: 100%;
  gap: 15px;
  height: auto;
}

@media (max-width: 1024px) {
  .mega-menu{
    padding: 15px
  };
}

/* Tabs */
.mega-menu .tabs {
  width: 100%;
  background: #f1f1f1;
  opacity: 0.85;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  padding: 30px;
  gap: 10px;
}

.mega-menu .tab {
  padding: 18px;
  border: none;
  background: none;
  text-align: left;
  cursor: pointer;
  font-weight: 600;
  border-radius: 20px;
  font-size: clamp(0.775rem, 1.5vw, 0.875rem);
  font-family: var(--default-font);
  transition: all 0.1s ease;
}

.mega-menu .tab:hover {
  background: #e4e4e4;
  scale: 1.02;
}

.mega-menu .tab.active {
  font-weight: 700;
  background: var(--primary-color);
}

/* Content */
.mega-menu .tab-content {
  flex: 1;
  padding: 30px;
background: #f1f1f1;
opacity: 0.85;
border-radius: 20px;
}

.mega-menu .content {
  display: none;
}

.mega-menu .content.active {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  text-align: left;
  width: 100%;
}

.mega-menu .content a {
  padding: 15px;
  text-decoration: none;
  transition: all 0.1s ease;
  border-radius: 20px;
}
.mega-menu .content h3 {
  font-size: clamp(0.775rem, 1.5vw, 0.875rem);
  font-weight: 600;
  color: #333;
  text-decoration: none;
  font-family: var(--default-font);
  margin-bottom: 5px;
}
.mega-menu .content p {
  font-size: clamp(0.7rem, 1.5vw, 0.8rem);
  color: #333;
  text-decoration: none;
  font-family: var(--default-font);
}

.mega-menu .content a::after {
  content: "→";
  position: absolute;
  top: 8px;
  right: 15px;
  font-size: 18px;
  font-weight: bold;
  opacity: 0;
  transform: translatex(-5px);
  transition: all 0.3s ease;
}

.mega-menu .content a:hover {
  background: #e4e4e4;
  transform: scale(1.01);
}

.mega-menu .content a:hover::after {
  opacity: 1;
  transform: translatex(0);
}

.mega-menu.mobile {
    display: none;
  }


/* Hide desktop tabs on mobile */
@media (max-width: 768px) {
  .mega-menu {
    display: none;
  }

  .mega-menu.mobile {
    display: block;
    padding: 20px;
    height: 100vh;
      background: #f1f1f1;
  }

  .menu{
    background-image: none !important;
  }

  .menu-content {
    margin-top: 50px;
  }
}

/* Dropdown */
.dropdown {
  margin-bottom: 10px;
  border-radius: 15px;
  overflow: hidden;
}

/* Button */
.dropdown-btn {
  width: 100%;
  padding: 18px;
  background: none;
  border: none;
  text-align: left;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  position: relative;
  font-family: var(--default-font);
}

/* Arrow */
.dropdown-btn::after {
  content: "⌵";
  font-weight: bold;
  position: absolute;
  right: 20px;
  transition: transform 0.3s ease;
}

/* Rotate arrow when active */
.dropdown.active .dropdown-btn::after {
  transform: rotate(180deg);
}

/* Content */
.dropdown-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: #f1f1f1;
}

/* Active open */
.dropdown.active .dropdown-content {
  max-height: 500px;
}

/* Links */
.dropdown-content a {
  display: block;
  padding: 15px 30px;
  text-decoration: none;
  text-align: left;
  font-size: 0.95rem;
  font-family: var(--default-font);
  font-weight: 600;
  opacity: 0.6;
}

.dropdown-content .h3{
  font-size: 0.9rem;
}

.mega-menu.mobile .buttons-mobile{
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: left;
  
}

.mega-menu.mobile .buttons-mobile .btn-mobile-primary{
  background: var(--primary-color);
  color: #000;
  border: none;
  padding: 10px;
  border-radius: 20px;
  display: flex;
  gap: 10px;
  align-items: center;
  align-content: center;
  justify-content: center;
  justify-items: center;
  font-size: 0.9rem;
  font-weight: 600;
}

.mega-menu.mobile .buttons-mobile .btn-mobile-primary a{
  transition: all 0.3s ease;
}

.mega-menu.mobile .buttons-mobile .btn-mobile-primary a:hover{
  scale: 1.02;
}

.mega-menu.mobile .buttons-mobile .btn-mobile-secondary{
  background: #ffffff;
  color: #000;
  border: none;
  padding: 10px;
  border-radius: 20px;
  font-weight: 600;
  display: flex;
  gap: 10px;
  align-items: center;
  align-content: center;
  justify-content: center;
  justify-items: center;
  font-size: 0.9rem;
  border: 1px solid #ddd;
}

.breadcrumb-header {
  position: relative;
  height: 500px;
  background: url('../../assets/img/1.png')
              center / cover no-repeat;
  display: flex;
  align-items: center;
}

.breadcrumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgb(0, 0, 0),
    rgba(0, 0, 0, 0.227)
  );
}

.breadcrumb-content {
  padding-top: 50px;
  position: relative;
  z-index: 2;
  color: #fff;
  font-family: var(--default-font);
}

.breadcrumb-content .breadcrumb{
    display: flex;
    gap: 10px;
    align-items: center;
    font-family: var(--default-font);
}

.breadcrumb-content .breadcrumb a{
  color: #fff;
}

@media (max-width: 800px) {
  .breadcrumb-content {
    text-align: center;
  }
  .breadcrumb{
    display:block;
    text-align: center;
  }
}

.policy{
  font-size: 13px;
  color: #555;
  margin: 40px;
}


.policy .section-header{
  text-align: center;
}

.policy h4{
  font-size: 18px;
  color: #645615;
  margin-bottom: 10px;
}

.policy h5{
  font-size: 16px;
  color: #645615;
  margin-bottom: 10px;
  font-style: italic;
}

.policy .container{
    max-width: 40%;
    margin: 0 auto;
    background: transparent;
}

@media (max-width: 1024px) {
  .policy .container{
    max-width: 100%;
    margin: 0 auto;
    background: transparent;
    padding: 0 20px;
  }
}

.policy strong{
  color: #645615;
}

.policy span{
  font-weight: 700;
}

.policy .btn-download{
  background-color: #645615;
  color: white;
  padding: 8px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}