@import url('https://fonts.googleapis.com/css2?family=Playwrite+CU:wght@100..400&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color: #ffffff;
  --primary-color: #008DDA;
  --secondary-color: #41c4e2;
  --section-bg-color: #0c4062;
  --custom-btn-bg-color: #F7EEDD;
  --custom-btn-bg-hover-color: #3AA6B9;
  --dark-color: #000000;
  --p-color: #717275;
  --border-color: #7fffd4;
  --link-hover-color: #E76F51;

  --body-font-family: 'Plus Jakarta Sans', sans-serif;

  --h1-font-size: 68px;
  --h2-font-size: 46px;
  --h3-font-size: 32px;
  --h4-font-size: 28px;
  --h5-font-size: 24px;
  --h6-font-size: 22px;
  --p-font-size: 20px;
  --btn-font-size: 16px;
  --form-btn-font-size: 18px;
  --menu-font-size: 16px;

  --border-radius-large: 100px;
  --border-radius-medium: 20px;
  --border-radius-small: 10px;

  --font-weight-thin: 200;
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-bold: 700;
}

body {
  background-color: var(--white-color);
  font-family: var(--body-font-family);
}


/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-bold);
}

h1 {
  font-size: var(--h1-font-size);
}

h2 {
  font-size: var(--h2-font-size);
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  font-size: var(--h6-font-size);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

a,
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
}

b,
strong {
  font-weight: var(--font-weight-bold);
}


/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-overlay {
  background-color: var(--dark-color);
  position: absolute;
  z-index: 9;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  opacity: 0.65;
}

.section-overlay+.container {
  position: relative;
  z-index: 22;
}


.banner-link {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  margin-left: -5%;
  margin-top: 80% !important;
}

.banner-title {
  font-size: 90px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  margin-left: -10%;
}

.banner-title-small {
  position: absolute;
  color: #9dd7e3;
  left: 47%;
  top: 74%;
  font-size: 40px;
}

.banner-leganFoo {
  font-size: 30px;
  font-weight: 300;
  color: #fff;
  text-align: left;
  margin-left: 20%;
  font-family: "Playwrite CU", cursive;
  font-optical-sizing: auto;
  font-style: normal;
}
.banner-legan {
  font-size: 30px;
  font-weight: 300;
  color: #fff;
  text-align: left;
  margin-left: 20%;
  font-family: "Playwrite CU", cursive;
  font-optical-sizing: auto;
  font-style: normal;
}

.banner-btn {
  width: 60%;
  margin-left: -5%
}

/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn2:hover {
  background: linear-gradient(360deg, #0c4062, #008dda);
  color: white;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.custom-btn2 {
  width: fit-content;
  margin: 20px;
  padding: 10px 40px;
  border: none;
  color: #fff;
  background: linear-gradient(180deg, #0c4062, #008dda);
  border-radius: 25px;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  -o-border-radius: 25px;
}

.custom-btn {
  background: var(--custom-btn-bg-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-large);
  color: #000000;
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-bold);
  line-height: normal;
  transition: all 0.3s;
  padding: 12px 28px;
}

.custom-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  color: var(--white-color);
}

/*---------------------------------------
  NAVIGATION BAR & OFFCANVAS              
-----------------------------------------*/
.navbar {
  background: transparent;
  z-index: 999999;
  padding-top: 30px;
  padding-bottom: 30px;
  position: fixed;
  width: 100%;
}

.navbar .container {
  background: linear-gradient(to right, #fff, #00bfffba, #00000099);
  border-radius: var(--border-radius-medium);
  padding: 5px 30px;
}

.navbar-brand,
.navbar-brand:hover {
  font-size: var(--h4-font-size);
  font-weight: var(--font-weight-bold);
  display: block;
  color: var(--white-color);
}


.navbar-brand-image {
  min-width: 120px;
  width: 120px;
  height: auto;
}

.navbar .custom-btn {
  padding: 10px 20px;
}

.navbar-expand-lg .navbar-nav .nav-link {
  border-radius: var(--border-radius-large);
  margin: 10px;
  padding: 10px;
}

.navbar-nav .nav-link {
  display: inline-block;
  color: var(--white-color);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-bold);
  border-radius: 0 !important;
  padding-top: 15px;
  padding-bottom: 15px;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  -ms-border-radius: 0 !important;
  -o-border-radius: 0 !important;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  border-bottom: 2px solid #fff;
  color: #fff;
  letter-spacing: 1px;
  border-radius: 0;
}

.navbar .dropdown-menu {
  background: var(--white-color);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175);
  border: 0;
  display: inherit;
  opacity: 0;
  min-width: 9rem;
  margin-top: 20px;
  padding: 13px 0 10px 0;
  transition: all 0.3s;
  pointer-events: none;
}

.navbar .dropdown-menu::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 15px solid var(--white-color);
  position: absolute;
  top: -10px;
  left: 10px;
}

.navbar .dropdown-item {
  display: inline-block;
  color: var(--p-color);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  position: relative;
}


@media screen and (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    opacity: 1;
    margin-top: 0;
    pointer-events: auto;
  }

}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--white-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--white-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}


/*---------------------------------------
  HERO        
-----------------------------------------*/
.hero-section {
  background-color: var(--dark-color);
  position: relative;
  overflow: hidden;
  min-height: 620px;
  text-align: center;
}

.hero-section::after {
  background-color: rgba(0, 0, 0, 0.9);
  border-radius: var(--border-radius-medium);
  content: "";
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-55%, -50%) rotate(45deg);
  width: 350px;
  height: 350px;
  pointer-events: none;
}

#jeans {
  font-weight: 900;
  color: #9dd7e3;
  padding-bottom: 5px;
  padding-left: 10px;
}

@media screen and (min-width: 991px) {
  .hero-section {
    height: 100vh;
  }
}

.boxName {
  position: relative;
}

.hero-section h1 {
  color: var(--white-color);
}

.small-text {
  color: var(--secondary-color);
}

.hero-section .container {
  position: relative;
  z-index: 9;
}

.hero-slides {
  width: 100%;
  height: 100%;
  position: absolute !important;
}

/*---------------------------------------
  ABOUT              
-----------------------------------------*/
.about-section {
  background: linear-gradient(to left, #0c4062, #008dda, #000000);
  position: relative;
}

.about-section .ratio {
  border-radius: var(--border-radius-medium);
}

.legan-font {
  font-family: "Playwrite CU", cursive;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 300;
  padding-top: 5px;
}

.nameCompany {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 70px;
}

.nameCompany p {
  font-weight: 200;
  font-size: 22px;
}
#youtube-video{
  border-radius: var(--border-radius-medium);
}
.about-video-info {
  bottom: 0;
  height: fit-content;
  width: fit-content;
  margin: 82% 20px;
}

.about-video-info h4 {
  color: var(--white-color);
}

/*---------------------------------------
  SITE FOOTER              
-----------------------------------------*/
.site-footer {
  background: linear-gradient(to right, #0c4062b9, #008dda, #000000);
  padding-top: 50px;
  padding-bottom: 10px;
  margin: auto;
}

.site-footer strong {
  color: var(--white-color);
  display: inline-flex;

}

.site-footer p,
.site-footer-link {
  color: rgba(255, 255, 255, 0.75);
  font-size: var(--btn-font-size);
}

.site-footer-link {
  color: rgba(255, 255, 255, 0.75);
  font-size: var(--btn-font-size);
  transition: all 0.3s;
}

.site-footer-link:hover {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: underline;
}

.copyright-text {
  color: rgba(255, 255, 255, 0.75);
  font-size: var(--menu-font-size);
  flex-direction: row;
  justify-content: center
}

.copyright-text a {
  color: rgb(15 53 73);
  font-weight: 800;
}


/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.socialContainer {
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link img {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px auto;
  transition: all 0.5s ease-in-out;

}

.social-icon-link {
  position: relative;
  background: var(--primary-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--menu-font-size);
  display: block;
  margin: 0 5px;
  text-align: center;
  width: 65px;
  height: 65px;
  line-height: 3px;
  transition: all 0.5s ease-in-out;
  align-items: center;
  display: flex;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}


.social-icon-link:hover img {
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
}

.social-icon-link span {
  display: block;
}


/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (max-width: 1200px) {
  h1 {
    font-size: 62px;
  }
  .navbar-nav .nav-link{
    margin: 0 !important;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 54px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .hero-section {
    padding-top: 148px;
    padding-bottom: 100px;
  }

  .navbar-brand,
  .navbar-brand:hover {
    font-size: var(--h5-font-size);
  }

  .navbar-expand-lg .navbar-nav {
    padding-bottom: 20px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
    margin-bottom: 0;
    color: #0b4469;
    
  }

  .navbar .custom-btn {
    margin-bottom: 10px;
  }

  .navbar-nav .nav-link.active, .navbar-nav .nav-link:hover{
    color: #0b4469;
    border-color: #0b4469;
  }

  .site-footer {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.navbar-nav .nav-item a {
  text-wrap: nowrap;
}
@media screen and (max-width: 767px) {
  .custom-btn {
    font-size: 14px;
    padding: 12px 20px;
  }

}


@media screen and (max-width: 578px) {

  .navbar .container {
    margin-right: 10px;
    margin-left: 10px;
  }
}


@media screen and (max-width: 480px) {
  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }

  .hero-section::after {
    width: 200px;
    height: 200px;
  }


  .banner-title {
    font-size: 250% !important;
  }

  .banner-title-small {
    font-size: 125% !important;
  }

  .banner-legan {
    font-size: 18px !important;
    margin-left: 22% !important;
  }
  .banner-leganFoo {
    font-size: 18px !important;
  }

  .banner-link {
    font-size: 16px !important;
  }
}

section {
  padding: 100px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f9f8ff;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #000 !important;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--primary-color);
  bottom: 0;
  left: calc(50% - 25px);
}

.section-title p {
  margin-bottom: 0;
}

/* slider  */

.slider {
  margin: auto;
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;

}

.slider .slide-track {
  display: flex;
  transition: transform 0.5s ease;
}

.slider .slide {
  min-width: 8%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  flex-shrink: 0;
  transition: transform 0.5s ease-in-out;
  position: relative;
  right: -30%;
}

.slider .slide img {
  width: 200px;
  transition: transform 0.5s ease-in-out;
}

.slider .slide:hover img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}

.slider-button img {
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transform: translateY(-50%);
  margin-top: 100%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.slider-button {
  background: #00000036;
  position: absolute;
  border: none;
  cursor: pointer;
  z-index: 10;
  font-size: 16px;
}

.prev-button {
  left: 10px;
  border-radius: 0 30px 30px 0;
}

.next-button {
  right: 10px;
  border-radius:  30px 0 0 30px;
}

.slider-button:hover img {
  -webkit-transform: translateY(-50%) rotateY(360deg);
  -moz-transform: translateY(-50%) rotateY(360deg);
  -ms-transform: translateY(-50%) rotateY(360deg);
  -o-transform: translateY(-50%) rotateY(360deg);
  transform: translateY(-50%) rotateY(360deg);
}

/* counter */
.counterContainer {
  background: linear-gradient(to left, #0c4062, #008dda, #000000);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
}


@media(max-width:730px) {
  .counterContainer {
    justify-content: center;
    align-items: center;
  }

  .counterContainer>div:nth-child(2) {
    position: relative;
    width: 80%;
    flex-wrap: wrap;
    justify-content: space-between;
  }

}

@media(max-width:516px) {
  .counterContainer>div:nth-child(2) {
    width: 100%;
  }

}

@media(max-width:768px) {
  .banner-title {
    font-size: 480%;
  }

  .banner-title-small {
    font-size: 245%;
    left: 46%;
  }

  .banner-legan {
    font-size: 25px;
    margin-left: 16%;
  }
  .banner-leganFoo {
    font-size: 25px;
  }
}

.logoFooter {
  width: 180px;
  padding: 15px;
  border-radius: 25px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  -o-border-radius: 25px;
}

.charts {
  display: flex;
  justify-content: space-evenly;
  width: 90%;
  gap: 20px;
}

/* Individual Chart Container */
.charts div {
  background-color: #fff;
  border-radius: 12px;
  padding: 20px;
  width: 45%;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.charts div:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/* Chart Title Styling */
.charts div p {
  font-size: 1.5rem;
  font-weight: bold;
  color: #0c4062;
  margin-bottom: 10px;
  text-align: center;
}
.mainSus{
  display: flex;
   justify-content:space-evenly;
    gap: 20px;
}
/* Canvas Styling */
.charts canvas {
  width: 100% !important;
}

/* Responsive Design */
@media (max-width: 768px) {
  .charts {
    flex-direction: column;
    padding: 20px;
  }

  .charts div {
    width: 100%;
  }
  
  .mainSus{
    flex-wrap: wrap;
  }
 
}
@media(max-width:1200px){
  #count1{
    left:39% !important ;
  }
  #count2{
    left: 37% !important;
  }
  #count3{
    top: 54% !important;
    left:43% !important ;
  }
} .formSelect {
  margin-left: 10px;
  position: relative;
  width: 120px;
  padding: 8px;
  font-size: 14px;
  color: #fff;
  cursor: pointer;
  background-color: #00bfffba;
  border: 1px solid #00000099;
  border-radius: 10px;
  text-align: center;
  user-select: none;
  transition: all 0.3s ease;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.formSelect:hover {
  background-color: #00a3dbaa;
}

.formSelect span {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.formSelect span::after {
  content: '▼';
  margin-left: 5px;
  font-size: 12px;
  transition: transform 0.3s ease;
}

.formSelect.open span::after {
  transform: rotate(-180deg);
}

.formSelect ul {
  margin: 12px 0 0 -10px;
  padding: 0;
  list-style: none;
  display: none;
  position: absolute;
  width: 100%;
  background-color: #fff;
  border: 1px solid #00000099;
  border-radius: 10px;
  z-index: 10;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  animation: fadeIn 0.3s ease;
}

.formSelect.open ul {
  display: block;
}

.formSelect li {
  padding:4px 8px;
  cursor: pointer;
  color: #00000099;
  text-align: center;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 16px;
  font-weight: 400;

}

.formSelect li:hover {
  background-color: #00bfffba;
  color: #fff;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.formSelect:focus {
  outline: none;
  box-shadow: 0 0 0 2px #00bfffba;
}

#currentLanguage {
  font-weight: bold;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}