/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #000d2a;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 13, 42, 0.98);
    backdrop-filter: blur(10px);
    z-index: 9999;
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo a {
    display: block;
    transition: transform 0.3s ease;
}

.nav-logo a:hover {
    transform: scale(1.05);
}

.nav-logo img {
    height: 50px;
    width: auto;
    transition: filter 0.3s ease;
}

.nav-logo a:hover img {
    filter: brightness(1.1);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #ff8500;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff8500;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, #000d2a 0%, #001a4a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ff8500" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffffff, #ff8500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #ff8500, #ff9500);
    color: #000d2a;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 133, 0, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 133, 0, 0.4);
}

/* About Section */
.about-section {
    padding: 200px 0 100px 0;
    background: #000d2a;
    position: relative;
    z-index: 1;
}

.about-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #ff8500;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.8;
}

/* Events Section */
.events-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #001a4a 0%, #000d2a 100%);
}

.events-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #ff8500;
}

.events-carousel {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.event-card {
    display: none;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 133, 0, 0.2);
    transition: all 0.3s ease;
}

.event-card.active {
    display: block;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 133, 0, 0.2);
}

.event-image {
    height: 300px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.event-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.event-image::after {
    content: '👁️';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: #ff8500;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
}

.event-image:hover {
    cursor: pointer;
}

.event-image:hover::before {
    opacity: 1;
}

.event-image:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.event-card:hover .event-image img {
    transform: scale(1.05);
}

.event-content {
    padding: 2rem;
}

.event-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ff8500;
}

.event-content p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.view-gallery-btn {
    background: linear-gradient(45deg, #ff8500, #ff9500);
    color: #000d2a;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-gallery-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 133, 0, 0.3);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 133, 0, 0.2);
    border: 2px solid #ff8500;
    color: #ff8500;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: #ff8500;
    color: #000d2a;
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: -25px;
}

.next-btn {
    right: -25px;
}

/* Our Experts Section */
.reviews-section {
    padding: 100px 0;
    background: #000d2a;
}

.reviews-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #ff8500;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 133, 0, 0.2);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 133, 0, 0.2);
}

.reviewer-info {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.reviewer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
    border: 3px solid #ff8500;
}

.reviewer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviewer-details h4 {
    color: #ff8500;
    margin-bottom: 0.5rem;
}

.reviewer-details p {
    opacity: 0.8;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.linkedin-link {
    color: #ff8500;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.linkedin-link:hover {
    color: #ffffff;
}

.review-text p {
    font-style: italic;
    opacity: 0.9;
    line-height: 1.6;
}

/* Our Partners Section */
.partners-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #001a4a 0%, #000d2a 100%);
}

.partners-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #ff8500;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.partner-logo {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 133, 0, 0.2);
    transition: all 0.3s ease;
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 133, 0, 0.2);
}

.partner-logo img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    opacity: 0.8;
    transition: all 0.3s ease;
    filter: none;
}

.partner-logo:hover img {
    opacity: 1;
    transform: scale(1.05);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: #000d2a;
}

.contact-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #ff8500;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 133, 0, 0.2);
}

.contact-item i {
    font-size: 2rem;
    color: #ff8500;
    margin-right: 1rem;
    width: 50px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-item i:hover {
    color: #ffa500;
    transform: scale(1.1);
}

.contact-item h4 {
    color: #ff8500;
    margin-bottom: 0.5rem;
}

.contact-item p {
    opacity: 0.9;
}

.email-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.email-link:hover {
    color: #ff8500;
}

.whatsapp-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.whatsapp-link:hover {
    color: #ff8500;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 133, 0, 0.2);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 133, 0, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-family: inherit;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #ff8500;
    box-shadow: 0 0 10px rgba(255, 133, 0, 0.3);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.contact-form button {
    width: 100%;
    background: linear-gradient(45deg, #ff8500, #ff9500);
    color: #000d2a;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 133, 0, 0.3);
}

/* Footer */
.footer {
    background: #000d2a;
    padding: 2rem 0 1rem;
    border-top: 1px solid rgba(255, 133, 0, 0.2);
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
    flex-direction: column;
    text-align: center;
}


.footer-bottom {
    text-align: center;
    padding-top: 0;
    opacity: 0.8;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: #000d2a;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 20px;
    width: 90%;
    max-width: 1000px;
    max-height: 80vh;
    overflow-y: auto;
    border: 1px solid #ff8500;
    position: relative;
}

.close {
    color: #ff8500;
    float: right;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    transition: color 0.3s ease;
}

.close:hover {
    color: #ffffff;
}

.modal-header h3 {
    color: #ff8500;
    margin-bottom: 1rem;
    text-align: center;
}

.modal-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.modal-gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.modal-gallery img:hover {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #000d2a;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }


    .carousel-btn {
        display: none;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .about-section {
        padding: 150px 0 80px 0;
    }

    .about-section h2,
    .events-section h2,
    .reviews-section h2,
    .partners-section h2,
    .contact-section h2 {
        font-size: 2rem;
    }

    .modal-content {
        width: 95%;
        margin: 10% auto;
        padding: 1rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}

/* Intro Section */
.intro-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #000d2a 0%, #001a3d 50%, #000d2a 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 1;
    transition: opacity 1s ease-out;
}

.intro-overlay.fade-out {
    opacity: 0;
    pointer-events: none;
}

.intro-content {
    text-align: center;
    color: white;
    animation: introFadeIn 2s ease-out;
}

.logo-container {
    position: relative;
    margin-bottom: 2rem;
}

.intro-logo {
    width: 150px;
    height: 150px;
    border-radius: 15px;
    filter: drop-shadow(0 0 20px rgba(255, 133, 0, 0.8)) drop-shadow(0 0 40px rgba(255, 133, 0, 0.4));
    animation: logoPulse 2s ease-in-out infinite;
    position: relative;
    z-index: 2;
    object-fit: contain;
}

.crypto-particles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    pointer-events: none;
}

.particle {
    position: absolute;
    color: #ff8500;
    font-size: 1.2rem;
    font-weight: bold;
    animation: particleFloat 4s ease-in-out infinite;
    opacity: 0.8;
    text-shadow: 0 0 10px rgba(255, 133, 0, 0.5);
    transition: all 0.3s ease;
}

.particle:hover {
    transform: scale(1.2);
    opacity: 1;
    text-shadow: 0 0 15px rgba(255, 133, 0, 0.8);
}

.particle-1 {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
    color: #f7931a; /* Bitcoin Orange */
}

.particle-2 {
    top: 20%;
    right: 15%;
    animation-delay: 0.5s;
    color: #627eea; /* Ethereum Blue */
}

.particle-3 {
    bottom: 25%;
    left: 10%;
    animation-delay: 1s;
    color: #23292f; /* Ripple Dark */
    font-size: 0.9rem;
}

.particle-4 {
    bottom: 15%;
    right: 20%;
    animation-delay: 1.5s;
    color: #bfbbbb; /* Litecoin Silver */
}

.particle-5 {
    top: 50%;
    left: 5%;
    animation-delay: 2s;
    color: #c2a633; /* Dogecoin Gold */
}

.particle-6 {
    top: 50%;
    right: 5%;
    animation-delay: 2.5s;
    color: #0033ad; /* Cardano Blue */
}

.intro-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ff8500, #ffffff, #ff8500);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

.intro-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    opacity: 0.9;
    animation: subtitleFade 2s ease-out 1s both;
}

.loading-bar {
    width: 300px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    margin: 0 auto;
    overflow: hidden;
    animation: loadingBarFade 2s ease-out 1.5s both;
}

.loading-progress {
    height: 100%;
    background: linear-gradient(90deg, #ff8500, #ffffff, #ff8500);
    background-size: 200% 100%;
    border-radius: 2px;
    animation: loadingProgress 3s ease-out 2s both, gradientMove 2s ease-in-out infinite;
}

/* Animations */
@keyframes introFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes logoPulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 20px rgba(255, 133, 0, 0.8)) drop-shadow(0 0 40px rgba(255, 133, 0, 0.4));
    }
    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 30px rgba(255, 133, 0, 1)) drop-shadow(0 0 60px rgba(255, 133, 0, 0.6));
    }
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes subtitleFade {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 0.9;
        transform: translateY(0);
    }
}

@keyframes loadingBarFade {
    0% {
        opacity: 0;
        transform: scaleX(0);
    }
    100% {
        opacity: 1;
        transform: scaleX(1);
    }
}

@keyframes loadingProgress {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

@keyframes gradientMove {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Responsive Design for Intro */
@media (max-width: 768px) {
    .intro-title {
        font-size: 2rem;
    }
    
    .intro-subtitle {
        font-size: 1.2rem;
    }
    
    .intro-logo {
        width: 120px;
        height: 120px;
        border-radius: 12px;
    }
    
    .crypto-particles {
        width: 250px;
        height: 250px;
    }
    
    .particle {
        font-size: 1.2rem;
    }
    
    .loading-bar {
        width: 250px;
    }
}

/* Ensure sections have proper spacing */
section {
    position: relative;
    z-index: 1;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #ff8500, #ff9500);
    color: #000d2a;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(255, 133, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: linear-gradient(45deg, #ff9500, #ffa500);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 133, 0, 0.4);
}

.back-to-top:active {
    transform: translateY(-1px);
    box-shadow: 0 2px 10px rgba(255, 133, 0, 0.3);
}

.back-to-top i {
    transition: transform 0.3s ease;
}

.back-to-top:hover i {
    transform: translateY(-2px);
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Notification Animations */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOutRight {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(100%);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #000d2a;
}

::-webkit-scrollbar-thumb {
    background: #ff8500;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ff9500;
}

/* Image Modal Navigation Arrows */
.image-modal .fas {
    transition: all 0.3s ease;
}

.image-modal .fas:hover {
    transform: scale(1.2);
}

/* Mobile responsive for image modal arrows */
@media (max-width: 768px) {
    .image-modal div[style*="left: 20px"],
    .image-modal div[style*="right: 20px"] {
        font-size: 1.5rem !important;
        padding: 8px !important;
    }
    
    .image-modal div[style*="top: 20px"] {
        font-size: 1rem !important;
        padding: 10px 15px !important;
        top: 15px !important;
        right: 15px !important;
    }

    /* Back to Top Button - Mobile */
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}
