* { margin: 0; padding: 0; box-sizing: border-box; }
    body { font-family: Arial, sans-serif; }

    /* Top Bar */
    .topbar {
      background-color: #ffc107;
      color: white;
      padding: 8px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: sticky;
      top: 0;
        
      z-index: 1000;
    }
    .topbar .email { margin-left: 100px; font-size: 14px; }
    .topbar .social-icons { margin-right: 100px; display: flex; gap: 15px; }
    .topbar .social-icons a { color: white; text-decoration: none; font-size: 16px; }

    /* Navbar */
    .navbar {
      background-color: #000;
      color: orange;
      padding: 12px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: sticky;
      top: 34px;
      z-index: 999;
    }
    .navbar .logo {
    margin-left: 100px; /* optional */
    display: flex;       /* make logo a flex container */
    align-items: center; /* vertically center its content */
    }

      .navbar .logo img {
      display: block;      /* remove inline spacing */
      vertical-align: middle; /* ensures vertical alignment */
    }

    .navbar .nav-links { margin-right: 100px; display: flex; gap: 20px; }
    .navbar .nav-links a { color: orange; text-decoration: none; font-weight: bold; }
    .navbar .nav-links a:hover { color: white; }
     .navbar .nav-links a.active {
  color: white;        /* gold active color */
  //border-bottom: 2px solid #c59d5f;
}
      
      
     /* Hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      width: 30px;
      height: 25px;
      cursor: pointer;
      margin-right: 20px;
      z-index: 1001;
    }

    .hamburger span {
      height: 3px;
      width: 25px;
      background: orange;
      margin: 4px 0;
      transition: all 0.3s ease;
      display: block;
    }

    /* Responsive */
    @media screen and (max-width: 768px) {
      .topbar,
      .navbar {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
      }

      .topbar .email,
      .navbar .logo {
        margin-left: 20px;
      }

      .topbar .social-icons {
        margin-right: 20px;
      }

      .hamburger {
        display: flex;
        margin-right: 20px;
      }

      .navbar .nav-links {
        position: absolute;
        top: 84px;
        right: 0;
        background-color: #000;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        padding: 10px 20px;
        display: none;
        margin: 0;
        gap: 10px;
      }

      .navbar .nav-links.active {
        display: flex;
      }

      .hamburger.close span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.close span:nth-child(2) {
  opacity: 0;
}
.hamburger.close span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
    } 
      
      
 
     
      
      
      
      

    /* Buttons */
    .buttons { text-align: center; margin: 30px 0; }
    .buttons button {
      margin: 5px;
      padding: 10px 20px;
      border: none;
      border-radius: 6px;
      background: #007BFF;
      color: white;
      cursor: pointer;
      font-size: 14px;
      transition: 0.3s;
    }
    .buttons button:hover { background: #0056b3; }
    .buttons button.active { background: #ffc107; color: black; }

    /* Card Grid */
    .card-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, 300px);
  justify-content: center;
  gap: 40px;
  margin: 0 auto;
  max-width: 1200px;
}

    .card {
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  height: 380px;          /* ✅ fixed card height */
  border-radius: 1px;
  overflow: hidden;
  transition: transform 0.3s ease;
  border: 1px solid gray;  /* ✅ red border added */
}

    
     /* 
      .card:hover { transform: translateY(-5px); }
      
      */
      
    .card img {
      width: 100%;
      height: 180px;          /* ✅ fixed image height */
      object-fit: cover;
      border: px solid orange;
        
    }
    .card-content {
      padding: 10px; /* slightly smaller padding */
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* remove stretching */
    }
    .card-title { font-size: 1.2rem; margin-bottom: 8px; font-weight: bold; }
      
    .card-text {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 5px;  /* small gap */
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-grow: 0; /* remove extra space */
    }
    .card button {
      background: black;
      color: white;
      width: 100%;
      border: none;
      height: 36px;           /* ✅ fixed button height */
      font-size: 1rem;
      cursor: pointer;
      margin-top: 20px;
       
    }
    .card button:hover { background: #ffc107; color: black; }

    /* Footer */
    .footer {
      background-color: orange;
      height: 80px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 16px;
      margin-top: 60px;
    }
      
    .social-icons a,
.contact-icons a {
  color: #fff;
  font-size: 18px;
  margin-left: 12px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.contact-icons a {
  color: #333;
  font-size: 22px;
  margin-right: 15px;
}

.social-icons a:hover,
.contact-icons a:hover {
  color: #c59d5f; /* gallery gold accent */
  transform: scale(1.2);
}  
      
 /* ===== VIDEO POPUP ===== */

#videoPopup{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.85);
  justify-content:center;
  align-items:center;
  z-index:5000;
}

.popup-content{
  position:relative;
  width:800px;
  max-width:90%;
}

.popup-content video{
  width:100%;
  border-radius:6px;
}

.close-btn{
  position:absolute;
  top:-35px;
  right:0;
  font-size:28px;
  color:white;
  cursor:pointer;
}

.video-loader{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%);
  width:60px;
  height:60px;
  border:6px solid rgba(255,255,255,0.3);
  border-top:6px solid #ffc107;
  border-radius:50%;
  animation:spin 1s linear infinite;
  display:none;
  z-index:10;
}

@keyframes spin{
  0%{ transform:translate(-50%, -50%) rotate(0deg); }
  100%{ transform:translate(-50%, -50%) rotate(360deg); }
}
     

.gallery-container {
    max-width: 980px;
    margin: 20px auto;
    text-align: left;
    line-height: 1.6;
    color: #444;
    font-size: 16px;
  }

  @media (max-width: 900px) {
    .gallery-container {
      padding: 0 20px;
    }
  }
  


 
      