/* Google Fonts Link */
@import url('https://fonts.googleapis.com/css2?family=Miniver&family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

* {
 
  margin: 0;
 
  font-family: "Poppins", sans-serif;
}

:root {
  /* Colors */
  --white-color: #fff;
  --primary-color: #0A1D37;
  --secondary-color: #C9A23C;
 

  /* Font size */
  --font-size-s: 0.9rem;
  --font-size-n: 1rem;
  --font-size-m: 1.12rem;
  --font-size-l: 1.5rem;
  --font-size-xl: 2rem;
  --font-size-xxl: 2.3rem;

  /* Font weight */
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  /* Border radius */
  --border-radius-s: 8px;
  --border-radius-m: 30px;
  --border-radius-circle: 50%;

  /* Site max width */
  --site-max-width: 1300px;
}

html {
  scroll-behavior: smooth;
}

/* Stylings for whole site */
ul {
  list-style: none;
}
nav ul li a.active {
 
  color: white;
  padding: 10px 18px;
  border: 2px solid white; /* White border for the active button */
  border-radius: var(--border-radius-m);

}

a {
  text-decoration: none;
}

button {
  cursor: pointer;
  background: none;
  border: none;
}

img {
  width: 100%;
}
/* Navbar Styles */
.navbar {
  display: flex;
  padding: 10px 20px;
  align-items: center;
  color: #fff;
  width: 100%;
  background: linear-gradient(to bottom, #0A1D37 , black);
}

/* Logo Image Styling */
.navbar img {
  width: 100px; /* Adjust width */
  height: auto; /* Maintain aspect ratio */
  margin-right: 10px; /* Add space between logo and text */
  position:absolute;
  left:0;
}





/* Logo Text Styling */
.logo-text {
  font-size: 24px; /* Adjust text size */
  margin-left: 5%;

}



/* Navbar styling */
header {
 
  background: var(--primary-color);

}

header .navbar {
  padding: 20px;
  max-width: 98%;
  
}

.navbar .nav-logo .logo-text {
  color: var(--white-color);
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-semibold);
}

.navbar .nav-menu {
  display: flex;
  gap: 10px;
  margin-left: auto; /* Pushes the menu to the right */
  justify-content: flex-end; /* Aligns the items within the menu to the right */
}

.navbar .nav-menu .nav-link {
  padding: 10px 18px;
  color: var(--white-color);
  font-size: var(--font-size-m);
  border-radius: var(--border-radius-m);
  transition: 0.3s ease;
}

.navbar .nav-menu .nav-link:hover {
  color: var(--primary-color);
  background: var(--secondary-color);
}

.navbar :where(#menu-open-button, #menu-close-button) {
  display: none;
  
}






@import url('https://fonts.googleapis.com/css?family=Roboto');
body{
   margin:0;
   padding:0;
   font-family: 'Roboto', sans-serif;
   position:relative;
   background-color:black;
}



.container{
   width:100%;
}
.container h1{
   font-size:50px
}
.about{
   padding:5% 0;
   width:100%;
   height:auto;
}


.about .left{
   padding:2% 0;
   float:left;
   width:50%;
   display:inline-block;
}
.about .right{
   width:50%;
   display:inline-block;

}
.about .right img{
   width:100%
   

   }
.about .left h1{
   text-align:center;
   color:white;
   margin:0 0 10px 0;
}
.about .left hr{
   width:20%;
   border-top:2px solid #000;
   border-bottom:none;
}
.about .left p{
   font-size:1rem;
   margin:40px auto;
   width:80%;
   color:white;

}

.mission{
   padding:5% 0;
   width:100%;
   height:auto;
}
.mission .right{
   padding:2% 0;
   width:50%;

   display:inline-block;
}
.mission .left{
   float:left;
   width:50%;

   display:inline-block;
}
.mission .left img{
   width:100%;
}
.mission .right h1{
   text-align:center;
   color:white;
   margin:0 0 20px 0;
}
.mission .right hr{
   width:35%;
   border-top:2px solid #000;
   border-bottom:none;
}
.mission .right p{
   font-size:1rem;
   margin:40px auto;
   color:white;
   width:80%;
}








/* media */
@media(max-width:1200px){
   .mission .right p{
      font-size:.8rem;
      margin:20px auto;
   }
   .about .left p{
      font-size:.8rem;
      margin:20px auto;
   }
}

.about .right img,
.mission .left img {
   width:100%;
   box-shadow: 0px 4px 20px rgba(0,0,0,0.7); /* Shadow effect */
   border-radius: var(--border-radius-s); /* Rounded corners */
}

 .underline {
     width: 50%; /* Width of line under heading */
     height: 2px; /* Height of line */
     background-color: var(--secondary-color); /* Line color */
     margin-bottom: 20px; /* Space below line */
 }
 






@media(max-width:992px){
   .about .left{
   width:100%; 
}
   .about .right{
   width:100%; 
}
      .mission .left{
   width:100%; 
}
   .mission .right{
   width:100%; 
}
   .team .card{ 
   width:40%;
}   
}

@media(max-width:768px){
      .team .card{ 
   width:100%;
} 
   nav{
      height:80px;
   }
}

