
body {
    margin: 0;
    font-family: Arial, sans-serif;
    overflow-x: hidden;
    /* Prevent horizontal scrollbars */
    background-color: rgb(211, 209, 209);
}

.navbar {
    background-color: transparent;
    /* Initially transparent */
    color: #000000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    /* Ensure navbar is on top */
    transition: background-color 0.3s;
    /* Smooth color transition */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    /* Add shadow for depth */
}

.navbar.fixed {
    background-color: rgb(244, 126, 0);
    /* Change to orange on scroll */
}

.navbar img {
    height: 40px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo span {
    font-weight: bold;
    font-size: 20px;
    margin-left: 10px;
    white-space: nowrap;
    /* Prevent line break */
}

.menu {
    list-style-type: none;
    margin: 0 5%;
    padding: 0;
    display: flex;
}

.menu li {
    margin-right: 20px;
}

.menu li:last-child {
    margin-right: 0;
    /* Remove margin for the last menu item */
}

.menu a {
    color: #000000;
    text-decoration: none;
    font-size: 16px;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.menu a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Hamburger Menu Styles */
.menu-icon {
    display: none;
    cursor: pointer;
}

.menu-icon div {
    width: 25px;
    height: 3px;
    background-color: #000000;
    margin: 5px;
    transition: all 0.3s ease;
}

.container {
    max-width: 100%;
    margin: 5% auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
    text-align: center;
    color: #333;
}

.about-content {
    margin-top: 30px;
}

.about-content p {
    padding: 0 10%;
    line-height: 1.6;
    color: #666;
}

.about-content img {
    display: block;
    margin: 0 auto;
    margin-bottom: 20px;
    max-width: 80%;
    height: auto;
}

.section {
    display: flex;
    justify-content: space-around;
    align-items: stretch;
    flex-wrap: wrap;
    margin-top: 40px;
}

.card {
    background-color: #fff;
    width: calc(25.33% - 20px);
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.card img {
    width: 100%;
    height: auto;
    display: block;
    flex: 1;
}

.card h1 {
    text-align: center;
    margin: 20px 0;
    color: #333;
}

.card p {
    padding: 0 20px;
    color: #666;
    line-height: 1.6;
}


.photo{
    max-width: 100%;

}

.photo img{
    width: 100%;
    
    max-height: 10%;
}


.value{

    max-width: 100%;
    margin: 5% auto 0;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.value h1 {
    color:rgb(35, 26, 119);
    text-align: center;
    color: #333;
}

.value .about-content {
    margin-top: 30px;
}

.value .about-content p {
    padding: 0 10%;
    line-height: 1.6;
    color: #666;
}

.value .about-content img {
    display: block;
    margin: 0 auto;
    margin-bottom: 20px;
    max-width: 100%;
    height: auto;
}


h2{
    text-align: center;
    text-decoration: underline;
    font-size: 1.8rem;
    color:  rgb(35, 26, 119);

}

.value p{
    text-align: center;
    font-weight:2px;
    font-size: 2rem;
}




/* General styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0; /* Background color */
}

/* Container for bars */
.bars-container {
    /* Adjust as needed */
    margin: 20px auto ;
    padding: 15px 20px;
}

/* Individual bar styles */
.bar {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    background-color: #fff; /* Background color */
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Box shadow for depth */
    transition: transform 0.3s ease; /* Smooth transition on hover */
}

/* Hover effect */
.bar:hover {
    transform: translateY(-3px); /* Move bar up slightly on hover */
}

/* Icon style */
.icon {
    flex: 0 0 auto; /* Prevent icon from stretching */
    padding: 10px;
}

/* Icon styling */
.icon img {
    width: 80px;
    height: 80px;
   
}

/* Text style */
.text {
    flex: 1; /* Take remaining space */
    padding: 10px;
    color: #333; /* Text color */
    font-size: 1.5rem; /* Text size */
}
.inner { 
    display: flex;
    align-items: center;
    border: 2px solid rgb(181, 181, 181); 
    margin: 10px;
    width: 100%;
    height: 100%; 
    box-sizing: border-box; 
    border-radius: 5px;
    padding: 1rem; 
} 
.bar .inner:hover{
    
    border: 2px solid rgb(244, 126, 0);
}




.footer {
    background-color: orange;
    color: #000000;
    padding: 30px 0;
    text-align: center;
  }
  
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .footer-section {
    flex: 1;
    margin-bottom: 20px;
  }
  
  .footer-section h3 {
    margin-bottom: 10px;
  }

  
li a{
    color: #000000;
}
  
  ul {
    list-style: none;
    padding: 0;
  }
  
  ul li {
    margin-bottom: 5px;
  }
  
  ul.social-icons li {
    display: inline;
    margin-right: 10px;
    color: #000000;
  }
  
  ul.social-icons li:last-child {
    margin-right: 0;
  }
  
  .footer-bottom {
    margin-top: 20px;
  }
  
  /* Responsive styles */
  @media screen and (max-width: 768px) {
    .footer-content {
      flex-direction: column;
    }
  
    .footer-section {
      margin-bottom: 15px;
    }
  }
  
  @media screen and (max-width: 576px) {
    .footer {
      padding: 20px 0;
    }
  
    .footer-section {
      flex-basis: 100%;
    }
  }
  
@media screen and (max-width: 768px) {
    .card {
        width: calc(50% - 20px);
    }

    .main-footer {
        flex-direction: column;
    }

    .footer {
        flex-direction: column;
    }

    .value p{
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .card {
        width: calc(80% - 20px);
    }
    
    .value p{
        font-size: 1rem;
    }
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}



@media screen and (max-width: 768px) {
    .logo span {
        font-size: 15px;
    }

    
.container {
    margin: 16% auto;
}

    .menu {
        display: none;
        flex-direction: column;
        align-items: center;
        position: absolute;
        top: 65px;
        background-color:rgb(244, 126, 0);
        margin: 0 -7%;
        width: 100%;
        padding: 20px 0;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        /* Add shadow for depth */
    }

    .menu.active {
        display: flex;
    }

    .menu li {
        margin: 10px 0;
        text-align: center;
        /* Center align menu items */
    }

    .menu li:last-child {
        margin-bottom: 0;
        /* Remove margin for the last menu item */
    }

    .menu a {
        padding: 10px 20px;
        /* Increase padding for better touch target */
    }

    .menu-icon {
        display: block;
        margin-right: 10%;
    }

    .menu-icon.active div:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-icon.active div:nth-child(2) {
        opacity: 0;
    }

    .menu-icon.active div:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

}



@media screen and (min-width: 1800px) {
    .navbar {
        padding: 20px 40px;
        /* Increase padding for larger screens */
    }

    .logo span {
        font-size: 25px;
        /* Increase font size for larger screens */
    }

}