@import url('https://fonts.googleapis.com/css2?family=Ancizar+Sans:ital,wght@0,100..1000;1,100..1000&family=Karla:ital,wght@0,200..800;1,200..800&family=Montserrat:ital,wght@0,100..900;1,100..900&family=PT+Sans+Narrow:wght@400;700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

*{
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
html{
     scroll-behavior: smooth;
}
body{
    height: auto;
    width: 100%;
    background-color: white;

}
/* nav bar starts here */
nav{
    width: 100%;
    height: 80px;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 100px;
    top: 0;
    right: 0;
    left: 0;
    position: fixed;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

nav {
    width: 100%;
    height: 80px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    transition: box-shadow 0.2s;
}

nav .logo img {
    height: 120px;
    width: auto;
    width: 200px;
    margin-top: 10px;
    margin-bottom: 0;
}

nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

nav ul li {
    position: relative;
}

nav ul li a {
    font-size: 17px;
    font-weight: 400;
    color: #333;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #0066ff;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

nav ul li a:hover {
    color: #0066ff;
}

nav ul li a:hover::after {
    width: 100%;
}

.btn{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.login-btn{
    padding: 8px 16px;
    background-color: transparent;
    color:  #0066ff ;
    border:  #0066ff solid 2px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
}
.login-btn:hover{
    background-color: #0056e6;
    color: white;
    transform: scale(1.05);
    transition: all 0.3s ease;
}

.login-btn a{
    color: #0066ff;
}
.login-btn:hover a{
    color: white;
}
.signup-btn{
    padding: 9px 18px;
    background-color:  #0066ff ;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
}

.signup-btn a{
    color: white;
}
/* nav bar ends here */

/* login form starts here */
form.login{
    width: 500px;
    padding: 40px;
    position: absolute;
    top: 52%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: white;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 10px;
    margin-top: 40px;
}
form.login h2{
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
    text-align: center;
}      

form.login p{
    font-size: 15px;
    color: #666;
    margin-bottom: 10px;
    text-align: center;
}
form.login label{
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin-bottom: 7px;
    display: block;
}

form.login  input, .input{
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 20px;
}
form.login input::placeholder{
    color: #999;
    font-size: 14px;
}

form.login .person select{
 width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 15px;

}

form.login .remember-me {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    gap: 10px;
}

form.login .remember {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    color: #444;
}

form.login .remember label{
    margin-top: 10px;
}
form.login .remember input {
    accent-color: #0066ff;
    width: 16px;
    height: 16px;
    margin: 0 4px 0 0;
    border-radius: 3px;
    cursor: pointer;
}

form.login .forgot-password {
    font-size: 16px;
    color: #0066ff;
    text-decoration: none;
    transition: color 0.2s;
}
form.login .forgot-password:hover {
    color: #0056e6;
    text-decoration: underline;
}

form.login .submit-btn{
    width: 100%;
    padding: 10px;
    font-size: 18px;
    background-color: #0066ff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
    margin-bottom: 20px;
    text-align: center;
}

form.login .submit-btn a{
    color: white;
}
form.login p.signup-link{
     color: #999;
    font-size: 18px;
}

form.login p.signup-link a{
    color: #0066ff;
}

/* the login form ends here */

/* styles for the home page */
.btn .signup-link{
    font-size: 16px;
}

.hero-section {
    height: 630px;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;    
    justify-content: center;
    flex-direction: column;
    margin-bottom: 30px;
    margin-top: 60px;
    background-image: url(./images/hero-img.jpg);
    position: relative;
    text-align: center;
    color: white;
}

/* Add an overlay for better text readability */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay */
    z-index: 1;
}

.hero-section > * {
    position: relative;
    z-index: 2; /* Place content above the overlay */
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-section p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    max-width: 600px;
    padding: 0 20px;
    font-weight: 300;
}

.hero-section .signup-btn {
    padding: 15px 40px;
    font-size: 1.2rem;
    background-color: #0066ff;
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    font-weight: 600;
}

.hero-section .signup-btn:hover {
    background-color: #0056e6;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.hero-section .signup-btn:active {
    transform: translateY(-1px);
}

.about{
     height: 280px;
    width: 100%;
}
.about h2{
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
    text-align: center;
}      

.about p{
    font-size: 15px;
    color: #666;
    margin-bottom: 10px;
    text-align: center;
    max-width: 60%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 10px;
}
.about-cards{  
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 100px;
    margin-top: 50px;
}
.cards{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 50px;
    width: 250px;
}

.events{
    height: auto;
    width: 100%;
    padding: 80px 0;
    background: #f9fafc;
}

.events h2.header{
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
} 
.events .about-p{
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
    text-align: center;
    max-width: 60%;
    margin: 0 auto 40px;
    line-height: 1.6;
}
.event-list{
    display: flex;
    align-items: stretch;
    justify-content: center;  
    margin: auto;  
    gap: 30px;
    width: 90%;
    flex-wrap: wrap;
}

/* Event card styling with hover effects */
.event-card {
    width: 300px;
    height: auto;
    border-radius: 10px;
    padding: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
    justify-content: flex-start;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
            background: white;
    position: relative;
}

.event-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 20px rgba(0,0,0,0.15);
}

.event-card img{
    height: 180px;
    width: 100%;
    border-radius: 7px;
    transition: all 0.3s ease;
    object-fit: cover;
    margin-bottom: 15px;
}
.event-card:hover img {
            transform: scale(1.05);
        }
 .event-card h2 {
     font-size: 1.4rem;
     font-weight: 600;
    margin: 12px 0 8px;
    color: #222;
    text-align: center;
    width: 100%;
 }

.event-card p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.5;
    flex-grow: 1;
}

.event-card .signup-btn {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #0066ff;
    color: white;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    margin-top: auto;
    margin-bottom: 5px;
    transition: all 0.2s ease;
    width: 80%;
    text-align: center;
 }

.event-card .signup-btn:hover {
    background-color: #0051cc;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 102, 255, 0.3);
}

.event-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, transparent 70%, rgba(0,0,0,0.03) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.event-card:hover::after {
    opacity: 1;
}
.gallery{
     height: auto;
    width: 90%;
    margin-top: 200px;
    margin-bottom: 50px;
    margin: auto;
}
.gallery h2.header{
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
    text-align: center;
}
.gallery .about-p{
    font-size: 15px;
    color: #666;
    margin-bottom: 10px;
    padding-left: 10%;
    text-align: center;
    max-width: 80%;
}

.gallery-images {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
    width: 100%;
    flex-wrap: wrap;
}

.gallery-images img {
    height: 200px;
    width: 300px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    object-fit: cover;
    cursor: pointer;
    position: relative;
}

.gallery-images img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.gallery-images img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 102, 255, 0.2);
    opacity: 0;
    border-radius: 5px;
    transition: opacity 0.3s ease;
}

.gallery-images img:hover::after {
    opacity: 1;
}

/* gallery section ends here */
/* feedback section starts here */
.feedback {
    background: #f9f9f9;
    padding: 50px 0;
}

 .feedback-section {
            width: 100%;
            padding: 60px 20px;
            display: flex;
            justify-content: center;
            background-color: #f9fafc;
        }

        .feedback-container {
            width: 100%;
            max-width: 800px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            padding: 40px;
        }

        .feedback-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .feedback-header h2 {
            font-size: 28px;
            font-weight: 600;
            color: #333;
            margin-bottom: 10px;
        }

        .feedback-header p {
            font-size: 16px;
            color: #666;
            line-height: 1.5;
        }

        .feedback-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .form-group label {
            font-size: 16px;
            font-weight: 500;
            color: #333;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #0066ff;
            outline: none;
            box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
        }

        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }

        .rating-group {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .rating-options {
            display: flex;
            gap: 15px;
        }

        .rating-option {
            display: flex;
            align-items: center;
            gap: 5px;
            cursor: pointer;
        }

        .rating-option input[type="radio"] {
            display: none;
        }

        .rating-option label {
            display: inline-block;
            width: 40px;
            height: 40px;
            line-height: 40px;
            text-align: center;
            background-color: #f0f0f0;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .rating-option input[type="radio"]:checked + label {
            background-color: #0066ff;
            color: white;
        }

        .rating-option label:hover {
            background-color: #e0e0e0;
        }

        .feedback-submit {
            margin-top: 10px;
        }

        .feedback-submit button {
            width: 100%;
            padding: 12px;
            background-color: #0066ff;
            color: white;
            border: none;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .feedback-submit button:hover {
            background-color: #0051cc;
            transform: translateY(-2px);
        }

   
        footer {
            background-color: #1a1a1a;
            color: #fff;
            padding: 60px 0 30px;
            margin-top: 80px;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }

        .footer-col {
            display: flex;
            flex-direction: column;
        }

        .footer-col h3 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 20px;
            color: #fff;
            position: relative;
        }

        .footer-col h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -8px;
            width: 40px;
            height: 3px;
            background-color: #0066ff;
        }

        .footer-col p {
            font-size: 15px;
            color: #b3b3b3;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .footer-col ul {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-col ul li {
            display: flex;
            align-items: center;
        }

        .footer-col ul li a {
            color: #b3b3b3;
            font-size: 15px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-col ul li a:hover {
            color: #0066ff;
            transform: translateX(5px);
        }

        .footer-col ul li a i {
            font-size: 14px;
            color: #0066ff;
        }

        .footer-social {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .footer-social a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: #2c2c2c;
            border-radius: 50%;
            color: #fff;
            font-size: 18px;
            transition: all 0.3s ease;
        }

        .footer-social a:hover {
            background-color: #0066ff;
            transform: translateY(-3px);
        }

        .footer-newsletter {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .footer-newsletter p {
            color: #b3b3b3;
            font-size: 15px;
        }

        .newsletter-form {
            display: flex;
            gap: 10px;
        }

        .newsletter-form input {
            flex: 1;
            padding: 12px 15px;
            border: none;
            border-radius: 4px;
            background-color: #2c2c2c;
            color: #fff;
            font-size: 14px;
        }

        .newsletter-form input::placeholder {
            color: #888;
        }

        .newsletter-form button {
            padding: 12px 20px;
            background-color: #0066ff;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .newsletter-form button:hover {
            background-color: #0051cc;
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 40px auto 0;
            padding: 20px 20px 0;
            border-top: 1px solid #333;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-bottom p {
            color: #b3b3b3;
            font-size: 14px;
        }

        .footer-bottom-links {
            display: flex;
            gap: 20px;
        }

        .footer-bottom-links a {
            color: #b3b3b3;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .footer-bottom-links a:hover {
            color: #0066ff;
        }

        /* guest page styles */

section.feedback-section {
    height: auto;
    width: 100%;
    padding: 80px 0;
    background: #f9fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 50px;
}
.feedback-header{
    text-align: center;
    margin-bottom: 30px;
}
.feedback-cards{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px; 
}
section.feedback-section h2.header{
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}
section.feedback-section .about-p{
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
    text-align: center;
    max-width: 80%;
    margin: 0 auto 40px;
}
section.feedback-section .testimonial {
    max-width: 400px;
        height: auto;
    text-align: center;
    border: 1px solid #0066ff;
    border-radius: 20px;
    margin-bottom: 40px;
    background: #fafdff;
    box-shadow: 0 4px 24px rgba(0,102,255,0.07), 0 1.5px 6px rgba(0,0,0,0.04);
    padding: 10px 8px 10px 8px;
    transition: box-shadow 0.2s, border-color 0.2s;
}
section.feedback-section .testimonial:hover {
    box-shadow: 0 8px 32px rgba(0,102,255,0.13), 0 2px 8px rgba(0,0,0,0.07);
    border-color: #0056e6;
}

section.feedback-section .testimonial p {
    font-size: 13px;
    color: #333;
    margin-bottom: 20px;
    padding: 20px;
    line-height: 1.6;
}
section.feedback-section .testimonial .feedback{
     font-size: 15px;
     background-color: transparent;
}
section.feedback-section .testimonial .header{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
section.feedback-section .testimonial img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #0066ff;
}

section.feedback-section .testimonial .author {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
     font-size: 15px;
    margin-bottom: 8px;
}

section.feedback-section .testimonial .author .name {
    font-weight: 600;
     font-size: 17px;
    color: #333;
}
/* feedback section styles ends here */

.container {
      display: flex;
      justify-content: space-between;
      max-width: 900px;
      margin: auto;
      background-color: #fff;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }
    form {
      flex: 1;
      margin-right: 40px;
    }
    h2 {
      margin-bottom: 20px;
      color: #333;
    }
    label {
      display: block;
      margin-top: 10px;
      font-weight: bold;
    }
    input[type="text"],
    input[type="email"],
    input[type="tel"] {
      width: 100%;
      padding: 8px;
      margin-top: 5px;
      border: 1px solid #ccc;
      border-radius: 5px;
    }
    .checkbox-group {
      margin-top: 15px;
    }
    .checkbox-group .bottom{
        display: flex;
        gap: 30px;
    }
    .checkbox-group label {
      font-weight: normal;
      display: block;
      margin-bottom: 5px;
    }
    .register-btn {
      margin-top: 20px;
background-color: #007bff;
      color: white;
      padding: 10px 20px;
      border: none;
      border-radius: 5px;
      cursor: pointer;
    }
    .qr-section {
      text-align: center;
      border: 1px solid #333;
      padding: 10px;
      width: 230px;
      margin-top: 80px;
      border-radius: 20px;
      height: 230px;
    }
    .qr-section img {
      width: 150px;
      height: 150px;
    }
    .qr-section p {
      margin-top: 10px;
      font-weight: bold;
    }

    .event-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 10000;
            padding: 20px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .event-overlay.active {
            display: flex;
            opacity: 1;
        }
        
        .event-overlay-content {
            background-color: white;
            border-radius: 12px;
            max-width: 800px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            animation: modalFadeIn 0.3s ease;
        }
        
        @keyframes modalFadeIn {
            from { transform: translateY(-50px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }
        
        .close-overlay {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 28px;
            cursor: pointer;
            color: #666;
            z-index: 10;
            background: none;
            border: none;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s ease;
        }
        
        .close-overlay:hover {
            color: #0066ff;
            background-color: rgba(0, 102, 255, 0.1);
            transform: rotate(90deg);
        }
        
        .event-overlay-image {
            width: 100%;
            height: 300px;
            object-fit: cover;
            border-top-left-radius: 12px;
            border-top-right-radius: 12px;
        }
        
        .event-overlay-details {
            padding: 30px;
        }
        
        .event-overlay-details h2 {
            font-size: 28px;
            margin-bottom: 15px;
            color: #0066ff;
        }
        
        .event-overlay-details p {
            font-size: 16px;
            line-height: 1.6;
            color: #555;
            margin-bottom: 20px;
        }
        
        .event-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 25px;
            padding: 15px;
            background-color: #f9fafc;
            border-radius: 8px;
        }
        
        .event-meta-item {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .event-meta-item i {
            color: #0066ff;
            font-size: 18px;
            width: 24px;
        }
        
        .event-register-btn {
            background-color: #0066ff;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-block;
        }
        
        .event-register-btn:hover {
            background-color: #0056e6;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 102, 255, 0.3);
        }