
* {
  margin: 0;
  padding: 0;

}

body {
 font-family: Arial, sans-serif;


}


.boximage {
  position: relative;
  height: 60vh; 
  width: 100%;
  background-color: #0613c2;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

@media (max-width: 480px) {
  .boximage {
    height: 40vh;
  }
}

.boximage img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.box-text {
  position: absolute;
  color: #fff;
  text-align: center;
  z-index: 2;
}

.box-text h2 {
  font-size: 3rem;
  margin: 0;
}

.box-text p {
  font-size: 1.2rem;
  margin: 5px 0 0;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .box-text h2 {
    font-size: 2rem;
  }
  .box-text p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .box-text h2 {
    font-size: 1.5rem;
  }
  .box-text p {
    font-size: 0.9rem;
  }
}


.boximage::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.contact-info a {
  color: #cbcaca;
  text-decoration: none;
  margin-right: 20px;
  font-size: 0.95rem;
}

.contact-info a i {
  margin-right: 6px;
  color: #00bfff;
}

.social-icons a {
  color: #fff;
  font-size: 1.2rem;
  margin-left: 15px;
  transition: color 0.3s, transform 0.3s;
}

.social-icons a:hover {
  color: #00ccff;
  transform: scale(1.2);
}


.main-header {
  background-color: #f4f4f4;
  padding-bottom: 30px;
   
}
@media (max-width: 768px) {
  .main-header {
    height: 350px;
  }
}

@media (max-width: 480px) {
  .main-header {
    height: 250px;
  }
}

.navbar {
  background-color: #f5f2f2;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border-bottom: 1px solid #ccc;
}

.brand-title {
  font-size: 1.3rem;
  font-weight: bold;
  color: #151515;


}

 @media (max-width: 768px) {
      .toggle-button {
        display: flex;
        margin-left: 353px;
        margin-top: -32px;
      }

      .navbar {
        flex-direction: column;
        align-items: flex-start;
      }

      .navbar-links {
        display: none;
        width: 100%;
      }

      .navbar-links.active {
        display: block;
      }

      .navbar-links ul {
        flex-direction: column;
        width: 100%;
        padding-left: 0;
      }

      .navbar-links ul li {
        text-align: left;
        width: 100%;
        padding: 10px 20px;
      }
    }
.navbar-links ul {
  list-style: none;
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  display: flex;
  gap: 20px;
  margin: 0;
}

.navbar-links a {
  text-decoration: none;
  color: #121111;
  padding: 10px 15px;
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s;
}

.navbar-links a:hover {
 background-color: #470ff2;
  color: #140b3c;
}

.toggle-button {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.toggle-button .bar {
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 4px 0;
  border-radius: 3px;
}



.footer {
      background-color: #000000;
  
      padding: 40px 20px 20px;
     
      height: 400px;
    }

    .footer-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 30px;
      max-width: 1200px;
      margin: auto;
    }

    .footer-logo {
      flex: 1 1 250px;
      text-align: center;
    }

    .footer-logo img {
      max-width: 280px;
      margin-bottom: 15px;
    }

    .footer-logo h2 {
      font-size: 18px;
      margin: 0;
      font-weight: bold;
    }

    .footer-column {
      flex: 1 1 200px;
    color: white;
    
    }

    .footer-column h3 {
      font-size: 28px;
      margin-left: 30px;
      margin-bottom: 10px;
      border-bottom: 2px solid #2a5bd7;
      display: inline-block;
      padding-bottom: 5px;

    }

    .footer-column ul {
      list-style: none;
      margin-top: 10px;
      margin-left: 30px;
      padding: 0;
    }

    .footer-column ul li {
      margin: 8px 0;
    }

    .footer-column ul li a {
      text-decoration: none;
      color: #ffffff;
      font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
      transition: color 0.3s ease;
      font-size: 18px;
    }

    .footer-column ul li a:hover {
      color: #2a5bd7;
    }

    .footer-bottom {
      text-align: center;
      padding: 15px;
      color: #ccc;
      font-size: 17px;
      margin-top: 17px;
    }

    .footer-bottom a {
      color: #2a5bd7;
      text-decoration: none;
    }

    .footer-bottom a:hover {
      text-decoration: underline;
    }
.social-icons {
  margin-bottom: 10px;
  margin-left: 50px;
 
}

.social-icons a {
  color: #95d3ff;
  margin: 0 10px;
  font-size: 20px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #0613c2; /* You can customize */
}
    .contact-info i {
      margin-right: 8px;
      color: #2a5bd7;
    }

    @media (max-width: 768px) {
      .footer-container {
        flex-direction: column;
        align-items: center;
        background-color: #000;
        margin-right: -20px;
        margin-left: -41px;
      }

      .footer-column,
      .footer-logo {
        text-align: center;
            color: #f8f2f2;
      }
    }
/* Gallery Styles */
.gallery-section {
  padding: 40px 20px;
  background-color: #f8f8f8;
  text-align: center;
}

.gallery-title {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #333;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  background-color: #fff;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.02);
}

.gallery-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.gallery-caption {
  margin-top: 10px;
  font-size: 1rem;
  color: #555;
}
.whatsapp-icon {
      height: 80px;
      margin-left: 1200px;
      transition: transform 0.3s ease;
    }
    .whatsapp-icon:hover {
      transform: scale(2.1);
    }