/* -------------------------------------
   RESET & BASE
------------------------------------- */
* {
  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
------------------------------------- */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 5px 40px; /* keep same padding */
  background: #fff;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 1000;
  
 transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

header.scrolled {
  /* don't reduce padding */
  background: #fff; 
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);

}

header .logo img {
  height: 70px;
margin-left: 100px;;
}




header.scrolled .logo img {
  height: 60px;
}

/* -------------------------------------
   NAVIGATION - Enhanced with stylish effects
------------------------------------- */
nav {
  margin-right: 10%;
}

nav ul {
  display: flex;
  list-style: none;
  margin-left: auto;
}

nav ul li {
  margin-left: 25px;
  position: relative;
}

nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease;
}

nav ul li a::after {
  content: '';
  position: relative;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #b87c31;
  transition: width 0.3s ease;
}

nav ul li a:hover {
  color: #b87c31;
}

nav ul li a:hover::after {
  width: 100%;
}

/* Search icon styling */
nav ul li.search a {
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #f0f0f0;
 transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

nav ul li.search a:hover {
  background-color: #b87c31;
  color: white;
  transform: scale(1.1);
}



/* Hamburger toggle (hidden by default) */
.nav-toggle {
  display: none;
  background: none;
  font-size: 28px;
  border: none;
  cursor: pointer;
  color: #333;
 transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.nav-toggle:hover {
  color: #b87c31;
  transform: scale(1.1);
}

/* -------------------------------------
   HERO SECTION with SLIDER - Enhanced with fade effect
------------------------------------- */
.hero {
  position: relative;
  width: 100%;
  height: 700px;
  overflow: hidden;
}

.slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.slides {
  display: flex;
  width: 300%;
  height: 100%;
}

.slides img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 1.5s ease-in-out;
}

.slides img.active {
  opacity: 1;
}

/* -------------------------------------
   HERO TEXT BELOW SLIDER - Enhanced with animation
------------------------------------- */
.hero-text-below {
  background: #b87c31;
  color: #fff;
  text-align: center;
  padding: 40px 20px;
  transform: translateY(20px);
  opacity: 0;
  animation: fadeInUp 1s ease forwards 0.5s;
}

.hero-text-below h1 {
  font-size: 30px;
  letter-spacing: 0.05rem;
  margin-bottom: 10px;
  font-weight: 400;
}

.hero-text-below p {
  font-size: 1.2rem;
   letter-spacing: 0.05rem;
  opacity: 0.9;
}

/* -------------------------------------
   ABOUT SECTION - Enhanced with animation
------------------------------------- */
.about {
  padding: 60px 40px;
  background-color: #fff;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.about-text {
  flex: 1 1 50%;
  padding-right: 40px;
  text-align: justify;
  transform: translateX(-20px);
  opacity: 0;
  animation: fadeInLeft 1s ease forwards;
}

.about-text p {
  margin-bottom: 15px;
  line-height: 1.8;
}

.about-text button {
  margin-top: 20px;
  padding: 14px 30px;
  font-size: 1rem;
  background: #b87c31;
  border: none;
  color: #fff;
  cursor: pointer;
  border-radius: 4px;
 transition: background-color 0.3s ease, box-shadow 0.3s ease;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.about-text button:hover {
  background: #9a6829;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(184, 124, 49, 0.3);
}

.about-image {
  flex: 1 1 40%;
  text-align: center;
  margin-top: 20px;
 
}

.about-image img {
  max-width: 100%;
  height: auto;
  
}

.about-image:hover img {
  transform: scale(1.02);
}

/* -------------------------------------
   CALL TO ACTION (CTA) - Enhanced with animation
------------------------------------- */
.cta {
  background: #b87c31;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
  background-image: linear-gradient(135deg, #b87c31 0%, #d4a15f 100%);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('glass.jpg') center/cover;
  opacity: 0.1;
  z-index: 0;
}

.cta p {
  position: relative;
  z-index: 1;
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: 600;
  transform: translateY(20px);
  opacity: 0;
  animation: fadeInUp 1s ease forwards 0.3s;
}

.cta button {
  position: relative;
  z-index: 1;
  margin-top: 20px;
  padding: 14px 30px;
  font-size: 1rem;
  background: #fff;
  border: none;
  color: #b87c31;
  font-weight: bold;
  cursor: pointer;
  border-radius: 4px;
 transition: background-color 0.3s ease, box-shadow 0.3s ease;
  transform: translateY(20px);
  opacity: 0;
  animation: fadeInUp 1s ease forwards 0.6s;
}

.cta button:hover {
  background: #f0f0f0;
  transform: translateY(-3px) !important;
  box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

/* -------------------------------------
   FEATURED SECTION - Enhanced with hover effects
------------------------------------- */
.featured {
  padding: 80px 40px;
  text-align: center;
  background-color: #fff;
}

.featured h2 {
  margin-bottom: 40px;
  font-size: 2rem;
  color: #333;
  position: relative;
  display: inline-block;
}

.featured h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #b87c31;
}

/* -------------------------------------
   FOOTER - Enhanced with modern design
------------------------------------- */
footer {
  background: #111;
  color: #fff;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 60px 20px 30px;
  text-align: left; /* Changed from center to left */
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #b87c31, #d4a15f, #b87c31);
}

.footer-about {
  flex: 1 1 300px;
  margin-bottom: 30px;
  padding: 0 20px;
  text-align: left; /* Added to align text left */
}

.footer-about img{
  height: 80px;
}


.footer-about p {
  max-width: 300px;
  margin: 0 0 20px 0; /* Changed from auto to 0 for left alignment */
  opacity: 0.8;
  line-height: 1.7;
}

.social-links {
  display: flex;
  justify-content: flex-start; /* Changed from center to flex-start */
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 18px;
 transition: background-color 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none; /* Added to remove underline */
}

.social-links a:hover {
  background-color: #b87c31;
  transform: translateY(-3px);
  text-decoration: none; /* Added to ensure no underline on hover */
}

.footer-links {
  flex: 1 1 200px;
  margin-bottom: 30px;
  padding: 0 20px;
  text-align: left; /* Added to align text left */
}

footer h4 {
  margin-bottom: 25px;
  font-size: 1.2rem;
  position: relative;
  display: inline-block;
}

footer h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0; /* Changed from 50% to 0 */
  transform: none; /* Removed translateX */
  width: 40px;
  height: 2px;
  background-color: #b87c31;
}

footer ul {
  list-style-type: none; /* Added to remove bullets */
  padding-left: 0; /* Added to remove default padding */
}

footer ul li {
  margin-bottom: 12px;
}

footer ul li a {
  text-decoration: none;
  color: #fff;
  opacity: 0.8;
 transition: background-color 0.3s ease, box-shadow 0.3s ease;
  font-size: 15px;
}

footer ul li a:hover {
  opacity: 1;
  color: #b87c31;
  padding-left: 5px;
}

.footer-contact {
  flex: 1 1 300px;
  margin-bottom: 30px;
  padding: 0 20px;
  text-align: left; /* Added to align text left */
}

.footer-contact p {
  max-width: 250px;
  margin: 0 0 8px 0; /* Changed from auto to 0 for left alignment */
  opacity: 0.8;
  line-height: 1.8;
  font-size: 15px;
}

.footer-bottom {
  width: 100%;
  text-align: center;
  padding-top: 30px;
  margin-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  opacity: 0.6;
}

/* Video Container Styles */
.videos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto; /* center horizontally */
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.video-container:hover iframe {
  transform: scale(1.02);
}

/* -------------------------------------
   ANIMATIONS
------------------------------------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* -------------------------------------
   RESPONSIVE BREAKPOINTS
------------------------------------- */
@media (max-width: 992px) {
  nav {
    margin-right: 5%;
  }
  
  nav ul li {
    margin-left: 15px;
  }
}

@media (max-width: 768px) {
  /* HERO smaller height */
  .hero {
    height: 400px;
  }

 

  /* ABOUT stacks vertically */
  .about-container {
    flex-direction: column;
  }

  .about-text {
    flex: 1 1 100%;
    padding-right: 0;
    margin-bottom: 30px;
  }

  .about-image {
    flex: 1 1 100%;
    margin-top: 0;
  }

  /* NAV COLLAPSE for mobile */
  .nav-toggle {
    display: block;
  }

  nav {
    display: none;
    width: 100%;
    margin-right: 0;
    
    top: 100%;
    left: 0;
    background: #fff;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }

  nav.active {
    display: block;
  }

  nav ul {
    flex-direction: column;
    width: 100%;
    padding: 0;
  }

  nav ul li {
    margin: 15px 0;
    text-align: center;
  }

  nav ul li a::after {
    display: none;
  }

  /* FOOTER stacks vertically */
  footer {
    flex-direction: column;
    gap: 40px;
  }

  .footer-about, .footer-links, .footer-contact {
    flex: 1 1 100%;
  }
}


  
 
  
 
  
  .about, .featured {
    padding: 40px 20px;
  }
  
  .cta p {
    font-size: 1.2rem;
  }
  
  .video img {
    width: 100%;
    max-width: 280px;
  }


/* HERO SECTION */
.hero-section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60vh;
  background: linear-gradient(to right, #0a58ca, #0056b3);
  color: #fff;
  text-align: center;
  padding: 40px 20px;
}

.hero-section h1 {
  font-size: 3rem;
  font-weight: 700;
  margin: 0;
}

@media (max-width: 768px) {
  .hero-section {
    padding: 30px 15px;
    min-height: 40vh;
  }

  .hero-section h1 {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  .hero-section h1 {
    font-size: 1.8rem;
  }
}


/* About Section */
.about-section {
    background-color: #f8f9fa;
    padding: 60px 15px;
    text-align: center;
}

.about-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #0a58ca;
}

.about-section p {
    font-size: 18px;
    max-width: 900px;
    margin: auto;
}

/* Service Section */
.service-section {
    background-color: #fff;
    padding: 60px 15px;
}

.service-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
    color: #0a58ca;
}

.service-section .card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    transition: transform 0.3s;
}

.service-section .card:hover {
    transform: translateY(-5px);
}

.service-section .card-body {
    text-align: center;
}

/* Call to Action */
.cta-section {
    background-color: #0a58ca;
    color: #fff;
    text-align: center;
    padding: 50px 15px;
}

.cta-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.cta-section .btn {
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 5px;
}

/* Gallery Section */
.gallery-section {
    padding: 60px 15px;
    background-color: #f8f9fa;
}

.gallery-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
    color: #0a58ca;
}

.gallery-section img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
    transition: transform 0.3s;
}

.gallery-section img:hover {
    transform: scale(1.05);
}

/* Testimonial Section */
.testimonial-section {
    padding: 60px 15px;
    background-color: #fff;
}

.testimonial-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
    color: #0a58ca;
}

.testimonial-section .carousel-item blockquote {
    font-size: 18px;
    font-style: italic;
    text-align: center;
}

.testimonial-section .carousel-item footer {
    text-align: center;
    margin-top: 10px;
    font-weight: bold;
}

/* Contact Section */
.contact-section {
    background-color: #f8f9fa;
    padding: 60px 15px;
}

.contact-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
    color: #0a58ca;
}

.contact-section form {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    z-index: 1000;
}

/* Responsive Media Queries */
@media (max-width: 768px) {
    .about-section h2,
    .service-section h2,
    .gallery-section h2,
    .testimonial-section h2,
    .contact-section h2 {
        font-size: 26px;
    }

    .about-section p {
        font-size: 16px;
    }

    .cta-section h2 {
        font-size: 24px;
    }

    .gallery-section img {
        height: 200px;
    }

    .testimonial-section .carousel-item blockquote {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .cta-section .btn {
        width: 100%;
    }
}

    /* -------------------------------------
       HERO SIMPLE - For about page
    ------------------------------------- */
    .hero-simple {
      position: relative;
      width: 100%;
      height: 200px;
      background: linear-gradient(rgba(199, 131, 50, 0.7), rgba(199, 131, 50, 0.7)), 
                  url('https://images.unsplash.com/photo-1605787020600-b9ebd5df1d1b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1200&q=80');
      background-size: cover;
      background-position: center;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: white;
    }

    .hero-simple h1 {
      font-size: 3.5rem;
      font-weight: 400;
      margin-bottom: 20px;
      text-shadow: 0 2px 10px rgba(199, 131, 50, 0.5);
    }

     .hero-simple p {
      font-size: 22px;
     }

    /* -------------------------------------
       ABOUT SECTION - Enhanced with animation
    ------------------------------------- */
    .about {
      padding: 80px 40px;
      background-color: #fff;
    }

    .about-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      max-width: 1200px;
      margin: 0 auto;
    }

    .about-text {
      flex: 1 1 50%;
      padding-right: 40px;
      text-align: justify;
      transform: translateX(-20px);
      opacity: 0;
      animation: fadeInLeft 1s ease forwards;
    }

    .about-text h2 {
      color: #b87c31;
      margin-bottom: 20px;
      font-size: 2.2rem;
    }

    .about-text p {
      margin-bottom: 20px;
      line-height: 1.8;
      font-size: 1.1rem;
    }

    .about-text ul {
      margin: 20px 0;
      padding-left: 20px;
    }

    .about-text ul li {
      margin-bottom: 10px;
      line-height: 1.6;
      position: relative;
      padding-left: 20px;
    }
ul {
  list-style: none; /* Removes default bullets */
  padding-left: 0; /* Optional: Removes default left padding */
}
    .about-text ul li:before {
      content: "•";
      color: #b87c31;
      font-weight: bold;
      position: absolute;
      left: 0;
    }

    .about-text button {
      margin-top: 20px;
      padding: 14px 30px;
      font-size: 1rem;
      background: #b87c31;
      border: none;
      color: #fff;
      cursor: pointer;
      border-radius: 4px;
     transition: background-color 0.3s ease, box-shadow 0.3s ease;
      font-weight: 600;
      letter-spacing: 0.5px;
    }

    .about-text button:hover {
      background: #9a6829;
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(184, 124, 49, 0.3);
    }

    .about-image {
      flex: 1 1 40%;
      text-align: center;
      margin-top: 20px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .about-image img {
      max-width: 100%;
      height: auto;
      transition: transform 0.5s ease;
    }

    .about-image:hover img {
      transform: scale(1.05);
    }

    /* -------------------------------------
       GOALS SECTION
    ------------------------------------- */
    .goals {
      background-color: #f5f5f5;
      padding: 80px 40px;
      text-align: center;
    }

    .goals-container {
      max-width: 900px;
      margin: 0 auto;
    }

    .goals h2 {
  margin-bottom: 40px;
  font-size: 2rem;
  color: #333;
  position: relative;
  display: inline-block;
    }

    .goals h2::after {
       content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #b87c31;
    }

    .goals-content {
      background: white;
      padding: 40px;
      border-radius: 8px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
      text-align: left;
    }

    .goals-content p {
      margin-bottom: 25px;
      line-height: 1.8;
      font-size: 1.1rem;
      padding-left: 30px;
      position: relative;
    }

    .goals-content p:before {
      content: "»";
      color: #b87c31;
      font-weight: bold;
      position: absolute;
      left: 0;
      font-size: 1.5rem;
    }

    /* -------------------------------------
       MANAGEMENT SECTION
    ------------------------------------- */
    .management {
      padding: 80px 40px;
      background-color: #fff;
      text-align: center;
    }

    .management h2 {
       margin-bottom: 40px;
  font-size: 2rem;
  color: #333;
  position: relative;
  display: inline-block;
    }

    .management h2::after {
     
       content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #b87c31;
    }

    .leaders {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 40px;
      max-width: 1200px;
      margin: 0 auto;
    }


    

    .leader {
      flex: 1 1 400px;
      max-width: 500px;
      background: #f9f9f9;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease;
    }

    .leader:hover {
      transform: translateY(-10px);
    }

    .leader img {
      width: 100%;
      height: 600px;
      object-fit: cover;
      display: block;
    }

    .leader-content {
      padding: 25px;
    }

    .leader h3 {
      color: #b87c31;
      margin-bottom: 15px;
      font-size: 1.4rem;
    }

    .leader p {
      line-height: 1.7;
      color: #555;
      text-align: justify;
    }

    /* -------------------------------------
       BOARD SECTION
    ------------------------------------- */
    .board {
      padding: 80px 40px;
      background-color: #f5f5f5;
      text-align: center;
    }

    .board h2 {
       margin-bottom: 40px;
  font-size: 2rem;
  color: #333;
  position: relative;
  display: inline-block;
    }

    .board h2::after {
       content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #b87c31;
    }

    .board-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 30px;
      max-width: 1300px;
      margin: 0 auto;
    }

    .board-member {
       border: 1px solid  #b87c31;;
      background: white;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
     transition: background-color 0.3s ease, box-shadow 0.3s ease;
    }

    .board-member:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

    .board-member img {
      width: 100%;
      height: 350px;
      object-fit: fill;
    }

    .board-member-info {
      padding: 20px;
    }

    .board-member strong {
      color: #b87c31;
      display: block;
      margin-bottom: 8px;
      font-size: 1.1rem;
    }

    .board-member p {
      color: #666;
      line-height: 1.6;
      font-size: 0.95rem;
    }

    
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeInLeft {
      from {
        opacity: 0;
        transform: translateX(-20px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @keyframes fadeInRight {
      from {
        opacity: 0;
        transform: translateX(20px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }



    /* Section Title */
.section-title {
  background-color: #d68235;
  color: white;
  padding: 12px 20px;
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0;
}

/* Members Grid */


.members-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
   padding: 20px;
  background: #fff;
  
  /* Center the content and give space on sides */
  max-width: 1200px; 
  margin: 0 auto; 
  padding: 0 20px; /* Left/Right padding */
}

/* Card Styling */
.member-card {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  padding: 15px;
  border-bottom: 1px solid #e0e0e0;
}

.member-card img {
  width: 80px;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.member-info h3 {
  font-size: 1.1rem;
  color: #333;
  margin: 0 0 5px;
}

.member-info p {
  font-size: 0.95rem;
  color: #555;
  margin: 0 0 8px;
}

.member-info a {
  color: #d68235;
  font-weight: bold;
  text-decoration: none;
}

.member-info a:hover {
  text-decoration: underline;
}
/* Mobile Responsive */
@media (max-width: 768px) {
  .members-grid {
    grid-template-columns: 1fr;
  }
}



/* Section Title */
.section-title {
  background-color: #d68235;
  color: white;
  padding: 12px 20px;
  font-size: 1.8rem;
  font-weight: 400;
  text-align: center;
  margin: 0;
}

/* Filters */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 20px;
  justify-content: center;
  background: #f8f4f0;
}

.filters select,
.filters input {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* Buttons */
.btn-primary {
  background-color: #d68235;
  color: white;
  border: none;
  padding: 8px 14px;
  border-radius: 4px;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: #b96f2d;
}

.btn-secondary {
  background-color: #aaa;
  color: white;
  border: none;
  padding: 8px 14px;
  border-radius: 4px;
  cursor: pointer;
}

.btn-secondary:hover {
  background-color: #888;
}

/* Policy List */
.policy-list {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.policy-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #e8f1fa;
  padding: 12px;
  margin-bottom: 10px;
  border-radius: 4px;
}





.container {
 /* display: flex; */
  max-width: 1200px;
  margin: 40px auto;
  gap: 30px;
  padding: 0 20px;
}

.content {
  flex: 3;
}

.post-title {
  font-size: 18px;
  letter-spacing:1px;
  margin-bottom: -5px;
}

.post-meta strong,
.post-meta a {
  font-size: 14px;
  color: #d68235;
  margin-bottom: 20px;
}

.doc-container {
  border: 1px solid #ddd;
  height: 600px;
  margin-bottom: 20px;
}

.doc-container iframe {
  width: 100%;
  height: 100%;
}

.tags {
  margin-bottom: 20px;
  font-size: 14px;
}

.share-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 30px;
}

.share-buttons a {
  background: #000;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  font-size: 14px;
  border-radius: 2px;
  text-transform: uppercase;
}






.sidebar {
  flex: 1;
}

.widget {
  margin-bottom: 30px;
}

.widget h3 {
  font-size: 18px;
  border-bottom: 2px solid #f0b15d;
  padding-bottom: 5px;
  margin-bottom: 10px;
}

.widget ul {
  list-style: none;
  padding: 0;
}

.widget ul li {
  margin-bottom: 8px;
   border-bottom: 1px solid #f0b15d;
}

.widget ul li a {
  color: #000;
  text-decoration: none;
   
}

.widget ul li a:hover {
  color: #f0b15d;
}


.post-navigation {
  display: flex;
  justify-content: space-between;
  border: 1px solid #f0b15d;
 
  padding: 15px;
  gap: 20px;
  flex-wrap: wrap; /* allows stacking on mobile */
}

.post-navigation .prev,
.post-navigation .next {
  flex: 1;
}

.post-navigation strong {
  display: block;
  margin-bottom: 5px;
}

.post-navigation .prev {
  text-align: left;
}

.post-navigation .next {
  text-align: right;
}



.post-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.post-navigation .prev,
.post-navigation .next {
    max-width: 45%;
}




.nav-link {
    color: #000000;
    text-decoration: none;
    
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-link:hover,.post-title:hover {
    color: #d68235; /* change text color on hover */
    text-decoration: none; /* optional underline */
}

.nav-arrow {
    font-size: 22px;
    font-weight: bold;
    margin: 0 6px;
}


@media (max-width: 600px) {
  .post-navigation {
    flex-direction: column;
    text-align: center;
  }
  
  .post-navigation .prev,
  .post-navigation .next {
    text-align: center;
  }
}




/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
  .container {
    flex-direction: column;
  }
  
  .sidebar {
    order: 2;
  }

  .content {
    order: 1;
  }

  .doc-container {
    height: 400px;
  }
}

@media (max-width: 600px) {
  .post-title {
    font-size: 22px;
  }

  .share-buttons a {
    flex: 1 1 calc(50% - 10px);
    text-align: center;
  }

  .doc-container {
    height: 300px;
  }
}



.x-video {
    position: relative;
    display: block;
    text-decoration: none;
}

.x-video .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0,0,0,0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    transition: 0.3s;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 360px;   /* match both YouTube and X */
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.video-container iframe,
.video-container img {
    width: 100%;
    
    display: block;
    object-fit: cover;
}


/* News Container Styling */
    #minimal-view {
      max-width: 1200px;
      margin: 40px auto;
      padding: 20px;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    }

    .news-container {
      margin-bottom: 25px;
    }

    .news-item {
      padding: 15px 20px;
      border-bottom: 1px solid #eaeaea;
      transition: background 0.2s ease;
    }

    .news-item:last-child {
      border-bottom: none;
    }

    .news-item:hover {
      background: #f9f9f9;
      color:#d68235;
      text-decoration: none;
    }

    .news-date {
      font-size: 0.9rem;
      color: #6c757d;
      margin-bottom: 5px;
    }

    .news-item h3 {
      font-size: 1.1rem;
      margin: 0;
    }

    .news-item h3 a {
      text-decoration: none;
      color: #000000;
      transition: color 0.2s;
    }

    .news-item h3 a:hover {
      color:#d68235;;
      text-decoration: none;
    }

   







/* CONTACT SECTION */
 /* Contact Section */
        .contact-section {
            padding: 60px 0;
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-bottom: 40px;
        }
        
        @media (max-width: 900px) {
            .contact-grid {
                grid-template-columns: 1fr;
            }
        }
        
        .contact-card {
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            padding: 30px;
            transition: transform 0.3s ease;
        }
        
        .contact-card:hover {
            transform: translateY(-5px);
        }
        
        .contact-card h3 {
            color: #b87c31;
            margin-bottom: 20px;
            font-size: 1.5rem;
            position: relative;
            padding-bottom: 10px;
        }
        
        .contact-card h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: #b87c31;
        }
        
        .info-card p {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
        }
        
        .info-card i {
            color: #b87c31;
            margin-right: 12px;
            font-size: 18px;
            margin-top: 4px;
        }
        
        .footer-social {
            display: flex;
            gap: 20px;
            margin-top: 25px;
              align-items: center;
              margin: 20px 0;
               text-align: center;
    
        }
        


       .footer-social a {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f0f0f0;
    color: #b87c31;
    transition: all 0.3s ease;
    line-height: 0; /* 🔑 removes vertical font alignment issues */
}

        .footer-social a:hover i,
        .footer-social a:hover {
            background-color: #b87c31;
            color: white;
            transform: translateY(-3px);
        }
        
        /* Form Styles */
        .form-card form {
            display: flex;
            flex-direction: column;
        }
        
 .form-card{
  width:100%;
 }

        .form-card input,
        .form-card textarea {
            margin-bottom: 20px;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 16px;
            transition: border-color 0.3s;
        }
        
        .form-card input:focus,
        .form-card textarea:focus {
            border-color: #b87c31;
            outline: none;
        }
        
        .form-card textarea {
            min-height: 120px;
            resize: vertical;
        }
        
        .form-card button {
            background-color: #b87c31;
            color: white;
            border: none;
            padding: 14px 20px;
            border-radius: 5px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        
        .form-card button:hover {
            background-color: #d68235;
        }
        
        /* Map Section */
        .map-card {
            margin-top: 20px;
        }
        
        .map-card iframe {
            width: 100%;
            height: 400px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }
        
        /* Hours of Operation */
        .hours-info {
            background-color: #f8f9fa;
            padding: 15px;
            border-radius: 5px;
            margin-top: 10px;
            border-left: 4px solid #d68235;
        }
        
        .hours-info p {
            margin-bottom: 5px;
        }


        .share-buttons .twitter { background: #1da1f2; }
.share-buttons .facebook { background: #3b5998; }
.share-buttons .linkedin { background: #0077b5; }
.share-buttons .google { background: #db4437; }
.share-buttons .tumblr { background: #35465c; }
.share-buttons .pinterest { background: #bd081c; }

#minimal-view {
  display: flex;
  flex-direction: column;
}

#minimal-view .pagination {
  margin-top: auto;      /* pushes pagination to the bottom */
  justify-content: center; /* center align */
  padding-top: 20px;
}
.pagination {
  justify-content: center !important;
  margin-top: 20px;
}



 /* Pagination links */
.page-link {
  color: #ffffff;   
  background-color: #b96f2d;   
  border: 1px solid #d68235;
}

.page-link:hover {
  color: #fff;
  background-color: #d68235;
  border-color: #d68235;
}

/* Active page */
.page-item.active .page-link {
  background-color: #d68235;
  border-color: #d68235;
  color: #fff;
}

/* Disabled state */
.page-item.disabled .page-link {
  color: #aaa;
  background-color: #f9f9f9;
  border-color: #ddd;
}
