 /* Base Styles */
        :root {
            --primary: #2c3e50;
            --secondary: #e74c3c;
            --accent: #3498db;
            --light: #ecf0f1;
            --dark: #2c3e50;
            --gray: #95a5a6;
            --white: #ffffff;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f9f9f9;
        }

       

        /* Header Styles */
        header {
            background-color: var(--primary);
            color: white;
            position: sticky;
            top: 0;
            z-index: 50;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

 .header-container {
    display: flex;
    align-items: center;
    justify-content: space-around;
}
  .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }


.logo {
    display: flex;
    align-items: center;
    margin-left: -6%; /* shift logo and name to the left */

}

  .logo img { 
    margin-top: 13%;
    margin-bottom: 13%;
    margin-left: -13vh;
    width: 18vh; }




.logo h1 {
    font-size: 1.5rem;
    font-weight: bold;
    white-space: nowrap;
}

    nav {
            display: flex;
            align-items: center;
        }

        nav ul {
            display: flex;
            list-style: none;
            align-items: center;
           
        }

        nav ul li {
            margin-left: 1.2rem;
        }

        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            padding: 0.5rem 0;
            position: relative;
            font-size: 0.9rem;
        }

        nav ul li a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--secondary);
            transition: width 0.3s;
        }

        nav ul li a:hover:after {
            width: 100%;
        }

        nav ul li a:hover {
            color: var(--secondary);
        }

          /* Compact Search Bar */
        .nav-search {
            display: flex;
            align-items: center;
            margin-left: 10%;
        }

        .nav-search-box {
            display: flex;
            position: relative;
            width: 10%;
            transition: width 0.3s ease;
        }

        

        #nav-search-input {
            flex: 1;
            padding: 0.5rem 1rem;
            border: none;
            border-radius: 20px 0 0 20px;
            font-size: 0.9rem;
            outline: none;
            background: rgba(255, 255, 255, 0.1);
            color: white;
        }

        #nav-search-input::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }

        .nav-search-btn {
            background: var(--secondary);
            color: white;
            border: none;
            padding: 0.5rem;
            border-radius: 0 20px 20px 0;
            cursor: pointer;
            transition: background-color 0.3s;
            width: 40px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .nav-search-btn:hover {
            background: #c0392b;
        }

       /* Hamburger */
.menu-toggle {
  display: none;
}








        /* whatsapp button */
        .whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #25D366;
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-left: 0.5%;
}

.footer-content h3{
    color: white;
}

.contact-info a {
    color: white;
}
.whatsapp-btn:hover {
    background-color: #1ebe57;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}


@media (max-width: 576px) {
#nav-search-input {
    width: 17vh;
}
    .menu-toggle {
  width: 100%;
  height: 1.5vh;
  cursor: pointer;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  margin-left: -5%;
  margin-right: 8%;
  z-index: 1001;
  position: relative;
  display: flex;
}
.menu-toggle span {
  display: block;
  height: 1.5px;
  width: 100%;
  background: white;
  border-radius: 2px;
  transition: 0.3s;
}

    nav ul {
    flex-direction: column; /* stack links vertically */
    display: none;          /* hidden by default */
    padding-left: 1rem;     /* shift whole menu slightly */
  }

 
  nav ul {
    flex-direction: column;
    background: var(--primary);
    position: absolute;
    top: 100%;
    right: 0;
    width: 200px;
    display: none;
    padding: 1rem 0;
  }
  nav ul.active { 
 display: flex;   /* shown when active */
    width: 100%;
    margin-left: 20%;
    align-items: flex-start;}
  nav ul li { margin: 0.5rem 0; }
  
  #nav-menu li{
    margin-left: 3%;
  }

  .nav-search {
            display: flex;
            align-items: center;
            margin-top: 5%;
            margin-bottom: 5%;
        }

      .logo{
    margin-left: -38vh;

      }
  .logo img { 
    margin-top: 20%;
    margin-bottom: 8%;
    width: 13vh; }

    }
   
    @media (max-width: 1300px) {
        .logo img { 
    margin-top: 20%;
    margin-bottom: 8%;
    margin-left: -0vh;
    width: 13vh; }
    }


      /* Footer */
        footer {
            background-color: var(--dark);
            color: white;
            padding: 3rem 0 1rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.5rem;
        }

        .footer-section h3:after {
            content: '';
            position: absolute;
            width: 50px;
            height: 2px;
            background-color: var(--secondary);
            bottom: 0;
            left: 0;
        }

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

        .contact-info li {
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
    

          .whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    line-height: 60px;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #1ebe57;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

      