/* General Resets */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
  }
  html {
    scroll-behavior: smooth;
  }
  
  body {
    background-color: #f7f8fc;
    color: #333;
    line-height: 1.6;
  }
  
  .container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
  }
  
  /* Navbar */
  .navbar {
    background: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
  }
  
  .nav-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .logo {
    height: 100px;
    width: auto;
    object-fit: contain;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
  }
  
  .nav-links li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
  }
  
  /* Hero Section */
  .hero-banner {
    background-color: #f3f5f9;
    padding: 80px 0;
    position: relative;
    z-index: 1;
  }
  
  .hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
  }
  
  .hero-content .subheading {
    color: #ff6f3c;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 10px;
  }
  
  .headline {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
  }
  
  .description {
    font-size: 1rem;
    margin-bottom: 25px;
    color: #555;
  }
  
  .hero-buttons a {
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 6px;
    margin-right: 15px;
    font-weight: 500;
  }
  
  .btn-primary {
    background-color: #f97316;
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .btn-primary:hover {
    background-color: #ea580c;
  }
  
  .btn-secondary {
    background-color: #eee;
    color: #333;
  }
  
  .hero-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
  }
  
  .feature-wrapper {
    position: relative;
    z-index: 3;
    margin-top: -60px; /* lift the boxes into overlap */
    margin-bottom: -60px; /* ensures enough spacing after */
    display: flex;
    justify-content: center;
    background-color: transparent;
  }
  
  .feature-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    max-width: 960px;
    width: 100%;
  }
  
  .feature-box {
    flex: 1;
    padding: 30px 20px;
    border-radius: 16px;
    color: white;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
  
    /* ✅ Add these new lines: */
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  /* Logo color scheme */
  .feature-box:nth-child(1) {
    background-color: #0062BA; /* Royal Blue */
  }
  
  .feature-box:nth-child(2) {
    background-color: #32B6E7; /* Sky Blue */
  }
  
  .feature-box:nth-child(3) {
    background-color: #00A89D; /* Teal Green */
  }
  
  .feature-box:hover {
    opacity: 0.95;
  }
  
  .feature-box span {
    font-size: 2rem;
    display: block;
    margin-bottom: 10px;
  }
  
  /* Services Section */
  .services {
    background-color: #2d2f33;
    color: white;
    padding: 100px 0;
    text-align: center;
  }
  
  .services-label {
    font-size: 0.99rem;
    font-weight: 600;
    color: #ff6f3c;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
  }
  
  .services-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
  }
  
  .service-box {
    background: #2d2f33;
    padding: 30px 20px;
    border-radius: 12px;
    transition: 0.3s ease;
  }
  
  .service-box:hover {
    background: #ff6f3c;
  }
  
  .service-box span {
    font-size: 2rem;
    display: block;
    margin-bottom: 15px;
  }
  
  .service-box h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
  }
  
  .service-box p {
    font-size: 0.95rem;
    color: #cfcfcf;
  }
  
  /* Header styles */
  .site-header {
    background-color: #ffffff;
    padding: 20px 0;
    border-bottom: 1px solid #e5e5e5;
  }
  
  .site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .main-nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .main-nav a {
    text-decoration: none;
    color: #444;
    font-weight: 500;
    transition: color 0.3s ease, border-bottom 0.3s ease;
    padding-bottom: 3px;
    border-bottom: 2px solid transparent;
  }
  
  .main-nav a:hover {
    color: #f97316;
    border-bottom: 2px solid #f97316;
  }
  
  .header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  /* Why Us Section */
.why-us {
    background-color: #ffffff;
    padding: 100px 0;
  }
  
  .why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
  }
  
  .why-image img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    max-height: 400px;
  }
  
  .why-content .label {
    color: #f97316;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
  }
  
  .why-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
  }
  
  .why-content p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
  }
  
  .benefits-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
  }
  
  .benefits-list li {
    font-size: 1rem;
    color: #333;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
  }
  /* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background-color: #f7f8fc;
    text-align: center;
  }
  
  .testimonials-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #222;
  }
  
  .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }
  
  .testimonial-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
  }
  
  .testimonial-card:hover {
    transform: translateY(-5px);
  }
  
  .testimonial-card p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
  }
  
  .author {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
  }
  
  .author img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .author h4 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: #111;
  }
  
  .author small {
    font-size: 0.85rem;
    color: #777;
  }
  
  /* CTA Section */
  .cta-banner {
    background-color: #d56311; /* Use your brand blue */
    color: white;
    padding: 100px 20px;
    text-align: center;
  }
  
  .cta-label {
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #e0f1ff;
    margin-bottom: 10px;
  }
  
  .cta-heading {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
  }
  
  .cta-subtext {
    font-size: 1rem;
    color: #d5ecff;
    margin-bottom: 30px;
  }
  
  .cta-banner .btn-primary {
    background-color: rgba(251, 249, 249, 0.735);
    color: #de521f;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
  }
  
  .cta-banner .btn-primary:hover {
    background-color: #e3ddd9;
  }
  /* Contact Section */
.booking-section {
    padding: 80px 0;
    background-color: #fff;
  }
  
  .booking-grid {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
  }
  
  .form-box {
    flex: 1;
  }
  
  .contact-info {
    flex: 0.9;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 90px; /* 👈 adjust this number to align it nicely */

  }
  
  .section-label {
    font-size: 0.85rem;
    color: #f97316;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
  }
  
  .section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
  }
  
  .section-desc {
    font-size: 1rem;
    color: #555;
    margin-bottom: 30px;
  }
  
  .booking-form {
    display: flex;
    flex-direction: column;
    gap: 19px;
  }
  
  .input-row {
    display: flex;
    gap: 20px;
  }
  
  .input-row input,
  textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f7f8fc;
    flex: 1;
    font-size: 1rem;
  }
  textarea {
    resize: vertical;
    height: 60px; /* this is a more practical height */
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f7f8fc;
    width: 100%;
    font-size: 1rem;
    line-height: 1.4;
  }
  
  button {
    background-color: #f97316;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    width: fit-content;
    cursor: pointer;
  }
  
  button:hover {
    background-color: #ea580c;
  }
  
  .info-box {
    background-color: #f3f5f9;
    padding: 18px 20px;
    border-radius: 10px;
    font-size: 1rem;
    color: #333;
    min-height: 60px;           /* 👈 ensure equal height */
    display: flex;              /* 👈 make contents align */
    align-items: center;        /* 👈 vertically center inside */
}
  /* Footer Styles */
.site-footer {
    background-color: #2d2f33;
    color: white;
    padding: 60px 20px 40px;
    font-size: 0.95rem;
  }
  
  .footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: auto;
  }
  
  .footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #fff;
  }
  
  .footer-column ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-column ul li {
    margin-bottom: 10px;
  }
  
  .footer-column ul li a {
    color: #cfcfcf;
    text-decoration: none;
    transition: 0.3s ease;
  }
  
  .footer-column ul li a:hover {
    color: #ffffff;
  }
  
  .footer-column p {
    margin-bottom: 10px;
    color: #ccc;
  }
  
  .footer-column p strong {
    color: #fff;
  }
  
  .social-icons a {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-color: transparent;
    border: 1px solid #3b82f6;
    margin-right: 10px;
    border-radius: 3px;
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid #444;
    padding-top: 20px;
    color: #ccc;
  }
  /* ============================= */
/* 🧠 Responsive Styles Section */
/* ============================= */

/* Tablets & Smaller (≤ 1024px) */
@media (max-width: 1024px) {
    .hero-grid,
    .why-grid,
    .booking-grid {
      grid-template-columns: 1fr;
      gap: 40px;
    }
  
    .feature-grid {
      flex-direction: column;
      align-items: center;
    }
  
    .hero-image {
      text-align: center;
    }
  
    .hero-image img {
      max-width: 100%;
    }
  
    .contact-info {
      margin-top: 0;
      align-items: center;
    }
  
    .booking-grid {
      flex-direction: column;
    }
  
    .cta-banner {
      padding: 80px 20px;
    }
  }
  
  /* Mobile Phones (≤ 768px) */
  @media (max-width: 768px) {
    .nav-links {
      flex-direction: column;
      gap: 15px;
    }
  
    .hero-content .headline {
      font-size: 2rem;
    }
  
    .services-grid,
    .testimonial-grid {
      grid-template-columns: 1fr;
    }
  
    .footer-container {
      grid-template-columns: 1fr;
      text-align: center;
    }
  
    .feature-box {
      max-width: 90%;
    }
  
    .logo {
      height: 70px;
    }
  }
  
  /* Very Small Devices (≤ 480px) */
  @media (max-width: 480px) {
    .btn-primary,
    .btn-secondary {
      padding: 10px 20px;
      font-size: 0.95rem;
    }
  
    .section-title {
      font-size: 1.5rem;
    }
  
    textarea {
      height: 80px;
    }
  }
  /* General Resets */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
  }
  
  body {
    background-color: #f7f8fc;
    color: #333;
    line-height: 1.6;
  }
  
  .container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
  }

  /* Hamburger Styles */
  .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
  }

  .hamburger div {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 4px 0;
    transition: 0.4s;
  }

  .nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
  }

  .nav-links li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
  }

  @media (max-width: 768px) {
    .hamburger {
      display: flex;
    }

    nav {
      position: absolute;
      top: 80px;
      right: 0;
      background-color: #fff;
      width: 100%;
      display: none;
      flex-direction: column;
      align-items: center;
      padding: 20px 0;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    nav.active {
      display: flex;
    }

    .nav-links {
      flex-direction: column;
      gap: 20px;
    }
  }
  @media (max-width: 768px) {
    .feature-grid {
      flex-direction: column;
      align-items: center;
    }
  
    .feature-box {
      width: 100%;
      max-width: 350px;
    }
  }
  @media (max-width: 768px) {
    .feature-grid {
      flex-direction: column;
      align-items: center;
    }
  
    .feature-box {
      max-width: 100%;
      width: 90%;
    }
  }
  .social-icons a {
    display: inline-block;
    margin-right: 12px;
    transition: transform 0.3s ease;
  }
  
  .social-icons a:hover {
    transform: scale(1.1);
  }
  
  /* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
  }
  
  .modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    position: relative;
  }
  
  .modal-content h2 {
    margin-bottom: 15px;
    font-size: 1.5rem;
  }
  
  .modal-content p {
    font-size: 1rem;
    color: #444;
  }
  
  .close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
  }

  .site-footer a {
    color: #cfcfcf;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .site-footer a:hover {
    color: #ffffff;
  }

  .service-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: left;
    margin-top: 40px;
  }
  
  .service-category h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #ff6f3c;
  }
  
  .service-category ul {
    list-style: none;
    padding: 0;
  }
  
  .service-category li {
    margin-bottom: 12px;
    font-size: 1rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
  }