/* ------------------------------------
   Base Styles
------------------------------------ */
body {
  font-family: 'Manrope', sans-serif;
}

/* ------------------------------------
   Sticky Header
------------------------------------ */
.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  background-color: #fff;
  transition: box-shadow 0.3s ease-in-out;
  box-shadow: none;
}

.sticky-header.sticky-visible {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-container {
  max-width: 60%;
  padding: 10px 0;
  margin: auto;
}

.logo img {
  width: 150px;
  height: auto;
}

.navbar-nav {
  gap: 1rem;
}

.gradient-btn {
  background: linear-gradient(135deg, #0066FF, #F09CFF) !important;
  border: none !important;
  color: white !important;
}

/* ------------------------------------
   Hero Section
------------------------------------ */
.hero-section {
  background: url('../img/196034.jpg') no-repeat center center;
  background-size: cover;
  height: 600px;
  padding: 0 0 100px 0;
}

.hero-headline {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
}

/* ------------------------------------
   Sub Headline
------------------------------------ */
.subheadline-section {
   margin:180px 80px 0 40px; /* Less margin to bring map/address closer */
  color: #333;
  text-align: center;
}

.subheadline {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.5;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 40px;
}

/* ------------------------------------
   Address & Map Section
------------------------------------ */
.address-box {
  background-color: #e7f2ff;
  padding: 25px;
  border-radius: 12px;
  font-size: 1rem;
  line-height: 1.6;
  height: 350px;
  margin: auto;
  display: flex;               /* Flex container */
  flex-direction: column;      /* Stack content vertically */
  justify-content: center;     /* Vertical center */
  align-items: center;         /* Horizontal center */
  text-align: left;          /* Center text inside */
}

.map-box iframe {
  width: 100%;
  border-radius: 12px;
}

/* ------------------------------
   Pre-Footer Section
------------------------------ */
.pre-footer {
  background-color: #f9f9f9; /* Light gray */
  color: #000;               /* Black text */
  height: 300px;
  display: flex;             /* Enable flexbox */
  justify-content: center;   /* Horizontal center */
  align-items: center;       /* Vertical center */
  text-align: center;
  padding: 0 20px;           /* Safe padding for mobile */
  margin-top: 180px;
}

.pre-footer .container {
  max-width: 60%;
  margin: 0 auto;
}

.pre-footer p {
  font-size: 1.125rem;
  line-height: 1.8;
  margin: 0;
}

/* ------------------------------
   FOOTER
------------------------------ */
.footer {
  background-color: #14102b;
  color: #fff;
  padding: 60px 40px 20px;
  
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 60%;
  margin: 0 auto;
}

.footer-col { flex: 1 1 200px; min-width: 220px; margin-bottom: 20px; }

.footer-col h4 { font-size: 1rem; font-weight: 600; margin-bottom: 20px; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 20px; }
.footer-col ul li a { color: #ccc; text-decoration: none; font-size: 0.95rem; transition: color 0.3s ease; }
.footer-col ul li a:hover { color: #fff; }

.social-icons a { display: inline-block; margin-right: 10px; transition: background-color 0.3s ease; }

.footer-bottom {
  background-color: #000;
  color: #ccc;
  width: 100%;
  height: 60px;
  line-height: 60px;
  text-align: center;
  font-size: 0.85rem;
}

.footer-bottom strong { color: #fff; }

/* ------------------------------------
   Responsive
------------------------------------ */
@media (max-width: 992px) {
  .navbar-container {
    max-width: 90%;
  }
}

@media screen and (max-width: 768px) {
  .subheadline {
    font-size: 2.2rem;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-col {
    margin-bottom: 30px;
  }

  .footer-bottom {
    padding: 0 20px;
    text-align: center;
  }

  .hero-headline {
    font-size: 2.5rem;
  }

  .address-box {
    margin-bottom: 20px;
  }
}

@media (max-width: 576px) {
  .hero-section {
    height: 400px;
  }

  .hero-headline {
    font-size: 2rem;
  }

  .subheadline {
    font-size: 1.8rem;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .pre-footer .container {
    max-width: 90%;
  }

  .pre-footer p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .pre-footer p {
    font-size: 0.95rem;
  }
}