 body {
      font-family: "Montserrat", sans-serif;
      margin: 0;
      padding: 0;
      height: 100vh;
      overflow: hidden;
    }
    
    .glass-header {
      background: rgba(0, 39, 94, 0.95);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .icon-btn {
      padding: 0.5rem;
      border-radius: 0.5rem;
      transition: all 0.2s;
    }
    
    .icon-btn:hover {
      background: rgba(252, 203, 12, 0.1);
    }
    
    .dropdown-content {
      background: white;
    }
    
    .dropdown-arrow.rotate {
      transform: rotate(180deg);
    }

     @keyframes fadeIn {
      from { opacity: 0; transform: scale(0.95); }
      to { opacity: 1; transform: scale(1); }
    }
    
    @keyframes slideIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    

    .fade-in { animation: fadeIn 0.3s ease-out; }
    .slide-in { animation: slideIn 0.4s ease-out; }
    
    .glass {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .custom-img {
      width: 100%;
      height: 500px;      
      object-fit: contain;
      border-radius: 1rem; 
    }
    
        .dropdown-content {
      display: none;
    }
    .dropdown-content.show {
      display: block;
    }
    
    /* Hero background overlay */
    .hero-overlay {
      background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
    }
    
    /* Carousel styles */
    .carousel-slide {
      display: none;
      animation: fadeIn 0.5s;
    }
    
    .carousel-slide.active {
      display: block;
    }
    
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    .gradient-overlay {
      background: linear-gradient(135deg, rgba(2, 0, 102, 0.95), rgba(252, 203, 12, 0.8));
    }

    .image-hover {
      transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .image-hover:hover {
      transform: scale(1.05);
    }

    .card-hover {
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .card-hover:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(2, 0, 102, 0.2);
    }

    .thumbnail {
      transition: all 0.3s ease;
      opacity: 0.6;
    }

    .thumbnail:hover, .thumbnail.active {
      opacity: 1;
      transform: scale(1.05);
      border-color: #FCCB0C;
    }

    html { scroll-behavior: smooth; }
    
    .page { display: none; }
    .page.active { display: block; }
    
    .dropdown-content {
      display: none;
      opacity: 0;
      transform: translateY(-10px);
      transition: opacity 0.2s, transform 0.2s;
    }
    
    .dropdown-content.show {
      display: block;
      opacity: 1;
      transform: translateY(0);
    }
    .page {
      display: none;
    }
    .page.active {
      display: block;
    }
    
    .animate-spin-slow {
      animation: spin-slow 10s linear infinite;
    }

    .fade-in-up {
      animation: fadeInUp 0.8s ease-out;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    
    @keyframes slideIn {
      from { opacity: 0; transform: scale(0.9); }
      to { opacity: 1; transform: scale(1); }
    }
    
    @keyframes shimmer {
      0% { background-position: -200% center; }
      100% { background-position: 200% center; }
    }

    @keyframes wiggle {
      0%, 100% { transform: rotate(-3deg); }
      50% { transform: rotate(3deg); }
    }

    .wiggle {
      animation: wiggle 0.4s ease-in-out infinite;
    }
    .fade-in { animation: fadeIn 0.6s ease-out; }
    .slide-in { animation: slideIn 0.3s ease-out; }
    
    .carousel-container {
      position: relative;
      overflow: hidden;
      aspect-ratio: 16/9;
      transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      border-radius: 10px;
    }
    
    .carousel-track {
      display: flex;
      transition: transform 0.5s ease-in-out;
    }
    
    .carousel-slide {
      min-width: 100%;
      height: 100%;
    }
    
    .service-card {
      transition: all 0.3s ease;
      cursor: pointer;
      position: relative;
      overflow: hidden;
    }
    
    .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(252, 203, 12, 0.1), transparent);
      transition: left 0.5s ease;
    }
    
    .service-card:hover::before {
      left: 100%;
    }
    
    .service-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(2, 0, 102, 0.15);
    }
    
    .modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.7);
      backdrop-filter: blur(8px);
      z-index: 1000;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }
    
    .modal.active {
      display: flex;
    }
    
    .modal-content {
      background: white;
      border-radius: 24px;
      max-width: 900px;
      width: 100%;
      max-height: 90vh;
      overflow-y: auto;
      position: relative;
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    }
    
    .dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.5);
      transition: all 0.3s ease;
    }
    
    .dot.active {
      background: #FCCB0C;
      width: 24px;
      border-radius: 4px;
    }
    
    ::-webkit-scrollbar {
      width: 8px;
    }
    
    ::-webkit-scrollbar-track {
      background: #f1f1f1;
      border-radius: 10px;
    }
    
    ::-webkit-scrollbar-thumb {
      background: #FCCB0C;
      border-radius: 10px;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }


    /* Modern nav link with animated underline */
    .nav-link {
      position: relative;
      padding-bottom: 4px;
    }

    .nav-link::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, #FCCB0C, #60A5FA);
      transform: translateX(-50%);
      transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-link:hover::after {
      width: 100%;
    }

    /* Logo animation */
    .logo-container {
      position: relative;
      transition: transform 0.3s ease;
    }

    .logo-container:hover {
      transform: scale(1.05);
    }

  
    .dropdown-content {
      opacity: 0;
      visibility: hidden;
      transform: translateY(-10px);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      background: linear-gradient(135deg, #ffffff, #f8fafc);
      border: 1px solid rgba(2, 0, 102, 0.1);
    }

    .dropdown-content.show {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .dropdown-content a {
      position: relative;
      overflow: hidden;
    }

    .dropdown-content a::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      height: 100%;
      width: 3px;
      background: linear-gradient(180deg, #020066, #FCCB0C);
      transform: translateX(-3px);
      transition: transform 0.3s ease;
    }

    .dropdown-content a:hover::before {
      transform: translateX(0);
    }

    /* Modern CTA button */
    .cta-button {
      
      position: relative;
      overflow: hidden;
    
    }

    .cta-button::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(252, 203, 12, 0.3), transparent);
      transition: left 0.5s ease;
    }

    .cta-button:hover::before {
      left: 100%;
    }

    .cta-button:hover {
      box-shadow: 0 6px 25px rgba(37, 99, 235, 0.5);
      transform: translateY(-2px);
    }

    /* Dropdown arrow animation */
    .dropdown-arrow {
      transition: transform 0.3s ease;
    }

    .dropdown-arrow.rotate {
      transform: rotate(180deg);
    }

    /* Mobile menu button */
    .mobile-menu-btn {
      display: none;
    }


    /* Dropdown styling */
    .dropdown-content {
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(0, 0, 0, 0.05);
      opacity: 0;
      visibility: hidden;
      transform: translateY(-10px);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .dropdown-content.show {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }


    .cta-button:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(252, 203, 12, 0.5);
    }

    /* Mobile menu styling */
    .mobile-menu-btn {
      display: none;
    }

    @media (max-width: 768px) {
      .mobile-menu-btn {
        display: block;
      }
    }

    /* Modern button style */
    .modern-btn {
      position: relative;
      overflow: hidden;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .modern-btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      transition: left 0.6s;
    }

    .modern-btn:hover::before {
      left: 100%;
    }

    .modern-btn:hover {
      transform: scale(1.05);
    }

    /* Logo animation */
    .logo-container:hover .w-11 {
      transform: rotate(360deg);
      transition: transform 0.6s ease;
    }

    .logo-container .w-11 {
      transition: transform 0.6s ease;
    }

    /* Smooth scrolling */
    html {
      scroll-behavior: smooth;
    }

    
    /* Dropdown arrow animation */
    .dropdown-arrow {
      transition: transform 0.3s ease;
    }

    #dropdown:hover .dropdown-arrow {
      transform: rotate(180deg);
    }

    /* Text reveal animation */
    @keyframes textReveal {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    h1, p {
      animation: textReveal 1s ease-out forwards;
    }

    p {
      animation-delay: 0.3s;
    }

        .icon-btn {
      width: 36px;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      transition: all 0.3s ease;
    }

    .icon-btn:hover {
      background: rgba(255, 255, 255, 0.1);
    }

    .mobile-menu {
      background: rgba(2, 0, 102, 0.98);
      backdrop-filter: blur(10px);
      transform: translateX(100%);
      transition: transform 0.3s ease;
    }

    .mobile-menu.show {
      transform: translateX(0);
    }

    .logo-container:hover img {
      transform: scale(1.05);
      transition: transform 0.3s ease;
    }

    @media (max-width: 768px) {
      .glass-header {
        padding: 12px 0;
      }
    }

    /* Modern Card Styles */
    .modern-card {
      background: linear-gradient(145deg, #0D3266 0%, #0a2850 100%);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
    }

    .modern-card-celebrants {
      background: whitesmoke;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
    }

    .modern-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 20%;
      transition: left 0.5s;
    }

    .modern-card:hover::before {
      left: 100%;
    }

    .modern-card:hover {
      transform: translateY(-4px);
    }

    /* clock and calendar card */
    .bottom-modern-card {
      color: black;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
      height: 380px;
      margin-bottom: 50px;
    }

    .bottom-modern-card:hover {
      transform: translateY(-4px);
    }

    /* Birthday Card Animations */
    .birthday-card {
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .birthday-card::after {
      content: '';
      position: absolute;
      top: -50%;
      right: -50%;
      width: 200%;
      height: 200%;
      opacity: 0;
      transition: opacity 0.3s;
    }

    .birthday-card:hover::after {
      opacity: 1;
    }

    .birthday-card:hover {
      transform: scale(1.05);
     
    }

    .birthday-card img {
      transition: transform 0.4s ease;
    }

    .birthday-card:hover img {
      transform: scale(1.1);
    }

    /* announcement buttons */
    .modern-btn {
      background: whitesmoke;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    /* Announcement Icons */
    .announcement-icon {
      transition: all 0.3s ease;
      position: relative;
    }

    .announcement-icon:hover {
      transform: scale(1.1) rotate(5deg);
    }

    /* Weather Card */
    .weather-card {
      background: white;
    }

    #eventsContainer::-webkit-scrollbar {
      width: 6px;
    }

    #eventsContainer::-webkit-scrollbar-track {
      background: #f1f1f1;
    }

    #eventsContainer::-webkit-scrollbar-thumb {
      background: #888;
      border-radius: 10px;
    }

    #eventsContainer::-webkit-scrollbar-thumb:hover {
      background: #555;
    }

    .footer-animate {
      animation: fadeInUp 0.6s ease-out;
    }

    .social-icon {
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .social-icon:hover {
      transform: translateY(-4px);
    }

    .link-underline {
      position: relative;
      display: inline-block;
    }

    .link-underline::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: -2px;
      left: 0;
      background-color: #00275E;
      transition: width 0.3s ease;
    }

    .link-underline:hover::after {
      width: 100%;
    }

    .footer-text {
      color: #00275E;

    }
    
/*filters css*/
    
    #filterMonth{
      background-color: #00275E;
    }

    #filterYear{
      background-color: #00275E;
    }

    #filterDepartment{
      background-color: #00275E;
    }

    #birthdayYearFilter{
      background-color: #00275E;
    }

    #birthdayFilter{
      background-color: #00275E;
    }

    #birthdayfilterDepartment{
      background-color: #00275E;
    }

     #birthdayCelebrants{
      background-color: #00275E;
    }

        #announcementfilterDepartment{
      background-color: #00275E;
    }
        #announcementfilterMonth{
      background-color: #00275E;
    }
        #announcementfilterYear{
      background-color: #00275E;
    }

        .custom-scrollbar::-webkit-scrollbar {
      width: 10px;
    }
    .custom-scrollbar::-webkit-scrollbar-track {
      background: #f1f1f1;
    }
    .custom-scrollbar::-webkit-scrollbar-thumb {
      background: #00275E;
      border-radius: 5px;
    }
    .custom-scrollbar::-webkit-scrollbar-thumb:hover {
      background: #FCCB0C;
    }
    
    .modal-animate {
      animation: modalFadeIn 0.3s ease-out;
    }
    
    @keyframes modalFadeIn {
      from {
        opacity: 0;
      }
      to {
        opacity: 1;
      }
    }

    .animate-fadeIn {
      animation: fadeIn 0.2s ease-out;
    }

    /* Custom scrollbar */
    #memoModal ::-webkit-scrollbar {
      width: 8px;
    }

    #memoModal ::-webkit-scrollbar-track {
      background: #f1f5f9;
      border-radius: 10px;
    }

    #memoModal ::-webkit-scrollbar-thumb {
      background: #cbd5e1;
      border-radius: 10px;
    }

    #memoModal ::-webkit-scrollbar-thumb:hover {
      background: #94a3b8;
    } 

        .nav-link {
      position: relative;
      overflow: hidden;
    }

    .nav-link::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      height: 100%;
      width: 3px;
      background: #FCCB0C;
      transform: scaleY(0);
      transition: transform 0.3s ease;
    }

    .nav-link:hover::before,
    .nav-link.active::before {
      transform: scaleY(1);
    }

    .dropdown-enter {
      animation: slideDown 0.3s ease-out;
    }

    @keyframes slideDown {
      from {
        opacity: 0;
        transform: translateY(-10px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .icon-bounce:hover {
      animation: bounce 0.5s ease;
    }

    @keyframes bounce {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-5px); }
    }

    .glass-effect {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .gradient-text {
      background: linear-gradient(135deg, #FCCB0C 0%, #FFD700 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }


   

   