/* --------------------------------------------------
   GLOBAL BASE
-------------------------------------------------- */

:root {
  --primary-color: #00aaff;
  --secondary-color: #000;
  --accent-color: #111;
  --light-bg: #f8f9fa;
  --dark-bg: #000;
  --font-titles: "Oxanium", "Helvetica Neue", Helvetica, Arial, sans-serif;
   --font-main: "Poppins", "Helvetica Neue", Helvetica, Arial, sans-serif;
 --neutral-gray: #1E1E1E;
  --white: #fff;
  --my-gradient: linear-gradient(90deg,rgba(26, 26, 26, 1) 0%, rgba(0, 0, 0, 0) 100%);
  --border-color: rgba(255, 255, 255, 0.1);
;
 
}

html,
body {
  font-family: var(--font-main);
  margin: 0;
  padding: 0;
  color:var(--white);
  background-color: var(--secondary-color);
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* --------------------------------------------------
   GENERIC UTILITIES
-------------------------------------------------- */

a {
   font-size: 1rem;
  line-height: 1.4rem;
  font-family: var(--font-main);
  font-weight: 300;
  color: var(--white);
}

a:hover {
  color: var(--primary-color);
}

h1 {
  font-size: 2.5rem;
  font-weight: 500;
  font-family: var(--font-titles);
  
}

h2 {
    font-size: 1.8rem;
    font-family: var(--font-titles);
     line-height: 1.2;
}

h3 {
    font-size: 1.5rem;
    font-family: var(--font-titles);
    line-height: 1.5
}

h4 {
    font-size: 1.2rem;
    font-family: var(--font-titles);
}

h5 {
    font-size: 1rem;
    font-family: var(--font-titles);
}

p {
  font-size: 0.9rem;
  line-height: 1.4rem;
  font-family: var(--font-main);
  font-weight: 300;
}

.bold{
  font-size: 0.9rem;
  line-height: 1.4rem;
  font-family: var(--font-main);
  font-weight: 500;
}

.hero-p {
  font-size: 1.1rem;
  max-width: 400px;
  margin: 1rem auto;
  font-family: var(--font-main);
}

.subtitle{
  font-size: 1.1rem;
  max-width: 200px;
  padding-bottom: .2rem;
  font-family: var(--font-titles);
  color: var(--primary-color);
}

@media (min-width: 576px) {
 h1 {
    font-size: 4rem;
     font-family: var(--font-titles);
  }
h2 {
        font-size: 3.3rem;
        font-family: var(--font-titles);
    }

 h3 {
        font-size: 2.7rem;
        font-family: var(--font-titles);
    }

h4 {
        font-size: 2.2rem;
        font-family: var(--font-titles);
    }

h5 {
        font-size: 1.7rem;
        font-family: var(--font-titles);
    }
    p {
  font-size: 0.9rem;
  line-height: 1.4rem;
  font-family: var(--font-main);
  font-weight: 300;
}

.bold{
  font-size: 1.4rem;
  line-height: 1.9rem;
  font-family: var(--font-main);
  font-weight: 500;
}

.hero-p {
  font-size: 1.6rem;
  max-width: 400px;
  margin: 1rem auto;
  font-family: var(--font-main);
}

.subtitle{
  font-size: 1.6rem;
  max-width: 200px;
  padding-bottom: .2rem;
  font-family: var(--font-titles);
  color: var(--primary-color);
}
}

strong{
  color: var(--primary-color);
}

.accent{
  color: var(--primary-color);

}

.white{
  color: var(--white);

}


.custom-margin-xl {   
    margin-top: 10rem !important;    /* For space above the section */
    margin-bottom: 10rem !important; /* For space below the section */
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--secondary-color);
}

.section-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
}

.btn-primary {
  background-color: var(--primary-color);
  border: none;
  border-radius: 50px;
  padding: 8px 32px;
  color: #fff;
  font-weight: 400;
  font-size: 0.8rem;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #0088cc;
  color: #fff;
}

.btn-outline {
  border: 1px solid var(--primary-color);
color: var(--primary-color);
  border-radius: 50px;
  padding: 8px 32px;
  font-weight: 400;
    font-size: 0.8rem;

  transition: all 0.3s ease;
}

.btn-outline:hover {
   border: 1px solid var(--border-color);
  background-color: var(--primary-color);
  color: var(--white);
}


/* --------------------------------------------------
   NAVBAR
-------------------------------------------------- */

.navbar {
    display: flex;
    width: 650px;
    height: 50px;
    background-color: var(--neutral-gray);
    color: #fff;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    position: fixed;
    top: 24px;
    left: calc(50.00% - 325px);
    border-radius: 50px;
    box-shadow: 0px 4px 4px #00000040;
    z-index: 1000; /* Added from the 'Inject original CSS' section */
  
}

.navbar-brand img {
    position: relative;
    width: 150px;
    height: 25px;
    aspect-ratio: 6;
    object-fit: scale-down;
    color: #fff;
}


.navbar-nav .nav-link {
  color: #fff;
  font-size: 1rem;
    display: inline-flex;
    align-items: flex-start;
    gap: 10px;
    position: relative;
    flex: 0 0 auto;
    cursor: pointer; /* Added from the 'Inject original CSS' section */
    transition: opacity 0.2s ease; /* Added from the 'Inject original CSS' section */
    font-size: .9rem;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color) !important;
}



.navbar .contact-nav {
    display: inline-flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 16px 8px 16px;
    position: relative;
    flex: 0 0 auto;
    background-color: var(--brand-01);
    border-radius: 24px;
    cursor: pointer; /* Added from the 'Inject original CSS' section */
    transition: opacity 0.2s ease; /* Added from the 'Inject original CSS' section */
}

.navbar .contact-nav:hover {
    opacity: 0.8; /* Added from the 'Inject original CSS' section */
}

@media (max-width: 1000px) { 

.navbar {
    width: 100%; /* Important: Take full width of the screen */
    height: auto;
        left: 0; /* Important: Remove the centering offset */
        top: 0; /* Optional: Pin it to the very top for a mobile feel */
        margin-top: 0;
        padding: 16px 20px; /* Slightly adjust padding for smaller screens */
        border-radius: 0; /* Remove rounded corners on full-width mobile */
        box-shadow: 0px 2px 5px #00000040; /* Adjust shadow */
        background-color: var(--neutral-gray);
        
}

.navbar-brand img {
  height: 40px;
}

.navbar-nav .nav-link {
  color: #fff !important;
  letter-spacing: 0.4px;
  font-weight: 500;
  transition: 0.3s;
  background-color: var(--neutral-gray);
}

.navbar-nav  a{
 align-items: center;
  justify-content: center;
}

.navbar-nav .btn{
 align-items: center;
  justify-content: center;
    width: 100%;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color) !important;
}

.navbar-toggler {
  border: none;
  outline: none; 
 
}

.navbar-toggler-icon {
 color: #fff !important;
 
}

.navbar-toggler:focus {
  box-shadow: none;
}
}
/* --------------------------------------------------
   BG IMAGES  SECTION
-------------------------------------------------- */

.intro {
  background: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%),
  url("../assets/img/intro.webp") center/cover no-repeat;
  min-height: 100vh;
  position: relative;
  text-align: center;
  display: flex;
align-items: center;
  color: #fff;
  margin: 20vh 0vh;
}

.product-intro {
  background: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%),
  url("../assets/img/m41.webp") left/cover no-repeat;
  min-height: 100vh;
  position: relative;
  text-align: center;
  display: flex;
align-items: center;
  color: #fff;
  margin: 20vh 0vh;
}

.about {
  background: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%),
  url("../assets/img/about.webp") center/cover no-repeat;
  min-height: 100vh;
  position: relative;
  text-align: center;
  display: flex;
align-items: center;
  color: #fff;
}

.mission {
  background: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%),
  url("../assets/img/mission.webp") center/cover no-repeat;
  min-height: 100vh;
  position: relative;
  text-align: center;
  display: flex;
align-items: center;
  color: #fff;
}

.vision {
  background: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%),
  url("../assets/img/vision.webp") center/cover no-repeat;
  min-height: 100vh;
  position: relative;
  text-align: center;
  display: flex;
align-items: center;
  color: #fff;
}

.team {
  background: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%),
  url("../assets/img/team.webp") center/cover no-repeat;
  min-height: 80vh;
  position: relative;
  display: flex;
align-items: center;
  color: #fff;
}

.justify{
  text-align: justify;

}

.contact-us{
  background-color: var(--neutral-gray);
  border-radius: 16px;

}

/* --------------------------------------------------
   HERO SECTION
-------------------------------------------------- */

.hero {
  background: url("../assets/img/hero.webp") center/cover no-repeat;
  min-height: 100vh;
  padding-top: 0px;
  position: relative;
  text-align: center;
  color: #fff;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
  
}

/* --------------------------------------------------
   FEATURE / ABOUT / PRODUCT SECTIONS
-------------------------------------------------- */


.phrase{
  display: flex;
    align-items: flex-start;
    gap: 10px;    
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
background: var(--my-gradient);
}

.phrase img{
  max-width: 300px;
    height: auto;
}

.gradient{
    background-color: var(--my-gradient);

}

.feature,
.about,


.section-content {
  margin-top: 2rem;
}

.feature-card {
  background: var(--neutral-gray);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
}


.feature-card .material-icons {
  font-size: 36px;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.feature-card h5 {
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.counter {
  display: flex;
  align-items: center;
  flex-direction: column;
    padding: 30px 0px; 
    height: 100%;
    gap: 10px;
    background-color: var(--neutral-gray);
    border-radius: 8px;
    border: 1px solid var(--border-color); 
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.counter:hover{
transform: translateY(-5px);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
}

.counter p{
   font-size: 0.9rem;
}
.comment{
  display: flex;
    align-items:center;
    gap: 24px;
    padding: 24px;
    align-self: stretch;
    background-color: var(--neutral-gray);
    border-radius: 8px;
    border-color: var(--border-color);
    border-width: 1px;
    position: relative;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  }

  .comment:hover{
  transform: translateY(5px);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
  }

@media (max-width: 991px) {
  .key {
display: flex;
justify-content: center;
align-items: center;
width: 100%;
  }
}


/* --------------------------------------------------
   CONTACT SECTION
-------------------------------------------------- */


.contact {
   color: #fff;
}

.contact p {
  color: #fff;
}

.contact .form-control {
  border-radius: 10px;
  border: 1px solid var(--border-color);
  background-color: var(--neutral-gray);
  color: var(--white);
  padding: 12px 15px;
}

.contact .form-control::placeholder {
  color: var(--neutral-03);
    opacity: 0.7;
}

.contact .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(0, 170, 255, 0.25);
}


.contact button {
  border-radius: 10px;
}

/* --------------------------------------------------
   FOOTER
-------------------------------------------------- */

.footer {
  background-color: #000;
  padding: 2rem 0;
  text-align: center;
}

.footer img {
  height: 30px;
  margin-bottom: 1rem;
  margin-left: -10px;
}

.footer a {
  color: #aaa;
  font-size: 0.9rem;
  margin: 0;
  text-decoration: none;
  font-weight: 300;
}

.footer a:hover {
 text-decoration: underline;
}

.footer .links{
  display: flex;
  flex-direction: column;
}

/* --------------------------------------------------
   RESPONSIVENESS
-------------------------------------------------- */
@media (max-width: 991px) {
  .footer-end {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
width: 100%;
margin-bottom: 3rem;
  }
}

@media (max-width: 991px) {
  .contact-phrase {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
width: 100%;
text-align: center;  
}
}





@media (max-width: 991px) {
  .section {
    padding: 80px 0;
    width: 100%;
  }

  .hero h1 {
    font-size: 2rem;
     font-family: var(--font-titles);
  }

  .hero p {
    font-size: 1rem;
  }

  .navbar-collapse {
    background-color: var(--neutral-gray);
    padding: 1.5rem;
    width: 100%;
  }

  .navbar-nav .nav-link {
    margin-bottom: 1rem;
    width: 100%;
  }
}

@media (max-width: 576px) {
  .section {
    padding: 60px 0;
  }

  .feature-card {
    padding: 20px;
  }
}

@media (max-width: 576px) {
.btn-primary {
  width: 100%;
}
}

@media (max-width: 576px) {
.container {
  padding-left: 15%;
  padding-right: 15%;
  text-align: center;
}
}