:root {
            --navy: #1B3A57;
            --green: #3E7D4E;
            --charcoal: #444444;
            --orange: #F39C12;
            --light-blue: #A3BAC3;
            --white: #FFFFFF;
            --light-gray: #f8f9fa;
            --medium-gray: #e9ecef;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Lato', sans-serif;
            color: var(--charcoal);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            line-height: 1.3;
            margin-bottom: 1rem;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 28px;
            border-radius: 4px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            font-family: 'Poppins', sans-serif;
            cursor: pointer;
            border: none;
        }
        
        .btn-primary {
            background-color: var(--orange);
            color: var(--white);
        }
        
        .btn-primary:hover {
            background-color: #e67e22;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        
        .btn-outline {
            background-color: transparent;
            color: var(--navy);
            border: 2px solid var(--navy);
        }
        
        .btn-outline:hover {
            background-color: var(--navy);
            color: var(--white);
        }

       /* Header & Navigation         */
/* =========================== */

header {
  background-color: var(--navy);
  position: fixed;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  max-width: 1200px;
  margin: auto;
}

/* Logo Styling */
.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 45px;
  width: auto;
  margin-right: 12px;
}

.logo-text {
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 1px;
}

/* Desktop Navigation Menu */
.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
}

.nav-links li {
  margin-left: 25px;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  padding: 6px 0;
  transition: color 0.3s, border-bottom 0.3s;
}

.nav-links a:hover {
  color: var(--orange);
  border-bottom: 2px solid var(--orange);
}

/* Mobile Menu Icon */
.mobile-menu {
  display: none;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
  padding: 6px;
  transition: transform 0.3s ease;
}

.mobile-menu:hover {
  transform: scale(1.1);
}

/* =========================== */
/* Responsive - Mobile Styles  */
/* =========================== */
@media (max-width: 992px) {
  .header-container {
    padding: 14px 20px;
  }

  /* Hide menu by default */
  .nav-links {
    position: absolute;
    top: 75px;
    right: 0;
    width: 100%;
    background-color: var(--navy);
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease-in-out;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  }

  .nav-links li {
    margin: 18px 0;
  }

  .nav-links.open {
    max-height: 400px;
    padding-bottom: 10px;
  }

  .mobile-menu {
    display: block;
  }
}

/* Ensures smooth dropdown interaction */
.nav-links.open {
  display: flex;
}

        
        /* Page Header */
        .page-header {
            background: linear-gradient(rgba(27, 58, 87, 0.8), rgba(27, 58, 87, 0.9)), url('https://images.unsplash.com/photo-1560520653-9e0e4c89eb11?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2073&q=80');
            background-size: cover;
            background-position: center;
            color: var(--white);
            padding: 250px 0 50px;
            text-align: center;
            height: 70vh;
        }
        
        .page-header h1 {
            font-size: 2.8rem;
            margin-bottom: 1rem;
            color: var(--orange);
        }
        
        .page-header p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* Contact Section */
        .contact {
            padding: 80px 0;
        }
        
        .contact-container {
            display: flex;
            gap: 50px;
        }
        
        .contact-info {
            flex: 1;
        }
        
        .contact-form {
            flex: 1;
            background: var(--white);
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .section-title {
            margin-bottom: 30px;
        }
        
        .section-title h2 {
            font-size: 2.2rem;
            color: var(--navy);
            position: relative;
            display: inline-block;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            width: 70px;
            height: 3px;
            background-color: var(--orange);
            bottom: -10px;
            left: 0;
        }
        
        .contact-methods {
            margin-bottom: 40px;
        }
        
        .contact-method {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
        }
        
        .contact-icon {
            width: 60px;
            height: 60px;
            background: var(--light-gray);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            font-size: 1.5rem;
            color: var(--navy);
        }
        
        .contact-details h3 {
            font-size: 1.3rem;
            color: var(--navy);
            margin-bottom: 5px;
        }
        
        .contact-details p {
            color: var(--charcoal);
        }
        
        .business-hours {
            background: var(--light-gray);
            padding: 25px;
            border-radius: 8px;
        }
        
        .business-hours h3 {
            font-size: 1.3rem;
            color: var(--navy);
            margin-bottom: 15px;
        }
        
        .hours-list {
            list-style: none;
        }
        
        .hours-list li {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid var(--medium-gray);
        }
        
        .hours-list li:last-child {
            border-bottom: none;
        }
        
        .day {
            font-weight: 600;
            color: var(--navy);
        }
        
        /* Form Styles */
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--navy);
        }
        
        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid var(--medium-gray);
            border-radius: 4px;
            font-family: 'Lato', sans-serif;
            font-size: 1rem;
            transition: border 0.3s;
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--navy);
        }
        
        textarea.form-control {
            resize: vertical;
            min-height: 120px;
        }
        
        .form-row {
            display: flex;
            gap: 15px;
        }
        
        .form-row .form-group {
            flex: 1;
        }
        
        /* Map Section */
        .map-section {
            padding: 0 0 80px;
        }
        
        .map-container {
            height: 450px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .map-placeholder {
            height: 100%;
            background: var(--light-gray);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: var(--charcoal);
        }
        
        .map-placeholder i {
            font-size: 3rem;
            margin-bottom: 15px;
            color: var(--navy);
        }
        
        /* Quick Actions */
        .quick-actions {
            padding: 60px 0;
            background-color: var(--light-gray);
            text-align: center;
        }
        
        .actions-container {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .action-card {
            background: var(--white);
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            text-align: center;
            max-width: 300px;
            transition: transform 0.3s;
        }
        
        .action-card:hover {
            transform: translateY(-10px);
        }
        
        .action-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 20px;
            background: var(--navy);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: var(--white);
        }
        
        .action-card h3 {
            font-size: 1.3rem;
            color: var(--navy);
            margin-bottom: 15px;
        }
        
        .action-card p {
            margin-bottom: 20px;
            color: var(--charcoal);
        }
        
        /* CTA Section */
        .cta-section {
            padding: 80px 0;
            background: linear-gradient(rgba(27, 58, 87, 0.9), rgba(27, 58, 87, 0.9)), url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            color: var(--white);
            text-align: center;
        }
        
        .cta-section h2 {
            font-size: 2.2rem;
            margin-bottom: 20px;
            color: var(--orange);
        }
        
        .cta-section p {
            max-width: 700px;
            margin: 0 auto 30px;
            font-size: 1.1rem;
        }
        
        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
        }
        
        /* Footer */
      footer {
        background-color: black;
        color: var(--white);
        padding: 60px 0 20px;
      }

      .footer-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 40px;
        margin-bottom: 40px;
      }

      .footer-column h3 {
        color: var(--orange);
        font-size: 1.2rem;
        margin-bottom: 20px;
        position: relative;
      }

      .footer-column h3:after {
        content: "";
        position: absolute;
        width: 40px;
        height: 2px;
        background-color: var(--light-blue);
        bottom: -8px;
        left: 0;
      }

      .footer-links {
        list-style: none;
        
      }

      .footer-links li {
        margin-bottom: 10px;
        color: white;
      }

      .footer-links a {
        color: #ccc;
        text-decoration: none;
        transition: color 0.3s;
      }

      .footer-links a:hover {
        color: var(--orange);
      }

      .contact-info {
        list-style: none;
        
      }

      .contact-info li {
        margin-bottom: 15px;
        display: flex;
        align-items: flex-start;
        
        
      }

      .contact-info i {
        margin-right: 10px;
        color: var(--orange);
      }

      .social-links {
        display: flex;
        gap: 15px;
        margin-top: 20px;
      }

      .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        color: var(--white);
        transition: all 0.3s;
      }

      .social-links a:hover {
        background-color: var(--orange);
        transform: translateY(-3px);
      }

      .copyright {
        text-align: center;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.726);
      }

        
        /* Responsive Design */
        @media (max-width: 992px) {
            .nav-links {
                display: none;
            }
            
            .mobile-menu {
                display: block;
            }
            
            .contact-container {
                flex-direction: column;
            }
            
            .actions-container {
                flex-direction: column;
                align-items: center;
            }
        }
        
        @media (max-width: 768px) {
            .page-header h1 {
                font-size: 2.2rem;
            }
            
            .form-row {
                flex-direction: column;
                gap: 0;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
        }
        
        @media (max-width: 576px) {
            .page-header {
                padding: 250px 0 60px;
            }
            
            .contact-form {
                padding: 25px;
            }
        }

        /*whatsapp float*/

      .whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 100;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}
  /* WhatsApp float */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }
    @media print {
    .hero, .whatsapp-float, .mobile-menu {
        display: none !important;
    }
}
