* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  font-family: "Poppins", sans-serif;
   background-image: url('../images/blueGrid.png'  );
  background-color: #f8fafc;
}

/* ===== ENHANCED NAVBAR FROM STYLE.CSS ===== */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 40px;
  background: linear-gradient(135deg, #1d2b91 0%, #2a3bc2 100%);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
  animation: navbarEntrance 0.8s ease-out;
}

.navbar.scrolled {
  padding: 8px 40px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
  border-bottom: 3px solid #edaa00;
  background: linear-gradient(135deg, #1d2b91 0%, #1a2580 100%);
}

@keyframes navbarEntrance {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Logo with animation */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  transition: transform 0.3s ease;
  position: relative;
  padding: 5px 10px;
  border-radius: 8px;
  overflow: hidden;
}

.nav-logo::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s ease;
}

.nav-logo:hover::before {
  left: 100%;
}

.nav-logo:hover {
  transform: translateY(-2px);
}

.nav-logo img {
  width: 201px;
  height: 95px;
  transition: all 0.4s ease;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
}

.nav-logo:hover img {
  transform: scale(1.05);
  filter: drop-shadow(0 6px 10px rgba(237, 170, 0, 0.3));
}

/* Enhanced Center links with indicators */
.nav-links {
  display: flex;
  list-style: none;
  gap: 25px;
  position: relative;
  padding: 8px 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.nav-links::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 2px;
  background: linear-gradient(45deg, #edaa00, #1d4ed8, #edaa00);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-links:hover::before {
  opacity: 1;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #e5e7eb;
  text-decoration: none;
  font-size: 16px;
  padding: 12px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #edaa00, #ffc107);
  border-radius: 3px;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-links a::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s ease;
}

.nav-links a:hover::before {
  width: 80%;
}

.nav-links a:hover::after {
  left: 100%;
}

.nav-links a:hover {
  color: #ffffff;
  background: linear-gradient(135deg, rgba(237, 170, 0, 0.15), rgba(29, 78, 216, 0.15));
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(29, 78, 216, 0.2);
}

.nav-links a i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.nav-links a:hover i {
  transform: translateX(3px);
}

/* Active link indicator */
.nav-links a.active {
  color: #edaa00;
  background: rgba(237, 170, 0, 0.1);
}

.nav-links a.active::before {
  width: 80%;
  background: linear-gradient(90deg, #ffc107, #ff9800);
}

/* Enhanced Login button */
.nav-login {
  position: relative;
}

.nav-login .login-btn {
  padding: 12px 28px;
  background: linear-gradient(135deg, #edaa00 0%, #ffc107 100%);
  color: #1d2b91;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
  text-decoration: none;
  border-radius: 10px;
  font-size: 16px;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 15px rgba(237, 170, 0, 0.3);
  letter-spacing: 0.5px;
}

.nav-login .login-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.nav-login .login-btn:hover::before {
  left: 100%;
}

.nav-login .login-btn:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #3b82f6 100%);
  color: white;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 25px rgba(29, 78, 216, 0.4);
  border-color: rgba(255, 255, 255, 0.2);
}

.nav-login .login-btn:active {
  transform: translateY(-1px) scale(1.02);
}

.nav-login .login-btn i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.nav-login .login-btn:hover i {
  transform: translateX(4px) rotate(10deg);
}
/* ===== END ENHANCED NAVBAR FROM STYLE.CSS ===== */

/* ===== GALLERY PREVIEW SECTION ===== */
.gallery-preview {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.97) 0%, rgba(248, 250, 252, 0.97) 100%);
    padding: 80px 20px;
    margin: 40px auto;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.gallery-preview::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(237, 170, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(29, 78, 216, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 0 15px;
}

.gallery-header {
    text-align: center;
    margin-bottom: 50px;
}

.gallery-header h2 {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 5vw, 3rem);
    color: #1d2b91;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.gallery-header h2 i {
    color: #edaa00;
    margin-right: 10px;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.gallery-header h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: min(150px, 80%);
    height: 5px;
    background: linear-gradient(90deg, #edaa00, #1d4ed8, #edaa00);
    border-radius: 3px;
}

.gallery-subtitle {
    font-family: "Poppins", sans-serif;
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.8;
    color: #4b5563;
    max-width: 900px;
    margin: 30px auto 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    border: 2px solid rgba(237, 170, 0, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.gallery-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover {
    transform: translateY(-10px);
}

.gallery-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
}

.image-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border: 4px solid white;
    transition: all 0.4s ease;
}

.gallery-item:hover .image-container {
    border-color: #edaa00;
    box-shadow: 0 25px 50px rgba(237, 170, 0, 0.2);
    transform: scale(1.02);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(29, 43, 145, 0.9) 0%, rgba(29, 43, 145, 0.7) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    border-radius: 12px;
}

.gallery-item:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-item:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content h3 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: white;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.overlay-content h3 i {
    color: #edaa00;
}

.overlay-content p {
    font-family: "Poppins", sans-serif;
    font-size: clamp(0.9rem, 2vw, 1rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.gallery-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #edaa00, #ffc107);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: clamp(0.75rem, 1.5vw, 0.85rem);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(237, 170, 0, 0.3);
    z-index: 2;
    transform: translateY(-10px);
    opacity: 0;
    transition: all 0.4s ease 0.1s;
}

.gallery-item:hover .gallery-tag {
    transform: translateY(0);
    opacity: 1;
}

.gallery-caption {
    text-align: center;
    padding: 0 10px;
}

.gallery-caption h3 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    color: #1d2b91;
    margin-bottom: 8px;
    position: relative;
    display: inline-block;
}

.gallery-caption h3::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: #edaa00;
    border-radius: 2px;
}

.gallery-caption p {
    font-family: "Poppins", sans-serif;
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    line-height: 1.6;
    color: #4b5563;
    margin-top: 10px;
}

.placeholder-info {
    margin-top: 40px;
    padding: 20px;
    background: rgba(237, 170, 0, 0.08);
    border-radius: 12px;
    border-left: 4px solid #edaa00;
    text-align: center;
}

.placeholder-info p {
    font-family: "Poppins", sans-serif;
    font-size: clamp(0.9rem, 2vw, 1rem);
    line-height: 1.6;
    color: #1d2b91;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.placeholder-info i {
    color: #edaa00;
    font-size: 1.1rem;
}

.placeholder-info code {
    background: rgba(29, 43, 145, 0.1);
    padding: 3px 8px;
    border-radius: 4px;
    font-family: monospace;
    color: #1d2b91;
    font-weight: 600;
}

/* Enhanced Footer */
.simple-footer {
  background: linear-gradient(135deg, #1d2b91 0%, #0f172a 100%);
  color: #ffffff;
  padding: 60px 0 30px;
  margin-top: auto;
  position: relative;
  overflow: hidden;
}

.simple-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #edaa00, #ffc107, #edaa00);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

/* Enhanced Logo Section */
.footer-logo-section {
  flex: 1;
  min-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}

.footer-logo img {
  width: 80px;
  height: auto;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
}

.footer-logo:hover img {
  transform: scale(1.1) rotate(5deg);
}

.logo-text {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  color: #ffffff;
  letter-spacing: 0.5px;
}

.footer-tagline {
  font-family: "Poppins", sans-serif;
  font-size: clamp(0.9rem, 2vw, 1rem);
  line-height: 1.7;
  color: #cbd5e1;
  max-width: 350px;
  opacity: 0.9;
}

/* Enhanced Links */
.footer-links-section {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-links-column {
  min-width: 150px;
}

.links-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #ffffff;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 3px solid #edaa00;
  position: relative;
}

.links-title::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #edaa00, #ffc107);
  border-radius: 2px;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-list li {
  margin-bottom: 12px;
  position: relative;
}

.footer-links-list a {
  font-family: "Poppins", sans-serif;
  font-size: clamp(0.9rem, 2vw, 1rem);
  color: #cbd5e1;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  position: relative;
}

.footer-links-list a::before {
  content: "›";
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: all 0.3s ease;
  color: #edaa00;
}

.footer-links-list a:hover {
  color: #ffffff;
  transform: translateX(15px);
}

.footer-links-list a:hover::before {
  opacity: 1;
  left: -15px;
}

/* Enhanced Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  position: relative;
}

.copyright {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.copyright p {
  font-family: "Poppins", sans-serif;
  font-size: clamp(0.85rem, 2vw, 0.95rem);
  color: #94a3b8;
  margin: 0;
}



@keyframes heartBeat {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet/Laptop Medium Screens */
@media (max-width: 1200px) {
  .navbar {
    padding: 12px 30px;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }
  
  .gallery-container {
    padding: 0 20px;
  }
}

/* Tablets */
@media (max-width: 992px) {
  .navbar {
    padding: 10px 25px;
    flex-wrap: wrap;
  }
  
  .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
    margin-top: 15px;
    gap: 15px;
    padding: 8px;
  }
  
  .nav-links a {
    padding: 10px 15px;
    font-size: 14px;
  }
  
  .nav-login .login-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
  
  .gallery-preview {
    padding: 60px 15px;
    margin: 30px auto;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .gallery-image-wrapper {
    aspect-ratio: 4/3;
  }
  
  .footer-content {
    gap: 30px;
  }
  
  .footer-links-section {
    gap: 30px;
  }
}

/* Large Mobile Phones */
@media (max-width: 768px) {
  .navbar {
    padding: 8px 20px;
  }
  
  .nav-logo img {
    width: 150px;
    height: auto;
  }
  
  .nav-links {
    gap: 10px;
    padding: 6px;
  }
  
  .nav-links a {
    padding: 10px 15px;
    font-size: 14px;
  }
  
  .nav-login .login-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
  
  .gallery-preview {
    padding: 50px 15px;
    margin: 20px auto;
  }
  
  .gallery-header {
    margin-bottom: 30px;
  }
  
  .gallery-subtitle {
    padding: 15px;
    margin-top: 20px;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 30px;
  }
  
  .gallery-item {
    gap: 15px;
  }
  
  .gallery-image-wrapper {
    aspect-ratio: 16/9;
  }
  
  .image-container {
    border-radius: 12px;
    border-width: 3px;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  
  .footer-logo {
    justify-content: center;
  }
  
  .footer-tagline {
    margin: 0 auto;
  }
  
  .footer-links-section {
    justify-content: center;
    text-align: center;
    gap: 30px;
  }
  
  .footer-links-column {
    min-width: 100%;
  }
  
  .footer-links-list a::before {
    display: none;
  }
}

/* Medium Mobile Phones */
@media (max-width: 576px) {
  .navbar {
    padding: 6px 15px;
  }
  
  .nav-logo {
    font-size: 18px;
  }
  
  .nav-logo img {
    width: 120px;
  }
  
  .nav-links {
    flex-wrap: wrap;
    gap: 8px;
  }
  
  .nav-links a {
    padding: 8px 12px;
    font-size: 13px;
  }
  
  .nav-login .login-btn {
    padding: 8px 16px;
    font-size: 13px;
  }
  
  .gallery-preview {
    padding: 40px 10px;
    margin: 15px auto;
  }
  
  .gallery-header h2 {
    margin-bottom: 15px;
  }
  
  .gallery-subtitle {
    padding: 12px;
    margin-top: 15px;
  }
  
  .gallery-grid {
    gap: 25px;
    margin-top: 25px;
  }
  
  .gallery-item {
    gap: 12px;
  }
  
  .gallery-image-wrapper {
    aspect-ratio: 3/2;
  }
  
  .image-overlay {
    padding: 15px;
  }
  
  .gallery-tag {
    top: 10px;
    right: 10px;
    padding: 5px 12px;
  }
  
  .footer-content {
    padding: 0 15px;
  }
}

/* Small Mobile Phones */
@media (max-width: 480px) {
  .navbar {
    padding: 5px 10px;
  }
  
  .nav-logo img {
    width: 100px;
  }
  
  .nav-links {
    justify-content: space-between;
  }
  
  .nav-links li {
    flex: 1;
    text-align: center;
  }
  
  .nav-links a {
    justify-content: center;
    width: 100%;
  }
  
  .nav-login .login-btn {
    padding: 6px 14px;
    font-size: 12px;
  }
  
  .gallery-preview {
    padding: 30px 10px;
  }
  
  .gallery-header h2 i {
    margin-right: 8px;
  }
  
  .gallery-grid {
    gap: 20px;
  }
  
  .gallery-image-wrapper {
    aspect-ratio: 4/3;
  }
  
  .footer-logo {
    flex-direction: column;
    gap: 15px;
  }
  
  .footer-logo img {
    width: 60px;
  }
}

/* Very Small Mobile Phones */
@media (max-width: 375px) {
  .navbar {
    padding: 4px 8px;
  }
  
  .nav-logo img {
    width: 90px;
  }
  
  .nav-links {
    gap: 5px;
  }
  
  .nav-links a {
    padding: 6px 8px;
    font-size: 12px;
  }
  
  .nav-login .login-btn {
    padding: 5px 12px;
    font-size: 11px;
  }
  
  .gallery-preview {
    padding: 25px 8px;
  }
  
  .gallery-header h2 {
    font-size: 1.8rem;
  }
  
  .gallery-header h2 i {
    font-size: 1.6rem;
  }
  
  .gallery-subtitle {
    padding: 10px;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .gallery-image-wrapper {
    aspect-ratio: 16/9;
  }
  
  .footer-logo-section {
    min-width: 100%;
  }
}

/* Landscape Mode for Mobile */
@media (max-height: 600px) and (orientation: landscape) {
  .navbar {
    padding: 5px 15px;
  }
  
  .nav-links {
    margin-top: 5px;
  }
  
  .gallery-preview {
    padding: 30px 15px;
    min-height: auto;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Additional Utility Classes */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: linear-gradient(90deg, #edaa00, #ffc107, #edaa00);
  z-index: 9999;
  transition: width 0.1s ease;
}

.fade-in {
  animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.shadow-glow {
  box-shadow: 0 0 30px rgba(29, 43, 145, 0.15);
}

.shadow-glow:hover {
  box-shadow: 0 0 50px rgba(29, 43, 145, 0.25);
}