@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');


*{
  margin: 0;
  padding: 0;
  text-decoration: none;
  font-family:'roboto';
  box-sizing:border-box;
  font-family: 'poppins';
 
 
  
  
}

/* utility section */
.biggest_container{
max-width: 1080vh;
margin-inline: auto;
padding-inline: 25px;


}
.flex{
  display: flex;
  
}
hr{
margin: 50px;
color: rgba(211, 211, 211, 0);

}
/* utility section ends here */

/*This is for navigation bar */

.navbar_main_container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  background-color: white;

}
.company_logo img {
  height: 55px;
  margin: 10px;
}

nav ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
}
nav ul li {
  position: relative;
  margin: 0 10px;
}
nav ul li a {
  text-decoration: none;
  padding: 5px;
  display: block;
  color: #333;
  font-size: 20px;
  font-weight: 500;
  transition: 0.2s ease-out;
  left:150px;
  
}
nav ul li a:hover {
  background-color: #00000025;
  border-radius: 4px;
}

.nav-tagel{
display: none
}

/* Dropdown menu */
.dropdown-menu {
display: none;
  position: absolute;
  background-color: #ffffff;
  box-shadow: 1px 2px 20px 0px rgb(0 0 0 / 18%);
  list-style-type: none;
  padding: 0;
  margin: 0;
  width: max-content;
 top: 25px;
  left: 0;
  border-radius: 4px;
 transition: 0.2s ease-out;
}

.dropdown-menu li a {
  padding: 6px 2px;
  color: #333;
  font-size: small;
  margin: 4px;
  transition: 0.2s ease-out;
  
}

.dropdown-menu li a:hover {
  background-color: #f0f0f0;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
  display: block;
}

/* Nested Dropdown Menu */
.dropdown-menu .dropdown-submenu {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  background-color: #fff;
  box-shadow: 1px 2px 20px 0px rgb(0 0 0 / 18%);
  width: max-content;
  border-radius: 4px;
  transition: 0.2s ease-out;
}

.dropdown-menu .dropdown-submenu li a {
  padding: 6px 2px;
  color: #333;
  font-size: small;
  transition: 0.2s ease-out;
}

.dropdown-menu .dropdown-submenu li a:hover {
  background-color: #f0f0f0;
}

/* Show nested dropdown on hover */
.dropdown-menu .dropdown-item:hover .dropdown-submenu {
  display: block;
}
.nav-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  padding: 10px;
  color: #333; /* Ensure visibility */
}
@media (max-width: 425px) {
  .company_logo img {
      height: 45px; /* Slightly smaller logo */
  }
  
  .nav-toggle {
      font-size: 20px;
      padding: 8px;
  }
  
  .nav-links ul li a {
      padding: 10px 15px;
      font-size: 15px;
  }
}

@media (max-width: 375px) {
  .nav-links ul li a {
      padding: 8px 12px;
  }
}

@media (max-width: 320px) {
  .company_logo img {
      height: 40px;
  }
  
  .nav-links ul li a {
      font-size: 14px;
  }
}
/* navigation bar ends here */









.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

/* Header Section */
.section-1 {
  display: flex;
  align-items: center;
  min-height: 80vh;
  padding: 4rem 0;
  background-color: #07070727;
  border-radius: 20px;
}

.content-section {
  flex: 1;
}

.content h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
}

.content p {
  font-size: 1.1rem;
  color: var(--dark);
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.image-23 {
  flex: 1;
  text-align: center;
}

.image-23 img {
  border-radius: 20px;
  max-width: 350px;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* Vision/Mission Section */
section {
  display: flex;

  flex-wrap: nowrap;
  margin-top: 15vh;
}

.about-item-center {
  margin: 30px auto;
  padding: 20px;
  border: 1px solid #ffffff;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.174);
  border-radius: 10px;
  transition: 0.2s ease;
  width: 32%;
}

.about-item-center i {
  font-size: 1.8em;
  margin-bottom: 10px;
  color: #9a0404;
}

.about-item-center h3 {
  margin: 10px 0;
  font-size: 30px;
}

.about-item-center hr {
  border: 0;
  height: 1px;
  background: #9eccf400;
  margin: 5px 0;
}

.about-item-center p {
  font-size: 15px;
  line-height: 1.6;
  font-family: 'roboto';
}

.about-item-center:hover {
  transform: translateY(-8px);
}






/* Style for the additional box */
/* Section Styling */
/* Section Styling */
.visionaries-section {
  padding: 10px 10px;
  background: #a7c1f463;
}



.section-heading {
  text-align: center;
  font-size: 2.5rem;
  color: #050505;
  margin-bottom: 20px;
  font-weight: 900;

}


/* Visionaries Container */
.visionaries-container {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: nowrap;
}

/* Individual Card */
.visionary-card {
  width: 100%;
  max-width: 500px;
  display: flex;
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;

}

.visionary-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.image-container {
  flex: 1;
  position: relative;
  min-height: 350px;
  overflow: hidden;
}

.visionary-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

}

.content {
  flex: 1;
  padding: 30px;
  display: flex;
  flex-direction: column;
}

.content h3 {
  font-size: 1.8rem;
  color: #2c3e50;
  margin-bottom: 5px;
}

.position {
  color: #9a0404;
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.divider {
  width: 50px;
  height: 3px;

  margin: 15px 0;
}

blockquote {
  font-style: 'bold';
  color: #555;
  line-height: 1.6;
  margin: 20px 0;
  padding-left: 15px;
  border-left: 3px solid #0c0c0c;

}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  color: #7f8c8d;
  transition: color 0.3s ease;
  font-size: 20px;
}

.social-links a:hover {
  color: #0b0b0b;
}

.visionaries-section {
  padding: 80px 40px;
  background: #000e1c0d;
}

.section-heading {
  font-size: 3.5rem;
  margin-bottom: 40px;
}

.visionaries-container {
  gap: 60px;
}

.visionary-card {
  max-width: 600px;
}

.image-container {
  min-height: 400px;
}

.content h3 {
  font-size: 2.2rem;
}

.position {
  font-size: 1.1rem;
}

blockquote {
  font-size: 1.3rem;
}

/* OR ADDRRESS SECTION*/

.contact-info {
  flex: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 10vh;
  text-align: center;
}

.office,
.works,
.business {
  flex: 1;
  min-width: 250px;
  font-size: 40px;
}

.contact-info h4 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #333;
}

.contact-info p {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
  margin: 0;
}







 /* this is for footer */
 .container5{
  max-width: 1170px;
  margin:auto;
  margin-top: 30px;
}
.row{
  display: flex;
  width: 100%;
margin: auto;
}
.cols{
  width: 100%;
  justify-content: space-evenly;
  display: flex;
}
ul{
  list-style: none;
}
.footer{
  background-color: rgba(246, 243, 243, 0.252);
  padding: 25px 0;
  
}
.footer-col{
  padding: 0 15px;
  background-color: rgba(245, 245, 245, 0.252);
}
.footer-col h4{
  font-size: 18px;
  color:  #000E1C;
  text-transform: capitalize;
  margin:35px 0px;
  font-weight: 500;
  position: relative;
}
.footer-col h4::before{
  position: absolute;
  left:0;
  bottom: -10px;
  height: 2px;
  box-sizing: border-box;
  width: 50px;
}
.footer-col ul li:not(:last-child){
margin-bottom: 9px;
}
.footer-col ul li a{
font-size: 16px;
text-transform: capitalize;
text-decoration: none;
font-weight: 300;
color: darkgray;
display: block;

}

.footer-col .allsocial-links a{
display: inline-block;
height: 40px;
width: 40px;
background-color: white;
margin:0 8px 8px 0;
text-align: center;
line-height: 40px;
border-radius: 50%;
color: black;
transition: all 0.5s ease;
}
.footer-col .allsocial-links a:hover{
  color: white;
  background-color: black;
  transition: 0.5s ease;
}
.footerlogo  {
  font-size: 25px;
  margin: 60px 1px 1px 1px;
  color:  #000E1C;
}
.footer h3{
  background-color: black;
  color: aliceblue;
  text-align: center;
  font-family: roboto;
}  
#home{
display: flex;
}
.footerlogo img{
height:70px;

}
.footerlogo p{
margin-top: -12px;
font-size: 10px;
font-family: roboto;
margin-left: 20px;
color: gray;
}


/* media Queries for 321px starts here */ 
@media only screen and (max-width: 321px) {
    .navbar_main_container {
        flex-direction: column;
        align-items: flex-start;
    }
  .imgcontainer{
    height: 50vh;
    margin-bottom: 120px;
  }
    .nav-links {
        display: none;
        width: 100%;
    }
  
    .nav-links.active {
        display: block;
    }
  
    .nav-toggle {
        display: block;
        position: absolute;
        top: 10px;
        right: 10px;
    }
  
    nav ul {
        flex-direction: column;
    }
  
    nav ul li {
        margin: 5px 0;
    }
  
    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
    }
  
    .dropdown-menu .dropdown-submenu {
        position: static;
        width: 100%;
    }
    .container {
      padding: 1rem;
    }
  
    .section-1 {
      flex-direction: column;
      min-height: auto;
      padding: 2rem 0;
    }
  
    .content h3 {
      font-size: 1.8rem;
    }
  
    .image-23 img {
      max-width: 250px;
    }
  
    section {
      flex-direction: column;
      margin-top: 5vh;
    }
  
    .about-item-center {
      width: 90%;
      margin: 15px auto;
    }
  
    .visionaries-container {
      flex-direction: column;
      gap: 30px;
    }
  
    .visionary-card {
      flex-direction: column;
      max-width: 100%;
    }
  
    .image-container {
      min-height: 250px;
    }
  
    .section-heading {
      font-size: 2rem;
    }
  
    .contact-info {
      flex-direction: column;
      gap: 20px;
    }
  
    .office, .works, .business {
      min-width: 100%;
    }
    .visionaries-section {
      padding: 30px 5px;
    }
  
    .section-heading {
      font-size: 1.8rem;
    }
  
    .image-container {
      min-height: 200px;
    }
  
    .content h3 {
      font-size: 1.4rem;
    }
  
    .social-links a {
      font-size: 18px;
    }
        .row {
          
            align-items: center; /* Center align items */
        }
      
        .cols {
            flex-direction: column; /* Stack columns vertically */
            align-items: center; /* Center align items */
        }
      
        .footer-col {
            padding: 10px 0; /* Adjust padding for mobile */
            text-align: center; /* Center align text */
        }
      
        .footer-col h4 {
            margin: 20px 0; /* Adjust margin for mobile */
        }
      
        .footer-col h4::before {
            left: 50%; /* Center underline */
            transform: translateX(-50%);
        }
      
        .footer-col ul li a {
            font-size: 14px; /* Adjust font size for mobile */
        }
      
        .footer-col .allsocial-links a {
            margin: 0 5px; /* Adjust margin for mobile */
        }
      
        .footerlogo img {
            height: 45px; /* Adjust logo size for mobile */
        }
      
        .footerlogo p {
            font-size: 9px; /* Adjust font size for mobile */
            margin-left: 0; /* Remove left margin */
        }
      }
      /* media Queries for 321px starts here */ 
  
      /* media Queries for 320 to 377px starts here */ 
  
      @media only screen and (min-width: 321px) and (max-width: 377px) {
        .navbar_main_container {
          flex-direction: vertical; /* Stack items vertically */
          align-items: flex-start; /* Align items to the start */
        }
      
        .imgcontainer {
          height: 50vh; /* Set container height to 50% of viewport height */
          margin-bottom: 120px; /* Add margin at the bottom */
        }
      
        .nav-links {
          display: none; /* Hide nav links by default */
          width: 100%; /* Full width for mobile */
        }
      
        .nav-links.active {
          display: block; /* Show nav links when active */
        }
      
        .nav-toggle {
          display: block; /* Show toggle button */
          position: absolute; /* Position toggle button */
          top: 10px; /* Distance from the top */
          right: 10px; /* Distance from the right */
        }
      
        nav ul {
          flex-direction: column; /* Stack list items vertically */
        }
      
        nav ul li {
          margin: 5px 0; /* Add margin between list items */
        }
      
        .dropdown-menu {
          position: static; /* Reset position for dropdown */
          width: 100%; /* Full width for mobile */
          box-shadow: none; /* Remove shadow for simplicity */
        }
      
        .dropdown-menu .dropdown-submenu {
          position: static; /* Reset position for submenu */
          width: 100%; /* Full width for mobile */
        }
        .container {
          padding: 1rem;
        }
      
        .section-1 {
          flex-direction: column;
          min-height: auto;
          padding: 2rem 0;
        }
      
        .content h3 {
          font-size: 1.8rem;
        }
      
        .image-23 img {
          max-width: 250px;
        }
      
        section {
          flex-direction: column;
          margin-top: 5vh;
        }
      
        .about-item-center {
          width: 90%;
          margin: 15px auto;
        }
      
        .visionaries-container {
          flex-direction: column;
          gap: 30px;
        }
      
        .visionary-card {
          flex-direction: column;
          max-width: 100%;
        }
      
        .image-container {
          min-height: 250px;
        }
      
        .section-heading {
          font-size: 2rem;
        }
      
        .contact-info {
          flex-direction: column;
          gap: 20px;
        }
      
        .office, .works, .business {
          min-width: 100%;
  }
  .section-heading {
    font-size: 2rem;
  }

  .content {
    padding: 20px;
  }

  .content h3 {
    font-size: 1.6rem;
  }

  .position {
    font-size: 0.8rem;
  } 
    .row {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-around;
        align-items: flex-start;
        gap: 15px;
    }

    .cols {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }

    .footer-col {
        width: 45%; /* Two columns */
        min-height: 200px; /* Equal minimum height */
        padding: 10px 5px;
        margin-bottom: 15px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-col h4 {
        margin: 10px 0;
        font-size: 16px;
        white-space: nowrap;
        width: 100%;
    }

    .footer-col h4::before {
        left: 50%;
        transform: translateX(-50%);
        bottom: -5px;
    }

    .footer-col ul {
        margin-top: 5px;
        width: 100%;
    }

    .footer-col ul li {
        margin: 8px 0;
    }

    .footer-col ul li a {
        font-size: 12px;
    }

    .footer-col .allsocial-links {
        margin-top: auto;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }

    .footerlogo {
        width: 100%;
        margin: 20px 0 10px;
        order: 1;
    }

    .footerlogo img {
        height: 50px;
    }

    .footerlogo p {
        font-size: 9px;
        margin: 5px 0 0;
        text-align: center;
    }
}
        
        /* media Queries for 320 to 377px END----here */ 
  
        /* media Queries for 377 to 426px starts here */ 
        @media only screen and (min-width: 377px) and (max-width: 427px) {
            .navbar_main_container {
              flex-direction: column; /* Stack items vertically */
              align-items: flex-start; /* Align items to the start */
            }
          
            .imgcontainer {
              height: 50vh; /* Set container height to 50% of viewport height */
              margin-bottom: 120px; /* Add margin at the bottom */
            }
          
            .nav-links {
              display: none; /* Hide nav links by default */
              width: 100%; /* Full width for mobile */
            }
          
            .nav-links.active {
              display: block; /* Show nav links when active */
            }
            
            .nav-toggle {
              display: block; /* Show toggle button */
              position: absolute; /* Position toggle button */
              top: 10px; /* Distance from the top */
              right: 10px; /* Distance from the right */
            }
          
            nav ul {
              flex-direction: column; /* Stack list items vertically */
            }
          
            nav ul li {
              margin: 5px 0; /* Add margin between list items */
            }
            
            .dropdown-menu {
              position: static; /* Reset position for dropdown */
              width: 100%; /* Full width for mobile */
              box-shadow: none; /* Remove shadow for simplicity */
            }
          
            .dropdown-menu .dropdown-submenu {
              position: static; /* Reset position for submenu */
              width: 100%; /* Full width for mobile */
            }
            .container {
              padding: 1rem;
            }
          
            .section-1 {
              flex-direction: column;
              min-height: auto;
              padding: 2rem 0;
            }
          
            .content h3 {
              font-size: 1.8rem;
            }
          
            .image-23 img {
              max-width: 250px;
            }
          
            section {
              flex-direction: column;
              margin-top: 5vh;
            }
          
            .about-item-center {
              width: 90%;
              margin: 15px auto;
            }
           
            .visionaries-container {
              flex-direction: column;
              gap: 25px; /* Slightly reduced gap for compact view */
            }
          
            /* Visionary Card */
            .visionary-card {
              flex-direction: column;
              max-width: 95%; /* 5% smaller than full width for breathing room */
              margin: 0 auto; /* Center align */
            }
          
            /* Image Container */
            .image-container {
              min-height: 230px; /* Between 200px (mobile) and 250px (tablet) */
            }
          
            /* Section Heading */
            .section-heading {
              font-size: 2rem; /* Larger than 1.8rem for better readability */
              margin-bottom: 1.5rem;
            }
          
            /* Contact Info */
            .contact-info {
              flex-direction: column;
              gap: 15px; /* Tighter spacing */
              padding: 20px 10px;
            }
          
            /* Office/Works/Business Blocks */
            .office, .works, .business {
              min-width: 90%; /* Slightly inset */
              margin: 0 auto;
            }
          
            /* Visionaries Section Padding */
            .visionaries-section {
              padding: 40px 10px; /* More vertical padding */
            }
          
            /* Content Headings */
            .content h3 {
              font-size: 1.5rem; /* Balanced between mobile and tablet */
              margin-bottom: 0.8rem;
            }
          
            /* Social Links */
            .social-links a {
              font-size: 20px; /* Slightly larger touch targets */
              margin: 0 8px;
            }        
            .row {
                align-items: center; /* Center align items */
              }
            
              .cols {
                flex-direction: column; /* Stack columns vertically */
                align-items: center; /* Center align items */
              }
            
              .footer-col {
                padding: 10px 0; /* Adjust padding for mobile */
                text-align: center; /* Center align text */
              }
            
              .footer-col h4 {
                margin: 20px 0; /* Adjust margin for mobile */
              }
            
              .footer-col h4::before {
                left: 50%; /* Center underline */
                transform: translateX(-50%);
              }
            
              .footer-col ul li a {
                font-size: 14px; /* Adjust font size for mobile */
              }
            
              .footer-col .allsocial-links a {
                margin: 0 5px; /* Adjust margin for mobile */
              }
            
              .footerlogo img {
                height: 45px; /* Adjust logo size for mobile */
              }
            
              .footerlogo p {
                font-size: 9px; /* Adjust font size for mobile */
                margin-left: 0; /* Remove left margin */
              }
            }
            /* media Queries for 377 to 426px END--here */ 
  
  
           /* media Queries for 426px to 768px starts--here */ 
            @media only screen and (min-width: 426px) and (max-width: 768px) {
                .navbar_main_container {
                    flex-direction: column; /* Stack items vertically */
                    align-items: flex-start; /* Align items to the start */
                  }
                
                  .imgcontainer {
                    height: 50vh; /* Set container height to 50% of viewport height */
                    margin-bottom: 120px; /* Add margin at the bottom */
                  }
                
                  .nav-links {
                    display: none; /* Hide nav links by default */
                    width: 100%; /* Full width for mobile */
                  }
                
                  .nav-links.active {
                    display: block; /* Show nav links when active */
                  }
                  
                  .nav-toggle {
                    display: block; /* Show toggle button */
                    position: absolute; /* Position toggle button */
                    top: 10px; /* Distance from the top */
                    right: 10px; /* Distance from the right */
                  }
                
                  nav ul {
                    flex-direction: column; /* Stack list items vertically */
                  }
                
                  nav ul li {
                    margin: 5px 0; /* Add margin between list items */
                  }
                  
                  .dropdown-menu {
                    position: static; /* Reset position for dropdown */
                    width: 100%; /* Full width for mobile */
                    box-shadow: none; /* Remove shadow for simplicity */
                  }
                
                  .dropdown-menu .dropdown-submenu {
                    position: static; /* Reset position for submenu */
                    width: 100%; /* Full width for mobile */
                  }
                  .container {
                    padding: 1.5rem;
                  }
                
                  .section-1 {
                    flex-direction: column;
                    text-align: center;
                  }
                
                  section {
                    flex-wrap: wrap;
                  }
                
                  .about-item-center {
                    width: 45%;
                  }
                
                  .visionaries-container {
                    flex-wrap: wrap;
                  }
                
                  .visionary-card {
                    max-width: 100%;
                  }
      
                  .row {
                      align-items: center; /* Center align items */
                    }
                  
                    .cols {
                      flex-direction: column; /* Stack columns vertically */
                      align-items: center; /* Center align items */
                    }
                  
                    .footer-col {
                      padding: 10px 0; /* Adjust padding for mobile */
                      text-align: center; /* Center align text */
                    }
                  
                    .footer-col h4 {
                      margin: 20px 0; /* Adjust margin for mobile */
                    }
                  
                    .footer-col h4::before {
                      left: 50%; /* Center underline */
                      transform: translateX(-50%);
                    }
                  
                    .footer-col ul li a {
                      font-size: 14px; /* Adjust font size for mobile */
                    }
                  
                    .footer-col .allsocial-links a {
                      margin: 0 5px; /* Adjust margin for mobile */
                    }
                  
                    .footerlogo img {
                      height: 45px; /* Adjust logo size for mobile */
                    }
                  
                    .footerlogo p {
                      font-size: 9px; /* Adjust font size for mobile */
                      margin-left: 0; /* Remove left margin */
                    }
                  }
                    /* media Queries for 423px to 768px END--here */            
  
  
        /* media Queries for 426 to 768px END--here */ 
  
         /* media Queries for 768 to 1023px starts--here */ 
    @media only screen and (min-width: 768px) and (max-width: 1024px) {
        .navbar_main_container {
          flex-direction: row; /* Align items horizontally */
          align-items: center; /* Center align items vertically */
        }
      
        .nav-links {
          display: flex; /* Display the navigation links */
        }
      
        .nav-toggle {
          display: none; /* Hide the toggle button */
        }
      
        nav ul {
          flex-direction: row; /* Align list items horizontally */
        }
      
        nav ul li {
          margin: 0 10px; /* Add margin between list items */
        }
        nav ul li a {
          font-size: small;
        }
        .container {
          padding: 1.5rem;
        }
      
        .section-1 {
          flex-direction: column;
          text-align: center;
        }
      
        section {
          flex-wrap: wrap;
        }
      
        .about-item-center {
          width: 45%;
        }
      
        .visionaries-container {
          flex-wrap: wrap;
        }
      
        .visionary-card {
          max-width: 100%;
        }
      .row {
        flex-wrap: wrap; /* Allow wrapping of columns */
      }
    
      .cols {
        flex: 1 1 50%; /* Two columns per row */
      }
    
      .footer-col {
        padding: 10px; /* Adjust padding for tablet */
      }
    
      .footer-col h4 {
        margin: 25px 0; /* Adjust margin for tablet */
      }
    
      .footer-col ul li a {
        font-size: 15px; /* Adjust font size for tablet */
      }
    
      .footer-col .allsocial-links a {
        margin: 0 6px; /* Adjust margin for tablet */
      }
    
      .footerlogo img {
        height: 60px; /* Adjust logo size for tablet */
      }
    
      .footerlogo p {
        font-size: 10px; /* Adjust font size for tablet */
      }
     
    }

     /* media Queries for 768 to 1023px end--here */ 
  
       /* media Queries for 1023 to 1440px starts--here */ 
    @media only screen and (min-width: 1023px) and (max-width: 1440px) {
        .navbar_main_container {
          flex-direction: row; /* Align items horizontally */
          align-items: center; /* Center align items vertically */
        }
      
        .nav-links {
          display: flex; /* Display the navigation links */
        }
      
        .nav-toggle {
          display: none; /* Hide the toggle button */
        }
      
        nav ul {
          flex-direction: row; /* Align list items horizontally */
        }
      
        nav ul li {
          margin: 0 10px; /* Add margin between list items */
        }
      
      .imgcontainer {
        height: 85vh; /* Adjusted for larger screens */
      }
      nav ul li a {
        font-size: medium;
      }
      .container {
        max-width: 1100px;
      }
        .row {
          flex-wrap: wrap; /* Allow wrapping of columns */
        }
      
        .cols {
          flex: 1 1 50%; /* Two columns per row */
        }
      
        .footer-col {
          padding: 10px; /* Adjust padding for tablet */
        }
       
        .footer-col h4 {
          margin: 25px 0; /* Adjust margin for tablet */
          font-size: 30px;
        }
      
        .footer-col ul li a {
          font-size: 22px; /* Adjust font size for tablet */
        }
      
        .footer-col .allsocial-links a {
          margin: 0 6px; /* Adjust margin for tablet */
        }
      
        .footerlogo img {
          height: 70px; /* Adjust logo size for tablet */
        }
      
        .footerlogo p {
          font-size: 10px; /* Adjust font size for tablet */
        }
        
        
      }
      /* media Queries for 1023 to 1440px ends--here */ 
  
   /* media Queries for 1441 to 2560px starts--here */ 
      @media (min-width: 1441px) and (max-width: 2560px) {
  
        .navbar_main_container {
            flex-direction: row; /* Align items horizontally */
            align-items: center; /* Center align items vertically */
          }
        
          .nav-links {
            display: flex; /* Display the navigation links */
          }
        
          .nav-toggle {
            display: none; /* Hide the toggle button */
          }
        
          nav ul {
            flex-direction: row; /* Align list items horizontally */
          }
        
          nav ul li {
            margin: 0 10px; /* Add margin between list items */
          }
        
        .imgcontainer {
          height: 85vh; /* Adjusted for larger screens */
        }
        nav ul li a {
          font-size: medium;
        }
    
     
        .row {
            flex-wrap: wrap; /* Allow wrapping of columns */
          }
        
          .cols {
            flex: 1 1 50%; /* Two columns per row */
          }
        
          .footer-col {
            padding: 10px; /* Adjust padding for tablet */
          }
        
          .footer-col h4 {
            margin: 25px 0; /* Adjust margin for tablet */
            font-size: 30px;
          }
        
          .footer-col ul li a {
            font-size: 22px; /* Adjust font size for tablet */
          }
        
          .footer-col .allsocial-links a {
            margin: 0 6px; /* Adjust margin for tablet */
          }
        
          .footerlogo img {
            height: 70px; /* Adjust logo size for tablet */
          }
        
          .footerlogo p {
            font-size: 10px; /* Adjust font size for tablet */
          }
          .benefit-box {
            background-color: #f8f9fa;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            padding: 25px;
            width: calc(30% - -16px);
            min-width: 223px;
            transition: transform 0.3s ease;}
          
        }
        /* media Queries for 1441 to 2560px starts--here */ 
  
        /* media Queries for 2560 to 4k starts--here */ 
        @media screen and (min-width: 2560px) {
        .navbar_main_container {
            flex-direction: row; /* Align items horizontally */
            align-items: center; /* Center align items vertically */
          }
        
          .nav-links {
            display: flex; /* Display the navigation links */
          }
        
          .nav-toggle {
            display: none; /* Hide the toggle button */
          }
        
          nav ul {
            flex-direction: row; /* Align list items horizontally */
          }
        
          nav ul li {
            margin: 0 10px; /* Add margin between list items */
          }
        
         
        
          nav ul li a {
            font-size: large; /* Set font size for navigation links */
          }
         
          .container {
            max-width: 1800px;
          }
        
          .content h3 {
            font-size: 3.5rem;
          }
        
          .content p {
            font-size: 1.5rem;
          }
        
          .about-item-center h3 {
            font-size: 2.5rem;
          }
        
          .about-item-center p {
            font-size: 1.2rem;
          }
        
          .section-heading {
            font-size: 4rem;
          }
        
          .visionary-image {
            min-height: 500px;
          }
        
          .contact-info p {
            font-size: 1.3rem;
          }
        .row {
            flex-wrap: wrap; /* Allow wrapping of columns */
          }
        
          .cols {
            flex: 1 1 50%; /* Two columns per row */
          }
        
          .footer-col {
            padding: 30px; /* Increase padding for larger screens */
          }
        
          .footer-col h4 {
            margin: 35px 0; /* Increase margin for larger screens */
            font-size: 50px; /* Increase font size for larger screens */
          }
        
          .footer-col ul li a {
            font-size: 38px; /* Increase font size for larger screens */
          }
        
          .footer-col .allsocial-links a {
            margin: 10px 10px; /* Increase margin for larger screens */
           
          }
        
          .footerlogo img {
            height: 100px; /* Increase logo size for larger screens */
          }
        
          .footerlogo p {
            font-size: 16px; /* Increase font size for larger screens */
          }
    }
  
  
  