/* *body{
    padding: 0px;
    margin: 0px
   
}

.divTop{
    width: 100%;
    height: 35px;
    background-color: darkblue;
    color: white;
    font-size: 15px;
    opacity: 0.8;
    top: 0px;
    left: 0px;
    padding-left: 120px;
    padding-top: 10px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.navBar{
    width: 100%;
    height: 50px;
    color: darkblue;
    font-size: 15px;
    display: flex;
    justify-content: space-around;
    padding-top: 10px;
}

.navList1{
    margin-top: 20px;
}
.navList1 li:hover{
    color: red;
}


.navList2 img:hover{
    background: none;
    background-color: red;
}

.navBar2{
    width: 60%;
    height: 40px;
    color: white;
    background-color: red;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: bold;
    display: flex;
    justify-content: space-around;
    margin-left: 400px;
    margin-top: 45px;
    padding-bottom: 50px;
    padding-top: 20px;
    list-style: none;
    text-align: center;
    position: relative;

}
.navBar2 li:hover{
    opacity: 0.6;
}

.btn1{
    margin-top: -5px;
    font-weight: bolder;
    font-size: large;
    display: flex;
    background: none;
    color: white;
    border: none;
    opacity: 0.8;
    cursor: pointer;
    height: 30px;
}

.btn1:hover{
    opacity: 1;
    background-color: darkblue;
}

.main1{
    width: 100%;
    height: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.carousel1{
    position: absolute;
    top: 200px;
    left: 120px;
    font-size: 20px;
    font-weight: bolder;
    color: white;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.head1{
    top: 250px;
    left: 120px;
    font-size: 50px;
    font-weight: bolder;
    color: white;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.btn2{
    margin-top: 20px;
    font-weight: bolder;
    font-size: large;
    background: none;
    color: white;
    background-color: red;
    border: none;
    gap: 20px;
    cursor: pointer;
    height: 60px;
}
.btn3{
    margin-top: 20px;
    font-weight: bolder;
    font-size: large;
    background: none;
    color: white;
    gap: 20px;
    cursor: pointer;
    height: 60px;
}
.btn2:hover{
    background-color: darkblue;
}

.btn3:hover{
    background-color: white;
    color: darkblue;
}

.main2{
    width: 100%;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    
}

.btn4{
    background-color:gainsboro;
    color: darkblue;
    font-weight:bold ;
    height: 50px;
    border-radius: 1em;
}
.btn5{
    background-color: red;
    color: white;
    height: 50px;
    font-weight: bold;
}
.btn5:hover{
    background-color: darkblue;
    color: white;
}

.main3{
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: space-around;
}

.main3Head{
    background-color: red;
    color: white;
    font-weight: bolder;
    width: 200px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;

} */

/* General Reset */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Top Banner */
.divTop {
  background-color: #f8f9fa;
  text-align: center;
  padding: 10px 0;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Navigation */
.navBar {
  background-color: #ffffff;
  border-bottom: 1px solid #ddd;
  padding: 10px 30px;
}

.navList1 span,
.navList2 img {
  cursor: pointer;
  transition: transform 0.2s;
}

.navList1 span:hover,
.navList2 img:hover {
  transform: scale(1.1);
}

/* Second Nav */
.navBar2 {
  padding: 10px 0;
  background-color: #e9ecef;
  font-size: 1rem;
}

.navBar2 li {
  cursor: pointer;
  transition: color 0.2s;
}

.navBar2 li:hover {
  color: #0d6efd;
}

.btn1 {
  padding: 5px 15px;
  font-weight: bold;
  background-color: #fff;
  border: 2px solid #0d6efd;
  color: #0d6efd;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.btn1:hover {
  background-color: #0d6efd;
  color: white;
}

/* Carousel Custom Text */
.carousel1 {
  position: absolute;
  top: 25%;
  left: 10%;
  color: white;
  z-index: 10;
  font-size: 1.5rem;
}

.head1 {
  font-size: 3rem;
  font-weight: bold;
}

/* Carousel Buttons */
.btn2,
.btn3 {
  margin-right: 10px;
  padding: 10px 25px;
  font-size: 1rem;
  border-radius: 5px;
}

.btn2 {
  background-color: #0d6efd;
  color: white;
  border: none;
}

.btn2:hover {
  background-color: #084298;
}

.btn3 {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.btn3:hover {
  background-color: white;
  color: #0d6efd;
}

/* About Section */
.main2 {
  background-color: #f8f9fa;
  padding: 60px;
  gap: 50px;
}

/* About Buttons */
.btn4 {
  border-radius: 30px;
  padding: 8px 20px;
  font-weight: bold;
  transition: all 0.3s;
}

.btn4:hover {
  background-color: #0d6efd;
  color: white;
}

/* Learn More Button */
.btn5 {
  padding: 10px 25px;
  background-color: #0d6efd;
  color: white;
  border: none;
  border-radius: 5px;
}

.btn5:hover {
  background-color: #084298;
}

/* Section Headings */
.main3Head {
  color: #0d6efd;
  font-weight: 700;
  margin-bottom: 15px;
}

/* Main3 Images Section */
.main3 {
  background-color: #ffffff;
  padding: 60px 30px;
  gap: 40px;
}

.main3 div img {
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.main3 div img:hover {
  transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .navBar,
  .main2,
  .main3 {
    flex-direction: column !important;
    text-align: center;
  }

  .carousel1 {
    position: static;
    padding: 20px;
    text-align: center;
  }

  .head1 {
    font-size: 2rem;
  }
}
