*{
    margin: 0;
    padding: 0;
    
}

/* NAVIGATION BAR STYLES MANAUL CODE 782010*/

:root{
    --primary-color: #20183b;
    --primaryhover: #007bef;
    --test: red;

}

nav{
    background-color: #fffdfd;
    color: white;
    zoom: 80%;

    height: 80px;


    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.logo1{
    width: 50px;
    margin: 0px;

    position: relative;
    top:15px;
    left: 20px;
}

.logotitle1{
    width: 200px;
    margin: 0px;

    position: relative;
    top: 12px;
    left: 20px;
   
}

.nav-links{
    float: right;
    margin-right: 30px;
    margin-top: 0px;
    background-color: transparent;
    height: auto;

    width: 160px;
    
    text-align: center;

    position: relative;
    bottom: 30px;

}

.nav-links a{
    text-decoration: none;
    color: var(--primary-color);

    font-size: 30px;
}

.nav-links a:hover{
    color: var(--primaryhover);

    
    
    transition: 0.4s;
}



.about-header{

    display: block;
    width: 100%;
    /* width: 330px; */
   
   
    /*background-color: blue;; */
    
    text-align: center;

    margin-top: 50px;   

    font-size: 20px;

    color: var(--primary-color);

    font-weight: bold;

    

   
    
}



/* .aboutus-para-container{
    text-align: center;
    align-items: center;
    margin-top: 40px;
    margin: 60px;
}

.aboutus-para{
    text-align: center;
    font-size: 20px;
    word-spacing: 2px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
} */


.aboutus-para-container {
  max-width: 900px;
  margin: 60px auto;
  padding: 35px 40px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.aboutus-para {
    font-family: Arial, Helvetica, sans-serif;
  padding-left: 22px;   /* bullet spacing */
  margin: 0;
}

.aboutus-para li {
  margin-bottom: 18px;
  font-size: 18px;      /* BIGGER text */
  line-height: 1.9;    /* easier reading */
  color: #222;
}

/* Highlight important names */
.aboutus-para strong {
  color: black;
  font-weight: 600;
}

.aboutus-graphic{
    display: block;
    margin: auto;
    margin-top: 40px;
    width: 50px;
    height: auto;
    position: relative;
    bottom: 30px;
    

}



/* Mobile friendly */
@media (max-width: 600px) {
  .aboutus-para-container {
    padding: 25px;
  }

  .aboutus-para li {
    font-size: 16px;
    line-height: 1.8;
  }
}


.about-team{
    text-align: center;
    font-size: 40px;
    color: var(--primary-color);
    font-weight: bold;

    margin-top: 60px;
    font-family: Arial, Helvetica, sans-serif;
}

/* test */


.team-members {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  margin: 50px auto;
}

.member-card {
  background: #ffffff;
  width: 240px;
  padding: 20px 18px;          /* reduced padding */
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.member-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
}

/* Smaller circular photo */
.member-photo {
  width: 90px;                 /* reduced size */
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #e8f0fe;
  margin-bottom: 10px;
}

/* Name */
.member-card h3 {
  font-size: 18px;             /* slightly smaller */
  margin: 6px 0 4px;
  color: #222;
}

/* Role */
.member-card p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

/* Mobile */
@media (max-width: 600px) {
  .member-card {
    width: 100%;
    max-width: 300px;
  }
}

body{
    cursor: default;
}

/* FOOTER STYLES */

.footer{
    background-color: white;
    height: 40px;
    width: 100%;

    margin-top: auto;
    text-align: center;
    color: white;

    position: fixed;
    bottom: 0;
    left: 0;
    ;
    box-shadow: 4px 0px 10px rgba(0, 0, 0, 0.1);

 
}


.nav-logoimg-footer{

    float: left;

}

.logo1-footer {
    width: 40px;
}

 .logotitle1-footer{
    width: 150px;
    position: relative;
    bottom: 4px;
 }

 .signature{
    float: right;
    color: black;

    position: relative;
    bottom: -10px;
    margin-right: 20px;
 }


 @media (max-width: 440px) {  

    body{

        zoom: 80%;
   
    }

    nav{
        zoom: 70px;
    }

    .btn-about{
        zoom: 80%;
        right: 20px !important;
    }
 
 .aboutus-para li{
    zoom:110%;
 }


 }


 .btn-about{
    margin-top: 10px;
    font-size: 20px ;
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;

    

    position: fixed;
    bottom: 60px;
    right: 20px !important;

}

.btn-about:hover{
    background-color: var(--primaryhover);
    transition: 0.4s;
}

