
*{
  margin: 0%;
  padding: 0%;
  box-sizing: border-box;
  font-family: serif;
}

.logo img {
   height:  80px; 
  width: 190px;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background-color:#003d33;;
  color: white;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  font-family: sans-serif;
}

.logo {
  font-size: 24px;
  font-weight: bold;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.navbar ul li a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  padding: 8px 12px;
  transition: 0.3s;
  font-size: 15px;
}

.navbar ul li a:hover {
  background-color:yellow;
  border-radius: 5px;
}

.give-btn {
  background-color: #ffcc00;
  color: #003366 !important;
  border-radius: 5px;
  padding: 8px 16px;
  font-weight: bold;
}

.menu-icon {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: white;
}

@media (max-width: 767px) {


  body, html {
  overflow-x: hidden;
  }
  .menu-icon {
    display: block;
  }

  .navbar {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #003d33;
    flex-direction: column;
    display: none;
  }

  .navbar.active {
    display: flex;
  }

  .navbar ul {
    flex-direction: column;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .navbar ul li {
    width: 100%;
  }

  .navbar ul li a {
    width: 100%;
    display: block;
    padding: 12px 20px;
  }
}

.contact-section {
  display: flex;
  flex-wrap: wrap;
  padding: 60px;
  gap: 40px;
  background-color:gray;
  ; /* Replace with actual background if needed */
  background-size: cover;
  background-position: center;
  margin-top: 100px;
}

.contact-left {
  flex: 1;
  min-width: 300px;
 
}

.contact-left h1 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 10px;
  
}

.contact-left h2 {
  font-size: 38px;
  color: #f7931e;
 
  margin-right: 390px;
 
}

.contact-description {
  font-size: 16px;
  margin-bottom: 20px;
}

.highlight {
  color: #f7931e;
  margin-bottom: 20px;
}

.highlight a {
  color: #f7931e;
  text-decoration: none;
}

.contact-info p {
  margin: 10px 0;
  font-size: 15px;
  color: #ccc;
}

.contact-info .icon {
  color: #f7931e;
  margin-right: 8px;
}

.contact-right {
  flex: 1;
  min-width: 300px;
  max-width: 45%;
  background: #f3f3f3;
  color: #000;
  padding: 30px;
  border-radius: 10px;
}

.contact-right h2 {
  font-size: 32px;
  margin-bottom: 20px;
  font-weight: 600;
}
.contact-right a button  {
  font-size: 25px;

 text-decoration: none;
 font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;

}
form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.full-width {
  width: 100%;
}

label {
  font-weight: 600;
  margin-bottom: 5px;
}

input,
textarea {
  padding: 12px;
  border: 2px solid #f7931e;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  background-color: #fff;
}

textarea {
  resize: none;
}
.form button{
  border: 2px sol;
}

.hero {
  position: relative;
  width: 100vw; /* Full viewport width */
  left: 0;
  right: 0;
  background: url('images/a.jpg') no-repeat center center / cover;
  min-height: calc(100vh - 100px); /* 100px = header height */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  margin-top: 100px;
  overflow: hidden;
}



  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
  }
  .hero-content {
    z-index: 1;
    max-width: 800px;
  }
  .hero h3 {
    font-size: 1.8rem;
    color:yellow;
    margin-bottom: 0.5rem;
    opacity: 0;
  }
  .hero h1 {
    font-size: 1.5rem;
    color: white;
    margin-top: 1rem;
    text-shadow: 1px 1px 4px black;
    opacity: 0;
    
  }
  .hero p {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #eee;
    opacity: 0;
     margin-top: 1rem;
  }
  .btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: yellow;
    color: #fff;
    font-size: 1.8rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 8px 16px rgba(255, 165, 0, 0.3);
    transition: all 0.3s ease-in-out;
    opacity: 0;
  }
  .btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px orange;
  }
  
  /* ANIMATIONS */
  @keyframes slideFromRight {
    0% { transform: translateX(100%); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
  }
  @keyframes slideFromLeft {
    0% { transform: translateX(-100%); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
  }
  @keyframes fadeUp {
    0% { transform: translateY(20px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
  }
  @keyframes popUp {
    0% { transform: scale(0.8) translateY(20px); opacity: 0; }
    100% { transform: scale(1) translateY(0); opacity: 1; }
  }
  
  .slide-right {
    animation: slideFromRight 1s ease-out forwards;
  }
  .slide-left {
    animation: slideFromLeft 1s ease-out forwards;
    animation-delay: 0.3s;
  }
  .fade-up {
    animation: fadeUp 1s ease-out forwards;
    animation-delay: 0.6s;
  }
  .pop-up {
    animation: popUp 1s ease-out forwards;
    animation-delay: 0.9s;
  }
  
/* ------------------ 📱 Mobile Media Query (max-width: 600px) ------------------ */
@media (max-width: 600px) {

  .contact-section {
    flex-direction: column;
    padding: 30px 15px;
    gap: 30px;
    margin-top: 60px;
  }

  .contact-left h1 {
    font-size: 28px;
  }

  .contact-left h2 {
    font-size: 32px;
    margin-right: 0;
  }

  .contact-description {
    font-size: 14px;
  }

  .contact-info p {
    font-size: 14px;
  }

  .contact-right {
    max-width: 100%;
    padding: 20px;
  }

  .contact-right h2 {
    font-size: 24px;
  }

  .contact-right a button {
    font-size: 20px;
  }

  .form-row {
    flex-direction: column;
    gap: 15px;
  }

  label {
    font-size: 14px;
  }

  input,
  textarea {
    font-size: 13px;
    padding: 10px;
  }

  .hero {
    padding: 1.5rem;
    min-height: 80vh;
    margin-top: 60px;
  }

  .hero h3 {
    font-size: 1.4rem;
  }

  .hero h1 {
    font-size: 1.2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .btn {
    font-size: 1rem;
    padding: 0.6rem 1.5rem;
  }

}


.footer {
  background-color:#003d33;
  color: #fff;
  padding: 40px 20px 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.footer-column {
  flex: 1 1 250px;
}

.footer-column h2, .footer-column h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  padding-right: 65px;
}

.footer-column p {
  font-size: 0.95rem;
  margin: 5px 0;
}

.logo {
  width: 60px;
  height: auto;
  margin-bottom: 10px;
}

.social-icons {
  margin-top: 10px;
}

.social-icons a {
  color: #fff;
  font-size: 1.2rem;
  margin-right: 10px;
  display: inline-block;
}

.links {
  display: flex;
  gap: 40px;
}

.links ul {
  list-style: none;
  padding: 0;
}

.links ul li {
  margin-bottom: 8px;
}

.links ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.links ul li a:hover {
  color: #fff;
}

.map iframe {
  border-radius: 8px;
  width: 100%;
}



/* For tablets (max-width: 768px) */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: row;
    gap: 30px;
    padding: 0 20px;
   
  }

  .footer-column {
    flex: 1 1 100%;
  }

  .links {
    flex-direction: row;
    gap: 20px;
  }

  .footer-column h2, 
  .footer-column h3 {
    font-size: 1.1rem;
    padding-right: 5px;
    
  }

  .footer-column p,
  .links ul li a {
    font-size: 0.5rem;
    
   
  }
 

  .social-icons a {
    font-size: 1.1rem;
  }
}

/* For mobile phones (max-width: 480px) */
@media (max-width: 480px) {
  .footer {
    padding: 30px 15px 15px;
    
  }

  .footer-column h2,
  .footer-column h3 {
    font-size: 1rem;
    
  }

  .footer-column p,
  .links ul li a {
    font-size: 0.85rem;
    margin-right: 18px;
  }

  .logo {
    width: 50px;
  }

  .social-icons a {
    font-size: 1rem;
    margin-right: 18px;
  }

  .map iframe {
    height: 200px;
  }
}