*,
*::after,
*::before{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}



.html{
    font-size: 62.5%;
}

.navbar input[type="checkbox"],
.navbar .hamburger-lines{
    display: none;
}

.container{
    max-width: 1200px;
    width: 90%;
    margin: auto;
}

.navbar{
    box-shadow: 0px 5px 10px 0px #aaa;
    /* position: fixed; */
    width: 100%;
    background: #fff;
    color: #000;
    opacity: 0.85;
    z-index: 100;
}

.navbar-container{
    display: flex;
    justify-content: space-between;
    height: 64px;
    align-items: center;
}

.menu-items{
    order: 2;
    display: flex;
}
.logo{
    order: 1;
    font-size: 2.3rem;
}

.menu-items li{
    list-style: none;
    margin-left: 1.5rem;
    font-size: 1.3rem;
}

.navbar a{
    color: #444;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease-in-out;
}

.navbar a:hover{
    color: #117964;
}

@media (max-width: 768px){
    .navbar{
        opacity: 0.95;
    }

    .navbar-container input[type="checkbox"],
    .navbar-container .hamburger-lines{
        display: block;
    }

    .navbar-container{
        display: block;
        position: relative;
        height: 64px;
    }

    .navbar-container input[type="checkbox"]{
        position: absolute;
        display: block;
        height: 32px;
        width: 30px;
        top: 20px;
        left: 20px;
        z-index: 5;
        opacity: 0;
        cursor: pointer;
    }

    .navbar-container .hamburger-lines{
        display: block;
        height: 28px;
        width: 35px;
        position: absolute;
        top: 20px;
        left: 20px;
        z-index: 2;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .navbar-container .hamburger-lines .line{
        display: block;
        height: 4px;
        width: 100%;
        border-radius: 10px;
        background: #333;
    }
    
    .navbar-container .hamburger-lines .line1{
        transform-origin: 0% 0%;
        transition: transform 0.3s ease-in-out;
    }

    .navbar-container .hamburger-lines .line2{
        transition: transform 0.2s ease-in-out;
    }

    .navbar-container .hamburger-lines .line3{
        transform-origin: 0% 100%;
        transition: transform 0.3s ease-in-out;
    }

    .navbar .menu-items{
        padding-top: 100px;
        background: rgb(255, 255, 255);
        height: 100vh;
        max-width: 300px;
        transform: translate(-150%);
        display: flex;
        flex-direction: column;
        margin-left: -40px;
        padding-left: 40px;
        transition: transform 0.5s ease-in-out;
        box-shadow:  5px 0px 10px 0px #aaa;
        overflow: scroll;
    }

    .navbar .menu-items li{
        margin-bottom: 1.8rem;
        font-size: 1.1rem;
        font-weight: 500;
    }

    .logo{
        position: absolute;
        top: 10px;
        right: 15px;
        font-size: 2.5rem;
    }

    .navbar-container input[type="checkbox"]:checked ~ .menu-items{
        transform: translateX(0);
    }

    .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line1{
        transform: rotate(45deg);
    }

    .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line2{
        transform: scaleY(0);
    }

    .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line3{
        transform: rotate(-45deg);
    }

}

@media (max-width: 500px){
    .navbar-container input[type="checkbox"]:checked ~ .logo{
        display: none;
    }
}

/* footer */
.footer {
    
  background-color: rgb(255, 150, 50);
  color: white;
  padding: 40px 20px 10px;
  
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.footer-about {
  flex: 1 1 250px;
}

.footer-about p {
  margin-top: 10px;
  line-height: 1.6;
}

.footer-logo {
  max-width: 150px;
}

.footer-contact, .footer-social {
  flex: 1 1 200px;
}

.footer-contact h3, .footer-social h3 {
  margin-bottom: 10px;
}

.footer-contact p {
  margin: 5px 0;
}

.footer-social a img {
  width: 30px;
  margin-right: 10px;
  transition: transform 0.3s;
}

.footer-social a {
    margin: 0vh 5vh;
}


.footer-social a img:hover {
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 10px;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
/* ksjdfh */
/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
} */

body {
    background: #f8f9fa;
    color: #333;
}

/* Header */
.about-header {
    text-align: center;
    padding: 2rem 1rem;
    background: #082a7b;
    color: white;
}

.about-header h1 {
    font-size: 2.5rem;
}

.about-header p {
    font-size: 1.2rem;
    margin-top: 0.5rem;
}

/* About Section */
.about-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 3rem 1rem;
    flex-wrap: wrap;
}

.about-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.about-text {
    max-width: 500px;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #082a7b;
}

.about-text p {
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Mission & Vision */
.mission-vision {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 2rem 1rem;
    flex-wrap: wrap;
}

.mv-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    max-width: 400px;
    text-align: center;
}

.mv-card h3 {
    color: #082a7b;
    margin-bottom: 0.5rem;
}

/* Why Choose Us */
.why-choose {
    text-align: center;
    padding: 2rem 1rem;
}

.why-choose h2 {
    margin-bottom: 1rem;
    color: #082a7b;
}

.why-choose ul {
    list-style: none;
    padding: 0;
}

.why-choose li {
    background: white;
    margin: 0.5rem auto;
    padding: 0.8rem 1rem;
    border-radius: 6px;
    max-width: 400px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Footer */
.about-footer {
    text-align: center;
    padding: 1rem;
    background: #082a7b;
    color: white;
    margin-top: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .about-section {
        flex-direction: column;
        text-align: center;
    }
    .about-text {
        max-width: 100%;
    }
    .mission-vision {
        flex-direction: column;
        align-items: center;
    }
}


/* lskdjf */
/* Quick Links Navigation */
.quick-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.5rem;
    background: #ffffff;
    box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.05);
    margin-top: 2rem;
}

.quick-links a {
    text-decoration: none;
    padding: 0.6rem 1rem;
    border-radius: 6px;
    background: #082a7b;
    color: white;
    font-weight: 500;
    transition: 0.3s;
}

.quick-links a:hover {
    background: #0a3ec9;
}

.quick-links a.active {
    background: #0a3ec9;
    font-weight: bold;
}

/* Mobile adjustments */
@media (max-width: 480px) {
    .quick-links {
        flex-direction: column;
        align-items: center;
    }
    .quick-links a {
        width: 80%;
        text-align: center;
    }
}
