* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Style for the navbar container */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #007a7a; /* Background color for the navbar */
  padding: 25px 30px; /* Padding for the navbar */
}

.nav-branding img{
  position: absolute;
  width:16%;
  border-radius: 10px;  
  padding: 0px;
  top: 2px; /* Adjust top position as needed */
  left: 8%; /* Align the logo horizontally */
  transform: translateX(-50%); /* Center the logo horizontally */
  z-index: 1000; /* Ensure the logo appears above the image */
  }


/* Style for the branding/logo */
.nav-branding {
  color: white; /* Text color for the branding/logo */
  font-size: 27px; /* Font size for the branding/logo */
  text-decoration: none; /* Remove underline from the branding/logo */
}

/* Style for the navigation menu */
.nav-menu {
  display: flex;
  gap: 20px; /* Spacing between menu items */
  list-style-type: none; /* Remove default list styling */
}

/* Style for each navigation menu item */
.nav-items {
  margin: 0;
  z-index: 1000; /* Remove default margin */
}

/* Style for navigation menu links */
.nav-list {
  color: white; /* Text color for menu items */
  text-decoration: none; /* Remove underline from menu items */
  font-size: 18px; /* Font size for menu items */
  transition: color 0.3s ease; /* Smooth color transition on hover */
}

/* Style for navigation menu links on hover */
.nav-list:hover {
  color: #ffd700; /* Change color on hover */
}

/* Media query for responsive design */
li{
  list-style: none;
}
a{
  color: white;
  text-decoration: none;
}

.nav-link {
  transition: 0.7s ease;
}

.hamburger {
  display: none;
  cursor: pointer;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: white;
}
.nav-menu {
  display: flex;
  gap: 20px; /* Spacing between menu items */
  list-style-type: none; /* Remove default list styling */
}

/* Style for each navigation menu item */
.nav-items {
  margin: 0; /* Remove default margin */
}

/* Style for navigation menu links */
.nav-list {
  color: white; /* Text color for menu items */
  text-decoration: none; /* Remove underline from menu items */
  font-size: 18px; /* Font size for menu items */
  transition: color 0.3s ease; /* Smooth color transition on hover */
}

/* Style for navigation menu links on hover */
.nav-list:hover {
  color: #ffd700; /* Change color on hover */
}


@media (max-width: 768px) {
  .hamburger {
      display: block;
  }

  .hamburger.active .bar:nth-child(2) {
      opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
  }
  .nav-menu {
      position: absolute;
      border-radius: 50px;
      right: 0;
      top: 79px;
      gap: 1px;
      flex-direction: column;
      width: 50%;
      background-color: rgb(50, 45, 45);
      text-align: center;
      transition: 0.3s;
      display: none; /* Hide menu by default */
  }

  .nav-item {
      margin: 20px 0; /* Adjust margin as needed */
  }
  .nav-menu a{
    color: white;
    z-index: 1000; /* Display menu when active */

  }

  .nav-menu.active {
    display: flex; /* Display menu when active */
  }
  .nav-items a:hover{
      color: red;
  }
}


/* body*/
.pic img{
  width:100%;
  height: 670px;
  opacity: 0.7;

}
.pic {
  position: relative;
}

.logo img{
  height: 140px;
  width:20%;
  margin: 1px;
  position: fixed;
}

.box2{
  background-color: #874F41;
   padding: 8px;
   margin: 2px;
}
.box2 p{
  color: black;
  font-size: 25px;
  padding: 10px;
  margin: 1px;
  text-align: justify;
}

.base {
  background-color: #90AEAD;
  overflow: hidden;
  display: flex; /* Use flexbox to create a row layout */
  padding: 10px; /* Add padding around the columns */
  margin: 1px; /* Add margin to separate from other elements */
}

.base_1,
.base_2,
.base_3 {
  word-wrap: break-word; /* Allow words to break and wrap within each column */
  flex: 1; /* Each column takes up an equal amount of space */
  padding: 20px; /* Add padding inside each column */
  text-align: justify; /* Center align text within each column */
}

.base h1 {
  color: black;
  font-size: 30px; /* Set font size for headings */
  margin-bottom: 10px; /* Add space below headings */
}

.base p {
  text-align: justify;
  font-size: 22px; /* Set font size for paragraphs */
  color: black; /* Set text color for paragraphs */
}

.footer {
  background-color: #f8f9fa;
  padding: 20px;
  text-align: center;
}

.contact-info {
  max-width: 600px;
  margin: 0 auto;
}

.contact-info h2 {
  color: #333;
  font-size: 24px;
  margin-bottom: 10px;
}

.contact-info h3 {
  color: #666;
  font-size: 20px;
  margin-bottom: 15px;
}

.contact-info ul {
  list-style-type: none;
  padding: 0;
}

.contact-info ul li {
  color: #777;
  font-size: 16px;
  margin-bottom: 8px;
}

.contact-info ul li i {
  margin-right: 5px;
}

.watsapp_float{
  position: fixed;
  bottom: 40px;
  right: 20px;
  top:90%;
}

@media (max-width: 768px){
  .nav-branding img{
    top: 0px; /* Adjust top position as needed */
    left: 12.8%;
    width: 25%;
  }
  .base {
    flex-wrap: wrap; /* Allow columns to wrap when viewport width is less than 200px */
  }

  .base_1,
  .base_2,
  .base_3 {
    flex: 100%; /* Each column takes up full width when wrapped */
    text-align: justify; /* Justify text when wrapped */
    
  }
  .contact-info h2{
    font-size: 15px;
 }
 .contact-info h3{
     font-size: 13px;
 }
 .contact-info p{
     font-size: 10px;
 }
}
@media (max-width: 770px){
  .watsapp_float img{
      height: 50px;
      top: 80%;
      opacity: 0.8;
  }
}
