/* Base Reset */
/* JSMA Colors */
    :root {
      --jsma-blue: #005bbb;
      --jsma-yellow: #ffd100;
      --jsma-black: #000000;
      --jsma-white: #ffffff;
      --jsma-gray-light: #f9f9f9;
      --jsma-gray-dark: #333333;
    }
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background: #FDF1A9;
  color: #333;
  overflow-x: hidden;
}

/* Containers */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Slideshow */
.slideshow {
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
}
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.slide:first-child {
  opacity: 1;
}
.overlay {
  position: fixed;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
}

/* News Ticker */
.news-ticker {
  background: #C76E00;
  color: white;
  overflow: hidden;
  white-space: nowrap;
  padding: 10px;
  z-index: 1500;
  position: relative;
}
.news-items {
  display: inline-block;
  animation: ticker 20s linear infinite;
}
.news-items span {
  padding: 0 2rem;
}
@keyframes ticker {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* Header */
.sticky-header {
  background: #FDF1A9;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 5px solid #ddd;
}
 .logo  {
      display: flex;
      align-items: center;
      gap: 1rem;
    }
.logo img {
      height: 50px;
      width: auto;
      border-radius: 6px;
      box-shadow: 0 3px 6px rgba(0,91,187,0.5);
    }
.logo h1{
      font-size: 1.5rem;
      font-weight: 700;
      margin: 0;
      letter-spacing: 1.5px;
    }

.navbar {
      background: #FFD700;
      position: sticky;
      top: 0;
      z-index: 1000;
    }
    .nav-menu {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .nav-menu li {
      position: relative;
    }
    .nav-menu a {
      display: block;
      padding: 15px 20px;
      color: #000;
      text-decoration: none;
      font-weight: lighter;
    }
    .nav-menu a.active, a:hover, .dropdown a:hover {
      background: #e6c200;
	  color: var(--jsma-white);
      border-bottom: 2px solid var(--jsma-white);
    }
	
    .has-dropdown:hover .dropdown {
      display: block;
    }
    .dropdown {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background: #FFD700;
      z-index: 999;
      min-width: 200px;
    }
    .dropdown li {
      border-top: 1px solid #e6c200;
    }
  
nav {
  display: flex;
  justify-content: space-between;
  align-items: right
}
.nav-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.nav-links li a {
  text-decoration: none;
  color: #121111;
  font-weight: lighter;
  padding: 0.2rem;
}
.nav-links li a:hover {
  background: ORANGE;
  color: white;
  border-radius: 5px;
}
.mobile-menu-toggle {
  display: none;
}

/* Dark Mode Switch */
.dark-mode-switch {
  margin-left: auto;
}
.switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 20px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  background-color: #ccc;
  border-radius: 20px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: 0.4s;
}
.slider::before {
  content: "";
  height: 16px;
  width: 16px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  border-radius: 50%;
  position: absolute;
  transition: 0.4s;
}
input:checked + .slider {
  background-color: #C76E00;
}
input:checked + .slider::before {
  transform: translateX(20px);
}



/* News Ticker start*/
    body {
      margin: 0;
      padding: 0;
      font-family: 'Segoe UI', sans-serif;
      background: #f5f5f5;
    }

    .content {
      padding: 80px 20px;
      max-width: 800px;
      margin: auto;
    }

    h1 {
      text-align: center;
      color: #333;
    }

    p {
      text-align: center;
      color: #666;
    }

    /* === SOCIAL SHARE WIDGET STYLES start=== */
    .share-widget {
      position: fixed;
      top: 25%;
      left: 0;
      display: flex;
      flex-direction: column;
      gap: 12px;
      z-index: 999;
      transform: translateX(-100%);
      opacity: 0;
      transition: transform 0.6s ease, opacity 0.6s ease;
    }

    .share-widget.show {
      transform: translateX(0);
      opacity: 1;
    }

    .share-widget a {
      display: flex;
      align-items: center;
      background: #333;
      color: white;
      padding: 10px 12px;
      border-top-right-radius: 25px;
      border-bottom-right-radius: 25px;
      text-decoration: none;
      font-size: 14px;
      transition: all 0.3s ease;
      overflow: hidden;
      width: 45px;
    }

    .share-widget a:hover {
      width: 180px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    .share-widget a i {
      min-width: 25px;
      text-align: center;
    }

    .share-widget a span {
      margin-left: 12px;
      white-space: nowrap;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .share-widget a:hover span {
      opacity: 1;
    }

    .share-widget .facebook { background: #3b5998; }
    .share-widget .whatsapp { background: #25d366; }
    .share-widget .twitter { background: #1da1f2; }
    .share-widget .email { background: #f39c12; }
    .share-widget .linkedin { background: #0077b5; }
    .share-widget .telegram { background: #0088cc; }
    .share-widget .instagram { background: #e1306c; }
    .share-widget .tiktok { background: #000; }
    .share-widget .indeed { background: #2164f4; }

    /* Responsive for mobile */
    @media (max-width: 768px) {
      .share-widget {
        top: auto;
        bottom: 10%;
        left: 10px;
        flex-direction: row;
      }

      .share-widget a {
        width: 40px;
        padding: 10px;
        border-radius: 50%;
      }

      .share-widget a:hover {
        width: 40px;
      }

      .share-widget a span {
        display: none;
      }
    }
	
	/* === SOCIAL SHARE WIDGET STYLES end=== */
	
	
	/* News Ticker end*/
	
/* Welcome Section */
.welcome-section {
  padding: 0.2rem 0;
  text-align: center;
  background: white;
}
.welcome-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #C76E00;
}
.welcome-section p {
  font-size: 1.2rem;
  color: #555;
}

/* Features */
.features {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem 0;
  
}
.feature {
  flex: 1;
  background: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  border: 2px solid transparent;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}
.feature:hover {
  border-color: #C76E00;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.feature img {
  width: 100%;
  max-height: 180px;
  object-fit: cover;
  margin-bottom: 1rem;
}
.feature h3 {
  color: #C76E00;
  margin-bottom: 0.5rem;
}

/* Ongoing Projects */
.projects {
  padding: 1rem 0;

}
.projects h2 {
  text-align: center;
  color: #C76E00;
  margin-bottom: 2rem;
}
.project-list {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}
.project {
  flex: 1;
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  border: 2px solid transparent;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}
.project:hover {
  border-color: #C76E00;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.project img {
  width: 100%;
  max-height: 180px;
  object-fit: cover;
  margin-bottom: 1rem;
}
.project h3 {
  color: #C76E00;

}


    /* Slider */
    .slider {
      max-width: 1200px;
      margin: auto;
      overflow: hidden;
      border-radius: 0px;
      box-shadow: 0 10px 20px rgb(0 0 0 / 0.3);
      position: relative;
      height: 450px;
    }

    .slides {
      display: flex;
      width: 100%;
      animation: slideAnimation 20s infinite;
    }

    .slides img {
      width: 100%;
      height: 450px;
      object-fit: contain;
      flex-shrink: 0.2;
      border-radius: 0px;
	
    }
	
	.slide-caption {
	  position: absolute;
	  bottom: 20px;
	  left: 20px;
	  font-size: 24px;
	  color: blue;
	  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
	}


    @keyframes slideAnimation {
      0%,
      33.33% {
        transform: translateX(0%);
      }

      36%,
      66.66% {
        transform: translateX(-100%);
      }

      69%,
      100% {
        transform: translateX(-200%);
      }
    }



/* Floating Button */
#search-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #0074cc;
  color: white;
  font-size: 22px;
  padding: 12px 16px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 9999;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
#search-toggle:hover {
  background-color: #005fa3;
}

/* Popup */
#search-popup {
  position: fixed;
  top: -100px;
  right: 20px;
  width: 300px;
  background: white;
  padding: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  transition: top 0.4s ease;
  z-index: 9998;
}
#search-popup.active {
  top: 80px;
}

#search-input {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  margin-bottom: 10px;
  border-radius: 6px;
  border: 1px solid #0074cc;
}

#search-results {
  list-style: none;
  max-height: 300px;
  overflow-y: auto;
  padding-left: 0;
}
#search-results li {
  padding: 8px;
  margin-bottom: 5px;
  background: #f0f8ff;
  border-left: 4px solid #0074cc;
  cursor: pointer;
}
#search-results li:hover {
  background: #e0efff;
}


/* Explore Section */
.explore-section {
  padding: 1rem 0;
 
}
.explore-grid {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.explore-box {
  flex: 1 1 30%;
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  border: 2px solid transparent;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}
.explore-box:hover {
  border-color: #C76E00;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.explore-box h3 {
  color: #C76E00;
}
.gallery-thumbs img {
  width: 30%;
  margin-right: 5px;
}


/* Up Coming Events*/

	
/* Testimonials */
    .testimonials-section {
      padding: 20px 25px;
      max-width: 1200px;
      margin: 50px auto 100px;
      background: #FDF1A9;
      color: blue;
	  font-size: 2rem;
      border-radius: 15px;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
      position: relative;
      text-align: center;
    }

    .testimonials-slider {
      position: relative;
      overflow: hidden;
      min-height: 4px;
    }

    .testimonial {
      display: none;
      font-style: italic;
      font-size: 1.5rem;
      padding: 1px 0px;
      transition: opacity 0.5s ease;
    }

    .testimonial.active {
      display: block;
    }

    .testimonial h4 {
      margin-top: 1.5px;
      font-weight: 70;
      font-style: normal;
      color: #ffcc00;
    }

    .slider-controls {
      margin-top: 2px;
    }

    .slider-controls button {
      background: transparent;
      border: none;
      color: #ffcc00;
      font-size: 2.5rem;
      cursor: pointer;
      margin: 0 1.5px;
      transition: color 0.3s ease;
    }

    .slider-controls button:hover {
      color: #fff;
    }
	

/* Stay Connected (Social Feed) */
.social-feed {
  padding: 0rem 0;
   
}
.social-widgets {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.widget {
  background: white;
  padding: 1rem;
  border-radius: 8px;
  border: 2px solid transparent;
  text-align: center;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}
.widget:hover {
  border-color: #C76E00;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.widget h3 {
  color: #C76E00;
}

/* Newsletter Popup */
.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  width: 90%;
  max-width: 400px;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
  z-index: 2000;
}
.popup.hidden {
  display: none;
}
.close-btn {
  background: transparent;
  border: none;
  font-size: 1.5rem;
  float: right;
  cursor: pointer;
}
#newsletter-form input[type="email"] {
  width: 100%;
  padding: 0.5rem;
  margin-top: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}
#newsletter-submit {
  margin-top: 1rem;
  width: 100%;
  padding: 0.7rem;
  background: #C76E00;
  color: white;
  border: none;
  border-radius: 5px;
  font-weight: bold;
}

/* Chatbot */
#chatbot-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #C76E00;
  color: white;
  border: none;
  padding: 0.8rem 1rem;
  border-radius: 30px;
  cursor: pointer;
  z-index: 1000;
}
#chatbot-window {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 300px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  display: none;
  flex-direction: column;
}
#chatbot-window.hidden {
  display: none;
}
.chat-header, .chat-footer {
  background: #C76E00;
  color: white;
  padding: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.chat-body {
  height: 250px;
  padding: 1rem;
  overflow-y: auto;
}
.chat-footer input {
  flex: 1;
  margin-right: 0.5rem;
  padding: 0.4rem;
  border-radius: 5px;
  border: none;
}

 /* Footer */
    footer.site-footer {
      background-color: #C76E00;
      color: #d0d7e4;
      padding: 3rem 2rem 2rem;
      font-size: 0.9rem;
      box-shadow: 0 -2px 10px rgba(0,0,0,0.25);
      user-select: none;
    }
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 2.5rem;
      padding: 0 1rem;
    }
    .footer-section h3 {
      color: #ffd100;
      margin-bottom: 1rem;
      font-weight: 700;
      font-size: 1.2rem;
    }
    .footer-section p,
    .footer-section ul,
    .footer-section form {
      color: #b9bed1;
      margin: 0;
    }
    .footer-section ul {
      list-style: none;
      padding-left: 0;
    }
    .footer-section ul li {
      margin-bottom: 0.5rem;
    }
    .footer-section ul li a {
      color: #b9bed1;
      transition: color 0.3s ease;
    }
    .footer-section ul li a:hover,
    .footer-section ul li a:focus {
      color: #ffd100;
      outline: none;
    }
    .social-icons a {
      margin-right: 1rem;
      display: inline-block;
      filter: brightness(90%);
      transition: filter 0.3s ease;
    }
    .social-icons a:hover,
    .social-icons a:focus {
      filter: brightness(130%);
      outline: none;
    }
    .social-icons img.social-icon {
      height: 28px;
      width: 28px;
      vertical-align: middle;
    }
    .footer-bottom {
      text-align: center;
      margin-top: 2rem;
      border-top: 1px solid #1a2b4c;
      padding-top: 1rem;
      font-size: 0.85rem;
      color: #9aa3b0;
      user-select: none;
    }

    /* Newsletter */
    form.newsletter-form {
      display: flex;
      flex-wrap: wrap;
      gap: 0.7rem;
      margin-top: 1rem;
    }
    form.newsletter-form input[type="email"] {
      flex: 1;
      padding: 0.5rem 1rem;
      border: none;
      border-radius: 4px;
      font-size: 1rem;
    }
    form.newsletter-form button {
      background: #ffd100;
      border: none;
      color: #003366;
      padding: 0.5rem 1.5rem;
      font-weight: 700;
      border-radius: 4px;
      cursor: pointer;
      transition: background 0.3s ease;
    }
    form.newsletter-form button:hover,
    form.newsletter-form button:focus {
      background: #e6c600;
      outline: none;
    }

    /* Responsive */
    @media (max-width: 900px) {
      main.about-container {
        padding: 2rem 2rem;
      }
      .info-cards {
        flex-direction: column;
        align-items: center;
      }
    }
    @media (max-width: 480px) {
      .hero-section h1 {
        font-size: 2rem;
        padding: 0.3rem 0.6rem;
      }
      nav.main-nav ul.nav-list {
        gap: 1rem;
      }
      header.site-header {
        padding: 0.5rem 1rem;
      }
    }

    /* Animations */
    @keyframes fadeIn {
      0% {opacity: 0; transform: translateY(10px);}
      100% {opacity: 1; transform: translateY(0);}
    }

/* Responsive */
@media (max-width: 768px) {
  .features, .project-list, .explore-grid {
    flex-direction: column;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    background: white;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
  }
  .nav-links.active {
    display: flex;
  }
  .mobile-menu-toggle {
    display: block;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
  }
}
