body {
  font-family: Arial, sans-serif;
  color: #333333;
  background-color: #f8f9fa;
  margin: 0;
}

.navbar {
  background-color: #005f73 !important;
  padding: 0.6rem 0.2rem;
}

.navbar-brand {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 1.2rem;
  color: #ffffff !important;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.navbar-brand img {
  height: 30px;
  margin-right: 10px;
}

.nav-link {
  color: #ffffff !important;
  font-weight: 600;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
  text-decoration: none;
}

.nav-link:hover,
.nav-link.active {
  color: #00b4d8 !important;
  text-decoration: non;
}

.navbar-toggler {
  border-color: #00b4d8 !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%2300b4d8' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}


.logo-circle {
  width: 150px;            /* adjust as needed */
  height: 150px;           /* make it square */
  border-radius: 50%;      /* makes it circular */
  object-fit: cover;       /* ensures no distortion */
}



.hero-container {
  position: relative;
  height: 60vh;
  margin-bottom: 10px;
}

.hero {
  position: relative;
  background: url('https://www.nanogrille.com/innovtouch/uploads/2019/07/un-compromised-view.jpg') no-repeat center center;
  background-size: cover;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  clip-path: ellipse(120% 100% at 50% 0%);
  overflow: hidden;
  z-index: 1;
}

.hero::before {
  content: "";
  position: absolute;
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;
  background: inherit;
  background-size: cover;
  background-position: center;
  filter: brightness(0.5);
  z-index: 0;
  transform: scale(1.05);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  text-align: center;
  padding: 0 20px;
}

.hero-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.hero-subtitle {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 1.8rem;
}

.cta-button {
  background-color: white;
  color: #005f73;
  padding: 14px 32px;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 2px solid #005f73;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #005f73;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.wave {
  position: absolute;
  bottom: -80px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.wave svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 80px;
}

.wave .shape-fill {
  fill: #f8f9fa;
}

#about .card {
  border-radius: 12px;
  overflow: hidden;
}

#about iframe {
  border-radius: 0;
}

.about-section h2 {
  color: #111;
}

.check-icon {
  color: #e91e63;
  font-weight: bold;
  margin-right: 8px;
}

.feature-box p {
  font-size: 0.8rem;
  margin-bottom: 0.2rem;
}

.custom-outline-btn {
  border: 2px solid #005f73;
  color: #005f73;
  background-color: #fff;
  padding: 0.3rem 0.8rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.custom-outline-btn:hover {
  background-color: #005f73;
  color: #fff;
}

.swiper-slide .card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  border-radius: 10px;
}

.swiper-slide .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}

.card-img-top {
  transition: transform 0.3s ease;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.swiper-slide .card:hover .card-img-top {
  transform: scale(1.05);
}

/* Footer */
.footer {
  background-color: #005f73;
  color: white;
  padding: 1rem 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}

.footer-column {
  flex: 1 1 250px;
}

.footer-column h3 {
  border-bottom: 2px solid white;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

.footer-column p,
.footer-column a,
.footer-column li {
  color: white;
  margin: 0.25rem 0;
  text-decoration: none;
  list-style: none;
}

.footer-column a:hover {
  text-decoration: underline;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  gap: 0.5rem;
}

.contact-item img {
  width: 20px;
  height: 20px;
  margin-top: 4px;
}

.footer-bottom {
  background-color: #005f73;
  color: #ccc;
  text-align: center;
}



.submit-btn {
  background-color: #005f73;
  color: white;
  font-size: 0.9rem;
  padding: 0.4rem 1rem;
  border-radius: 6px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background-color: white !important;
  color: #005f73 !important;
  border: 2px solid #005f73 !important;
}



.footer-heading {
  position: relative;
  display: inline-block;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  /* spacing below the text */
  width: 100%;
  height: 2px;
  background-color: #ffffff;
}

.card {
  border-radius: 1rem;
  width: 100%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;

}

.card-header {
  border-bottom: 1px solid #dee2e6;
}

form label {
  font-weight: 500;
}


/* Optional CSS */
img.rounded-circle {
  border: 3px solid #005f73;
}

.gallery-card {
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.gallery-card .card-img-top {
  object-fit: cover;
  height: 250px;
}




/* Common video style */
.portrait-video {
  object-fit: cover;
  border-radius: 0.5rem;
  /* bootstrap rounded */
}

/* Default for desktop/laptop */
/* Default - Desktop / Tablet */
.gallery-video-card {
  height: 500px;
}

.gallery-video-card video {
  height: 85%;
  object-fit: cover;
  border-radius: 0.5rem 0.5rem 0 0;

}

.gallery-video-card .card-title {
  font-size: 1.4rem;
  /* Optional: make text smaller */
  margin-top: 1px;
}



/* Logo size */
.logo-img {
  height: 32px;
}

/* Show single-line text by default */
.brand-name .mobile-name {
  display: none;
}

.brand-name .desktop-name {
  display: inline;
  font-size: 1.1rem;
  color: white;
  font-weight: 700;
}

/* Mobile View */
@media (max-width: 767px) {
  .gallery-video-card {
    width: 300px !important;
    /* Ensure card width is smaller */
    height: 100% !important;
    /* Ensure card height is smaller */
  }

  .gallery-video-card video {
    height: 90% !important;
    /* Video should not fill the whole card */
  }

  .gallery-video-card .card-body {
    padding: 0.25rem;
    /* Reduce padding */
  }

  .gallery-video-card .card-title {
    font-size: 0.8rem;
    /* Optional: make text smaller */
    margin-top: 2px;
  }



  /* navbar setting */
  .logo-img {
    height: 30px;
  }

  .brand-text {
    font-size: 1.2rem;
    white-space: nowrap;
  }
}

/* On small screens (mobile only) */
@media (max-width: 576px) {
  .logo-img {
    height: 24px;
  }

  .brand-name .desktop-name {
    display: none;
  }

  .brand-name .mobile-name {
    display: inline;
    font-size: 0.95rem;
    color: white;
    font-weight: 700;
    line-height: 1.1;
  }
}



/* Tablet - optional tuning */
@media (min-width: 768px) and (max-width: 1024px) {
  .gallery-video-card {
    height: 400px;
  }

  .gallery-video-card video {
    height: 85%;
  }
}