:root {
  --header-h: 72px; /* header height used for offsets */
}

/* Base */
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  width: 100%;
  height: 100%;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
span{color: black;}
/* Header */
.header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 18px;
  background: rgb(23, 170, 151);
  color: black;
  height: var(--header-h);
  position: sticky;
  top: 0; /* keep it flush to top */
  z-index: 100;
  gap: 100px;
}
.header > * { min-width: 0; }

/* Brand & right */
.right { display: flex; align-items: center; gap: 80px; flex: 0 0 auto; min-width: 0; }
.brand { display:flex; align-items:center; gap:1px; text-decoration:none; color:inherit; flex: 0 0 auto; }
.brand img { width:40px; height:40px; border-radius:6px; object-fit:contain; }
.brand-title { display:flex; flex-direction:column; line-height:1; }
.brand-title .title { font-weight:700; font-size:16px; }

/* Hamburger (hidden on larger screens) */
.hamburger {
  display: none;
  background: transparent;
  color: black;
  border: 1px solid rgba(255,255,255,0.04);
  padding: 8px 10px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 20px;
  z-index: 140;
}

/* Left (nav + CTA) */
.left { display:flex; align-items:center; gap: 12px; flex: 1 1 auto; min-width:0; }
.navBar { display:flex; align-items:center; flex:1 1 auto; min-width:0; }
.navLinks { display:flex; align-items:center; justify-content:center; min-width:0; }
.linkRight { list-style:none; display:flex; gap:24px; align-items:center; white-space:nowrap; margin:0; padding:0; min-width:0; }

.linkRight a { color:black; text-decoration:none; padding:8px 10px; border-radius:8px; font-weight:600; display:inline-block; }
.linkRight a:hover { background: rgba(255,255,255,0.03); transform: translateY(-2px); transition: transform .12s ease; }

/* Dropdown */
.dropdown { position:relative; }
.dropdown-menu {
  position:absolute;
  top: calc(50% + 10px);
  left: 0;
  min-width:100px;
  background:rgb(23, 170, 151);
  border-radius:8px;
  padding:8px 6px;
  display:none;
  /* width: 100px; */
  box-shadow:0 8px 20px rgba(0,0,0,0.4);
  z-index: 40;
}
.dropdown-menu li{
  list-style: none;
}
.dropdown:hover > .dropdown-menu,
.dropdown:focus-within > .dropdown-menu { display:block; }
.dropdown-menu a { 
  display:block; 
  padding:8px 10px; 
  color:black; 
  text-decoration:none; 
}

/* CTA */
.btn-cta { background: black; color:rgb(23, 170, 151); border:none; padding:10px 14px; border-radius:8px; font-weight:800; cursor:pointer; flex:0 0 auto; }

/* MAIN offset (push content below sticky header) */
main {
  padding-top: calc(var(--header-h) + 16px); /* header height + breathing space */
  padding-left: 24px;
  padding-right: 24px;
  max-width: 1200px;
  margin: 0 auto 40px;
  box-sizing: border-box;
}

/* Responsive / mobile */
@media (max-width: 1024px) {
  .hamburger { display:inline-flex; align-items:center; justify-content:center; }

  .navBar { display: none; }

  .navBar.active {
    display: flex !important;
    position: fixed;
    left: 8px;
    right: 8px;
    top: calc(var(--header-h) + 12px);
    background: rgb(23, 170, 151);
    border-radius: 10px;
    padding: 12px;
    flex-direction: column;
    gap: 8px;
    z-index: 9999;
    max-height: calc(100vh - (var(--header-h) + 40px));
    overflow-y: auto;
    box-sizing: border-box;
    -webkit-overflow-scrolling: touch;
  }

  .navBar.active .navLinks { display:flex; flex-direction:column; gap:8px; }
  .navBar.active .linkRight { flex-direction:column; gap:8px; align-items:stretch; white-space:normal; }

  .dropdown-menu {
    position: static;
    display: none;
    padding-left: 12px;
    box-shadow: none;
    background: transparent;
    border-radius: 0;
  }
  .dropdown.expanded > .dropdown-menu { display:block; }

  /* smaller header on very small screens */
  @media (max-width: 420px) {
    :root { --header-h: 64px; }
    .brand-title .title { font-size: 15px; }
    .brand img { width:34px; height:34px; }
    .header{gap: 16px;}
  }
}

/* Large screens */
@media (min-width: 1200px) {
  .header { padding-top: 14px; padding-bottom: 14px;}
}








/*== multiple type animation css code ==*/

/* Fade-in */
.fade {
  opacity: 0;
  transition: opacity 6s;
}
.fade.show {
  opacity: 1;
}

/* Jump */
.jump {
  transform: translateY(50px);
  opacity: 0;
  transition: all 6s;
}
.jump.show {
  transform: translateY(0);
  opacity: 1;
}

/* Slide from left */
.slide {
  transform: translateX(-50px);
  opacity: 0;
  transition: all 6s;
}
.slide.show {
  transform: translateX(0);
  opacity: 1;
}






/* Layout container */
.container {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* Hero */
.contact-hero {
  padding-top: 36px;
  padding-bottom: 36px;
  background-color: #f7f9f9;
}

.hero-title {
  font-size: 28px;
  line-height: 1.1;
  margin-bottom: 8px;
  font-weight: 700;
}

.hero-sub {
  font-size: 15px;
  color: #666666;
}

/* Contact section - two column layout */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 28px;
  margin-top: 28px;
  margin-bottom: 48px;
}

/* Card base */
.contact-card {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 22px;
  box-shadow: 0 6px 18px rgba(16, 24, 40, 0.06);
}

/* Form card specifics */
.contact-form-card h2 {
  font-size: 20px;
  margin-bottom: 6px;
  font-weight: 700;
}

.muted {
  color: #707b7b;
  margin-bottom: 12px;
}

.contact-form {
  display: block;
  margin-top: 8px;
}

/* Labels and inputs */
.contact-form label {
  display: block;
  font-size: 13px;
  margin-top: 12px;
  margin-bottom: 6px;
  font-weight: 600;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 6px;
  border: 1px solid #d7dfdf;
  font-size: 14px;
  line-height: 1.3;
}

/* Textarea manual height */
.contact-form textarea {
  resize: vertical;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  background-color: rgb(23, 170, 151);
  color: #ffffff;
  margin-top: 16px;
  margin-right: 8px;
}

.btn-secondary {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 6px;
  border: 1px solid #cdd8d8;
  cursor: pointer;
  font-weight: 700;
  background-color: #ffffff;
  color: #333333;
  margin-top: 16px;
}

/* Form actions alignment */
.form-actions {
  margin-top: 10px;
}

/* Contact info card specifics */
.contact-info-card h2 {
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 700;
}

.info-row {
  margin-top: 12px;
  margin-bottom: 12px;
}

.info-row strong {
  display: block;
  margin-bottom: 6px;
  color: #222222;
}

.info-row a {
  color: rgb(23, 170, 151);
  text-decoration: none;
  word-break: break-word;
}

.map-wrapper {
  margin-top: 14px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #e6eded;
}

/* Footer */
.site-footer {
  background-color: #fbfdfe;
  padding-top: 18px;
  padding-bottom: 18px;
  margin-top: 12px;
}

.site-footer p {
  color: #556464;
  font-size: 14px;
  text-align: center;
}

/* Small helper text */
.small {
  font-size: 13px;
}

.error-message {
  color: red;
  font-size: 13px;
  margin-top: 4px;
  display: block;
}


/* Responsive: break at 768px and below */
@media (max-width: 768px) {
  .contact-section {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-bottom: 8px;
  }

  .contact-hero {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .hero-title {
    font-size: 22px;
  }

  .contact-card {
    padding: 18px;
  }

  .map-wrapper iframe {
    height: 220px;
  }
}







.footer {
  background:rgb(23, 170, 151);
  color: black;
}

.footer-container {
  /* max-width: 1100px; */
  margin-left: 80px;
  margin-right: auto;
  padding: 40px 16px;
  display: flex;
  flex-wrap: wrap;
}

.footer-about {
  flex: 1 1 250px;
}

.footer-links {
  flex: 1 1 200px;
}

.footer-contact {
  flex: 1 1 250px;
}

.footer-title {
  font-size: 18px;
  margin-bottom: 16px;
  margin-top: 20px;
}

.footer-text {
  font-size: 14px;
  width: 200px;
}

/* .footer-contact .mail{
  color: white;
} */

.footer-list {
  list-style: none;
  padding-left: 0;
}

.footer-list li {
  margin-bottom: 8px;
}

.footer-list li a {
  color: #fff;
  text-decoration: none;
}

.footer-list li a:hover {
  text-decoration: underline;
}

.footer-social {
  margin-top: 16px;
}

.social-icon {
  display: inline-block;
  margin-right: 10px;
  color: #fff;
  text-decoration: none;
}

.social-icon img{
  height: 40px;
  width: 40px;
  background-color: white;
  overflow: hidden;

}

.social-icon:hover {
  text-decoration: underline;
}

.footer-newsletter {
  margin-top: 16px;
}

.newsletter-input {
  padding: 8px;
  border: none;
}

.newsletter-btn {
  padding: 8px 16px;
  background-color: #fff;
  color: #222;
  border: none;
  cursor: pointer;
}

.footer-bottom {
  text-align: center;
  padding: 16px;
  border-top: 1px solid #444;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
  }

  .footer-about,
  .footer-links,
  .footer-contact {
    flex: 1 1 100%;
    margin-bottom: 24px;
  }
}
