body{
    height: 100%;
}
section{
    margin-top: 120px;
}

 section .contactCards{
    display: flex;
    justify-content: space-around;
    margin-top: 60px;
}

header {
  width: 100%;
  background-color: #fff;
  padding: 0px 24px 0px 24px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  border-bottom: 1px solid #eee;
  position: fixed;
  z-index: 1000;
  top: 0;
}

.logo {
  font-size: 20px;
  font-weight: bold;
  color: #333;
}

.logo img{
  width: 180px;
  height: 120px;

}

nav {
  display: flex;
  gap: 24px;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding-left: 35px;
}

nav a.active{
  color: #ed8e00; /* or any brand color */
font-weight: 600;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 3px;
  background: #333;
  border-radius: 2px;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  animation: slideDown 0.3s ease;
}

.mobile-menu a {
  padding: 12px 24px;
  border-top: 1px solid #eee;
  text-decoration: none;
  color: #333;
}

@keyframes slideDown {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 768px) {
  nav {
    display: none;
  }
  nav a{
    text-decoration: none;
  }
  .hamburger {
    display: flex;
  }

  .mobile-menu.show {
    display: flex;
  }
}

.contactCard{
    background-color: #fff;
    width: 100%;
    max-width: 400px;
    height: 250px;
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    display: flex;
    flex-direction: column;
}
.contactCard:hover{
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    background-color: #ff9800;
    transition: all 0.5s ease-in-out;
    transform: scale(1.05);
    color: #fff;
}
.contactCard:hover .fa-solid{
    color: #fff;
    border: 3px solid #fff;
}
.contactCard:hover h5{
    color: #fff;
}
.contactCard:hover h6{
    color: #fff;
}
.contactCard .fa-solid{
    margin: 25px auto;
    color: #ff9800;
    border: 3px solid #ff9800;
    padding: 10px;
    border-radius: 50%;
    margin-top: 50px;
}
.contactCard h5{
    font-weight: bold;
    color: #ff9800;
    font-family: Arial, Helvetica, sans-serif;
    font-size: large;
}
.contactCard h6{
    color: #ff9800;
    font-family: Arial, Helvetica, sans-serif;
    font-size: large;
}

.container {
    display: flex;
    width: 100%;
    margin: 0 20px;
    margin-top: 100px;
    justify-content: center;
    height: 100%;
    max-height: 540px;
    margin-bottom: 80px;
  }
  
  /* Map Section */
  .map {
    width: 100%;
    max-width: 500px;
    height: 100%;
    background-color: #e5e5e5;
    position: relative;
  }
  
  .map iframe {
    width: 100%;
    height: 100%;
    border: none;
  }
  
  /* Contact Form Section */
  .contact-form {
    width: 100%;
    max-width: 500px;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 40px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .contact-form h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
  }
  
  .contact-form .form-group {
    display: flex;
    flex-direction: column;
  }
  
  .contact-form label {
    font-size: 14px;
    font-weight: 500;
    color: #555;
    margin-bottom: 5px;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 20px;
    width: 100%;
    transition: border-color 0.3s;
  }
  
  .contact-form input:focus,
  .contact-form textarea:focus {
    border-color: #ff9800;
    outline: none;
  }
  
  .contact-form button {
    background-color: #ff9800;
    color: white;
    padding: 15px;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .contact-form button:hover {
    background-color: #d2a956;
  }


/* Banner Style */
.contact-banner {
  background-color: #d38107; /* Amber background */
  background-image: linear-gradient(135deg, #d38107, #d97a0f); /* Premium gradient effect */
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px; /* Adjust banner height */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for premium look */
  margin: 20px 0; /* Margin to create space around banner */
}

/* Banner Content */
.banner-content {
  text-align: center;
  padding: 0 20px;
}

.banner-content h1 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.2;
}


/* Tablet responsiveness */
@media screen and (min-width: 600px) and (max-width: 1024px) {
  .contact-banner {
      height: 180px; /* Adjust height for tablets */
  }

  .banner-content h1 {
      font-size: 2.5rem; /* Medium font size for tablets */
  }
  .contactCard{
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    background-color: #ff9800;
    color: #fff;
  }
  .contactCard h5{
    color: #fff;
  }
  .contactCard h6{
    color: #fff;
  }
  .contactCard .fa-solid{
    color: #fff;
  }
}

@media screen and (max-width:768px) {
    section .contactCards{
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .contactCard{
        margin: 20px auto;
        width: 100%;
        max-width: 360px;
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
        background-color: #ff9800;
        color: #fff;
    }
    .contactCard h5{
      color: #fff;
    }
    .contactCard h6{
      color: #fff;
    }
    .contactCard .fa-solid{
      color: #fff;
    }
    .container{
        display: grid;
        width: 100%;
    }
    footer{
        margin-top: 250px;
    }
    .contact-banner {
      height: 150px; /* Adjust height on smaller screens */
  }

  .banner-content h1 {
      font-size: 2rem; /* Smaller font size for mobile */
  }
}
@media screen and (max-width:1024px) {
  section .contactCards{
    display: flex;
    flex-wrap: wrap;
    margin: 20px auto;
    gap: 20px;
  }
}


body {
  font-family: 'Segoe UI', sans-serif;
  overflow-x: hidden;
  background: #fff;
}

.banner {
  position: relative;
  height: 100vh;
  max-height: 400px;
  background: linear-gradient(135deg, #ff6a00, #ffb347);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.banner h1 {
  font-size: 3.2rem;
  z-index: 2;
  font-weight: 700;
  color: white;
  text-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.element {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  pointer-events: none;
}

/* ✨ Animated shapes */
.circle {
  background: #fff;
  width: 80px;
  height: 80px;
  animation: float 12s ease-in-out infinite;
}

.ring {
  border: 3px solid #fff;
  background: transparent;
  width: 120px;
  height: 120px;
  animation: pulse 10s ease-in-out infinite;
}

.triangle {
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-bottom: 50px solid rgba(255,255,255,0.3);
  animation: spin 20s linear infinite;
}

.particle {
  background: #fff;
  width: 6px;
  height: 6px;
  animation: drift 8s ease-in-out infinite;
}

/* Element Positioning */
.circle      { top: 10%; left: 20%; }
.ring        { top: 70%; left: 80%; }
.triangle    { top: 50%; left: 10%; }
.particle:nth-child(4) { top: 30%; left: 60%; }
.particle:nth-child(5) { top: 80%; left: 40%; }
.particle:nth-child(6) { top: 20%; left: 75%; }
.particle:nth-child(7) { top: 60%; left: 25%; }

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.05); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.15; }
  50% { transform: scale(1.2); opacity: 0.3; }
}

@keyframes spin {
  0% { transform: rotate(0deg) scale(1); }
  100% { transform: rotate(360deg) scale(1); }
}

@keyframes drift {
  0% { transform: translate(0, 0); opacity: 0.15; }
  50% { transform: translate(10px, -10px); opacity: 0.4; }
  100% { transform: translate(0, 0); opacity: 0.15; }
}

@media (max-width: 768px) {
  .banner h1 {
    font-size: 2rem;
    padding: 0 20px;
  }
}