*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
body {
    background-image: url('image/back.png');
    color: #fff;
}

.nav-bar {

 position: sticky;
    top: 0;
    width: 100%;
    min-height: 60px;
    background-image: url('image/back.png');
    
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000; /* ADD THIS  for fixed navbar*/
    cursor: pointer;
    


  
}
h3{
    color: #fff;
    font-family: 'Cinzel', serif;
    font-size: 28px;
    border: 1px solid #fff;
    padding: 5px 8px;
    border-radius: 7px;
}
h4  {
  color: #333333;
}
.p {
  color: #333333;
}
h5 {color: #333333;
 }

.card-text {
  color: #333333;
  font-size: 16px;
  font-weight: 500;
}
.logo{
    margin-left: 40px;
    padding-top: 4px;
}
ul li{
list-style: none;
display: inline-block;
margin: 0px 20px;
font-size: 20px;
cursor: pointer;
}
ul li:hover{
text-decoration: underline;
text-underline-offset: 4px;
}

#menu a {
    text-decoration: none;
    color: white;
    font-weight: bold;
}


.main-menu{
    margin-right: 30px;
}
.closeBtn, .menuBtn{
    font-size: 28px;
    margin: 0px 20px;
    display: none;
}


/*... carousel  .......*/
.carousel-caption {
    bottom: 20%;
    transform: translate(0, 50%);

}
.carousel-caption h5{
    font-size: 1.5rem;
    font-weight: 700px;
    color: #e30d0d;
}

.card-container {
  padding: 40px 0;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.card img {
  height: 250px;
  object-fit: cover;
}


.chart {
  display: flex;
  flex-direction: column;
  align-items: center;
  
}

/* Pie chart */
.pie {
    margin: 0 auto;
  width: 100%;
  max-width: 120px;   /* keeps original size on larger screens */
  aspect-ratio: 1;    /* keeps it perfectly circular */
  border-radius: 50%;
  background: conic-gradient(var(--color) calc(var(--value) * 1%), #eee 0);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
/* Inner white circle */
.pie::before {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  background: black;
  border-radius: 50%;
}

/* Percentage text */
.pie span {
  position: relative;
  font-weight: bold;
  font-size: 18px;
}

/* Text under chart */
.chart h6 {
  margin-top: 10px;
  text-align: center;
  color:#333333;
}

.mission {
  padding: 40px;
  width: 100%;
  max-width: 1200px;
  color:  #333333;
  margin: auto; /* center container */
}

.mission .row {
  display: flex;
  flex-wrap: wrap;
  background-color:#bbbac0; 
  padding: 20px;
}

.mission .col-lg-6 {
  width: 50%;
  padding: 10px;
}

/* Center headings properly */
.mission h2 {
  text-align: center;
}

/* ✅ Mobile responsiveness */
@media (max-width: 768px) {
  .mission .col-lg-6 {
    width: 100%; /* stack columns */
  }

  .mission {
    padding: 20px;
  }
}

.footer {
  background-color: #bbbac0;
  color: #333333;
  text-align: center;
  padding: 20px;
}
.footer .flex-row li a {
  color: #333333;
}
/* Remove bullets */
.footer ul {
  list-style: none;
  padding: 0;
  margin: 10px 0;
}

/* Flex layout */
.footer .flex-row {
  display: flex;              /* ❗ You forgot this */
  justify-content: center;
  flex-wrap: wrap;            /* Makes it responsive */
  margin-bottom: 10px;
}

/* List spacing */
.footer .flex-row li {
  padding: 0 15px;
  margin-bottom: 10px;
}

/* Links */
.footer .flex-row li a {
  font-size: 14px;
  font-weight: 500;
  color: #fff;               /* ❗ You left this empty */
  text-decoration: none;
}

.footer .flex-row li a:hover {
  color: #000;
}

/* Icons */
.footer i {
  font-size: 20px;
}

/* 📱 Mobile fix */
@media (max-width: 600px) {
  .footer .flex-row {
    flex-direction: column;  /* Stack items */
  }

  .footer .flex-row li {
    padding: 5px 0;
  }
}
/*...............css media queries......*/

@media only screen and (max-width: 780px){
    ul{
        display: none;
    }
    ul li{
        display: block;
        margin: 20px;
    }
    .menuBtn{
        display: block;
    }
    h3{
        font-size: 20px;
    }
    #menu{
        width: 100%;
        background: rgb(11, 46, 54);
        position: absolute;
        top: 60px;
        right: 0;
        text-align: center;
    )

 
}


   .card img {
  height: 310px;
  object-fit: cover;
}
@media (min-width: 992px) {
    .carousel-caption h5{
        font-size: 5rem;}
    
}

