 @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;
    }

    @media (max-width: 768px) {
      .mobile-menu-btn {
        display: block;
      }
    }
    
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(40px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    @keyframes slideInRight {
      from {
        opacity: 0;
        transform: translateX(30px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }
    
    @keyframes shimmer {
      0% { background-position: -1000px 0; }
      100% { background-position: 1000px 0; }
    }

        /*text-container*/
        .text-container {
            text-align: center;
            font-size: 48px;
            font-weight: bold;
            line-height: 1.2;
        }
        
        .outlined-text {
            color: white;
            text-shadow: 
                -2px -2px 0 #00275E,
                2px -2px 0 #00275E,
                -2px 2px 0 #00275E,
                2px 2px 0 #00275E,
                -2px 0 0 #00275E,
                2px 0 0 #00275E,
                0 -2px 0 #00275E,
                0 2px 0 #00275E;
        }
        
        .text-yellow {
            color: white;
            text-shadow: 
                -2px -2px 0 #FCCB0C,
                2px -2px 0 #FCCB0C,
                -2px 2px 0 #FCCB0C,
                2px 2px 0 #FCCB0C,
                -2px 0 0 #FCCB0C,
                2px 0 0 #FCCB0C,
                0 -2px 0 #FCCB0C,
                0 2px 0 #FCCB0C;
        }

        .outlined-text-small {
            color: white;
            text-shadow: 
                -1px -1px 0 #00275E,
                1px -1px 0 #00275E,
                -1px 1px 0 #00275E,
                1px 1px 0 #00275E,
                -1px 0 0 #00275E,
                1px 0 0 #00275E,
                0 -1px 0 #00275E,
                0 1px 0 #00275E;
        }

         .text-yellow-small {
            color: white;
            text-shadow: 
                -1px -1px 0 #FCCB0C,
                1px -1px 0 #FCCB0C,
                -1px 1px 0 #FCCB0C,
                1px 1px 0 #FCCB0C,
                -1px 0 0 #FCCB0C,
                1px 0 0 #FCCB0C,
                0 -1px 0 #FCCB0C,
                0 1px 0 #FCCB0C;
        }
        
        @media (max-width: 768px) {
            .text-container {
                font-size: 32px;
            }
            .mobile-break {
                display: block;
            }
        }
        
        @media (min-width: 769px) {
            .mobile-break {
                display: none;
            }
        }

        /*about */
        .badge-dot{
          background-color: #0ea5e9;
        }
            .card-modern {
            position: relative;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(10px);
        }

        .card-modern::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(2, 0, 102, 0.05) 0%, rgba(252, 203, 12, 0.05) 100%);
            opacity: 0;
            transition: opacity 0.5s ease;
            z-index: 0;
        }

        .card-modern:hover::before {
            opacity: 1;
        }

        .card-modern:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 25px 50px -12px rgba(2, 0, 102, 0.25);
        }

        .glow-effect {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 150px;
            height: 150px;
            background: radial-gradient(circle, rgba(252, 203, 12, 0.3) 0%, transparent 70%);
            border-radius: 50%;
            animation: glow 3s ease-in-out infinite;
            pointer-events: none;
        }

        .image-container {
            position: relative;
            z-index: 2;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .service-card:hover .carousel-container{
           transform: scale(1.1) rotate(2deg);
        }

        .card-modern:hover .image-container {
            transform: scale(1.1) rotate(2deg);
        }

        .gradient-border {
            position: relative;
            display: inline-block;
        }
        

        .gradient-border::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, #020066 0%, #FCCB0C 100%);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s ease;
        }

        .card-modern:hover .gradient-border::after {
            transform: scaleX(1);
        }

        .carousel-container:hover .gradient-border::after{
          transform: scaleX(1);
        }

        .arrow-animate {
            transition: transform 0.3s ease;
        }

        .card-modern:hover .arrow-animate {
            transform: translateX(5px);
        }

        .text-content {
            position: relative;
            z-index: 2;
        }

        .stagger-1 {
            animation: slideInUp 0.8s ease-out 0.1s both;
        }

        .stagger-2 {
            animation: slideInUp 0.8s ease-out 0.3s both;
        }

        .stagger-3 {
            animation: slideInUp 0.8s ease-out 0.5s both;
        }

        .title-animate {
            animation: slideInLeft 1s ease-out;
        }

        .shimmer-effect {
            background: linear-gradient(90deg, transparent, rgba(252, 203, 12, 0.2), transparent);
            background-size: 200% 100%;
            animation: shimmer 3s infinite;
        }

        /* Parallax effect for decorative elements */
        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .rotate-slow {
            animation: rotate 20s linear infinite;
        }

        /* Smooth entrance for mascot */
        .mascot-entrance {
            animation: slideInLeft 1.2s ease-out 0.5s both;
        }

        /* Hover effect for images */
        .image-hover-effect {
            position: relative;
            overflow: hidden;
        }

        .image-hover-effect::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
            transform: rotate(45deg);
            transition: all 0.6s ease;
        }

        .card-modern:hover .image-hover-effect::after {
            animation: shimmer 1.5s ease;
        }

        /* Gradient text animation */
        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .gradient-text {
            background: linear-gradient(90deg, #020066, #FCCB0C, #020066);
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientShift 3s ease infinite;
        }
    .shimmer-effect {
      background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(252, 203, 12, 0.3) 50%,
        transparent 100%
      );
      background-size: 1000px 100%;
      animation: shimmer 3s infinite;
    }
    
    .stagger-1 { animation: fadeInUp 0.6s ease-out 0.1s backwards; }
    .stagger-2 { animation: fadeInUp 0.6s ease-out 0.3s backwards; }
    .stagger-3 { animation: fadeInUp 0.6s ease-out 0.5s backwards; }
    
    .text-content {
      position: relative;
      z-index: 1;
    }

    .glass-header {
      background-color: #00275E;
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    }

    /* Animated gradient background */
    .hero-gradient {
      background: linear-gradient(135deg, #020066 0%, #1e40af 50%, #0ea5e9 100%);
      background-size: 200% 200%;
      animation: gradientShift 15s ease infinite;
    }

    @keyframes gradientShift {
      0%, 100% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
    }

    /* Floating animation */
    @keyframes float {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-20px); }
    }

    .float-animation {
      animation: float 6s ease-in-out infinite;
    }

    /* Glow effect 
    .glow-text {
      text-shadow: 0 0 40px #00275E,
                   0 0 80px rgba(252, 203, 12, 0.3);
    }

    /* 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;
      }
    }

    /* Carousel slide */
    .carousel-slide {
      transition: opacity 1s ease-in-out;
    }

    .carousel-slide.active {
      opacity: 1;
    }

    /* 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%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
      transition: left 0.6s;
    }

    .modern-btn:hover::before {
      left: 100%;
    }

    .modern-btn:hover {
      transform: scale(1.05);
      box-shadow: 0 10px 40px rgba(255, 255, 255, 0.3);
    }

    /* 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;
    }

    /* Particle effect background */
    .particle-bg {
      position: absolute;
      width: 100%;
      height: 100%;
      overflow: hidden;
    }

    .particle {
      position: absolute;
      width: 2px;
      height: 2px;
      background: rgba(255, 255, 255, 0.5);
      border-radius: 50%;
      animation: particle-float 15s infinite;
    }

    @keyframes particle-float {
      0%, 100% {
        transform: translate(0, 0);
        opacity: 0;
      }
      10%, 90% {
        opacity: 1;
      }
      50% {
        transform: translate(100px, -100px);
      }
    }

    /* 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;
      }
    }


    .mascot {
      position: absolute;
      width: 40px;
      height: 70px;
      pointer-events: none;
      z-index: 50;
      transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

    @keyframes jump {
      0%, 100% { transform: translateY(0) rotate(0deg); }
      25% { transform: translateY(-30px) rotate(-5deg); }
      50% { transform: translateY(-40px) rotate(0deg); }
      75% { transform: translateY(-30px) rotate(5deg); }
    }

    .jumping {
      animation: jump 0.6s ease-in-out;
    }

    h1 {
      line-height: 1.4;
    }

    @keyframes waveExpand {
  0% {
    width: 20px;
    height: 20px;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    width: 80px;
    height: 80px;
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.5);
  }
}

#staffMascotContainer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
}

.staff-mascot {
  position: absolute;
  width: 80px;
  height: 80px;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.3s ease, transform 0.4s ease;
}

.staff-mascot.peeking {
  animation: peekOut 0.6s ease-out forwards;
}

.staff-mascot.wiggle {
  animation: wiggle 0.5s ease-in-out;
}

@keyframes peekOut {
  0% {
    transform: translate(-20px, -20px) rotate(0deg) scale(0.4);
    opacity: 0;
  }
  60% {
    transform: translate(5px, 5px) rotate(var(--rotation, 0deg)) scale(0.7);
    opacity: 1;
  }
  100% {
    transform: translate(0, 0) rotate(var(--rotation, 0deg)) scale(0.6);
    opacity: 1;
  }
}

@keyframes wiggle {
  0%, 100% {
    transform: rotate(var(--rotation, 0deg)) scale(0.6);
  }
  25% {
    transform: rotate(calc(var(--rotation, 0deg) + 10deg)) scale(0.65);
  }
  75% {
    transform: rotate(calc(var(--rotation, 0deg) - 10deg)) scale(0.65);
  }
}

    /* Add position relative to staff section */
    #staff {
      position: relative;
    }

    #staff section {
      position: relative;
    }

    /* Smooth card transitions */
    [onclick^="openModal"] {
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .contact-card {
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .contact-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(2, 0, 102, 0.15);
    }
    
    .icon-wrapper {
      transition: all 0.3s ease;
    }
    
    .contact-card:hover .icon-wrapper {
      transform: scale(1.1) rotate(5deg);
      background: linear-gradient(135deg, #FCCB0C 0%, #FFA500 100%);
    }
    
    .gradient-text {
      background: linear-gradient(135deg, #020066 0%, #2596be 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    
    .mascot-speech{
      animation: float 2s ease-in-out infinite;
      margin-top: 60px;
    }

    .speech-bubble-cloud {
      position: relative;
      background: white;
      border: 3px solid #00275E;
      border-radius: 100px;
      padding: 10px 20px;
      animation: float 2s ease-in-out infinite;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }


    /* Speech bubble tail pointing to mascot */
     .speech-bubble-cloud::before {
      content: '';
      position: absolute;
      right: -16px;
      top: 50%;
      width: 0;
      height: 0;
      border: 15px solid transparent;
      border-left-color: #00275E;
      border-right: 0;
      border-bottom: 0;
      margin-top: -7.5px;
    }

    .speech-bubble-cloud::after {
      content: '';
      position: absolute;
      right: -9px;
      top: 50%;
      width: 0;
      height: 0;
      border: 12px solid transparent;
      border-left-color: white;
      border-right: 0;
      border-bottom: 0;
      margin-top: -6px;
    }

    .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;

    }

  
