/* Import from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500&display=swap');

body {
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: 0.5px;
  color: #000000;
  /* The Hexagon Wireframe Pattern */
  background-color: #011017; 
  /* This SVG data creates the exact thin-line hexagon pattern from your image */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100' viewBox='0 0 56 100'%3E%3Cpath d='M28 66L0 50L0 16L28 0L56 16L56 50L28 66L28 100' fill='none' stroke='%23033d56' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 42px 75px;
  background-repeat: repeat;
  
  /* Make sure the page is long enough to actually scroll background-color: #06719f deep #033d56 */
  min-height: 200vh;
}
/* main body color  #3ea5ce 5ce1e6*/




.layout_padding {
  padding-top: 80px;
  padding-bottom: 120px;
  padding-right: 20px;
}

.layout_padding2 {
  padding: 45px 0;
}

.layout_padding2-top {
  padding-top: 45px;
}

.layout_padding2-bottom {
  padding-bottom: 45px;
}

.layout_padding-top {
  padding-top: 120px;
}

.layout_padding-bottom {
  padding-bottom: 120px;
}

.heading_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.heading_container h2 {
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-transform: uppercase;
  color: #3ea5ce;
}

/*header section background-image: url(../images/hero-bg.jpg);*/
.hero_area {
  height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.hero_area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(transparent), to(#3ea5ce));
  background: linear-gradient(to bottom, transparent, transparent, #3ea5ce);
}

.sub_page .hero_area {
  height: auto;
}

.sub_page .class_section .owl-carousel .owl-nav {
  top: 55%;
}

/*light blue bg*/
.header_section {
  background-color: #eafffe;
  position: relative;
  -webkit-clip-path: polygon(50% 0%, 100% 0, 100% 100%, 28.5% 100%, 26.5% 86%, 0 84%, 0 0);
          clip-path: polygon(50% 0%, 100% 0, 100% 100%, 28.5% 100%, 26.5% 86%, 0 84%, 0 0);
}

.header_section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 62%;
  height: 45px;
  background: #06719f;;
  z-index: 1;
  -webkit-clip-path: polygon(50% 0%, 100% 0, 100% 100%, 8% 100%, 0 0);
          clip-path: polygon(50% 0%, 100% 0, 100% 100%, 8% 100%, 0 0);
}

.resize-img {
    transform: scale(1.1);
}

.header_section .nav_container {
  margin: 0 auto;
}

.menu_width {
  width: 100%;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a:hover,
a:focus {
  color: #eafffe;
}

.btn,
.btn:focus {
  outline: none !important;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.header_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.main_nav {
  position: relative;
  z-index: 9;
}

.main_nav .top_nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
}

.main_nav .top_nav ul li {
  list-style-type: none;
}

/* This is text color white */
.main_nav .top_nav ul li a {
  display: inline-block;
  color: #ffffff;
  margin: 10px 0 10px 35px;
}

.main_nav .top_nav ul li a img {
  max-width: 25px;
  max-height: 25px;
  margin-right: 15px;
}
/*text color home, about etc*/
/* 1. Base style with increased spacing and layout fix */
.custom_nav-container.navbar-expand-lg .navbar-nav .nav-item .nav-link {
  padding: 10px 30px; /* Increased from 20px to 30px for more space */
  color: #3ea5ce;
  text-align: center;
  text-transform: uppercase;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
  font-weight: 600;
  text-shadow: 
    0px 0px 38px rgba(0, 165, 0, 0.8), 
    0px 0px 20px rgba(0, 165, 0, 0.4);
}

/* 2. The "Ghost" Bold Trick: prevents the shaking/jumping */
.custom_nav-container.navbar-expand-lg .navbar-nav .nav-item .nav-link::after {
  display: block;
  content: attr(title); /* This pulls text from a title attribute we will add */
  font-weight: bold;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}

/* 3. The Hover State  3ea5ce*/
.custom_nav-container.navbar-expand-lg .navbar-nav .nav-item .nav-link:hover {
  color: #3ea5ce;
  font-weight: 600;
  letter-spacing: 1.5px;
  /* Layered text-shadow for a soft glow effect */
  /* 1st layer: slight crisp shadow | 2nd layer: soft glow | 3rd layer: wide spread glow */
  text-shadow: 
    0px 0px 38px rgba(0, 255, 0, 0.9), 
    0px 0px 20px rgba(0, 255, 0, 0.5);
    
  /* Optional: Lift the text slightly */
  transform: translateY(-2px);
  transition: all 0.3s ease-in-out;
}
a,
a:hover,
a:focus {
  text-decoration: none;
}

a:hover,
a:focus {
  color: #eafffe;
}

.btn,
.btn:focus {
  outline: none !important;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.custom_nav-container .nav_search-btn {
  background-image: url(../images/search-icon.png);
  background-size: 22px;
  background-repeat: no-repeat;
  background-position-y: 7px;
  width: 35px;
  height: 35px;
  padding: 0;
  border: none;
}

.navbar-brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  
  /* Change this from 'center' to 'column' to stack them */
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column; 
  
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.navbar-brand img {
  width: 169px;
  /* Remove margin-right since we aren't side-by-side anymore */
  margin-right: 0; 
  margin-bottom: 1px; /* Adds space between logo and name */
  margin-top: 5px; /* Adds space between logo and name */
}

/* Style for the new span name */
.navbar-brand span {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #033d56;
  text-align: center;
}

.navbar-brand.brand_mobile {
  display: none;
}

.custom_nav-container {
  z-index: 99999;
}

.custom_nav-container .navbar-toggler {
  outline: none;
}

.custom_nav-container .navbar-toggler .navbar-toggler-icon {
  background-image: url(../images/menu.png);
  background-size: 45px;
}

/*end header section*/
/* slider section */
.slider_section {
  height: calc(100% - 80px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.slider_section #carouselExampleIndicators {
  width: 100%;
}

.slider_section .row .col-md-10 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.slider_section .slider_heading {
  -webkit-transform: rotate(270.5deg) scaleX(-1);
          transform: rotate(270.5deg) scaleX(-1);
  position: absolute;
  left: -150px;
  top: -25px;
}

.slider_section .slider_heading h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 10rem;
  text-transform: uppercase;
  text-orientation: upright;
  font-weight: bold;
  color: #000000;
}

.slider_section .slider_heading h2 span {
  color: #3ea5ce;
}

.slider_section .detail-box h1 {
  font-size: 3rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #000000;
}

.slider_section .detail-box hr {
  margin: 0 auto;
  border: none;
  width: 1.5px;
  height: 65px;
  background-color: #000000;
}

.slider_section .detail-box .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 35px;
}

.slider_section .detail-box .btn-box .btn-1 {
  display: inline-block;
  padding: 10px 35px;
  background-color: #000000;
  border: 1px solid transparent;
  border-radius: 35px;
  color: #000000;
}

.slider_section .detail-box .btn-box .btn-1:hover {
  background-color: #000000;
  color: #000000;
}

.slider_section #carouselExampleIndicators {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.slider_section #carouselExampleIndicators .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.slider_section .carousel-indicators {
  position: unset;
  margin: 0 70px 45px 70px;
}

.slider_section .carousel-indicators li {
  text-indent: unset;
  border: none;
  background-color: transparent;
  color: #000000;
  font-weight: bold;
  font-size: 2rem;
  opacity: 1;
  display: none;
}

.slider_section .carousel-indicators li.active {
  display: inline-block;
}

.slider_section .carousel-control-prev,
.slider_section .carousel-control-next {
  position: absolute;
  top: 45%;
  left: initial;
  right: 25px;
  width: 55px;
  height: 55px;
  border: none;
  opacity: 1;
  background-repeat: no-repeat;
  background-size: 8px;
  background-position: center;
  background-color: #63f74f;
  border-radius: 100%;
}

.slider_section .carousel-control-prev:hover,
.slider_section .carousel-control-next:hover {
  background-color: #000000;
}

.slider_section .carousel-control-prev {
  background-image: url(../images/prev.png);
  -webkit-transform: translateY(57%);
          transform: translateY(57%);
}

.slider_section .carousel-control-prev:hover {
  background-image: url(../images/prev-grey.png);
}

.slider_section .carousel-control-next {
  background-image: url(../images/next.png);
  -webkit-transform: translateY(-57%);
          transform: translateY(-57%);
}

.slider_section .carousel-control-next:hover {
  background-image: url(../images/next-grey.png);
}

.slider_section .number_box {
  width: 50px;
  position: absolute;
  left: 25px;
  top: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #63f74f;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.slider_section .number_box hr {
  border: none;
  width: 1px;
  height: 200px;
  background-color: #63f74f;
  margin: 2rem 0;
}

/* center box text color section */
.about_section {
  color: #ffffff;
}

.about_section .heading_container h2 {
  color: #ffffff;
}
/*  background-image: url(../images/about-bg.jpg);*/

.about_section .about_container {
  padding: 20px 35px 20px 35px;
  background-color: #06719f;
  background-size: cover;
}

.about_section .about_container2 {
  padding: 45px;
  background-color: #06719f;
  background-size: cover;
}

.about_section .about_container .detail-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.about_section .about_container .detail-box p {
  margin-top: 25px;
}

.about_section .about_container .detail-box hr {
  margin: 0 auto;
  border: none;
  width: 1.5px;
  height: 125px;
  background-color: #ffffff;
}

.about_section .about_container .detail-box a {
  display: inline-block;
  padding: 8px 15px;
  background-color: #ffffff;
  border: 1px solid transparent;
  border-radius: 35px;
  color: #000000;
  margin: 35px auto 10 auto;
  -webkit-box-shadow: 0 0 5px 0 rgba(91, 4, 120, 0.7);
          box-shadow: 0 0 5px 0 rgba(91, 4, 120, 0.7);
}

.about_section .about_container .detail-box a:hover {
  background-color: #033d56;
  color: #ffffff;
}

.class_section {
  color: #ffffff;
  position: relative;
}

.class_section .row > div {
  position: unset;
}

.class_section .class_box-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 45px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.class_section .class_box-container .box {
  position: relative;
}

.class_section .class_box-container .box .img-box {
  position: relative;
  padding-left: 75px;
  background-color: #ffffff;
}

.class_section .class_box-container .box .img-box img {
  width: 100%;
}

.class_section .class_box-container .box .img-box .detail-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 100%;
  height: 100%;
  padding: 55px 0;
  border-radius: 10px;
  position: absolute;
  top: 0;
  left: 0;
}

.class_section .class_box-container .box .img-box .detail-box button {
  background-color: #292929;
  border: none;
  width: 55px;
  height: 55px;
  margin: 0 10px;
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.class_section .class_box-container .box .img-box .detail-box button img {
  width: 20px;
  margin-left: 5px;
}

.class_section .class_box-container .box .img-box .detail-box h2 {
  margin: 0;
  text-transform: uppercase;
  color: #000000;
  font-weight: bold;
  line-height: 55px;
  margin-left: 15px;
}

.class_section .class_box-container .box .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
}

.class_section .class_box-container .box .btn-box a {
  display: inline-block;
  padding: 10px 45px;
  background-color: #000000;
  border: 1px solid transparent;
  border-radius: 30px;
  color: #000000;
}

.class_section .class_box-container .box .btn-box a:hover {
  background-color: #000000;
  color: #000000;
}

.class_section .owl-carousel {
  position: unset;
}

.class_section .owl-carousel .owl-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 10px;
  margin-top: 55px;
  position: absolute;
  top: 50%;
  right: 45px;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

.class_section .owl-carousel .owl-nav .owl-prev,
.class_section .owl-carousel .owl-nav .owl-next {
  background-color: #000000;
  opacity: 1;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
  border-radius: 100%;
  outline: none;
  margin: 2px 0;
}

.class_section .owl-carousel .owl-nav .owl-prev:hover,
.class_section .owl-carousel .owl-nav .owl-next:hover {
  background-color: #000000;
}

.class_section .owl-carousel .owl-nav .owl-prev {
  width: 75px;
  height: 75px;
  background-image: url(../images/prev.png);
}

.class_section .owl-carousel .owl-nav .owl-prev:hover {
  background-image: url(../images/prev-grey.png);
}

.class_section .owl-carousel .owl-nav .owl-next {
  width: 50px;
  height: 50px;
  background-image: url(../images/next.png);
}

.class_section .owl-carousel .owl-nav .owl-next:hover {
  background-image: url(../images/next-grey.png);
}

.blog_section {
  color: #000000;
  overflow-x: hidden;
}

.blog_section .box {
  margin: 45px 0;
  background-color: #252525;
}

.blog_section .box .img-box {
  position: relative;
}

.blog_section .box .img-box img {
  width: 100%;
}

.blog_section .box .detail-box {
  position: relative;
  padding-top: 75px;
  padding-bottom: 35px;
}

.blog_section .box .detail-box .img_date {
  position: absolute;
  left: 0;
  top: 0;
  width: 75px;
  height: 75px;
  border-radius: 100%;
  text-align: center;
  background-color: #eebaff;
  color: #000000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.blog_section .box .detail-box .img_date h6 {
  margin: 0;
}

.blog_section .box .detail-box h3 {
  font-weight: bold;
}

.blog_section .box .detail-box a {
  display: inline-block;
  padding: 8px 25px;
  background-color: #000000;
  border: 1px solid transparent;
  border-radius: 35px;
  color: #000000;
  margin-top: 35px;
}

.blog_section .box .detail-box a:hover {
  background-color: #000000;
  color: #000000;
}

.blog_section .box.b1 .detail-box {
  padding-right: 35px;
}

.blog_section .box.b2 .detail-box {
  padding-left: 35px;
}

.blog_section .box.b2 .detail-box .img_date {
  left: 35px;
}

.client_section {
  color: #000000;
}

.client_section .heading_container {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  margin-bottom: 45px;
}

.client_section .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 10px;
}

.client_section .box .img-box {
  width: 125px;
  border-radius: 100%;
  margin-bottom: -62px;
  position: relative;
  z-index: 2;
}

.client_section .box .img-box img {
  width: 100%;
}

.client_section .box .detail-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 95px 25px 45px 25px;
  background-color: #eebaff;
}

.client_section .box .detail-box h4 {
  font-weight: bold;
}

.client_section .box .detail-box p {
  margin-top: 25px;
}

.client_section .box .detail-box img {
  width: 35px;
  margin-top: 25px;
}

.client_section .owl-carousel .owl-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 10px;
  margin-top: 55px;
}

.client_section .owl-carousel .owl-nav .owl-prev,
.client_section .owl-carousel .owl-nav .owl-next {
  width: 55px;
  height: 50px;
  opacity: 1;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
  border-radius: 10px;
  outline: none;
  margin: 0;
}

.client_section .owl-carousel .owl-nav .owl-prev {
  background-image: url(../images/prev-arrow.png);
  background-color: #000000;
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
  background-position: 15px center;
}

.client_section .owl-carousel .owl-nav .owl-next {
  background-image: url(../images/next-arrow.png);
  background-color: #000000;
  -webkit-transform: translateX(-10px);
          transform: translateX(-10px);
}

.info_section .info_main-row {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.info_section .contact_section {
  position: relative;
}

.info_section .contact_section h2 {
  font-weight: bold;
}

.info_section .contact_section form {
  margin-top: 45px;
  padding-right: 35px;
  margin-bottom: 45px;
}

.info_section .contact_section input {
  width: 100%;
  border: none;
  height: 50px;
  margin-bottom: 25px;
  padding-left: 25px;
  background-color: #000;
  outline: none;
  color: #000000;
  border-radius: 45px;
}

.info_section .contact_section input::-webkit-input-placeholder {
  color: #737272;
}

.info_section .contact_section input:-ms-input-placeholder {
  color: #737272;
}

.info_section .contact_section input::-ms-input-placeholder {
  color: #737272;
}

.info_section .contact_section input::placeholder {
  color: #737272;
}

.info_section .contact_section input.message-box {
  height: 135px;
  border-radius: 25px;
}

.info_section .contact_section button {
  border: none;
  display: inline-block;
  padding: 12px 55px;
  background-color: #000000;
  border: 1px solid transparent;
  border-radius: 35px;
  color: #000000;
  margin-top: 35px;
}

.info_section .contact_section button:hover {
  background-color: #000000;
  color: #000000;
}

.info_section .contact_section .map_container {
  height: 100%;
  min-height: 325px;
}

.info_section .contact_section .map_container .map-responsive {
  height: 100%;
}

.info_section .img-box img {
  width: 100%;
}

/* footer section*/
.footer_section {
  margin: 25px 0;
}

.footer_section .social_box {
  display: -webkit-box;
  display: -ms-flexbox;
  color: white;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer_section .social_box a {
  margin-right: 15px;
  color: white;
}

.black-link {
	font-size: 17px;
    color: white; /* Set initial color to black */
    text-decoration: none; /* Optional: Remove underline */
}

.black-linkw {
	font-size: 18px;
    color: white; /* Set initial color to black */
    text-decoration: none; /* Optional: Remove underline */
}

.black-link2 {
    color: black; /* Set initial color to black */
    text-decoration: none; /* Optional: Remove underline */
}

.black-link:hover {
    color: #f0f0f0; /* Optional: Change color on hover */
	letter-spacing: 2px;
  /* Layered text-shadow for a soft glow effect */
  /* 1st layer: slight crisp shadow | 2nd layer: soft glow | 3rd layer: wide spread glow */
  text-shadow: 
    0px 0px 38px rgba(0, 0, 0, 0.8), 
    0px 0px 20px rgba(0, 0, 0, 0.4);
    
  /* Optional: Lift the text slightly */
  transform: translateY(-2px);
  transition: all 0.3s ease-in-out;
}

.footer_section .social_box a img {
  max-width: 25px;
  max-height: 25px;
  color: white;
}

.footer_section p {
  margin: 0;
  margin-top: 25px;
  color: #000000;
}

.footer_section a {
  color: #000000;
}

.button-container {
  display: flex;
  flex-wrap: wrap; /* Allows them to jump to the next line on mobile */
  gap: 10px;       /* Adds space between them without using <br> */
  align-items: center;
}

/* This targets the links inside that container */
.button-container a {
  margin: 0;       /* Removes any forced margins */
  flex: 0 1 auto;  /* Allows them to take only the space they need */
}

.about-text {
  font-size: 18px;    /* Increase this number to make it even bigger */
  line-height: 1.6;   /* Adds a bit of vertical space between lines for readability */
  color: #ffffff;      /* Ensures it stays white/visible on your blue background */
}

.background-video {
  width: 21.6%;
  height: 38.4%;
  height: auto;
  display: block;
  object-fit: cover; /* Ensures the video fills the area without stretching */
}

/* Container for the horizontal scroll */
.game-flex-container {
  display: flex;
  overflow-x: auto;
  gap: 25px;
  padding: 15px 0;
  scrollbar-width: none; /* Hides scrollbar on Firefox */
}

.game-flex-container::-webkit-scrollbar {
  display: none; /* Hides scrollbar on Chrome/Safari */
}

/* Individual item wrapper */
.game-entry {
  flex: 0 0 auto; /* Crucial: Stops the video from shrinking to 0px */
}

/* The video container using your specific percentages */
.game-video-box {
  /* On mobile, we use vw/vh to ensure the % is based on the screen size */
  width: 216px;  /* Your 200px requirement */
  height: 384px;
  background-color: #1a1a1a;
  border-radius: 15px;
  overflow: hidden;
  display: block;
}

.game-video-box2 {
  /* On mobile, we use vw/vh to ensure the % is based on the screen size */
  width: 288px;  /* Your 200px requirement */
  height: 162px;
  background-color: #1a1a1a;
  border-radius: 15px;
  overflow: hidden;
  display: block;
}

/* The actual video element */
.game-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Laptop/Desktop Adjustments */
@media (min-width: 1024px) {
  .game-video-box {
    /* Applying your exact requested laptop dimensions */
    width: 216px;  /* Your 200px requirement */
    height: 384px; /* Your 400px requirement */
    
    /* Alternatively, if you prefer the percentages on laptop:
       width: 21.6vw;
       height: 38.4vh; 
    */
  }
  .game-video-box2 {
    /* Applying your exact requested laptop dimensions */
    width: 768px;  /* Your 200px requirement */
    height: 432px; /* Your 400px requirement */
    
    /* Alternatively, if you prefer the percentages on laptop:
       width: 21.6vw;
       height: 38.4vh; 
    */
  }

}

  /* The initial state: tight and slightly transparent */
.scroll-reveal {
  opacity: 1; 
  letter-spacing: 0px;
  filter: blur(0px);
   /* color: #e9e9f7; Matching your existing text color */
  transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: letter-spacing, color, filter;
  display: inline-block;
}

/* 2. Active state: Triggered when the user scrolls to it */
.scroll-reveal.active {
  letter-spacing: 2px; /* The expansion effect */
        /*color: #00d4ff; Vibrant cyan highlight */
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.normal-text {
  font-family: "Poppins", sans-serif;
 }

/* end footer section*/
/*# sourceMappingURL=style.css.map */