@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap");

body {
  font-family: "Montserrat", sans-serif;
  scroll-behavior: smooth;
}

.page-section {
  min-height: 100vh;
  display: none;
  padding-top: 70px;
  padding-bottom: 50px;
}

.page-section.active {
  display: block;
}

.hero-gradient {
  background: linear-gradient(
    135deg,
    rgba(13, 120, 232, 0.9) 0%,
    rgba(10, 201, 233, 0.9) 100%
  );
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.testimonial-card {
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: scale(1.03);
}

.mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.mobile-menu.open {
  max-height: 500px;
}

.nav-item.active {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

.page-title-underline {
  position: relative;
  display: inline-block;
}

.page-title-underline::after {
  content: "";
  position: absolute;
  width: 70px;
  height: 4px;
  background: #0ac9e9;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.contact-input {
  transition: all 0.3s ease;
  border: 2px solid #e2e8f0;
}

.contact-input:focus {
  border-color: #0ac9e9;
  box-shadow: 0 0 0 3px rgba(10, 201, 233, 0.3);
}

/* Whatsapp */
.whatsapp-button {
	position: fixed;
	width: 60px;
	height: 60px;
	bottom: 20px;
	right: 20px;
	background-color: #25D366;
	color: #fff;
	border-radius: 50%;
	text-align: center;
	font-size: 30px;
	z-index: 1000;
	box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
	display: flex;
	align-items: center;
	justify-content: center;
}

.whatsapp-button img {
	width: 35px;
	height: 35px;
}

.hero-image {
  width: 100%;
  height: 60vh;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover; /* Keeps the image contained nicely */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  overflow: hidden; /* This ensures no spillover */
}

.hero-text {
  text-align: center;
  color: white;
  max-width: 90%;
}

.hero-text h2 {
  font-size: clamp(2rem, 6vw, 4rem); /* scales between 2rem and 4rem depending on viewport width */
  margin-bottom: 0.5em;
}

.hero-text p {
  font-size: clamp(1rem, 3vw, 1.5rem);
}

.contact-options {
  padding: 3rem 1rem;
  background-color: #f9f9f9;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  padding: 0;
}

.contact-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  width: 200px;
  transition: transform 0.2s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
}

.contact-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
}

.contact-card h3 {
  font-size: 1.1rem;
  color: #333;
}

/* Dropdown container */
.dropdown {
  position: relative;
  display: inline-block;
  z-index: 50; /* higher z-index to float above */
}

.dropdown-content {
  top: 100%;
  left: 0;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px; 
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content a:hover {
  background-color: #e5e7eb; /* Tailwind gray-200 */
  color: #111827; /* Tailwind gray-900 */
}

.custom-gradient {
  background: linear-gradient(90deg, #0a4060, #013556, #013556, #023f63, #0f4a6c, #2e647d, #357e96);
}

.clip-curtain {
  clip-path: ellipse(150% 100% at 50% 0%);
}

.spotlight {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.spotlight .image.main {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 0;
}

.spotlight .image.main img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    z-index: 0;
    position: absolute;
}

.spotlight .content {
    position: relative;
    z-index: 1;
    background: rgba(23, 24, 32, 0.85);
    color: white;
    padding: 4em 2em;
    max-width: 1000px;
    margin: auto;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
}