* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Sora', sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    background: white;
}

.nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: white;
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    z-index: 1000;
}


    .logo {
        text-decoration: none;
        display: flex; /* Ensure proper alignment with other elements if needed */
    }
    

.logo-img {
    height: 60px; /* Adjust the height as needed */
    width: auto; /* Maintain aspect ratio */
    display: block; /* Ensures proper alignment */
}

.hero {
    height: 100vh; /* Full viewport height */
    background: url(building.jpg) no-repeat center center; /* Image as background */
    background-size: cover; /* Ensures image fills the entire space */
    display: flex; /* Aligns child elements */
    align-items: center; /* Centers vertically */
    justify-content: center; /* Centers horizontally */
    padding: 0 4rem; /* Add padding around content */
    position: relative; /* To allow child elements to position inside */
}

.hero-content {
    max-width: 600px;
    color: white;
    background: rgba(0, 40, 104, 0.9); /* Semi-transparent blue background */
    padding: 3rem;
    text-align: center; /* Center align text */
    position: relative; /* Keeps content positioned properly */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); /* Optional: Adds shadow to blue box */
}
/* Style for icons inside headings */
h2 i {
    color: #002868; /* Matches your theme color */
    margin-right: 0.5rem; /* Adds space between icon and text */
}

/* Style for icons inside stats */
.stat i {
    font-size: 2rem; /* Larger icons for stats */
    color: #bf0a30; /* Matches your theme */
    margin-right: 0.5rem; /* Adds space between icon and number */
    vertical-align: middle; /* Aligns icon with text */
}

/* Optional: Center-align stats */
.stat {
    display: flex;
    align-items: center; /* Vertical alignment */
    justify-content: center; /* Horizontal alignment */
    gap: 0.5rem; /* Adds space between icon and text */
}

.section {
    padding: 8rem 4rem;
}

.section-dark {
    background-color: #1E2A5A;
    color: white;
}

.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 4rem;
}

.team-member {
    background: white;
    padding: 70px 0;
    text-align: center;
    
}
.team-member p{
  margin-bottom: 0px !important;
}

.vision-section {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Equal width for vision text and stats */
    align-items: center;
    gap: 100px; /* Large gap between columns */
    padding: 80px 100px; /* Generous padding around the section */
  }
  
  .vision-content {
    text-align: left;
    padding-right: 40px; /* Space between text and stats */
  }
  
  .vision-content h2 {
    font-size: 2.5em; /* Slightly smaller heading */
    color: #002f6c;
    margin-bottom: 30px; /* Space below heading */
  }
  
  .vision-content p {
    font-size: 25px; /* Same font size as stats description */
    color: #444;
    line-height: 1.5; /* Increased line spacing for readability */
    
  }
  
  .stats {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Space between stat items */
    padding-left: 40px; /* Space between stats and vision text */
  }
  
  .stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    border-bottom: #cccccc 1px solid;
    padding-bottom: 30px;
  }
  
  .stat-item h3 {
    font-size: 80px; /* Same size as vision text for uniformity */
    margin: 0;
    color: #d50000;
    
  }
  
  .stat-item p {
    font-size: 1.2em; /* Same size as vision text */
    color: #444;
    margin: 0;
    
  }

  .footer{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    padding: 50px 100px;
  }
  .footer-logo{
    width: 180px;
  }
  .sec-1 p{
    font-size: 14px;
  }
  .foot-desc{
    padding-top: 10px;
    font-size: 14px;
  }
  .sec-1 h3{
    font-size: 18px;
  }
  .sec-2 h3{
    font-size: 18px;
  }
  .sec-3 h3{
    font-size: 18px;
  }
  .sec-2 p{
    font-size: 14px;
  }
  .sec-3 p{
    font-size: 14px;
  }
  .sec-2 i {
    font-size: 25px;
    margin-right: 5px;
    color: #333;
  }
  .sec-2{
    padding-top: 21%;
  }
  .sec-4{
    padding-top: 13%;
  }

  .copyright{
    text-align: center;
    border-top: #b3b3b3 1px solid;
    padding-top: 15px;
  }
  .copyright p{
    font-size: 14px;
  }

  
  /* Responsive Design */
  @media (max-width: 768px) {
    .vision-section {
      grid-template-columns: 1fr; /* Stack items */
      /* text-align: center; */
      padding: 40px 20px; /* Adjust padding for smaller screens */
      flex-direction: column;
    }
  
    .stats {
      align-items: center;
      padding-left: 0px;
    }
  
    .vision-content h2 {
      font-size: 2em; /* Adjust heading size for mobile */
    }
  
    .vision-content p{
      font-size: 1em; /* Adjust font size for mobile readability */
    }
    .stat-item h3{
      font-size: 70px;
    }
    .stat-item p{
      font-size: 1em;
      color: #444;
    }
    .vision-content, .stats {
      max-width: 100%;
    }

    .footer{
      grid-template-columns: 1fr;
      text-align: center;
      padding: 40px 20px;
    }
    .sec-4 iframe{
      width: 300px;
    }
    .sec-2{
      padding-top: 0px;
    }
    .sec-4{
      padding-top: 0px;
    }
  }



h1 {
    font-size: 3.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: #1E2A5A;
}

.section-dark h2 {
    color: white;
}

h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #1E2A5A;
}

p {
    margin-bottom: 1.5rem;
    font-weight: 300;
    font-size: 1.1rem;
}

.title {
    color: #bf0a30;
    font-weight: 400;
    font-size: 1rem;
}

.stat {
    font-size: 3rem;
    font-weight: 500;
    color: #bf0a30;
    margin-bottom: 1rem;
}





@media (max-width: 768px) {
    .grid {
        grid-template-columns: 1fr;
    }
    
    .nav {
        padding: 1rem 2rem;
    }
    
    .section {
        padding: 4rem 2rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
}