/*Importing Goggle Fonts */

*{
    margin:0;
    padding:0;
    box-sizing: border-box;
    font-family:'Lato', sans-serif;
    

}
:root{
 /*Colors */
    --blue: #007bff;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #dc3545;
     --light-yellow:#F79C00;
    --light-green:#00784a;
   --light-blue-two: #004586;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --gray: #6c757d;
    --gray-two:#494866;
    --gray-dark: #343a40;
    --primary: #007bff;
    --secondary: #6c757d;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
   --light-blue: #100d5c;
   --black:#212144;
   --min-white:#f5f5f5;
   --light-red:#ec020c;
     --red-two:#e70034;
       --light-black:#252525;
    --bg-color:#0A122B;
    --icon-bg:#2F2D4C;
    --icon-color:#69727D;
    --light-black:#252525;
    --black-two:#1C244B;


   /* Font-Family */
    --font-heading: 'Lato', sans-serif;
    --font-body: 'Lato', sans-serif;

    /* Font sizes in px */
    --font-size-t: 12px;   /* tiny text, captions, meta info */
    --font-size-s: 14px;   /* small text, nav links */
    --font-size-n: 16px;   /* normal body text */
    --font-size-m: 18px;   /* medium text */
    --font-size-1: 24px;   /* h3 or small section heading */
    --font-size-2: 28px;   /* h2 */
    --font-size-3: 32px;   /* h1 */
    --font-size-x1: 36px;  /* large h1 / hero */
    --font-size-xx1: 48px; /* extra large headings */

      /* Font weight */
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 900;


    /*Border radius*/
    --border-radius-s:8px;
    --border-radius-m:30px;
    --boder-radius-circle:50%;

    /*site max width */
    --site-max-width:1300px

}



/*Styling for the whole site*/
ul{
    list-style-type: none;
}

a{
    text-decoration: none;
}
button{
    cursor: pointer;
    border: none;
    background: none;
}
html{
    scroll-behavior: smooth;
}
.section-content{
    margin: 0 auto;
    padding: 0 30px;
    max-width: 1300px;
}

/*About Us Section */

.about-hero-section{
    background: url(../images/about-us-bg.jpg);
    background-repeat: no-repeat;
    min-height: 100vh;
    background-size: cover;
    position: relative;
    overflow: hidden;
}
.about-hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1; 
}

.about-hero-section .about-hero-section-text{
    position: absolute ;
    z-index: 2;
    transform: translate(-50%, 50%);
    color:var(--white);
   top: 50%;
   left: 50%;
   text-align: center;
   display: flex;
   flex-direction: column;
   gap: 25px;
}

.about-hero-section-text .about-hero-section-heading{
    font-family: var(--font-heading);
    font-size: var(--font-size-x1);
    font-weight: var(--font-weight-bold);
}


    /*Mission & Vission */
    .mission-vision{
        padding: 150px 0;
    }
    .mission-vision .section-content{
            display: flex;
        flex-direction: column;
        gap:20px;
        text-align: center;
        align-items: center;
    }

    .mission-text{
        display: flex;
        flex-direction: row ;
        gap: 10px;
        width: 55%;
        line-height: 30px;
    
    }
    .mission-vision .mission-heading{
        font-family: var(--font-heading);
        font-size: var(--font-size-x1);
        color: var(--light-blue);
    }
    .mission-vision .mission-text{
        font-family: var(--font-heading);
        font-size: var(--font-size-n);
        color: var(--light-blue);
    }

/*President Section Styling */
.president-section{
    padding: 120px 0;   
    background-color:#575D79; ;
    color: var(--white);
}
.president-image-wrapper {
    width: 450px;         
    height: 450px;
    flex-shrink: 0;
    border-radius: 50%;   
    overflow: hidden;     
    border: 4px solid #fff; 
}

.president-button {
  display: flex;
  margin-top: 50px;
}

.president-click {
     display: inline-block;
     padding: 20px 35px; 
     background-color:  var(--light-blue); 
     color: #fff; 
     text-decoration: none;
      border-radius: 4px; 
      font-size: var(--font-size-s);
       font-family: var(--font-body);
        transition: 0.3s ease;
}
.president-click:hover{
    background-color:var(--min-white);
    color: var(--green);
}

.president-image {
    width: 100%;
    height: 100%;
    object-fit: cover;     
    display: block;
}
.president-section .president-details{
    display: flex;
    gap: 100px;
}
.president-section .president-info-side .president-text-heading{
    font-family: var(--font-heading);
    font-size: var(--font-size-3);
}
.president-section .president-info-side .president-text-title{
    font-family: var(--font-heading);
    font-size: var(--font-size-m);

}

.president-section .president-text{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.president-section .president-info-side{
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-left: -50px;
}
.president-info-text{
    width: 100%;
    font-family: var(--font-body);
    font-size: var(--font-size-n);
    text-align: justify;
    line-height: 24px;
   
}
.president-divider{
    border: none;
    border-top: 2px solid #fff;
     width: 54%;
  
} 


 /*Executive Leadership */
 .leadership-section{
    padding: 100px 0;
    align-items: center;
    background-color: var(--min-white);
 }

.leadership-section .leadership-heading{
    text-align: center;
    align-items: center;
    font-family: var(--font-heading);
    font-size: var(--font-size-x1);
    color: var(--gray-two);
}
.leadership-section .leadership-heading::after{
        content: "";
        width: 350px;
        height: 4px;
        display: block;
        margin: 30px auto 0;
        border-radius: 8px ;
        background:var(--light-red);
    }
    .leadership-section .leadership-subtitle{
    text-align: center;
    align-items: center;
    font-family: var(--font-heading);
    font-size: var(--font-size-m);
    color: var(--gray);
    line-height: 34px;
    max-width: 60%;
}
.leadership{
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;  
}
.leadership-image-card{
    display:inline-flex;
    flex-wrap: wrap;
     gap:20px; 
    background-color: var(--white);
     padding: 50px;
     text-align: center;
    justify-content: space-between;

 }
 .leadership-image{
    width: 100%;
    height: auto;
 }
 .leadership-image-card .leadership-image-card-info{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    align-items: center;
    width: calc(100% / 4 - 20px);
    
    }
 .leadership-image-card .leadership-image-card-info .leadership-name{
   font-size: var(--font-size-n); 
   font-family: var(--font-heading);
   color: var(--light-blue);
   font-weight:var(--font-weight-bold);
}
 .leadership-image-card .leadership-image-card-info .leadership-mission-title{
   font-size: var(--font-size-t); 
   font-family: var(--font-heading);
   text-align: center;
   color: var(--light-blue);
}

/*Our Background & Strategy*/
.background-section{
     background-color: var(--min-white);
     padding: 120px;
}
.background-section .background-heading{
    font-size: var(--font-size-x1);
    font-family: var(--font-heading);
    color: var(--gray-two);
    display: inline-block;
}

.background-socials{
    display: flex;
    gap: 15px;  

}
.background-link{
     display: flex;              
    align-items: center;
    justify-content: center;
    width: 40px;            
    height: 40px;
    background-color: var(--icon-bg);
    color: var(--icon-color);
    border-radius: 50%;      
    text-decoration: none;
    font-size:var(--font-size-n); 
}
.background-social-links{
    display: flex;
    gap:20px;
  
}
.background-social-links :hover{
    background-color:  var(--red-two);
}
.background-card{
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
    text-align: center;
    
}  

.background-card .background-text{
    max-width: 68%;
    line-height: 34px;
    font-size: var(--font-size-m);
    color: var(--gray);
    font-family: var(--font-body);

}

/* Tablets and small laptops (1024px and down) */
@media screen and (max-width: 1024px) {
     .about-hero-section{
        min-height: 70vh;
    }
    .about-hero-section .about-hero-section-text{
        top: 30%;
        text-align: center;
        width: 100%;
       
    }
 .leadership-image-card{
        gap:5px;
     }
 .leadership-image-card .leadership-image-card-info{
    display: flex;
    width: calc(100% / 3 - 5px);

}

.president-section .president-text{
    max-width: 80%;
}
.president-section .president-details{
    gap: 30px;
}


/* Tablets and small laptops (900px and down) */
@media screen and (max-width: 900px) {
     .about-hero-section{
        min-height: 70vh;
    }
    .about-hero-section .about-hero-section-text{
        top: 30%;
        text-align: center;
        width: 100%;
       
    }
.president-section .president-text{
    max-width: 100%;
}
.president-section .president-details{
    gap: 20px;
    display: flex;
    align-items: center;
}

.leadership-image-card{
        gap:10px;
     }
 .leadership-image-card .leadership-image-card-info{
    display: flex;
    width: calc(100% / 2 - 10px);

}

   .president-section .president-details{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.president-divider{
    border: none;
    border-top: 2px solid #fff;
     width: 100%
 
} 
.president-section .president-info-side , .president-info-text,
.president-text {
    align-items: center;
    width: 100%;
    text-align: justify;
}
   
   .mission-text{
    width: 100%;
   }
   
   .background-section .section-content {
        max-width: 100%;    
        padding: 0 10px;    
        margin: 0;
    }
    .background-section .background-card .background-text {
        max-width: 100%;    
        line-height: 28px;  
}
  .background-section {
        padding: 60px 10px; 
    }
}

    /* Mobile landscape and small tablets (640px and down) */
@media screen and (max-width: 640px) {
  .about-hero-section{
        min-height: 50vh;
    }
    .about-hero-section .about-hero-section-text{
        top: 30%;
        text-align: center;
        width: 100%;
       
    }
    .mission-text{
        width: 100%;
        }
    .president-section .president-details{
    display: flex;
    flex-direction: column;
    width: 100%;
   
}
.president-section .president-text{
    max-width: 100%;
}
.leadership-image-card{
        gap:5px;
     }
 .leadership-image-card .leadership-image-card-info{
    display: flex;
    width: calc(100% / 1 - 5px);

}
  
}


/* Mobile portrait (480px and down) */
@media screen and (max-width: 480px){
 .about-hero-section{
        min-height: 40vh;
       
    }
    .about-hero-section .about-hero-section-text{
        top: 30%;
        text-align: center;
        width: 100%;
       
    }

}
}