body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.top-bar1 {
    
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    height: 50px;
    align-items: center;
    width: 80%;
    margin: 0 auto;

      
}

.top-bar11 {
    background: #1f1f1f;
    padding: 10px 20px;
    display: flex;
    font-size: 14px;
    color: #f5f5f5;
    width: 80%;
    margin: 0 auto;
    height: 50px;
}

.top-bar2 {
    
    display: flex;
    justify-content: space-between;
    
    background: #3e3e3e;
    color: #f5f5f5;

}


.top-bar21{
    
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    background: #3e3e3e;
    width: 80%;
    margin: 0 auto;

}

.section2 {
    width: 80%;
    margin:0 auto;
    display: flex; /* makes boxes go side-by-side */
    gap: 50px; /* space between boxes */
    justify-content: center; /* center horizontally */
    padding: 20px;
}

.section-box {
    flex: 1; /* make them equal width */
    min-width: 200px;
    padding: 20px;
    /*background-color: #f3f1f1;*/
    /*border: 1px solid #a7a4a4;*/
    text-align: center;
}

.section-box p{

    padding: 10px;
    font-size: 14px;
    line-height: 1.5;
    white-space: normal; /* allows wrapping */
    word-wrap: break-word; /* breaks long words */
    text-align: center;
    color: rgb(126, 125, 125);
}



.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: white;
    /* box-shadow: 0 1px 4px rgba(0,0,0,0.1); */
    width: 80%;
    margin: 0 auto;
}

.logo {
    font-size: 24px;
    /*font-weight: bold;*/
}

.logo span {
    color: gray;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: black;
    font-weight: normal;
}


/* --- Home Bannar Section ----*/

.hero {
    position: relative;
    text-align: center;
    color: white;
}




.hero img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 1;
    transition: opacity 1s ease-in-out;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 70%;
    transform: translate(-50%, -50%);
    text-align:right;
}

.hero-text h1 {
    font-size: 48px;
    margin: 0;
}

.hero-text p {
    font-size: 20px;
    margin: 10px 0 0;
    color: #ccc;
}

/* --- Home Bannar Section END----*/


.box-container {
    display: flex;
    gap: 20px; /* space between boxes */
    justify-content: center; /* center horizontally */
    margin-top: 20px;
}

.box {
  width: 250px;
  /*height: 150px;*/
  background-color: rgb(21, 189, 55);
  color: white;
  text-align: center;
 
    padding: 20px;
  border: 1px solid #333;
  box-sizing: border-box;
  border-radius: 8px;
}