
.navbar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #2b2b2b;
    color: #d4af37;
    padding: 10px 20px;
    position: relative;
  }
  
  .logo {
    display: flex;
    align-items: center;
    font-size: 18px;
  }
  
  .logo img {
    width: 50px;
    height: 50px;
    margin-right: 10px;
  }
  
  /* Navigation Links */
  .nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .nav-links li {
    position: relative;
    text-align: center;
    padding: 10px 15px;
  }
  .nav-links li:hover {
    position: relative;
    text-align: center;
    padding: 10px 15px;
    background-color: #555;
  }
  .nav-links a {
    text-decoration: none;
    color: #997b55;
    font-weight: 500;
    padding: 10px 15px;
  }
  
  /* Submenu */
  .submenu-container {
    position: relative;
  }
  
  .submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: #444;
    display: none;
    position: absolute; /* Prevents affecting the navbar height */
    top: 100%; /* Position submenu below the parent */
    left: 0;
    width: 250px; /* Adjust the width as needed */
    z-index: 10;
  }
  
  .submenu li {
    padding: 10px 15px;
    text-align: left;
  }
  
  .submenu a {
    color:#997b55;
  }
  
  .submenu li:hover {
    background-color: #555;
  }
  
  /* Hover Behavior for Desktop */
  .submenu-container:hover .submenu {
    display: block;
  }
  
  /* Hamburger Menu */
  .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
  }
  
  .hamburger span {
    height: 3px;
    width: 25px;
    background-color: #d4af37;
    margin: 4px 0;
  }
  
  /* Close Button */
  .close-btn {
    display: none;
    font-size: 24px;
    color: #d4af37;
    cursor: pointer;
  }
  
  /* Desktop View */
  @media (min-width: 769px) {
    .nav-links {
      display: flex;
      flex-direction: row;
    }
  
    .hamburger,
    .close-btn {
      display: none;
    }
  }
  
  /* Mobile View */
  @media (max-width: 768px) {
    .nav-links {
      flex-direction: column;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease-in-out;
    }
  
    .nav-links.active {
      max-height: 400px; /* Adjust based on number of items */
    }
  
    .submenu {
      display: none;
      position: static;
      background-color: #2b2b2b;
    }
  
    .submenu.active {
      display: block;
    }
  
    .hamburger {
      display: flex;
    }
  
    .close-btn.active {
      display: block;
    }
  }
  
  
  .front-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
  }
  
  .image-container {
    position: relative;
    width: 100%;
    max-width: 100%; /* Ensure the image scales properly */
    height: auto;
  }
  
  .image-container img {
    width: 100%; /* Make the image responsive */
    height: auto;
    display: block;
    height: 200px;
  }
  
  .image-container .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.4); /* Add a transparent overlay */
  }
  
  .image-container .overlay h1 {
    color: white;
    font-size: 2rem;
    font-weight: bold;
      margin: 0;
    }
  

  /* About us mission Vision */

  
/* Compact Section Styling */
.compact-section {
  max-width: 100%;
  margin: -20px auto; /* Centering the content */
  background-color: moccasin; /* Clean white background */
  padding: 20px 30px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  height: 370PX;
  margin-top:10px ;
  
}
.content{
  height: 100%;
}
.compact-section h1 {
  font-size: 2rem;
  color: #1c1c1c; /* Darker text for the title */
  margin-bottom: 10px;
  
}

.compact-section .tagline {
  font-size: 1.2rem;
  font-style: italic;
  color: #555; /* Softer text for tagline */
  margin-bottom: 20px;
}

.compact-section h2 {
  font-size: 1.5rem;
  color: #1c1c1c; /* Darker text for headings */
  margin: 15px 0 10px;
  font-weight: bold;
}

.compact-section p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 10px;
  text-align: center; /* Clean alignment */
}

.compact-section .content {
  padding: 10px 0;
  width: 100%;
}

/* Box Shadow for Clean and Premium Look */
.compact-section {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Responsive Design for Small Screens */
@media (max-width: 768px) {
  .compact-section {
    padding: 15px 20px;
  }

  .compact-section h1 {
    font-size: 2rem;
  }

  .compact-section .tagline {
    font-size: 1rem;
  }

  .compact-section h2 {
    font-size: 1.5rem;
  }

  .compact-section p {
    font-size: 1.2rem;
  }
}

  
/* Team Code */
#Team{
  margin-top: 50px;
}
.Teamhead {
  margin-top: 20px;
  color: #333;
  text-align: center;
}

.team-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
  width: 80%;
  margin: auto;
}

.team-member {
  position: relative;
  width: 250px;
  height: auto;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.team-member img {
  width: 100%;
  height: 300px;
  transition: transform 0.3s ease;
}

.team-member:hover img {
  transform: scale(1.1);
  
}

.team-member .info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  color: #fff;
  transition: opacity 0.3s ease;
}

.team-member:hover .info {
  opacity: 1;
}

.team-member .info h2 {
  margin: 5px 0;
  font-size: 18px;
}

.team-member .info p {
  margin: 0;
  font-size: 14px;
}

/* Glory Honour */
#Gloryhead{
  text-align: center;
}
#Glorycontainer{
  width: 80%;
  margin: auto;
  /* border: 2px solid red; */
  display: flex;
  gap: 20px;
}
#Glorycontainer div{
  width: 30%;
  border: 2px solid black;
}
#Glorycontainer div img{
  width: 100%;
  height: auto;
}

/* Footer */

footer {
  background-color: #222;
  color: #fff;
  padding: 40px 20px;
  margin-top: 50px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column {
  flex: 1;
  margin: 10px;
  min-width: 200px;
  color: white;
}
.footer-column p{
  color: white;
  margin-top: 15px;
  font-size: 16px;
}
.footer-column h4 {
  font-size: 12px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #fff;
  text-decoration: none;
}

.footer-column ul li a:hover {
  text-decoration: underline;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  margin-left: 20px;
}

.social-icons a {
  color: #fff;
  font-size: 20px;
  text-decoration: none;
}

.social-icons a:hover {
  color: #007bff;
}

.buttons {
  margin-top: 20px;
}

.buttons a {
  display: inline-block;
  background: #555;
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 5px;
  margin-right: 10px;
  font-size: 10px;
  margin-bottom: 20px;
  margin-left: 50px;
}

.buttons a:hover {
  background: #333;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  border-top: 1px solid #444;
  padding-top: 15px;
}

.footer-bottom a {
  color: #fff;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}
.designdiv{
  background-color: #000;
  color: #fff;
  padding: 10px 20px;
  text-align: center;
  position: relative;
  font-size: 14px;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-content span {
  color: #fff;
}

.footer-content a {
  color: #f00;
  text-decoration: none;
}

.footer-content a:hover {
  text-decoration: underline;
}
.designdiv{
  background-color: #000;
  color: #fff;
  padding: 10px 20px;
  text-align: center;
  position: relative;
  font-size: 14px;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-content span {
  color: #fff;
}

.footer-content a {
  color: #f00;
  text-decoration: none;
}

.footer-content a:hover {
  text-decoration: underline;
}


/* Whatapp button */
.whatsapp-container {
  position: fixed;
  bottom: 50px;
  right: 50px;
  z-index: 1000;
}

.whatsapp-button {
  background-color: #25D366;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.whatsapp-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
}

.whatsapp-button i {
  font-size: 28px;
}

.tooltip {
  position: absolute;
  bottom: 70px;
  right: 10px;
  background-color: #25D366;
  color: #fff;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 14px;
  white-space: nowrap;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s ease, opacity 0.3s ease;
}

.tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: #25D366 transparent transparent transparent;
}

.whatsapp-container:hover .tooltip {
  visibility: visible;
  opacity: 1;
}


@media(max-width:768px)
{
  .compact-section {
    max-width: 100%;
    margin: -20px auto; /* Centering the content */
    background-color: moccasin; /* Clean white background */
    padding: 20px 30px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    height:auto;
    margin-top:10px ;
    
  }

  #Gloryhead{
    text-align: center;
  }
  #Glorycontainer{
    width: 100%;
    margin: auto;
    /* border: 2px solid red; */
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  #Glorycontainer div{
    width: 100%;
    border: 2px solid black;
  }


  .ccccontainer {
    text-align: center;
    max-width:90%;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-left: 65 0px;
  margin-top: 50px;
  }
  
  
  .whatsapp-container {
    position: fixed;
    bottom: 80px;
    right: 50px;
    z-index: 1000;
  }
  
  .whatsapp-button {
    background-color: #25D366;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
  }
  
  .whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
  }
  
  .whatsapp-button i {
    font-size: 28px;
  }
  
  .footer-column p{
    color: white;
    margin-top: 15px;
    font-size: 14px;
  }
  .footer-column:nth-child(3)
  {
    width: 40%;
  }


}