* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
html, body {
  overflow-x: hidden;
}
body {
  margin: 0;
  font-family:  Arial, sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #fefefe;
}




/* Nav Bar */

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 100px 0px 100px;
    background-color: #fff;
    width: 100%;
    font-size: 18px;
    text-transform: uppercase;
    color: #000;
    
}

/* logo */

.logo {
  display: flex;
  align-items: center;
  gap: 10px;              /* space between icon & text */
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
  white-space: nowrap;
}
.logo-link {
  text-decoration: none;
}

/* Font Awesome icon */
.logo i {
  font-size: 2rem;   /* slightly bigger than text */
  color: #0b366bff;
  
}
.logo-text {
  color:#000;
}

/* nav links */
.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    margin-left: auto;
    gap: 42px;
    font-weight: 600;
    
    
}

.nav-links a{
    text-decoration: none;
    color: #000;
    
}
.nav-links li {
    margin-left: 20px;
    
}
.contact-us-cta {
    margin-left: 64px;
    background-color: #0b366bff;
    padding: 10px 15px;
    border-radius: 10px;
    display: inline-flex; justify-content: center;
    align-items: center;
    
}
.contact-us-cta a{
  color: #fff;
}

/* hero */
.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  height: 100vh;
  padding-left: 50px;
  padding-right: 20px;
  background-image: url("/img/hero-img-main.jpg");
  background-size: cover;          
  background-position: center;
  color: #fff;                     
  text-align: left;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;                       
  background-color: rgba(0,0,0,0.45); 
  z-index: 0;  
}
.hero-content {
  position: relative;              
  z-index: 1;
  max-width: 600px;               
}
.hero-content h1 {
  font-size: 48px;
  line-height: normal;
}
.hero-content p {
  font-size: 20px;
  margin-bottom: 40px;
}

.btn {
  padding:  16px 22px;
  background-color: #0b366bff;
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
  margin-top: 10px;
}



/* Our services */
.services-text {
  text-align: center;
  margin: 0;
  padding: 80px 40px;
  background-color: #f4f6fc;
  }

.services-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 0.5;
  color: #000;
  
}
.services-title p{
  color: #000;
  opacity: 0.7;
}
.services-text p {
  font-size: 1rem;
  font-weight: 500;
  text-shadow: #333;
  
}
/* services card */
.service-card {
display: flex;
  justify-content: center;
  gap: 20px; 
  padding: 20px;
  background-color:#f4f6fc ;

}
.service-content {
  flex: 1; /* Equal width */
  min-width: 280px; /* Prevent too small */
  max-width: 350px;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden; /* Keeps image within rounded corners */
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-align: center;
  transition: 0.3s; /* Smooth hover effect */
  padding-bottom: 30px;
  background-color: #fff;
}
.service-content:hover {
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}
.service-content h3 {
  color: #000;
}
.service-content p {
  margin-bottom: 0;
  opacity: 0.8;
}
.service-btn {
  padding:  16px 22px;
  background-color: #0b366bff;
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
  margin-top: 10px;
}

.card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-content h3 {
  margin: 15px 0;
  font-size: 1.5em;
}

.service-content p {
  padding: 0 15px 30px;
  color: #000;
}
/* about */
.about {
  background-color: #fff;
}
 .about-container {
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 1rem;
  
}

.about-img {
  flex: 0 0 45%;
  min-width: 300px;
  
  
}
.about-img img{
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}
.about-content {
  flex: 0 0 55%;
  
  
}
.about-content h2 {
  font-size: 2rem;
  color: #0b366bff;
}
.about-content p {
  font-size: 1rem;
}
.about-btn {
  display: inline-block;
  padding:  16px 22px;
  background-color: #0b366bff;
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
  margin-top: 20px;
  
}
/* book now */
.book-now {
  background-color: #f4f6fc;
}
.contact-title-section {
  text-align: center;
  padding: 3rem 1rem;
  background-color: #f4f6fc; /* optional: light background for title */
}

.contact-title-section .contact-title {
  font-size: 2rem;
  margin: 0;
  color: #0b366b;
}

.book-now-container {
  display: flex;
  gap: 2rem;
  max-width: 1100px;
  margin: auto;
  padding: 4rem 1rem;
}

/* Left block */
.contact-info {
  flex: 1;
  font-size: 16px;
}
.contact-info h3 {
  font-size: 30px;
  text-transform: capitalize;
  color: #0b366bff;
}
.contact-info h4 {
font-size: 18px;
font-weight: 600;
color: #0b366bff;
margin-bottom: 0;
}
.contact-info p {
font-size: 18px;
margin: 0;
}
.contact-info a {
  text-decoration: none;
  color: #5f86a7ff;
}

/* Right block */
.contact-form {
  flex: 1;
}
/* Form as a card */
.contact-form-card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: 0.3s;
}

/* Hover effect like service cards */
.contact-form-card:hover {
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}


.contact-form-card label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: #333;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-bottom: 1rem;
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: inherit;
  box-sizing: border-box;
}

/* Bigger message box */
.contact-form textarea {
  min-height: 150px;
  resize: vertical; /* allows user to expand */
}


.contact-form button {
  width: 100%;
  padding: 1rem;
  background: #0b366bff;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
}

.contact-form button:hover {
  background: #092a57;
}


/* footer */
.footer {
  background: #0b366b;
  color: #fff;
  padding: 3rem 1rem 1rem;
}

.footer-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Headings & text */
.footer h3,
.footer h4 {
  margin-bottom: 0.6rem;
}


.footer p {
  font-size: 0.9rem;
  line-height: 1.5;
}
.footer-brand p {
  font-size: 1rem;
}

/* Quick Links */
.footer-link {
  text-decoration: none;
  color: #fff;
  font-size: 1rem;
}
.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.4rem;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* Social Icons */
.social-icons a {
  color: #fff;
  font-size: 1.2rem;
  margin-right: 0.8rem;
  transition: 0.3s;
  text-decoration: none;
}

.social-icons a:hover {
  opacity: 0.7;
}


.footer-container > div:last-child {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 2rem;
  padding-top: 1rem;
  text-align: center;
  font-size: 0.8rem;
}



/* =======Media Queries for Responsiveness ========*/

@media (max-width: 1080px) {
   .navbar {
    flex-direction: column;
    align-items: center;
    padding:0 40px; /* smaller padding for mobile */
    justify-content: center;
  }

  /* Space between logo and nav links */
  .logo {
    margin-bottom: 20px;
  }

  /* Stack nav links vertically and center them */
  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-left: 0;
    padding-left: 0;
    width: 100%;
    justify-content: center;
  }

  /* Remove extra spacing on list items */
  .nav-links li {
    margin:0;
  }

  /* Center the Contact Us button */
  .contact-us-cta {
    margin: 0;
  }
}
/* Ipad/ Tablets */
@media (max-width: 992px) {
  .navbar {
    padding: 0 40px;
  }

  /* Slightly smaller logo */
  .logo i {
    font-size: 1.8rem;
  }
  .logo-text {
    font-size: 1.1rem;
  }

  /* Reduce nav link spacing */
  .nav-links {
    gap: 15px;
    justify-content: center;
  }

  /* Adjust contact button */
  .contact-us-cta {
    margin-left: 0;
    
  }
   .hero-content h1 {
    font-size: 3rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }
  /* service cards  */
  .service-card {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  }



@media (max-width: 768px) {
  .logo-text {
    font-size: 1rem;
    text-align: center;
  }
  .logo i {
    font-size: 1.6rem;
  }
  .nav-links a {
    font-size: 0.95rem;
  }
  .contact-us-cta {
    padding: 10px 18px;
  }
  .hero {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-right: 0;
    padding-left:0;
    height: 70vh;
  }
  .hero-content {
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

 .about-container {
  flex-direction: column;
  text-align: left;
 }
 .about-content {
  order: 1;
  flex: 0 0 100%;
  max-width: 100%;
 }
 .about-img {
  order: 2;
  flex: 0 0 100%;
  max-width: 100%;
  margin-top: 1.5rem;
 }
 .about-img img{
  max-width: 420px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
 }
 .book-now-container {
    flex-direction: column;
}
.footer-container {
    flex-direction: column;
    text-align: center;
  }
    .social-icons {
    margin-top: 0.5rem;
  }
}