/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
  }
  
  body, html {
    height: 100%;
  }
  
  .navbar-container {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    font-family: Arial, sans-serif;
  }
  
  .header-top {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    background: #f5f5f5;
    border-bottom: 1px solid #e0e0e0;
  }
  
  .logo-img {
    height: 90px;
    width: auto;
    object-fit: contain;
  }
  
  .header-text {
    margin-left: 20px;
  }
  
  .header-text h1 {
    font-size: 1.5rem;
    color: #333;
    margin: 0;
    font-weight: bold;
  }
  
  .header-text .tagline {
    font-size: 0.9rem;
    color: #666;
    margin: 3px 0 0;
    font-style: italic;
  }
  
  .header-text .legal {
    font-size: 0.7rem;
    color: #777;
    margin: 5px 0 0;
  }
  
  .navbar {
    width: 100%;
    padding: 0 20px;
    background: #003366;
  }
  
  .nav-links {
    display: flex;
    gap: 25px;
    padding: 10px 0;
  }
  
  .nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    padding: 8px 0;
    position: relative;
    transition: all 0.3s;
    font-weight: 500;
  }
  
  .nav-links a:hover {
    color: #f2aa4c;
  }
  
  /* Mobile Styles */
  .nav-toggle {
    display: none;
  }
  
  .hamburger {
    display: none;
    font-size: 1.8rem;
    color: #f2aa4c;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }
  
  @media (max-width: 992px) {
    .nav-links {
      gap: 15px;
    }
  }
  
  @media (max-width: 768px) {
    .header-top {
      flex-direction: column;
      align-items: flex-start;
      padding: 15px;
    }
    
    .header-text {
      margin-left: 0;
      margin-top: 10px;
    }
    
    .hamburger {
      display: block;
    }
  
    .nav-links {
      position: fixed;
      top: 160px;
      left: -100%;
      width: 100%;
      height: calc(100vh - 160px);
      background: #003366;
      flex-direction: column;
      align-items: flex-start;
      padding: 20px;
      gap: 0;
      transition: left 0.4s ease;
    }
  
    .nav-toggle:checked ~ .nav-links {
      left: 0;
    }
  
    .nav-links a {
      width: 100%;
      padding: 15px 0;
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }
  }
  
  @media (max-width: 480px) {
    .header-text h1 {
      font-size: 1.3rem;
    }
    
    .nav-links {
      top: 180px;
      height: calc(100vh - 140px);
    }
  }
  
/* Contact Hero */
.contact-hero {
    position: relative;
    height: 100vh;
    background: url('../Assets/Contact/contact.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
  }

  /* Floating Label Effect */
.form-group {
  position: relative;
  margin-bottom: 2rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 15px 0 5px 0;
  border: none;
  border-bottom: 2px solid #ddd;
  font-size: 1rem;
  background: transparent;
  transition: all 0.3s ease;
}

.form-group label {
  position: absolute;
  left: 0;
  top: 15px;
  color: #777;
  transition: all 0.3s ease;
  pointer-events: none;
  font-size: 1rem;
}

/* When input is focused or has content */
.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label,
.form-group select:focus + label,
.form-group select:not([value=""]) + label {
  top: -5px;
  font-size: 0.8rem;
  color: #f2aa4c;
}

/* For select dropdown */
.form-group select:invalid + label {
  top: 15px;
  font-size: 1rem;
}
.form-group select:focus + label,
.form-group select:valid + label {
  top: -5px;
  font-size: 0.8rem;
  color: #f2aa4c;
}

 /* contact form */
.contact-hero .hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  animation: fadeInDown 1s ease;
}

.contact-hero .hero-content p {
  font-size: 1.5rem;
  color: #f2aa4c;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease 0.3s both;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  color: white;
  animation: bounce 2s infinite;
  cursor: pointer;
}

/* Contact Section */
.contact-section {
  padding: 5rem 2rem;
  background: #f9f9f9;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-form {
  background: white;
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact-form h2 {
  font-size: 2.2rem;
  color: #333;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
}

.contact-form h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #f2aa4c;
}

.form-group {
  position: relative;
  margin-bottom: 2rem;
}

.form-group label {
  position: absolute;
  left: 0;
  top: 10px;
  color: #777;
  transition: all 0.3s ease;
  pointer-events: none;
  font-size: 1rem;
}

.form-group label.active {
  top: -20px;
  font-size: 0.85rem;
  color: #f2aa4c;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px 0;
  border: none;
  border-bottom: 2px solid #ddd;
  font-size: 1rem;
  background: transparent;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-bottom-color: #f2aa4c;
}

.form-group i {
  position: absolute;
  right: 0;
  top: 10px;
  color: #777;
  transition: all 0.3s ease;
}

.form-group select {
  appearance: none;
  cursor: pointer;
}

.submit-btn {
  background: #f2aa4c;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: block;
  margin: 2rem auto 0;
}

.submit-btn:hover {
  background: #e67e22;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.submit-btn i {
  margin-left: 8px;
}

/* Contact Info */
.contact-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.info-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.info-icon {
  width: 60px;
  height: 60px;
  background: #f2aa4c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.info-card h3 {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 1rem;
}

.info-card p {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

.whatsapp-float {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    text-decoration: none;
    box-shadow: 2px 2px 12px rgba(0,0,0,0.3);
    transition: background-color 0.3s ease;
  }
  
  .whatsapp-float:hover {
    background-color: #1ebea5;
  }
  /* Email Icon */
.email-float {
    position: fixed;
    top: 62%; /* Adjust as needed */
    right: 20px;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    background-color: #0072c6;
    color: white;
    border-radius: 50%;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    text-decoration: none;
    box-shadow: 2px 2px 12px rgba(0,0,0,0.3);
    transition: background-color 0.3s ease;
  }
  
  .email-float:hover {
    background-color: #005a9e;
  }

/* Map */
/* .map-container {
  width: 100%;
  height: 450px;
  margin-top: 5rem;
} */

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-20px) translateX(-50%);
  }
  60% {
    transform: translateY(-10px) translateX(-50%);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
  
  .contact-info {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .contact-hero .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .contact-hero .hero-content p {
    font-size: 1.2rem;
  }
  
  .contact-form {
    padding: 2rem;
  }
  
  .contact-info {
    grid-template-columns: 1fr;
  }
}


/* Footer */
/* Footer Styling */
.footer {
  background: #111;
  color: #eee;
  padding: 3rem 1rem 2rem;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer h2 {
  margin-bottom: 0.5rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: #f2aa4c;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer p {
  margin-bottom: -0.5rem;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: #ccc;
  line-height: 1.6;
}

.social-icons {
  margin: 1.5rem 0;
}

.social-icons a {
  color: #f2aa4c;
  font-size: 2.2rem;
  margin: 0 1.2rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.social-icons a:hover {
  color: #fff;
  transform: translateY(-5px);
}

/* Flexbox Layout for Footer Details */
.footer-details {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 2.5rem 0;
  text-align: left;
  gap: 2rem;
}

.footer-contact, 
.quick-links, 
.footer-services {
  flex: 1;
  min-width: 250px;
  padding: 0 1rem;
}

.footer-contact p, 
.quick-links p, 
.footer-services p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #f2aa4c;
  font-weight: 500;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-contact p::after,
.quick-links p::after,
.footer-services p::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: #f2aa4c;
}

.footer-contact p i,
.quick-links a i,
.footer-services a i {
  margin-right: 8px;
  font-size: 0.9rem;
}

.footer-contact p {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  color: #ccc;
}

.footer-contact p i {
  margin-top: 3px;
}

.quick-links ul,
.footer-services ul {
  list-style-type: none;
  padding: 0;
}

.quick-links li,
.footer-services li {
  margin-bottom: 0.8rem;
}

.quick-links a,
.footer-services a {
  color: #ccc;
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
  padding: 0.3rem 0;
  font-size: 0.95rem;
}

.quick-links a:hover,
.footer-services a:hover {
  color: #f2aa4c;
  transform: translateX(5px);
}

.copyright {
  font-size: 0.9rem;
  color: #999;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #333;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer {
    padding: 2rem 1rem;
  }
  
  .footer-details {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  
  .footer-contact p,
  .quick-links p,
  .footer-services p {
    justify-content: center;
  }
  
  .footer-contact p::after,
  .quick-links p::after,
  .footer-services p::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .quick-links a,
  .footer-services a {
    justify-content: center;
  }
  
  .social-icons a {
    font-size: 1.8rem;
    margin: 0 0.8rem;
  }
}

@media (min-width: 1024px) {
  .footer {
    padding: 4rem 2rem;
  }
}
