
*{
  box-sizing: border-box !important;
  font-family: 'Poppins', sans-serif;
}
:root {
  --primary-color: #FFD700 ;
  --secondary-color: #001f3f;
}

/*-- IMPORTING GOOGLE FONTS --*/
.poppins-thin {
  font-family: "Poppins", serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", serif;
  font-weight: 900;
  font-style: normal;
}

.poppins-thin-italic {
  font-family: "Poppins", serif;
  font-weight: 100;
  font-style: italic;
}

.poppins-extralight-italic {
  font-family: "Poppins", serif;
  font-weight: 200;
  font-style: italic;
}

.poppins-light-italic {
  font-family: "Poppins", serif;
  font-weight: 300;
  font-style: italic;
}

.poppins-regular-italic {
  font-family: "Poppins", serif;
  font-weight: 400;
  font-style: italic;
}

.poppins-medium-italic {
  font-family: "Poppins", serif;
  font-weight: 500;
  font-style: italic;
}

.poppins-semibold-italic {
  font-family: "Poppins", serif;
  font-weight: 600;
  font-style: italic;
}

.poppins-bold-italic {
  font-family: "Poppins", serif;
  font-weight: 700;
  font-style: italic;
}

.poppins-extrabold-italic {
  font-family: "Poppins", serif;
  font-weight: 800;
  font-style: italic;
}

.poppins-black-italic {
  font-family: "Poppins", serif;
  font-weight: 900;
  font-style: italic;
}


/*-- HEADER SECTION --*/
.navbar-wrapper {
  position: fixed; /* Stick to viewport */
  top: 0; /* Align to top */
  left: 0; /* Full width */
  right: 0; /* Full width */
  z-index: 100; /* Ensure it's above other content */
  transition: background-color 0.3s ease; /* Smooth transition for background color */
  background-color: var(--secondary-color);
}
.header-style {
  background-color: var(--secondary-color);
}
.head-logo {
  height: 95px;
  width: auto;
}
.navbar-nav li a {
  color: var(--primary-color) !important;
  font-weight: bold;
  margin: 0px 5px;
}
.hero-main {
  background-color: var(--secondary-color);
  margin-top: 85px !important;
}
.hero-heading {
  color: var(--primary-color);
}
.hero-img {
  height: 450px;
  width: auto;
}

/*-- OUR CLIENTS SECTION --*/
.slider-container {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out; 
}

.slide {
  flex-shrink: 0;
  width: 100%; 
}

.slide img {
  width: 100%;
  height: auto;
}