* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0;
}
.hero {
  background-color: #333;
  background-image: url('images/mountains.jpg'); /* Add your mountain banner at this path */
  background-size: cover;
  background-position: center;
  text-align: center;
  padding: 6rem 0;
  position: relative;
  color: #fff;
}

.slogan {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}
.btn {
  background: #007BFF;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.25rem;
  text-decoration: none;
}
.section {
  padding: 4rem 0;
}
.section h2 {
    color: #1a3d6d !important;
}
.services ul,
.area ul {
  list-style-type: disc;
  padding-left: 1.5rem;
}
.services li,
.area li {
  margin: 0.5rem 0;
}
.slider {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
}
.slider img {
  max-height: 400px;
  height: auto;
  object-fit: contain;
  margin-right: 1rem;
}
.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
}
.prev { left: 1rem; }
.next { right: 1rem; }

.testimonials .testimonial {
  margin: 2rem 0;
  text-align: center;
}
.stars {
  font-size: 1.5rem;
  color: #FFD700;
}
.review {
  font-style: italic;
  margin: 1rem 0;
}
.author {
  font-weight: bold;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.pricing-grid div {
  background: #f4f4f4;
  padding: 1rem;
  border-radius: 0.25rem;
  margin: 1rem;
  flex: 1 1 200px;
}
.contact form {
  display: flex;
  flex-direction: column;
}
.contact input,
.contact textarea {
  margin-bottom: 1rem;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 0.25rem;
}
.contact button {
  width: fit-content;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.25rem;
  background: #007BFF;
  color: #fff;
  cursor: pointer;
}
.footer {
  background: #f4f4f4;
  text-align: center;
  padding: 1rem;
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.05rem;
    color: #2e2e2e;
    line-height: 1.6;
}

h2 {
    font-size: 2rem;
    color: #1a3d6d;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

body {
    background-color: #2b2b2b;
}

.section {
    background-color: #f8f8f8;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 1100px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Gradient header background */
header {
    background: linear-gradient(to right, #1a3d6d, #4e73df);
    color: #fff;
}

/* Button hover effects */
button,
.button,
input[type="submit"] {
    transition: background-color 0.3s ease, transform 0.2s ease;
}

button:hover,
.button:hover,
input[type="submit"]:hover {
    background-color: #354a8c;
    transform: scale(1.05);
    cursor: pointer;
}

/* Service icons */
.services ul li::before {
    content: "✔️";
    margin-right: 0.5rem;
    color: #4e73df;
}

/* Testimonial quotes */




.section, .section p, .section h2, .section ul li, .testimonial {
    color: #f2f2f2;
}

.services ul {
    list-style-type: none;
    padding-left: 0;
}

.section, .section * {
    color: #000;
    font-weight: bold;
}



.slogan-bubble {
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 12px;
    padding: 1rem 2rem;
    display: inline-block;
    margin-top: 1rem;
    font-weight: bold;
    color: #000;
}

/* Ensure all text in cards is solid black and bold for readability */
.section, .section * {
    color: #000 !important;
    font-weight: 700 !important;
}
/* Body text outside sections (e.g., header slogan) */
body, body * {
    color: #000 !important;
}
/* Buttons and links remain styled but with higher contrast */
button, .button, a {
    color: #000 !important;
}

/* Card titles in dark blue */
.section h2 {
    color: #1a3d6d !important;
}

/* Star graphics in reviews rendered gold */
.stars, 

/* Ensure slogan bubble contrast */
.slogan-bubble {
    background-color: rgba(255, 255, 255, 0.9) !important;
    border-radius: 8px !important;
    padding: 0.75rem 1.5rem !important;
    display: inline-block !important;
    margin-top: 1rem !important;
    font-weight: bold !important;
    color: #000 !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2) !important;
}

.star-rating, .stars {
    color: gold !important;
}



/* Enlarge logo */


/* Action buttons container */
.action-buttons {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Secondary button style */
.button.secondary {
    background-color: #fff !important;
    color: #1a3d6d !important;
    border: 2px solid #1a3d6d !important;
    padding: 0.75rem 1.25rem !important;
    border-radius: 6px !important;
    text-decoration: none !important;
    font-weight: 700 !important;
}

.button.secondary:hover {
    background-color: #1a3d6d !important;
    color: #fff !important;
}

/* Enlarge logo to 600px */
.logo {
    width: 450px !important;
    height: auto !important;
    margin-bottom: 1rem;
}

/* Payment Types list styling */
.payment-list {
    list-style-type: disc;
    margin-left: 1.5rem;
    color: #000;
    font-weight: 700;
}
