body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #333;
  line-height: 1.8;
}

header {
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 30px;
    background:#fff;
    box-shadow:0 2px 5px rgba(0,0,0,0.1);
    position:relative;
}

.logo {
    font-size:24px;
    font-weight:bold;
}

/* ===== MENU ===== */
nav {
    display:flex;
    gap:25px;
}

nav a {
    text-decoration:none;
    color:#333;
    font-weight:500;
    position:relative;
}

nav a.active {
    color:#ff6b6b; /* same as your banner button */
}

/* ===== DROPDOWN ===== */
.dropdown {
    position:relative;
}

.dropdown-content {
    display:none;
    position:absolute;
    top:35px;
    left:0;
    background:#fff;
    box-shadow:0 4px 8px rgba(0,0,0,0.15);
    border-radius:5px;
    overflow:hidden;
    min-width:180px;
    z-index:10;
    flex-direction:column;
}

.dropdown-content a {
    padding:10px 15px;
    display:block;
    color:#333;
    text-decoration:none;
    font-weight:400;
}

.dropdown-content a:hover {
    background:#ff6b6b;
    color:#fff;
}

.dropdown:hover .dropdown-content {
    display:flex;
    flex-direction:column;
}

/* ===== HEADER RIGHT ===== */
.header-right .phone-btn {
    background:#ff6b6b;
    color:#fff;
    padding:8px 16px;
    border-radius:6px;
    text-decoration:none;
    font-weight:500;
}

/* ===== HAMBURGER MENU ===== */
.menu-toggle {
    display:none;
    font-size:28px;
    cursor:pointer;
}

/* ===== RESPONSIVE ===== */
@media screen and (max-width:768px){
    nav {
        position:absolute;
        top:65px;
        left:0;
        right:0;
        background:#fff;
        flex-direction:column;
        display:none;
        gap:0;
        box-shadow:0 4px 8px rgba(0,0,0,0.2);
    }

    nav a, .dropdown-content a {
        padding:15px 30px;
    }

    nav.show {
        display:flex;
    }

    .menu-toggle {
        display:block;
    }

    .header-right {
        display:none;
    }

    .dropdown-content {
        position:static;
        box-shadow:none;
    }

    .dropdown:hover .dropdown-content {
        display:none; /* remove hover effect on mobile */
    }
}


.container {
  max-width: 1000px;
  margin: auto;
  padding: 0 20px;
}

/* ===== PAGE BANNER ===== */
.page-banner {
  background: #fff5f5;
  color: #0f0909;
  text-align: center;
  padding: 70px 20px;
}

.page-banner h1 {
  font-size: 38px;
  margin-bottom: 8px;
}

/* ===== POLICY CONTENT ===== */
.policy-section {
  /* padding: 70px 0; */
  background: #ffffff;
}

.policy-section h2 {
  font-size: 22px;
  margin-top: 35px;
  color: #111;
}

.policy-section p {
  font-size: 15px;
  color: #555;
  margin-top: 12px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .page-banner h1 {
    font-size: 30px;
  }
}


.about-section {
  background: #fff4f2;
  padding: 80px 20px;
}

/* Main Container */
.about-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* Image */
.about-image img {
  width: 80%;
  max-width: 550px;
  border-radius: 18px;
  object-fit: cover;
}

/* Content */
.about-content {
  max-width: 520px;
}

.location {
  font-size: 18px;
  font-weight: 700;
  color: #222;
  display: inline-block;
  margin-bottom: 12px;
}

.about-content h2 {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #111;
}

.about-content p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 18px;
}

/* Button */
.btn {
  display: inline-block;
  margin-top: 15px;
  background: #ff6b6b;
  color: #fff;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
}

.btn:hover {
  background: #ff4f4f;
}

/* Responsive */
@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-content h2 {
    font-size: 34px;
  }

  .about-content {
    max-width: 100%;
  }
}


/* CTA SECTION */
.cta-section {
  background: url("images/callaction.webp") center/cover no-repeat;
  position: relative;
  /* padding: 90px 20px; */
}

.cta-overlay {
  background: rgba(0, 0, 0, 0.45);
  /* max-width: 1200px; */
  margin: auto;
  padding: 60px 20px;
  text-align: center;
  border-radius: 8px;
}

.cta-overlay h2 {
  color: #fff;
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 25px;
}

.cta-btn {
  display: inline-block;
  background: #ff6b6b;
  color: #fff;
  padding: 14px 34px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s ease;
}

.cta-btn:hover {
  background: #ff4f4f;
}



.footer {
  background: #0f2e2e;
  color: #e6f2f2;
  padding: 50px 20px 0;
  font-family: Arial, sans-serif;
}

.footer-wrapper {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.footer-logo {
  width: 150px;
  margin-bottom: 15px;
}

.footer-text {
  font-size: 14px;
  line-height: 1.6;
}

.footer-box h4 {
  font-size: 17px;
  margin-bottom: 12px;
  color: #ffffff;
}

.footer-box ul {
  list-style: none;
  padding: 0;
}

.footer-box ul li {
  margin-bottom: 8px;
}

.footer-box ul li a {
  text-decoration: none;
  color: #cfe5e5;
  font-size: 14px;
}

.footer-box ul li a:hover {
  color: #ff6f61;
}

.footer-box p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-bottom {
  margin-top: 40px;
  padding: 15px 0;
  text-align: center;
  font-size: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
  .footer-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo {
    margin: auto;
  }
}

