/* General Styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #e2e6e7;
  }
  
  a {
    text-decoration: none;
    color: inherit;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }



  /* OLD Navigation Bar 

  
  .navbar {
    background-color: #2c3e50;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .navbar .logo {
    font-size: 24px;
    color: white;
  }
  
  
  .navbar .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
  }
  
  .navbar .nav-links li a {
    color: white;
    font-size: 18px;
    transition: color 0.3s;
  }
  
  .navbar .nav-links li a:hover {
    color: #e74c3c;
  } */


  /* NEW NAVIGATION BAR */

  /* Header */
  .header {
    background-color: #274C77;
    color: white;
    padding: 0px 0;
  }
  
  .header .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .header h1 {
    font-size: 36px;
  }
  
  .header nav ul {
    list-style: none;
    display: flex;
  }
  
  .header nav ul li {
    margin-left: 20px;
  }
  
  .header nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
  }
  
  .header nav ul li a:hover {
    color: #5c7592;
  }
  
  
  /* Hero Section */
  .hero {
    background: url('https://via.placeholder.com/1500x800') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 100px 20px;
  }
  
  .hero-text h1 {
    font-size: 48px;
  }
  
  .cta-button {
    background-color: #274C77;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 20px;
    color: rgb(0, 0, 0);
  }
  
  .cta-button:hover {
    background-color: #3d6a99;
  }
  
   /*Services Section 
  .services {
    background-color: #fff;
    padding: 40px 20px;
    text-align: center;
  }
  
  .services h2 {
    font-size: 36px;
    margin-bottom: 30px;
  }
  
  .service-item {
    margin-bottom: 30px;
  }
  
  .service-item h3 {
    font-size: 28px;
  }
  
  .service-item p {
    font-size: 18px;
  } */
  
  /* About Us Section */
  /* About Us Section */
  .about-us {
    background-color: #ecf0f1;
    padding: 60px 0;
  }
  
  .about-us .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
  
  .about-us h2 {
    font-size: 32px;
    color: #274C77;
    margin-bottom: 20px;
  }
  
  .about-us p {
    font-size: 18px;
    color: #7f8c8d;
    line-height: 1.8;
  }
  
  /* Team Section */
  .team {
    padding: 60px 0;
    background-color: #ffffff;
  }
  
  .team .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
  
  .team h2 {
    font-size: 32px;
    color: #274C77;
    margin-bottom: 20px;
  }
  
  .team p {
    font-size: 18px;
    color: #7f8c8d;
    line-height: 1.8;
  }
  
  /* Mission Section */
  .mission {
    background-color: #ecf0f1;
    padding: 60px 0;
  }
  
  .mission .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
  
  .mission h2 {
    font-size: 32px;
    color: #274C77;
    margin-bottom: 20px;
  }
  
  .mission p {
    font-size: 18px;
    color: #7f8c8d;
    line-height: 1.8;
  }

  /* services section v2 */

  .services-body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70vh;
    padding: 20px;
    
  }

 .services-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    max-width: 1200px;
    gap: 20px;
    /*flex-wrap: wrap;*/
    margin-top: 50px;
}

.service-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: calc(33% - 20px); /* 3 cards horizontally */
    height: 450px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    list-style-position: inside
}

.service-image {
    width: 180px;
    height: 180px;
}

.alignment-class {
  text-align: left;
  padding-left: 60px;
}
/*
.service-card {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
}
*/
.service-card h2 {
    font-size: 1.5rem;
    color: #274C77;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}


@media (max-width: 768px) {
    .service-card {
        width: calc(50% - 20px); /* 2 cards on medium screens */
    }
}

@media (max-width: 480px) {
    .service-card {
        width: 100%; /* 1 card on small screens */
    }
}


.services-header {
  height: 15px;
  background-color: inherit;
  justify-content: center;
  text-align: center;
}
  
.h1-header {
  padding-left: 50px;
  padding-right: 50px;
  padding-bottom: 10px;
  padding-top: 10px;

  color: white;
  margin-top: 26px;
  margin-bottom: 0px;
}
  
  /* Book Now Form */
  .booknow {
    background-color: #fff;
    padding: 40px 20px;
    text-align: center;
  }
  
  .booknow h2 {
    font-size: 36px;
    margin-bottom: 20px;
  }
  
  .booknow form {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin: 0 auto;
    gap: 10px;
  }
  
  .booknow form input, .booknow form select, .booknow form button {
    padding: 10px;
    font-size: 16px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  .booknow form button {
    background-color: #274C77;
    color: white;
    border: none;
  }
  
  .booknow form button:hover {
    background-color: #1a59a1;
  }
  
  /* New Benefits Section */
  .benefits {
    background-color: #fff;
    padding: 40px 20px;
    text-align: center;
  }

  .hero {
    background-image: url("/Design/megan-lee-GHnqJesZl1s-unsplash.jpg");
    background-color: #cccccc;
  }

  .benefits h2 {
    font-size: 36px;
    margin-bottom: 40px;
  }

  .benefit-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
  }

  .benefit {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    flex: 1 1 30%;
    min-width: 250px;
  }

  .benefit h3 {
    font-size: 28px;
    color: #274C77;
    margin-bottom: 20px;
  }

  .benefit p {
    font-size: 16px;
    color: #7f8c8d;
    line-height: 1.6;
  }

  .benefit strong {
    color: #274C77;
  }

  /* Footer
  footer {
    background-color: #274C77;
    color: white;
    padding: 20px;
    text-align: center;
    margin-top: 20px;
  } */

  .site-footer {
    background-color: #1a1a1a;
    color: #f2f2f2;
    padding: 40px 20px;
    font-family: 'Arial', sans-serif;
  }
  
  .footer-container {
    display: flex;
    justify-content: center; /* Centers the two columns horizontally */
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
    margin-left: 22vw;
    gap: 100px; /* Space between the two sections */
  }
  
  .footer-column {
    flex: 1 1 300px;
    max-width: 400px;
  }
  
  .footer-column h3 {
    margin-bottom: 15px;
    color: #ffffff;
  }
  
  .footer-column a {
    color: #f2f2f2;
    text-decoration: none;
  }
  
  .footer-column a:hover {
    text-decoration: underline;
  }
  
  .footer-bottom {
    margin-top: 30px;
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #aaaaaa;
  }
  
  .blacktext {
    color: black;
    text-align: center;
    justify-content: center;
  }

  .contactus {
    font-size: 40px;
  }

  /* Bottom Section Style */
.bottom-section {
  display: flex;
  justify-content: space-between;
  padding: 30px;
  background-color:  #274C77; /* Dark Blue */
  color: #ffffff; /* White text */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Polished font */
  border-top: 2px solid  #274C77; /* Lighter Blue border for contrast */
}

/* Left Column */
.left-column {
  width: 60%;
}

.left-column h2 {
  font-size: 24px; /* Larger, more prominent text */
  font-weight: 600; /* Bold font for business name */
  margin-bottom: 10px;
}

.small-text {
  font-size: 14px; /* Slightly larger for better readability */
}

.smaller-text {
  font-size: 12px; /* Slightly smaller */
}

/* Right Column */
.right-column {
  width: 35%;
  display: flex;
  justify-content: space-between;
}

/* Individual Sections */
.hours-section, .follow-section {
  width: 45%;
}

.hours-section h3, .follow-section h3 {
  font-size: 16px;
  font-weight: 500; /* Medium weight for section headings */
  margin-bottom: 10px;
}

.hours-section p, .follow-section p {
  font-size: 14px; /* Slightly larger for better readability */
  margin: 0;
}

/* Optional: Add hover effect for follow links */
.follow-section p:hover {
  text-decoration: underline;
  cursor: pointer;
}


.modified-list li {
  text-indent: 0px; /* use this to tweak the text alignment */
}

.list-modifier {
  padding-left: 0px;
  padding-left: 0px;
}