
/*  Hero banner */

.hero-banner {
  position: relative;
  width: 100%;
  height: 55dvh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-banner::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; 
  background-image: linear-gradient(to top, #161616 10%, transparent);
}


.image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(4px) brightness(50%);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.main-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 0 1rem;
}


.big-title {
  font-size: 4.5REM;
  font-weight: 900;
      text-shadow: 2px 2px 8px rgba(250, 243, 243, 0.3);
    transform: scale(1.05) skewX(-3deg); 
  margin-bottom: 1rem;
}

.big-title:hover {

  text-shadow: 4px 4px 12px rgba(231, 227, 227, 0.3) !important; 
  cursor: default;
}


.second-paragraph {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.795);
  text-shadow: 4px 4px 12px rgba(0,0,0,0.3);
  font-weight: 700;
  margin-top: 0;
}





.hero-buttons {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;

  z-index: 2;
}


.btn-shop {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background-color: #2c6ba5;
  color: white;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 4px 15px #1a5f9799;
  transition: background-color 0.3s ease;
}

.btn-shop:hover {
  background-color: #2a67a0da;
  box-shadow: 0 6px 20px #1a5f9799;
  cursor: pointer;
}


.btn-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: transparent;
  border: 2px solid white;
  color: white;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
  border-radius: 12px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-status:hover {
  background-color: white;
  color: #1a1a1a;
  cursor: pointer;
}


.btn-shop i,
.btn-status i {
  font-size: 1.4rem;
}





@media screen and (max-width: 800px) {


  .hero-banner {
  position: relative;
  width: 100%;
  height: 55dvh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-banner::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-image: linear-gradient(to top, #161616 10%, transparent);
}

.image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(4px) brightness(50%);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.main-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 0 1rem;
}



.big-title {
  font-size: 5rem; 
  font-weight: 900;
  letter-spacing: -1px;
  text-transform: uppercase;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
  transform: scale(1.05) skewX(-3deg);
  margin-bottom: 1rem;
  font-family: 'Poppins', sans-serif;
}

.big-title:hover {
  text-shadow: 4px 4px 12px rgba(0,0,0,0.4);
  cursor: default;
}

.second-paragraph {
  font-size: 1rem;
  text-shadow: 4px 4px 12px rgba(0,0,0,0.3);
  font-weight: 700;
  margin-top: 0;
}


}







  @media screen and (max-width: 550px) {


.hero-banner {
  position: relative;
  width: 100%;
  height: 85vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-banner::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-image: linear-gradient(to top, #161616 10%, transparent);
}

.image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(4px) brightness(50%);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.main-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 90%;
  margin-top:-200PX;
  padding: 0 1rem;
}


.big-title {
  font-size: 2rem; 
  font-weight: 900;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  text-shadow: 1.5px 1.5px 6px rgba(0,0,0,0.3);
  transform: scale(1.03) skewX(-2deg);
  margin-bottom: 1rem;
  font-family: 'Poppins', sans-serif;
}

.big-title:hover {
  text-shadow: 3px 3px 8px rgba(0,0,0,0.4);
  cursor: default;
}

.second-paragraph {
  font-size: 0.9rem;
  text-shadow: 3px 3px 10px rgba(0,0,0,0.3);
  font-weight: 600;
  margin-top: 0;
}

}



@media screen and (max-width: 450px) {

  .big-title {
    font-size: 3rem; 
    transform: scale(1) skewX(-2deg); 
  }

  .btn-shop,
  .btn-status {
    padding: 14px 16px; 
    font-size: 0.9rem; 
    border-radius: 10px;
  }

  .second-paragraph {
  font-size: 0.8rem;
  text-shadow: 3px 3px 10px rgba(0,0,0,0.3);
  font-weight: 600;
  margin-top: 0;
}
  .btn-shop i,
  .btn-status i {
    font-size: 1.1rem;
  }
}


@media screen and (max-width: 400px) {

  .big-title {
    font-size: 2.4rem; 
    transform: scale(1) skewX(-2deg); 
  }

  .btn-shop,
  .btn-status {
    padding: 10px 16px; 
    font-size: 0.9rem; 
    border-radius: 10px;
  }

  .btn-shop i,
  .btn-status i {
    font-size: 1.1rem;
  }
}


/* end Hero banner */














/*  Features Section */


.features {
    padding: 6rem 2rem;
}



.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-card {
    background: #1e1e1e; 
    border-radius: 1rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #2c6ba5; 
    box-shadow: 0 2px 6px rgba(44, 107, 165, 0.3);
    color: #ddd; 
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(44, 107, 165, 0.6);
    border-color: #2c6ba5;
}

.banner-container {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.feature-card:hover .banner-image {
    transform: scale(1.05);
}

.banner-text {
    padding: 2rem;
}

.banner-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.highlight {
    color: #2c6ba5; 
    font-weight: 700;
}

.button-group {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1.8rem;
    border-radius: 12px;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary {
    background-color: #2c6ba5;
    color: white;
    border: none;
    box-shadow: 0 4px 15px #1a5f9799;
}

.btn-primary:hover {
    background-color: #1a5f97;
    box-shadow: 0 6px 20px #1a5f9799;
}

.btn-outline {
    background-color: transparent;
    color: #2c6ba5;
    border: 2px solid #2c6ba5;
    box-shadow: none;
}

.btn-outline:hover {
    background-color: #2c6ba5;
    color: white;
    box-shadow: 0 4px 15px #1a5f9799;
}

.btn i, 
.btn svg {
    font-size: 1.3rem;
    display: inline-block;
}

.btn:hover i {
    transform: translateX(3px);
    transition: transform 0.3s ease;
}

/* end Features Section */

































.promotion {
  background: linear-gradient(135deg, #006bb3, #009dff);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
margin-top: 4%;
  max-width: 100%;       
  margin: 3rem 0;        
  box-shadow: 0 8px 20px rgba(0, 107, 179, 0.5);
  box-sizing: border-box; 
}


.promotion-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.promotion-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.btn-promo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #004a75;
  color: white;
  padding: 0.8rem 1.8rem;
  font-weight: 700;
  border-radius: 0.7rem;
  text-decoration: none;
  transition: background 0.3s ease;
  font-size: 1.2rem;
}

.btn-promo:hover {
  color: black;
  background: #ffffff;
}

.btn-promo i {
  font-size: 1.3rem;
}


.btn-promo:hover i {
  color: black;
}
















/* Video Showcase Section */
.video-showcase {
    margin-top: 4%;
    padding: 6rem 2rem;
    background: #141414;
    color: #e0e0e0;
}

.content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
}

.carousel-video {
    flex: 1 1 600px;
    max-width: 100%;
    position: relative;
}

.carousel-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    background: #000;
}

.carousel-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.carousel-slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
}

.carousel-slide iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    gap: 0.5rem;
}

.carousel-dot {
    width: 1.5rem;
    height: 0.3rem;
    background-color: #444c55;
    border-radius: 1rem;
    cursor: pointer;
    transition: background-color 0.3s, width 0.3s;
}

.carousel-dot.active-dot {
    background-color: #009dff;
    width: 3rem;
}

.text-content {
    flex: 1 1 300px;
    max-width: 600px;
}

.text-content h2 {
    font-size: 2.8rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.text-content h2 .highlight {
    color: #009dff;
}

.text-content p {
    font-size: 1rem;
    color: #c0c0c0;
    line-height: 1.7;
    margin-bottom: 2rem;
}


.button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    font-weight: 700;
    border-radius: 10px;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Roboto', sans-serif;
}

.btn-primary {
    background-color: #009dff;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 157, 255, 0.5);
}

.btn-primary:hover {
    background-color: #007acc;
    box-shadow: 0 6px 20px rgba(0, 122, 204, 0.7);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid #009dff;
    color: #009dff;
}

.btn i {
    font-size: 1.2rem;
    line-height: 1;
}

.btn-secondary:hover {
    background-color: #009dff;
    color: #ffffff;
}





@media screen and (max-width: 768px) {
  .text-content h2 {
    font-size: 2rem;
  }

  .text-content p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .btn {
    font-size: 0.95rem;
    padding: 10px 20px;
  }

  .carousel-dot {
    width: 1rem;
    height: 0.25rem;
  }

  .carousel-dot.active-dot {
    width: 2rem;
  }
}

@media screen and (max-width: 480px) {
  .video-showcase {
    padding: 4rem 1rem;
  }

  .text-content h2 {
    font-size: 1.6rem;
    flex-direction: column;
    align-items: center;
  }

  .carousel-container {
    aspect-ratio: 16 / 9;
    border-radius: 0.5rem;
  }

  .btn {
    width: 88%;
    justify-content: center;
  }

  .button-group {
    flex-direction: column;
    align-items: stretch;
  }
}







/* END Video Showcase Section */




















/* Benefits Section */


.benefits {
    padding: 6rem 2rem;
margin-top: 4%;
    color: #e0e0e0;     
}

.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.card {
    background: #101010;
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 0.5px solid #009dff;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 157, 255, 0.2); 
}

.icon {
    font-size: 2rem;
    color: #009dff;
    margin-bottom: 1rem;
}



/* END Benefits Section */











/* Stats Section */

/* Stats Section */

.stats {
    padding: 6rem 2rem;
    background: #141414;
    margin-top: 4%;
}

.stats-title {
    text-align: center;
    color: #ffffff;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 3rem;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.stats-container {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
}

.counter {
    background: #101010;
    padding: 2rem 1.5rem;
    border-radius: 1rem;
    text-align: center;
    width: 250px;
    box-shadow: 0 4px 15px rgba(0, 157, 255, 0.15);
    border: 1px solid #009dff30;
    transition: transform 0.3s ease;
}

.counter:hover {
    transform: translateY(-8px);
}

.icon-box {
    font-size: 3rem;
    color: #009dff;
    margin-bottom: 1rem;
}

.counter-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: #009dff;
}

.plus-symbol {
    font-size: 2rem;
    color: #009dff;
    font-weight: 700;
}

.counter p {
    margin-top: 0.5rem;
    color: #ccc;
    font-size: 1.1rem;
    font-weight: 500;
}

