:root {
  /* Brand Colors */
  --primary: #2a9d8f;          /* Teal Blue */
  --secondary: #e76f51;        /* Warm Orange */
  --yellow: #e9c46a;           /* Soft Yellow */
  --purple: #423e85;           /* Deep Purple */

  /* Neutral Tones */
  --cream: #f4f1de;
  --muted: #6b6b6b;
  --head: #264653;
  --card: #ffffff;

  /* Global Tokens */
  --max-width: 1300px;
  --radius: 14px;
  --shadow: 0 8px 22px rgba(16, 24, 40, 0.1);
}

/* --------------------
   RESET + BASE
-------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Nunito', sans-serif;
}

/* Ensure full-width hero section and remove side gaps */
html, body {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  position: relative;
  background-color: rgba(255, 111, 54,0.3);
}
#wht-icon{
  position: fixed;
  bottom: 10%;
  right: 1%;
  z-index: 100;
}
/* Force hero and inner content to take full width on small screens */

.hero-inner {
  width: 100%;
  max-width: 100%;
  border-radius: 0; /* optional: removes inner rounding on mobile for full coverage */
  padding: 50px 20px;
}

/* Optional: on mobile, make hero tighter and text centered properly */
@media (max-width: 768px) {
  .hero {
    min-height: 70vh;
    background-position: center center;
    background-size: cover;
  }

  .hero-inner {
    padding: 40px 16px;
  }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--head);
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }

p {
  color: var(--muted);
  margin-bottom: 1rem;
  line-height: 1.8;
  font-size: 1.05rem;
}

a {
  text-decoration: none;
  color: var(--primary);
  transition: 0.3s ease;
}
a:hover {
  color: var(--secondary);
}

/* Container */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 30px;
}

/* --------------------
   HEADER / NAV
-------------------- */
header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 10px;
  background-color: #2c3e50;
  color: white;
  position: fixed;
  top: 0;
  z-index: 1000;
}
header .logo img{
  width: 200px;
}
@media (max-width:400px) {
  header .logo img{
  width: 150px;
}
}

/* Logo */
header > div {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  font-weight: bold;
  gap: 10px;
}
header > div i {
  color: #e96443; /* Icon accent color */
}

/* Nav List */
.nav-list {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-list li a {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.3s ease;
  color: wheat;
}
.nav-list li a:hover {
  color: #e96443;
}
.nav-list li a.active {
  color: rgb(255, 94, 0);
}

/* Hamburger Button */
header button {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
}

/* Mobile Menu */
@media (max-width: 927px) {
  .nav-list {
    position: absolute;
    top: 75px;
    right: 0;
    background-color: #2c3e50;
    flex-direction: column;
    width: 240px;
    padding: 20px 0;
    display: none;
    border-radius: 10px;
  }

  .nav-list li {
    padding: 12px 25px;
  }

  header button {
    display: block;
  }

  .nav-list.show {
    display: flex;
  }
}

/* --------------------
   BUTTONS
-------------------- */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.05rem;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover {
  background: #23867d;
}

.btn-secondary {
  background: var(--secondary);
  color: #fff;
}
.btn-secondary:hover {
  background: #cc5941;
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

/* Small Buttons */
.btn-small {
  padding: 10px 18px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
}

/* --------------------
   CARDS
-------------------- */
.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 28px rgba(16, 24, 40, 0.12);
}

/* --------------------
   EMERGENCY BAR
-------------------- */
.emergency-bar {
  width: 100%;
  position: sticky;
  bottom: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  background-color: var(--head);
  color: #fff;
  padding: 16px 20px;
  margin-top: 20px;
}
.emergency-inner {
  max-width: var(--max-width);
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.emergency-inner h4 {
  font-size: 1.2rem;
  font-weight: 600;
}
.emergency-actions {
  display: flex;
  gap: 12px;
}
.call-btn {
  background: #ff6b6b;
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--radius);
}
.wa-btn {
  background: #25d366;
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--radius);
}

@media (max-width: 700px) {
  .container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2px;
}
  .emergency-inner {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  /* Make footer buttons smaller on mobile */
  .emergency-actions .call-btn,
  .emergency-actions .wa-btn {
    padding: 8px 14px;
    font-size: 0.9rem;
    border-radius: 8px;
  }

  .emergency-actions {
    gap: 8px;
  }

  .emergency-inner h4 {
    font-size: 1rem;
  }
}


/* --------------------
   UTILITIES
-------------------- */
.text-center { text-align: center; }
.text-muted { color: var(--muted); }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 800;
}

footer {
            background-color: #f0f2f5; /* Dark blue-gray for a professional look */
              color: wheat; /* Light text for contrast */
            padding: 40px 20px 20px;
            font-family: Arial, sans-serif;
              background-color: #2c3e50;
        }

        .footer-container {
            display: flex;
            justify-content: space-around;
            align-items: flex-start; /* Aligns columns to the top */
            max-width: 100vw;
            margin: 0 auto;
            flex-wrap: wrap; /* Allows columns to wrap on smaller screens */
            gap: 11px;
        }

        .footer-column {
            /* flex: 1; */
            max-width: 400px;
            width: 100%;
             /* Adjusted min-width for 4 columns */
            margin: 20p 10pxx;
        }

        .footer-column h3 {
            font-size: 1.3em;
            margin-bottom: 20px;
            color: wheat;
            font-weight: bold;
        }

        .footer-column ul {
          gap: 10px;
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            grid-template-columns: auto auto;

        }

        .footer-column ul li {
            margin-bottom: 10px;
        }

        .footer-column a {
             color: wheat;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-column a:hover {
            color: #64b5f6; /* A hover effect for interaction */
        }

        /* Logo & Brand Styling */
        .footer-logo {
            margin-bottom: 15px;
        }
        .footer-logo img {
            width: 150px; /* Adjust logo size as needed */
        }
        .footer-logo p {
            font-size: 0.9em;
        color: wheat;
            line-height: 1.5;
        }

        /* Social Media Icons */
        .social-icons a {
            font-size: 1.5em;
            margin-right: 15px;
           color: #ffffff;
            transition: color 0.3s ease;
        }
        .social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  margin: 0 0.25rem;
  background:none ;
  color: wheat;
  /* color: var(--white); */
  transition: opacity 0.3s ease;
}

        .social-icons a:hover {
            color: #64b5f6;
        }
        
        /* Contact Information Styling */
        .contact-info {
            list-style: none;
            padding: 0;
            margin: 15px 0 0 0;
        }
        .contact-info li {
            margin-bottom: 8px;
            font-size: 0.9em;
            color: #000000;
        }

        /* Bottom Bar */
        .footer-bottom {
            width: 100%;
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #334054;
          color: wheat;
            font-size: 0.85em;
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .footer-container {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            .footer-column {
                margin: 5px 0 2px;
            }
            .action-button{
      flex-direction: column;
        margin:0 auto;
        }
        action-button a{
      width: 100px;
        }
        .footer-column ul{
          grid-template-columns: 1fr;
        }
        }
/* ===== Simple Scroll Animations ===== */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-right {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in-right.show {
  opacity: 1;
  transform: translateX(0);
}
