:root {
  --nav-height: 70px;
  --nav-bg: #ffffff;
  --nav-bg-scrolled: #ffffff;
  --nav-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --nav-text: #ffffff;
  --nav-text-hover: #4a6cf7;
  --nav-transition: all 0.3s ease;
  --nav-logo-size: 1.5rem;
  --nav-active-indicator: 2px solid #4a6cf7;
}


/* Navbar */
.sticky-nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  background-color: transparent;
  transition: var(--nav-transition);
  z-index: 1000;
}

.sticky-nav.scrolled {
  background-color: var(--nav-bg-scrolled);
  box-shadow: var(--nav-shadow);
}

.sticky-nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sticky-nav-logo {
  display: flex;
  align-items: center;
  font-size: var(--nav-logo-size);
  font-weight: 700;
  color: var(--nav-text);
}

.sticky-nav-logo i {
  margin-right: 0.5rem;
  color: var(--nav-text-hover);
}

.sticky-nav-menu ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.sticky-nav-menu li {
  margin: 0 1rem;
}

.sticky-nav-menu a {
  display: block;
  padding: 0.5rem 0;
  color: var(--nav-text);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: var(--nav-transition);
}

.sticky-nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--nav-text-hover);
  transition: var(--nav-transition);
}

.sticky-nav-menu a:hover {
  color: var(--nav-text-hover);
}

.sticky-nav-menu a:hover::after,
.sticky-nav-menu a.active::after {
  width: 100%;
}

.sticky-nav-menu a.active {
  color: var(--nav-text-hover);
}

.sticky-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--nav-text);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--nav-transition);
}

.sticky-nav-toggle:hover {
  color: var(--nav-text-hover);
}

/* Banner styling */
.banner {
  position: relative;
  height: 70vh;
  max-height: 500px;
  overflow: hidden;
}

.bannerimg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Typing text and button overlay on banner */
.banner-overlay {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
}

.typing-text {
  font-size: 28px;
  font-weight: bold;
  color: white;
  overflow: hidden;
  white-space: nowrap;
  border-right: 3px solid #3498db;
  /*  --- animations ---  */
  /* typing: plays once, holds final frame */
  /* blink: cursor blinks 6 times, then stops */
  animation: typing 3s steps(20) 1 forwards,
             blink 0.5s step-end 6 alternate;
  margin-bottom: 1rem;
}

@keyframes typing {
  0%   { width: 0; }
  100% { width: 100%; }
}

@keyframes blink {
  50% { border-color: transparent; }
}

.glowing-button {
  padding: 12px 24px;
  background: transparent;
  color: #00eeff;
  border: 2px solid #00eeff;
  border-radius: 5px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 0 5px #00eeff, 0 0 10px #00eeff;
  transition: all 0.3s ease;
}

.glowing-button:hover {
  background: #00eeff;
  color: #000;
  box-shadow: 0 0 10px #00eeff, 0 0 20px #00eeff, 0 0 40px #00eeff;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .sticky-nav-menu {
    flex-direction: column;
    align-items: center;
    background-color: var(--nav-bg);
    position: fixed;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    padding: 1rem 0;
    transform: translateX(-100%);
    opacity: 0;
    pointer-events: none;
    z-index: 999;
    transition: all 0.3s ease;
  }

  .sticky-nav-menu.mobile-active {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }

  .sticky-nav-menu ul {
    flex-direction: column;
    align-items: center;
  }
 .sticky-nav-menu a,
.sticky-nav-toggle {
  color: black;
  transition: var(--nav-transition)
}

  .sticky-nav-menu li {
    margin: 0.5rem 0;
    width: 100%;
    text-align: center;
  }

  .sticky-nav-toggle {
    display: block;
  }

  .typing-text {
    font-size: 18px;
  }

  .typing-text1 {
    font-size: 20px;
    width: 20ch;
  }

  .glowing-button {
    font-size: 16px;
  }

  .banner {
    width: 100%;
    height: 45vh;
  }

  .story-txt {
    font-size: 22px;
  }
}



.contact-section {
  background-color: #002a28;
  color: #fff;
  padding: 80px 20px;
}

.contact-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
}

.contact-left,
.contact-right {
  flex: 1;
  min-width: 300px;
}

.contact-image img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 20px;
}

.contact-info {
  font-size: 15px;
  color: #ccc;
  line-height: 1.8;
}

.contact-info h4 {
  color: #d4a04a;
  font-size: 16px;
  margin-bottom: 15px;
}

.vertical-line {
  width: 1px;
  background-color: #d4a04a;
  height: 100%;
  min-height: 300px;
  position: relative;
}

.contact-right {
  max-width: 500px;
}

.form-title {
  font-size: 2rem;
  margin-bottom: 10px;
}

.form-subtext {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 30px;
}

.contact-form {
  max-width: 100%;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  max-width: 400px;
  background: transparent;
  border: 1px solid #777;
  color: #fff;
  padding: 12px 15px;
  font-size: 14px;
  margin-bottom: 20px;
  border-radius: 4px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}


.contact-form textarea {
  resize: none;
}

.send-btn {
  background-color: #f2b544;
  color: #000;
  font-weight: 600;
  padding: 12px 20px;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  transition: 0.3s ease;
}
.send-btn {
  display: block;
  margin: 0 auto;
}


.send-btn:hover {
  background-color: #e6a93e;
}
@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .contact-left,
  .contact-right {
    width: 100%;
    max-width: 500px;
    text-align: center;
  }

  .contact-image img {
    max-width: 80%;
    margin: 0 auto 20px;
    display: block;
  }

  .vertical-line {
    display: none;
  }

  .contact-info p {
    font-size: 14px;
    line-height: 1.6;
  }

 .contact-form input,
.contact-form textarea {
  width: 90%;
  max-width: 400px;
  margin: 10px auto;
  display: block;
  padding: 12px 15px;
  border-radius: 4px;
  background: transparent;
  border: 1px solid #777;
  color: #fff;
  font-size: 14px;
}

  .form-title {
    font-size: 1.8rem;
  }

  .send-btn {
  width: 90%;
  max-width: 250px;
  margin: 20px auto 0;
  display: block;
}

}

.footer-section {
  background: #0c2c27;
  color: #fff;
  text-align: center;
  padding: 50px 20px;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
}
.footer-circle {
  width: 200px;
  height: 200px;
  border: 2px solid gold;
  border-radius: 50%;
  overflow: hidden;
  margin: 20px;
}
.footer-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.footer-center {
  max-width: 500px;
}
.footer-logo {
  font-size: 24px;
  margin-bottom: 20px;
}
.footer-newsletter form {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
.footer-newsletter input {
  padding: 10px;
  border: none;
  width: 60%;
}
.footer-newsletter button {
  background: #f4b41a;
  color: #000;
  border: none;
  padding: 10px 20px;
}
.footer-bottom {
  margin-top: 40px;
  border-top: 1px solid #444;
  padding-top: 20px;
  font-size: 14px;
}
.footer-social a {
  margin: 0 10px;
  color: #f4b41a;
  font-size: 18px;
}
.footer-map iframe {
  width: 100%;
  max-width: 100%;
  height: 300px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
