* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body{
    width: 100%;
    overflow-x: hidden;
}



/* Top Title Bar */
.clstoptitle {
    display: inline-block;
    width: 100%;
    background-color: #C7B2E0;
    box-shadow: none;
    text-transform: none;
}


.clslefttitle {
    text-align: left;
    color: #FFF;
    padding: 15px 100px;
    font-size: 18px;
    display: inline-block;
}


:root {
  /* Colors */
  --color-primary: #4CAF50;
  --color-primary-light: #8BC34A;
  --color-primary-dark: #2E7D32;
  --color-primary-50: #E8F5E9;
  --color-primary-100: #C8E6C9;
  --color-primary-600: #43A047;
  --color-primary-700: #388E3C;
  --color-primary-800: #2E7D32;
  
  --color-white: #fff;
  --color-black: #000;
  --color-gray-50: #f9fafb;
  --color-gray-100: #f3f4f6;
  --color-gray-200: #e5e7eb;
  --color-gray-300: #d1d5db;
  --color-gray-400: #9ca3af;
  --color-gray-500: #6b7280;
  --color-gray-600: #4b5563;
  --color-gray-700: #374151;
  --color-gray-800: #1f2937;
  --color-gray-900: #111827;
}


html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--color-gray-800);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
  border: 1px solid var(--color-primary);
}

.btn-primary:hover {
  background-color: var(--color-primary-600);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-primary-700);
  border: 1px solid var(--color-primary);
}

.btn-outline:hover {
  background-color: var(--color-primary-50);
}

/* Header & Navigation */
.header {
  
  top: 0;
  z-index: 50;
  width: 100%;
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-gray-200);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.logo {
  display: flex;
  align-items: center;
  
}

.logo-icon {
  width: 10rem;
  height: 6rem;
  position: relative;
  margin-left: 100px;
}


.logo-text h1 {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-primary-800);
  margin: 0;
}

.logo-text p {
  font-size: 0.875rem;
  color: var(--color-primary-600);
  line-height: 1.2;
  margin: 0;
}

.nav-links {
  display: none;
}

.header-buttons {
  display: none;
}

.mobile-menu-btn {
  display: block;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: var(--color-gray-700);
  transition: all 0.3s ease-in-out;
}

.mobile-menu {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease-in-out;
}

.mobile-menu.active {
  height: auto;
}

.mobile-nav-links {
  padding: 1rem 0;
}

.mobile-nav-link {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--color-gray-700);
  border-radius: 0.375rem;
  transition: all 0.3s ease;
}

.mobile-nav-link.active,
.mobile-nav-link:hover {
  background-color: var(--color-primary-50);
  color: var(--color-primary-700);
}

.mobile-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0 1rem 1rem;
}

.mobile-buttons .btn {
  width: 100%;
}

.nav-link {
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 0;
  height: 4px;
  border-radius: 20px;
  background-color: var(--color-primary);
  transition: width 0.4s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}
.nav-link[href="/pages/Location.html"]::after {
  width: 100%;
}

/* On hover, other links show underline */
.nav-link:not([href="/pages/Location.html"]):hover::after {
  width: 100%;
}
@media (min-width: 1024px) {
  .nav-links {
    display: flex;
    gap: 1.5rem;
  }
  
  .nav-link {
    color: var(--color-gray-700);
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  
  .header-buttons {
    display: flex;
    gap: 1rem;
  }
  
  .mobile-menu-btn {
    display: none;
  }
  
 
}

@media (max-width: 768px){
  .logo-icon {
  width: 10rem;
  height: 6rem;
  position: relative;
  margin-left: 10px;
}
}
@media (max-width: 550px) {

.clslefttitle {
    text-align: left;
    color: #FFF;
    padding: 15px 25px;
    font-size: 10px;
    display: inline-block;
}
}

.path{
    display:flex ;
    width: 100%;
    height: 50px;
    background-color: #f7f7f7;
    align-items: center;
    padding-left: 50px ;
}

.path a{
    color: #22b049;
    display: block;
    font-size: 15px;

}
.path i{
    font-weight: 800;
    font-size: 10px;
}
.path p{
    font-size: 15px;
    margin: 0px 10px;
}



/* Location + Description */
  .location-section {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 2rem auto;
    max-width: 1200px;
    padding: 1rem;
  }

  .location-info, .map-container {
    flex: 1 1 400px;
  }

  .location-info h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700 !important;
    color: #3d4461;
  }

  .location-info p {
    margin: 0.2rem 0;
    font-size: 1rem;
    color: #444;
  }

  .location-info span {
    color: #2e7d32; /* green */
    font-weight: 500;
  }

  .map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 300px;
    border: 0;
  }

  @media (max-width: 768px) {
    .location-section {
      flex-direction: column;
    }

    .map-container iframe {
      min-height: 250px;
    }
  }























footer {
      background-color: #383f5b;
      color: white;
      padding: 40px 20px 20px;
    }

    .footer-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .footer-section {
      flex: 1 1 250px;
    }

    .footer-section img {
      max-width: 180px;
      margin-bottom: 10px;
    }

    .footer-section a {
      color: #2acfcf;
      text-decoration: none;
    }

    .footer-section a:hover {
      text-decoration: underline;
    }

    .footer-icons {
      margin-top: 15px;
    }

    .footer-icons a {
      margin-right: 10px;
      color: white;
      font-size: 20px;
    }
    .newsletter {
      line-height: 2.6;
    }

    .newsletter input[type="email"] {
      padding: 10px;
      border: none;
      width: 70%;
      max-width: 250px;
      border-radius: 4px 0 0 4px;
    }

    .newsletter button {
      padding: 10px 15px;
      border: none;
      background-color: #28a745;
      color: white;
      cursor: pointer;
      border-radius: 0 4px 4px 0;
    }

    .footer-bottom {
      text-align: center;
      font-size: 14px;
      margin-top: 40px;
      border-top: 1px solid #444;
      background-color: #373d57;
      padding-top: 15px;
    }

    .times{
      line-height: 3.6;
    }
    @media (max-width: 768px) {
      .footer-container {
        flex-direction: column;
        align-items: flex-start;
      }

      .footer-section p{
        font-size: large;
      }
      .footer-section h3{
        font-size: large;
    }
    .footer-section {
    flex: 1 1 140px;
}
footer {
    background-color: #383f5b;
    color: white;
    padding: 40px 40px 20px;
}
  }