/* Base Styles and Variables */
:root {
    --primary-color: #18105F;
    --secondary-color: #321BE0;
    --accent-color: #CC32F8;
    --dark-primary: #0A0B14;
    --light-primary: #2A2B38;
    --text-light: #FFFFFF;
    --text-dark: #0A0B14;
    --text-gray: #6B7280;
    --background-primary: #FFFFFF;
    --background-secondary: #F8F9FA;
    --gradient-primary: linear-gradient(135deg, #18105F 0%, #321BE0 100%);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* Fix for white space in mobile view */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        margin: 0;
        padding: 0;
        position: relative;
    }
    
    body {
        max-width: 100vw;
    }
}

/* Loading Screen Styles */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-primary) 100%);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    overflow: hidden;
}

.preloader-content {
    text-align: center;
    position: relative;
    z-index: 10;
}

/* Enhanced spinner */
.spinner-box {
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
}

.circle-border {
    width: 80px;
    height: 80px;
    padding: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    animation: spin 1.5s linear infinite;
    box-shadow: 
        0 0 20px rgba(204, 50, 248, 0.5),
        0 0 40px rgba(204, 50, 248, 0.3);
}

.circle-core {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    position: relative;
    backdrop-filter: blur(5px);
}

.circle-core::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    box-shadow: 0 0 15px var(--accent-color);
    animation: pulse 2s ease-in-out infinite;
}

.logo-text {
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-light);
    letter-spacing: 4px;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 10px;
    text-shadow: 
        0 0 20px rgba(204, 50, 248, 0.5),
        0 0 40px rgba(204, 50, 248, 0.3),
        0 0 60px rgba(204, 50, 248, 0.2);
    animation: pulse 2s infinite;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    background: linear-gradient(to right, var(--text-light) 20%, var(--accent-color) 40%, var(--secondary-color) 60%, var(--text-light) 80%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.tagline {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    letter-spacing: 3px;
    font-weight: 300;
    animation: fadeIn 1s ease;
}

/* Falling icons animation */
.falling-icons {
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.falling-icons i {
    position: absolute;
    top: -20px;
    color: rgba(204, 50, 248, 0.2);
    animation-name: falling;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

/* First row - original icons */
.icon-row-1 {
    font-size: 24px;
}
.icon-row-1:nth-child(1) { left: 10%; animation-duration: 5s; }
.icon-row-1:nth-child(2) { left: 20%; animation-duration: 7s; animation-delay: 1s; font-size: 18px; }
.icon-row-1:nth-child(3) { left: 30%; animation-duration: 6s; animation-delay: 2s; font-size: 22px; }
.icon-row-1:nth-child(4) { left: 40%; animation-duration: 8s; animation-delay: 0.5s; font-size: 16px; }
.icon-row-1:nth-child(5) { left: 50%; animation-duration: 9s; animation-delay: 1.5s; font-size: 20px; }
.icon-row-1:nth-child(6) { left: 60%; animation-duration: 5.5s; animation-delay: 0.2s; font-size: 24px; }
.icon-row-1:nth-child(7) { left: 70%; animation-duration: 7.5s; animation-delay: 2.5s; font-size: 22px; }
.icon-row-1:nth-child(8) { left: 80%; animation-duration: 6.5s; animation-delay: 1.2s; font-size: 18px; }
.icon-row-1:nth-child(9) { left: 15%; animation-duration: 8.5s; animation-delay: 3s; font-size: 20px; }
.icon-row-1:nth-child(10) { left: 55%; animation-duration: 7s; animation-delay: 0.8s; font-size: 16px; }
.icon-row-1:nth-child(11) { left: 75%; animation-duration: 6s; animation-delay: 1.8s; font-size: 22px; }
.icon-row-1:nth-child(12) { left: 90%; animation-duration: 8s; animation-delay: 0.1s; font-size: 18px; }

/* Second row - with different timings and positions */
.icon-row-2 {
    color: rgba(0, 182, 214, 0.15);
    font-size: 26px;
}
.icon-row-2:nth-child(13) { left: 5%; animation-duration: 6s; animation-delay: 0.3s; }
.icon-row-2:nth-child(14) { left: 18%; animation-duration: 8.5s; animation-delay: 1.7s; font-size: 19px; }
.icon-row-2:nth-child(15) { left: 28%; animation-duration: 7.2s; animation-delay: 0.8s; font-size: 24px; }
.icon-row-2:nth-child(16) { left: 45%; animation-duration: 5.8s; animation-delay: 2.1s; font-size: 17px; }
.icon-row-2:nth-child(17) { left: 58%; animation-duration: 6.7s; animation-delay: 0.4s; font-size: 22px; }
.icon-row-2:nth-child(18) { left: 67%; animation-duration: 9.2s; animation-delay: 1.6s; font-size: 25px; }
.icon-row-2:nth-child(19) { left: 77%; animation-duration: 6.3s; animation-delay: 0.9s; font-size: 20px; }
.icon-row-2:nth-child(20) { left: 88%; animation-duration: 7.6s; animation-delay: 2.3s; font-size: 18px; }
.icon-row-2:nth-child(21) { left: 12%; animation-duration: 5.5s; animation-delay: 1.2s; font-size: 23px; }
.icon-row-2:nth-child(22) { left: 36%; animation-duration: 8.8s; animation-delay: 0.6s; font-size: 21px; }
.icon-row-2:nth-child(23) { left: 48%; animation-duration: 7.4s; animation-delay: 1.9s; font-size: 19px; }
.icon-row-2:nth-child(24) { left: 95%; animation-duration: 6.9s; animation-delay: 0.7s; font-size: 20px; }

/* Third row - with different starting points */
.icon-row-3 {
    top: -40px;
    color: rgba(0, 182, 214, 0.18);
    font-size: 22px;
}
.icon-row-3:nth-child(25) { left: 7%; animation-duration: 7.3s; animation-delay: 2.2s; }
.icon-row-3:nth-child(26) { left: 22%; animation-duration: 6.6s; animation-delay: 0.3s; font-size: 18px; }
.icon-row-3:nth-child(27) { left: 33%; animation-duration: 8.2s; animation-delay: 1.5s; font-size: 24px; }
.icon-row-3:nth-child(28) { left: 42%; animation-duration: 7.1s; animation-delay: 0.7s; font-size: 21px; }
.icon-row-3:nth-child(29) { left: 54%; animation-duration: 6.4s; animation-delay: 2.4s; font-size: 19px; }
.icon-row-3:nth-child(30) { left: 62%; animation-duration: 8.7s; animation-delay: 0.5s; font-size: 26px; }
.icon-row-3:nth-child(31) { left: 73%; animation-duration: 5.9s; animation-delay: 1.8s; font-size: 20px; }
.icon-row-3:nth-child(32) { left: 83%; animation-duration: 7.8s; animation-delay: 0.2s; font-size: 23px; }
.icon-row-3:nth-child(33) { left: 3%; animation-duration: 9.1s; animation-delay: 1.3s; font-size: 17px; }
.icon-row-3:nth-child(34) { left: 27%; animation-duration: 6.8s; animation-delay: 2.6s; font-size: 22px; }
.icon-row-3:nth-child(35) { left: 68%; animation-duration: 8.3s; animation-delay: 0.9s; font-size: 25px; }
.icon-row-3:nth-child(36) { left: 93%; animation-duration: 7.5s; animation-delay: 1.1s; font-size: 18px; }

/* Fourth row - with different speeds and opacities */
.icon-row-4 {
    top: -30px;
    color: rgba(0, 182, 214, 0.25);
    font-size: 24px;
}
.icon-row-4:nth-child(37) { left: 8%; animation-duration: 8.9s; animation-delay: 1.4s; }
.icon-row-4:nth-child(38) { left: 19%; animation-duration: 6.2s; animation-delay: 0.1s; font-size: 22px; }
.icon-row-4:nth-child(39) { left: 31%; animation-duration: 7.9s; animation-delay: 2.5s; font-size: 18px; }
.icon-row-4:nth-child(40) { left: 44%; animation-duration: 5.7s; animation-delay: 0.8s; font-size: 26px; }
.icon-row-4:nth-child(41) { left: 52%; animation-duration: 8.4s; animation-delay: 1.9s; font-size: 20px; }
.icon-row-4:nth-child(42) { left: 65%; animation-duration: 6.1s; animation-delay: 0.5s; font-size: 21px; }
.icon-row-4:nth-child(43) { left: 76%; animation-duration: 9.3s; animation-delay: 2s; font-size: 19px; }
.icon-row-4:nth-child(44) { left: 85%; animation-duration: 7.7s; animation-delay: 0.3s; font-size: 23px; }
.icon-row-4:nth-child(45) { left: 14%; animation-duration: 6.5s; animation-delay: 1.7s; font-size: 17px; }
.icon-row-4:nth-child(46) { left: 38%; animation-duration: 8.1s; animation-delay: 0.6s; font-size: 25px; }
.icon-row-4:nth-child(47) { left: 59%; animation-duration: 5.6s; animation-delay: 2.2s; font-size: 18px; }
.icon-row-4:nth-child(48) { left: 97%; animation-duration: 7.4s; animation-delay: 1s; font-size: 22px; }

/* Small scattered icons throughout the screen */
.icon-small {
    font-size: 14px;
    color: rgba(0, 182, 214, 0.12);
    animation-name: floating;
    animation-timing-function: ease-in-out;
}
.icon-small:nth-child(49) { left: 4%; top: 15%; animation-duration: 5.3s; }
.icon-small:nth-child(50) { left: 17%; top: 25%; animation-duration: 6.7s; animation-delay: 0.5s; }
.icon-small:nth-child(51) { left: 25%; top: 12%; animation-duration: 4.8s; animation-delay: 1.3s; }
.icon-small:nth-child(52) { left: 37%; top: 32%; animation-duration: 7.2s; animation-delay: 0.2s; }
.icon-small:nth-child(53) { left: 46%; top: 8%; animation-duration: 5.9s; animation-delay: 0.9s; }
.icon-small:nth-child(54) { left: 53%; top: 20%; animation-duration: 6.4s; animation-delay: 1.8s; }
.icon-small:nth-child(55) { left: 63%; top: 35%; animation-duration: 5.1s; animation-delay: 0.4s; }
.icon-small:nth-child(56) { left: 71%; top: 18%; animation-duration: 7.6s; animation-delay: 1.2s; }
.icon-small:nth-child(57) { left: 79%; top: 26%; animation-duration: 5.8s; animation-delay: 0.7s; }
.icon-small:nth-child(58) { left: 86%; top: 10%; animation-duration: 6.9s; animation-delay: 1.6s; }
.icon-small:nth-child(59) { left: 92%; top: 23%; animation-duration: 5.5s; animation-delay: 0.3s; }
.icon-small:nth-child(60) { left: 9%; top: 40%; animation-duration: 6.2s; animation-delay: 1.1s; }
.icon-small:nth-child(61) { left: 21%; top: 48%; animation-duration: 7.3s; animation-delay: 0.6s; }
.icon-small:nth-child(62) { left: 34%; top: 58%; animation-duration: 5.7s; animation-delay: 1.9s; }
.icon-small:nth-child(63) { left: 43%; top: 65%; animation-duration: 6.6s; animation-delay: 0.8s; }
.icon-small:nth-child(64) { left: 57%; top: 55%; animation-duration: 5.2s; animation-delay: 2.1s; }
.icon-small:nth-child(65) { left: 69%; top: 62%; animation-duration: 7.1s; animation-delay: 0.4s; }
.icon-small:nth-child(66) { left: 81%; top: 50%; animation-duration: 5.4s; animation-delay: 1.7s; }
.icon-small:nth-child(67) { left: 95%; top: 42%; animation-duration: 6.8s; animation-delay: 0.5s; }
.icon-small:nth-child(68) { left: 12%; top: 70%; animation-duration: 7.5s; animation-delay: 1.4s; }
.icon-small:nth-child(69) { left: 28%; top: 80%; animation-duration: 5.6s; animation-delay: 0.9s; }

@keyframes falling {
    0% {
        top: -20px;
        transform: translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        top: 100%;
        transform: translateX(20px) rotate(360deg);
        opacity: 0;
    }
}

@keyframes floating {
    0% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-10px) rotate(180deg);
        opacity: 0.7;
    }
    100% {
        transform: translateY(0px) rotate(360deg);
        opacity: 0.3;
    }
}

/* Animations that were accidentally removed */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.05); }
    100% { transform: translateX(-50%) scale(1); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--dark-primary);
}

button {
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}

.section-tag {
    display: inline-block;
    background-color: rgba(0, 182, 214, 0.1);
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

img {
    max-width: 100%;
    height: auto;
}

section {
    padding: 100px 0;
    position: relative;
}

section:nth-child(even) {
    background-color: var(--off-white);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

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

.animate-up {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.animate-up:nth-child(1) {
    animation-delay: 0.2s;
}

.animate-up:nth-child(2) {
    animation-delay: 0.4s;
}

.animate-up:nth-child(3) {
    animation-delay: 0.6s;
}

.animate-up:nth-child(4) {
    animation-delay: 0.8s;
}

.primary-button {
    background-color: var(--accent-color);
    color: var(--text-light);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition);
}

.primary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(204, 50, 248, 0.3);
}

.secondary-button {
    background: transparent;
    color: var(--text-light);
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition);
}

.secondary-button:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    background-color: var(--accent-color);
    opacity: 0.1;
    z-index: -1;
    animation: float 6s ease-in-out infinite;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100px;
    height: 100vh;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--dark-primary) 100%);
    padding: 1rem 0;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-y: auto;
}

.nav-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    width: 100%;
    gap: 1.5rem;
}

.logo {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-light);
    letter-spacing: 1px;
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    text-align: center;
    margin-bottom: 1rem;
}

/* Update logo to use image */
.logo {
    writing-mode: unset;
    transform: none;
    display: flex;
    align-items: center;
    padding: 0.5rem;
}

.logo img {

    width: 200px;
    height: auto;
    transition: var(--transition);
}

.logo:hover img {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
    flex-grow: 1;
    width: 100%;
    padding: 0 0.5rem;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    font-size: 0.875rem;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
    padding: 0.75rem 0.5rem;
    width: 100%;
    border-radius: 8px;
}

.nav-icon {
    font-size: 1.25rem;
}

.nav-text {
    font-size: 0.75rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-links a:hover .nav-text,
.nav-links a.active .nav-text {
    opacity: 1;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    width: 3px;
    height: 0;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-light);
    background: rgba(255, 255, 255, 0.1);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    height: 100%;
}

.cta-button {
    background: var(--accent-color);
    color: var(--text-light);
    padding: 0.75rem;
    border-radius: 50%;
    font-weight: 600;
    border: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-top: auto;
}

/* Hide the text in the CTA button by default */
.cta-button span {
    display: none;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(204, 50, 248, 0.3);
}

/* Scrollbar styling for the navigation */
.navbar::-webkit-scrollbar {
    width: 4px;
}

.navbar::-webkit-scrollbar-track {
    background: transparent;
}

.navbar::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

.navbar::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Main Content Wrapper */
.main-content {
    margin-left: 100px;
    width: calc(100% - 100px);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .navbar {
        width: 70px;
    }
    
    .main-content {
        margin-left: 70px;
        width: calc(100% - 70px);
    }
    
    .logo {
        font-size: 1rem;
    }
    
    .nav-icon {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        bottom: 0;
        top: auto;
        width: 100%;
        height: 60px;
        flex-direction: row;
        padding: 0;
    }
    
    .nav-container {
        flex-direction: row;
        justify-content: space-around;
        padding: 0 1rem;
    }
    
    .logo {
        display: none;
    }
    
    .nav-links {
        flex-direction: row;
        gap: 1rem;
    }
    
    .nav-text {
        display: none;
    }
    
    .cta-button {
        width: 35px;
        height: 35px;
    }
    
    .main-content {
        margin-left: 0;
        width: 100%;
        margin-bottom: 60px;
    }
    
    .logo img {
        width: 120px;
    }
    
    .navbar {
        padding: 0.5rem 0;
    }
}

/* Hero Section */
.hero {
    padding-top: 120px;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Hero Background */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.8) contrast(1.1);
    z-index: 1;
}

/* Dark overlay for better text visibility */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(24, 16, 95, 0.85) 0%, rgba(10, 11, 20, 0.9) 100%);
    z-index: 2;
}

/* Ensure content stays above the background */
.hero-content {
    position: relative;
    z-index: 3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text-content {
    color: var(--text-light);
}

.hero-subtitle {
    font-size: 1.125rem;
    color: black;
    margin-bottom: 1.5rem;
    display: block;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards 0.2s;
}

.hero-title {
    color: black;
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards 0.4s;
}

.gradient-text {
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: black;
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards 0.6s;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards 0.8s;
}

.primary-button {
    background: var(--accent-color);
    color: var(--text-light);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition);
}

.primary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(204, 50, 248, 0.3);
}

.secondary-button {
    background: transparent;
    color: var(--text-light);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition);
}

.secondary-button:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.hero-image-wrapper {
    position: relative;
}

.hero-image-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards 1s;
}

.hero-image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.floating-cards {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.stat-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    animation: float 6s ease-in-out infinite;
}

.card-1 {
    top: 10%;
    right: -30px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 40%;
    left: -40px;
    animation-delay: 2s;
}

.card-3 {
    bottom: -20px;
    right: 20%;
    animation-delay: 1s;
}

.stat-icon {
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
}

.stat-icon i {
    color: var(--text-light);
    font-size: 1.25rem;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 992px) {
    .nav-links {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image-wrapper {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .stat-card {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
}

/* Features Section */
.features {
    background-color: var(--off-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: var(--primary-color);
    opacity: 0.05;
    transition: var(--transition);
    z-index: -1;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-card:hover::before {
    height: 100%;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: rgba(0, 182, 214, 0.1);
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.feature-image {
    width: 100%;
    height: 160px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

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

.feature-card:hover .feature-image img {
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.feature-card p {
    color: var(--dark-gray);
    margin: 0;
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--background-primary);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content {
    max-width: 600px;
}

.about-content h2 {
    font-size: 42px;
    line-height: 1.2;
    margin: 20px 0;
    color: var(--text-primary);
}

.about-content p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.about-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-check {
    width: 32px;
    height: 32px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-check i {
    color: var(--text-light);
    font-size: 14px;
}

.feature-text h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.feature-text p {
    font-size: 16px;
    margin: 0;
    color: var(--text-secondary);
}

.about-cta {
    display: flex;
    gap: 20px;
}

.about-image {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.image-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 450px;
    height: auto;
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 300px;
}

.stats-card {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--background-primary);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 40px;
    min-width: 80%;
    text-align: center;
    justify-content: space-around;
    flex-wrap: nowrap;
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.stat-title {
    display: block;
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 5px;
    line-height: 1.3;
}

.stat-number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

/* Mobile view for stat number with longer text */
@media (max-width: 768px) {
    .stat-number {
        font-size: 18px;
        margin-bottom: 5px;
        line-height: 1.2;
    }
    
    .stat-title {
        font-size: 16px;
        margin-bottom: 3px;
        line-height: 1.3;
        word-break: keep-all;
        white-space: nowrap;
    }
    
    .stat-text {
        font-size: 12px;
        word-break: keep-all;
        white-space: nowrap;
    }
}

.stat-text {
    font-size: 14px;
    color: var(--text-secondary);
}

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-content {
        max-width: 100%;
        order: 2;
    }
    
    .about-image {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 50px;
        order: 1;
    }
    
    .image-container {
        width: 100%;
        max-width: 450px;
        height: auto;
    }

    .stats-card {
        position: relative;
        transform: none;
        left: 0;
        margin-top: 30px;
        width: 100%;
        min-width: auto;
    }
}

@media (max-width: 768px) {
    .about-content h2 {
        font-size: 32px;
    }
    
    .about-image {
        margin-bottom: 60px;
    }
    
    .image-container {
        max-width: 350px;
    }
    
    .image-container img {
        height: auto;
        min-height: 250px;
    }

    .stats-card {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
        gap: 10px;
        align-items: center;
        padding: 25px 15px;
        width: 100%;
        position: relative;
        left: 0;
        transform: none;
        margin-top: 40px;
    }
    
    .stat-item {
        padding: 0;
        width: auto;
        max-width: none;
        flex: 1;
    }
}

.about-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.about-image img {
    width: 100%;
    max-width: 450px;
    z-index: 1;
}

.floating-accent {
    position: absolute;
    border-radius: 50%;
    background-color: var(--accent-color);
    opacity: 0.1;
    z-index: -1;
    animation: float 6s ease-in-out infinite;
}

.acc-1 {
    width: 150px;
    height: 150px;
    top: -30px;
    right: 20px;
    background-color: var(--light-secondary);
    animation-delay: 0.5s;
}

.acc-2 {
    width: 100px;
    height: 100px;
    bottom: 20px;
    left: 10%;
    background-color: var(--secondary-color);
    animation-delay: 1s;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--off-white);
    position: relative;
    padding: 100px 0;
}

.testimonials-wrapper {
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.testimonials-slider {
    display: flex;
    width: 300%; /* Set width to accommodate all slides */
    transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
    flex: 0 0 33.333%; /* Each slide takes 1/3 of the total width */
    width: 33.333%;
    display: flex;
    gap: 1.5rem;
    padding: 0 1rem;
}

.testimonial-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    flex: 1;
    transition: var(--transition);
    border: 1px solid var(--light-gray);
    min-width: 0; /* Prevent flex items from overflowing */
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-rating i {
    color: #ffc107;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    font-size: 1rem;
    margin: 0;
    color: var(--primary-color);
}

.testimonial-author p {
    font-size: 0.85rem;
    color: var(--medium-gray);
    margin: 0;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 1rem;
}

.control-prev, .control-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--white);
    border: 1px solid var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-gray);
    transition: var(--transition);
    cursor: pointer;
}

.control-prev:hover, .control-next:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.control-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--light-gray);
    transition: var(--transition);
    cursor: pointer;
}

.dot.active {
    background-color: var(--primary-color);
    width: 25px;
    border-radius: 10px;
}

/* Responsive styles for testimonials */
@media (max-width: 992px) {
    .testimonial-slide {
        flex-direction: column;
        gap: 1rem;
    }
    
    .testimonial-card {
        margin-bottom: 1rem;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .testimonials-slider {
        width: 300%; /* Still 3 slides */
        flex-wrap: nowrap;
    }
    
    .testimonial-slide {
        padding: 0 0.5rem;
    }
    
    .testimonials-wrapper {
        max-width: 100%;
        padding: 0 1rem;
    }
}

@media (max-width: 768px) {
    .testimonial-slide {
        padding: 0 0.5rem;
    }
    
    .testimonials-wrapper {
        max-width: 100%;
        padding: 0 1rem;
    }
}

/* FAQ Section */
.faq {
    background-color: var(--white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--light-gray);
    margin-bottom: 1rem;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
    transition: var(--transition);
}

.faq-question:hover h3 {
    color: var(--primary-color);
}

.faq-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
    padding: 0 1rem 0 0;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 1.5rem;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-question h3 {
    color: var(--primary-color);
}

/* CTA Section */
.cta {
    background-color: var(--off-white);
    position: relative;
    overflow: hidden;
}

.cta .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.cta-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--dark-gray);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.cta-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.cta-image img {
    width: 100%;
    max-width: 400px;
    z-index: 1;
}

.cta-el-1 {
    width: 120px;
    height: 120px;
    top: 10%;
    right: 5%;
    background-color: var(--light-secondary);
    animation-delay: 0.5s;
}

.cta-el-2 {
    width: 80px;
    height: 80px;
    bottom: 15%;
    left: 10%;
    background-color: var(--secondary-color);
    animation-delay: 1s;
}

/* Events Section */
.events {
    background-color: var(--white);
}

/* Event Showcase styling */
.event-showcase {
    margin: 3rem 0;
}

.event-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1.5rem;
    margin-bottom: 2rem;
}

.event-image-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 250px;
}

.event-image-item.large {
    grid-column: span 2;
    height: 400px;
}

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

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

.event-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    color: var(--white);
    transition: var(--transition);
}

.event-image-overlay h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.event-image-overlay p {
    color: rgba(255,255,255,0.8);
    margin: 0;
}

/* Responsive styles for event showcase */
@media (max-width: 768px) {
    .event-image-grid {
        grid-template-columns: 1fr;
    }
    
    .event-image-item.large {
        grid-column: span 1;
        height: 300px;
    }
    
    .event-image-item {
        height: 200px;
    }
}

.events-cta {
    margin-top: 3rem;
    text-align: center;
}

.events-cta .primary-button {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.events-cta .primary-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.events-cta .primary-button i {
    transition: transform 0.3s ease;
}

.events-cta .primary-button:hover i {
    transform: translateX(5px);
}

.events-container {
    margin-bottom: 4rem;
}

.events-title {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.75rem;
    color: var(--primary-color);
}

.events-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

/* Upcoming Events */
.upcoming-events {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.event-card {
    display: flex;
    gap: 1.5rem;
    background-color: var(--off-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    padding: 1.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.event-month, .event-year {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
}

.event-day {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin: 0.5rem 0;
}

.event-details {
    padding: 1.5rem;
    flex: 1;
}

.event-details h4 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.event-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.event-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.25rem;
    align-items: center;
}

.event-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition);
}

.event-link:hover {
    color: var(--dark-primary);
    text-decoration: underline;
}

/* Past Events */
.past-events-container {
    margin-top: 4rem;
}

.past-events {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.past-event-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

.past-event-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

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

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

.past-event-content {
    padding: 2rem;
}

.past-event-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.past-event-header h4 {
    font-size: 1.5rem;
    margin: 0;
    color: var(--primary-color);
}

.past-event-date {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

.past-event-description {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.past-event-metrics {
    display: flex;
    justify-content: start;
    gap: 2.5rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--light-gray);
    border-bottom: 1px solid var(--light-gray);
}

.metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.metric-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.metric-label {
    font-size: 0.85rem;
    color: var(--medium-gray);
}

.past-event-testimonials {
    background-color: var(--off-white);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    position: relative;
}

.past-event-testimonials:before {
    content: '\201C';
    font-family: Georgia, serif;
    font-size: 4rem;
    position: absolute;
    top: -10px;
    left: 10px;
    color: rgba(0, 182, 214, 0.1);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 0.5rem;
}

.testimonial-author {
    text-align: right;
    font-size: 0.9rem;
    color: var(--dark-gray);
}

.event-gallery-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
}

.event-gallery-link:hover {
    color: var(--dark-primary);
    gap: 0.75rem;
}

/* Responsive styles for Events section */
@media (max-width: 992px) {
    .event-card {
        flex-direction: column;
    }
    
    .event-date {
        flex-direction: row;
        min-width: 100%;
        padding: 1rem;
        gap: 0.5rem;
    }
    
    .event-month, .event-year, .event-day {
        font-size: 1.25rem;
        margin: 0;
    }
    
    .past-event-metrics {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        flex: 0 0 calc(50% - 0.75rem);
        min-width: calc(50% - 0.75rem);
        max-width: calc(50% - 0.75rem);
    }
}

@media (max-width: 768px) {
    .past-event-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .event-actions {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .past-event-image {
        height: 250px;
    }
    
    .testimonial-card {
        flex: 0 0 100%;
        min-width: 100%;
        max-width: 100%;
    }
    
    .testimonials-slider {
        flex-wrap: wrap;
    }
}

@media (max-width: 576px) {
    .event-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .past-event-metrics {
        justify-content: space-between;
    }
    
    .metric {
        width: 30%;
    }
}

/* Contact Section */
.contact {
    background-color: var(--white);
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-details {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 182, 214, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
}

.contact-item p {
    margin: 0;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(0, 182, 214, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.contact-form {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark-gray);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--light-gray);
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(0, 182, 214, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-button {
    width: 100%;
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.submit-button:hover {
    background-color: var(--dark-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Contact Form Success Message */
.form-success-message {
    text-align: center;
    padding: 2rem;
    background-color: rgba(0, 182, 214, 0.1);
    border-radius: 10px;
    margin-bottom: 2rem;
}

.form-success-message i {
    font-size: 4rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.form-success-message h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.form-success-message p {
    color: var(--dark-gray);
}

/* Footer */
.footer {
    background-color: var(--dark-primary);
    color: var(--white);
    padding: 5rem 0 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-logo {
    position: relative;
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 20px;
    display: inline-block;
    letter-spacing: -0.5px;
}

.logo-text {
    position: relative;
    font-weight: 900;
    background: linear-gradient(90deg, #000, #333);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0px 4px 10px rgba(0,0,0,0.1);
}

.logo-highlight {
    background: linear-gradient(90deg, #CC32F8, #321BE0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
    position: relative;
}

.logo-highlight::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: #FF9500;
    border-radius: 50%;
    right: -8px;
    top: 5px;
    box-shadow: 0 0 10px rgba(255,149,0,0.8);
    animation: pulse 2s infinite;
}

.logo-accent {
    position: absolute;
    width: 30px;
    height: 4px;
    background: linear-gradient(90deg, #CC32F8, #321BE0);
    bottom: -5px;
    left: 0;
    border-radius: 2px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: whitesmoke;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.footer-socials a:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-col h4 {
   
    color: whitesmoke;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    /* color: var(--white); */
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-links a:hover {
    color: plum;
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.25rem;
    }
}

@media (max-width: 992px) {
    section {
        padding: 80px 0;
    }
    
    .hero {
        padding-top: 140px;
    }
    
    .hero .container,
    .about-content,
    .cta .container,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .hero-image,
    .about-image,
    .cta-image {
        order: -1;
    }
    
    .hero-content,
    .about-text,
    .cta-content {
        text-align: center;
    }
    
    .stats,
    .about-stats,
    .hero-buttons,
    .cta-buttons {
        justify-content: center;
    }
    
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .nav-links,
    .navbar .cta-button {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        flex: 0 0 100%;
        min-width: 100%;
        max-width: 100%;
    }
    
    .testimonials-slider {
        flex-wrap: wrap;
    }
    
    .logo img {
        width: 120px;
    }
    
    .navbar {
        padding: 0.5rem 0;
    }
}

@media (max-width: 576px) {
    section {
        padding: 60px 0;
    }
    
    .hero {
        padding-top: 120px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .stats,
    .about-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
}

/* Mobile Menu Styles */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0; /* From right side */
    width: 80%; /* 80% of screen width */
    height: 100vh;
    background-color: var(--dark-primary);
    padding: 2rem;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    transform: translateX(100%); /* Hide by default, slide from right */
    transition: transform 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
}

.mobile-logo img {
    max-width: 120px;
    height: auto;
}

.close-menu {
    width: 30px;
    height: 30px;
    position: relative;
    cursor: pointer;
}

.close-menu span {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--text-light);
    top: 50%;
    left: 0;
}

.close-menu span:first-child {
    transform: rotate(45deg);
}

.close-menu span:last-child {
    transform: rotate(-45deg);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.mobile-nav-links a {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-light);
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    display: block;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
    color: var(--accent-color);
    padding-left: 0.5rem;
}

.mobile-cta {
    margin-top: auto;
    width: 100%;
}

/* Hamburger Menu Button - only visible on mobile */
.hamburger-menu {
    display: none; /* Hidden by default */
    z-index: 1100;
    cursor: pointer;
    padding: 0.5rem;
    transition: var(--transition);
}

.hamburger-menu.scrolled {
    background-color: #FFFFFF !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.hamburger-menu.scrolled .hamburger-icon span {
    background-color: var(--primary-color);
}

.hamburger-icon {
    width: 28px;
    height: 22px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger-icon span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--text-light);
    border-radius: 3px;
    transition: var(--transition);
}

/* Hamburger icon animation */
.hamburger-menu.active .hamburger-icon span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger-menu.active .hamburger-icon span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .hamburger-icon span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Overlay for backdrop when mobile menu is open */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1900;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive styles specific to the navigation */
@media (max-width: 992px) {
    .navbar {
        width: 70px;
    }
    
    .main-content {
        margin-left: 70px;
        width: calc(100% - 70px);
    }
    
    .logo {
        font-size: 1rem;
    }
    
    .nav-icon {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .hamburger-menu {
        display: block; /* Show hamburger on mobile */
        position: fixed;
        top: 15px;
        right: 15px;
        background-color: rgba(24, 16, 95, 0.6); /* Semi-transparent primary color to match hero */
        backdrop-filter: blur(5px);
        border-radius: 5px;
        padding: 10px;
        z-index: 1000;
    }
    
    .navbar {
        bottom: 0;
        top: auto;
        width: 100%;
        height: 60px;
        flex-direction: row;
        padding: 0;
        z-index: 999;
    }
    
    .nav-container {
        flex-direction: row;
        justify-content: space-around;
        padding: 0 1rem;
    }
    
    .logo {
        display: none;
    }
    
    .nav-links {
        display: none; /* Hide standard menu on mobile */
    }
    
    .nav-text {
        display: none;
    }
    
    .cta-button {
        width: 35px;
        height: 35px;
    }
    
    .main-content {
        margin-left: 0;
        width: 100%;
        margin-bottom: 60px;
    }
    
    .logo img {
        width: 120px;
    }
    
    .navbar {
        padding: 0.5rem 0;
    }
    
    /* Show only essential navigation elements on mobile */
    .navbar .logo {
        display: block;
        margin-left: 1rem;
    }
    
    .navbar .cta-button {
        display: none; /* Hide CTA button in navbar on mobile */
    }
}

/* Make sure content is responsive on mobile */
@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons button {
        width: 100%;
    }
    
    /* Additional responsive fixes */
    section {
        padding: 60px 0;
    }
    
    .hero {
        padding-top: 100px;
    }
}

/* Progress overlay for loading indicator */
.progress-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    border-radius: 50%;
    transition: height 0.2s linear;
}

/* Learning Resources Section */
.learning-resources {
    background-color: var(--off-white);
    padding: 100px 0;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    grid-gap: 2rem;
    margin-top: 3rem;
}

.resource-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

/* Flip Card Animation */
.glow-card {
    transition: all 0.3s ease;
}

.glow-card:hover {
    box-shadow: 0 0 30px rgba(204, 50, 248, 0.3);
    transform: translateY(-10px);
}

.glow-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(204, 50, 248, 0.2), rgba(50, 27, 224, 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.glow-card:hover::before {
    opacity: 1;
}

/* Slide Card Animation */
.glow-card {
    transition: all 0.3s ease;
}

.glow-card:hover {
    box-shadow: 0 0 30px rgba(204, 50, 248, 0.3);
    transform: translateY(-10px);
}

.glow-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(204, 50, 248, 0.2), rgba(50, 27, 224, 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.glow-card:hover::before {
    opacity: 1;
}
/* Scale Card Animation */
.glow-card {
    transition: all 0.3s ease;
}

.glow-card:hover {
    box-shadow: 0 0 30px rgba(204, 50, 248, 0.3);
    transform: translateY(-10px);
}

.glow-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(204, 50, 248, 0.2), rgba(50, 27, 224, 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.glow-card:hover::before {
    opacity: 1;
}

/* Rotate Card Animation */
.glow-card {
    transition: all 0.3s ease;
}

.glow-card:hover {
    box-shadow: 0 0 30px rgba(204, 50, 248, 0.3);
    transform: translateY(-10px);
}

.glow-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(204, 50, 248, 0.2), rgba(50, 27, 224, 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.glow-card:hover::before {
    opacity: 1;
}

/* Glow Card Animation */
.glow-card {
    transition: all 0.3s ease;
}

.glow-card:hover {
    box-shadow: 0 0 30px rgba(204, 50, 248, 0.3);
    transform: translateY(-10px);
}

.glow-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(204, 50, 248, 0.2), rgba(50, 27, 224, 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.glow-card:hover::before {
    opacity: 1;
}

/* Perspective Card Animation */
.glow-card {
    transition: all 0.3s ease;
}

.glow-card:hover {
    box-shadow: 0 0 30px rgba(204, 50, 248, 0.3);
    transform: translateY(-10px);
}

.glow-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(204, 50, 248, 0.2), rgba(50, 27, 224, 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.glow-card:hover::before {
    opacity: 1;
}
/* Common Resource Card Styles */
.resource-image {
    height: 200px;
    overflow: hidden;
}

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

.resource-content {
    padding: 1.5rem;
}

.resource-content h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.resource-content p {
    color: var(--dark-gray);
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}

.resource-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.resource-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.resource-link:hover {
    color: var(--dark-primary);
    gap: 0.75rem;
}

.resource-link:hover i {
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .resources-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 576px) {
    .resources-grid {
        grid-template-columns: 1fr;
    }
}

/* Company Values Section */
.company-values {
    margin-top: 5rem;
    text-align: center;
}

.company-values h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2.5rem;
    position: relative;
    display: inline-block;
}

.company-values h3::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 2rem;
    margin-top: 1rem;
}

.value-item {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.value-item:hover img {
    transform: scale(1.1);
}

.value-item h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin: 1.25rem 0 0.75rem;
    padding: 0 1rem;
}

.value-item p {
    color: var(--dark-gray);
    font-size: 0.9rem;
    padding: 0 1rem 1.5rem;
    margin: 0;
}

@media (max-width: 992px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .value-item {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Animated Illustration Styles */
.animated-illustration {
    width: 100%;
    height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.illustration-container {
    width: 400px;
    height: 400px;
    position: relative;
}

/* Main Circle Group */
.circle-group {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.main-circle {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #18105F, #321BE0);
    border-radius: 50%;
    position: relative;
    animation: rotate 20s linear infinite;
}

.orbit-circle {
    width: 240px;
    height: 240px;
    border: 2px solid rgba(167, 25, 241, 0.3);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotate-reverse 15s linear infinite;
}

.pulse-circle {
    width: 220px;
    height: 220px;
    border: 2px solid rgba(204, 50, 248, 0.2);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 2s ease-out infinite;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.float-item {
    position: absolute;
    animation: float 6s ease-in-out infinite;
}

.item-1 {
    top: 20%;
    right: 10%;
    animation-delay: 0.5s;
}

.item-2 {
    bottom: 30%;
    left: 15%;
    animation-delay: 1s;
}

.item-3 {
    top: 60%;
    right: 20%;
    animation-delay: 1.5s;
}

/* Connection Lines */
.connection-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, rgba(167, 25, 241, 0), rgba(167, 25, 241, 0.5), rgba(167, 25, 241, 0));
    animation: line-move 3s linear infinite;
}

.line-1 {
    width: 150px;
    top: 30%;
    left: 20%;
    transform: rotate(45deg);
}

.line-2 {
    width: 120px;
    bottom: 40%;
    right: 25%;
    transform: rotate(-30deg);
}

.line-3 {
    width: 100px;
    top: 50%;
    left: 30%;
    transform: rotate(15deg);
}

/* Animations */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes rotate-reverse {
    from {
        transform: translate(-50%, -50%) rotate(360deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(0deg);
    }
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.5;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
}

@keyframes line-move {
    0% {
        opacity: 0;
        transform: translateX(-100%) rotate(var(--rotation));
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateX(100%) rotate(var(--rotation));
    }
}

/* Transaction Animation Styles */
.transaction-animation {
    width: 100%;
    height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #18105F 0%, #321BE0 100%);
    border-radius: 20px;
    overflow: hidden;
}

.verification-circle {
    position: relative;
    width: 300px;
    height: 300px;
}

.outer-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
    border: 2px solid rgba(167, 25, 241, 0.3);
    border-radius: 50%;
    animation: rotate 10s linear infinite;
}

.inner-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 240px;
    height: 240px;
    background: rgba(167, 25, 241, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.progress-circle {
    width: 220px;
    height: 220px;
    border: 4px solid #A719F1;
    border-radius: 50%;
    border-top-color: transparent;
    animation: progress-spin 2s linear infinite;
}

/* Transaction Card */
.transaction-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 15px;
    width: 200px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.card-icon {
    width: 40px;
    height: 40px;
    background: #CC32F8;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon i {
    color: white;
    font-size: 20px;
}

.card-details {
    display: flex;
    flex-direction: column;
}

.card-title {
    color: white;
    font-size: 14px;
    opacity: 0.8;
}

.card-amount {
    color: white;
    font-size: 18px;
    font-weight: 600;
}

/* Verification Badges */
.verification-badge {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 6s ease-in-out infinite;
}

.verification-badge i {
    color: #CC32F8;
    font-size: 24px;
}

.badge-1 {
    top: 20%;
    right: 10%;
    animation-delay: 0.5s;
}

.badge-2 {
    bottom: 25%;
    left: 15%;
    animation-delay: 1s;
}

/* Progress Dots */
.progress-dots {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: pulse 1s ease-in-out infinite;
}

.dot:nth-child(2) {
    animation-delay: 0.2s;
}

.dot:nth-child(3) {
    animation-delay: 0.4s;
}

/* Particles */
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #CC32F8;
    border-radius: 50%;
    animation: particle-float 8s linear infinite;
}

.p1 { top: 20%; left: 10%; animation-delay: 0s; }
.p2 { top: 60%; right: 15%; animation-delay: 1s; }
.p3 { bottom: 30%; left: 20%; animation-delay: 2s; }
.p4 { top: 40%; right: 25%; animation-delay: 3s; }
.p5 { bottom: 20%; right: 30%; animation-delay: 4s; }

/* Animations */
@keyframes progress-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes particle-float {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        transform: translate(100px, -100px) rotate(360deg);
        opacity: 0;
    }
}

/* Device Animation Styles */
.device-animation {
    width: 100%;
    height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

/* 3D Device Base */
.device-base {
    width: 300px;
    height: 300px;
    position: relative;
    transform-style: preserve-3d;
    transform: rotateX(60deg) rotateZ(-45deg);
    animation: device-float 6s ease-in-out infinite;
}

.device-surface {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform-style: preserve-3d;
}

/* Glowing Bars */
.bars-container {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 8px;
    padding: 20px;
    width: 90%;
    height: 90%;
    margin: 5%;
}

.bar {
    background: var(--accent-color);
    height: var(--height);
    width: 100%;
    border-radius: 2px;
    transform-style: preserve-3d;
    transform: translateZ(var(--height));
    animation: bar-glow 2s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(204, 50, 248, 0.5);
}

/* Device Side with Glow */
.device-side {
    width: 30px;
    height: 100%;
    background: var(--light-primary);
    position: absolute;
    right: -30px;
    top: 0;
    transform: rotateY(90deg);
    transform-origin: left;
}

.glow-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--accent-color);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: glow-pulse 2s ease-in-out infinite;
}

.glow-indicator i {
    color: white;
    font-size: 12px;
}

/* Transaction Card */
.transaction-card {
    position: absolute;
    top: 10%;
    right: 5%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 15px;
    color: white;
    display: flex;
    gap: 15px;
    align-items: center;
    animation: float 6s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.card-check {
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-text {
    font-size: 14px;
    line-height: 1.4;
}

.amount {
    font-size: 20px;
    font-weight: 600;
    margin-top: 5px;
    color: #4CAF50;
}

/* Security Icons */
.security-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.shield {
    top: 40%;
    right: 25%;
    animation: float 6s ease-in-out infinite;
    animation-delay: 1s;
}

.lock {
    bottom: 30%;
    left: 15%;
    animation: float 6s ease-in-out infinite;
    animation-delay: 2s;
}

/* Progress Indicators */
.progress-indicators {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.indicator.active {
    background: var(--accent-color);
    box-shadow: 0 0 10px rgba(204, 50, 248, 0.5);
}

/* Animations */
@keyframes device-float {
    0%, 100% {
        transform: rotateX(60deg) rotateZ(-45deg) translateY(0);
    }
    50% {
        transform: rotateX(60deg) rotateZ(-45deg) translateY(-20px);
    }
}

@keyframes bar-glow {
    0%, 100% {
        opacity: 0.7;
        transform: translateZ(var(--height));
    }
    50% {
        opacity: 1;
        transform: translateZ(calc(var(--height) * 1.5));
    }
}

@keyframes glow-pulse {
    0%, 100% {
        box-shadow: 0 0 15px rgba(204, 50, 248, 0.5);
    }
    50% {
        box-shadow: 0 0 30px rgba(204, 50, 248, 0.8);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Markets Section */
.markets {
    padding: 100px 0;
    background: var(--background-secondary);
}

.markets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.market-card {
    background: var(--background-primary);
    border-radius: 20px;
    padding: 30px;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.market-card:hover {
    transform: translateY(-10px);
}

.market-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.market-icon i {
    font-size: 24px;
    color: var(--text-light);
}

.market-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.market-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.market-list li {
    color: var(--text-secondary);
    margin-bottom: 12px;
    font-size: 16px;
    display: flex;
    align-items: center;
}

.market-list li:before {
    content: "•";
    color: var(--accent-primary);
    margin-right: 10px;
}

.market-link {
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: gap 0.3s ease;
}

.market-link:hover {
    gap: 15px;
}

.markets-cta {
    margin-top: 80px;
    text-align: center;
}

.market-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
}

.market-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-value {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 16px;
}

@media (max-width: 768px) {
    .markets-grid {
        grid-template-columns: 1fr;
    }
    
    .market-stats {
        flex-direction: column;
        gap: 30px;
    }
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background: var(--background-secondary);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.process-card {
    background: var(--background-primary);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
}

.process-card:hover {
    transform: translateY(-10px);
}

.process-card:hover::before {
    opacity: 0.05;
}

.process-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.process-icon i {
    font-size: 28px;
    color: var(--text-light);
}

.process-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-dark);
    position: relative;
    z-index: 1;
}

.process-card p {
    color: var(--text-gray);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    flex-grow: 1;
}

.process-link {
    color: var(--accent-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: gap 0.3s ease;
    position: relative;
    z-index: 1;
}

.process-link:hover {
    gap: 15px;
}

/* Tech Overview */
.tech-overview {
    margin-top: 80px;
}

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

.tech-item {
    text-align: center;
    transition: var(--transition);
}

.tech-icon {
    width: 80px;
    height: 80px;
    background: rgba(204, 50, 248, 0.1);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.tech-item:hover .tech-icon {
    background: var(--gradient-primary);
    transform: rotateY(180deg);
}

.tech-icon i {
    font-size: 32px;
    color: var(--accent-color);
    transition: var(--transition);
}

.tech-item:hover .tech-icon i {
    color: var(--text-light);
    transform: rotateY(-180deg);
}

.tech-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.tech-item p {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .process-card {
        padding: 30px;
    }
    
    .process-icon {
        width: 60px;
        height: 60px;
    }
    
    .process-icon i {
        font-size: 24px;
    }
}

/* Events Signup Section */
.events-signup {
    background: #fff;
    position: relative;
    padding: 60px 0 40px 0;
    overflow: visible;
}
.events-signup-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    min-height: 420px;
}
.events-signup-left {
    padding: 2rem 2rem 2rem 0;
    z-index: 2;
}
.events-signup-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}
.brand-gradient {
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.events-signup-subtitle {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 2rem;
    font-weight: 400;
}
.events-signup-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}
.events-signup-form input[type="email"] {
    padding: 0.75rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    flex: 1;
    outline: none;
    transition: border 0.2s;
}
.events-signup-form input[type="email"]:focus {
    border: 1.5px solid var(--accent-color);
}
.events-signup-btn {
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(204, 50, 248, 0.15);
    transition: background 0.2s, box-shadow 0.2s;
}
.events-signup-btn:hover {
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    box-shadow: 0 8px 24px rgba(204, 50, 248, 0.25);
}
.events-signup-right {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    height: 100%;
}
.phone-mockup {
    position: relative;
    z-index: 2;
    width: 320px;
    max-width: 100%;
    margin-top: 0;
    margin-right: 0;
}
.phone-mockup img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 32px;
    box-shadow: 0 8px 32px rgba(50, 27, 224, 0.12);
}
.purple-accent-triangle {
    position: absolute;
    top: 0;
    right: -60px;
    width: 220px;
    height: 220px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    clip-path: polygon(100% 0, 0 0, 100% 100%);
    z-index: 1;
    opacity: 0.95;
}
/* Stepper */
.events-stepper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 3rem auto 0 auto;
    max-width: 700px;
    position: relative;
    z-index: 2;
}
.step-circle {
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(50, 27, 224, 0.18);
    margin: 0 0.5rem;
    position: relative;
    border: 6px solid #f3f3f3;
    transition: box-shadow 0.3s;
}
.step-circle:hover {
    box-shadow: 0 12px 36px rgba(204, 50, 248, 0.25);
}
.step-dash {
    flex: 1;
    height: 4px;
    border-bottom: 4px dashed var(--secondary-color);
    margin: 0 0.5rem;
    min-width: 40px;
    max-width: 80px;
    opacity: 0.7;
}
@media (max-width: 900px) {
    .events-signup-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .events-signup-right {
        justify-content: center;
        margin-top: 2rem;
    }
    .events-stepper {
        flex-direction: column;
        gap: 1.5rem;
    }
    .step-dash {
        display: none;
    }
}
@media (max-width: 600px) {
    .events-signup-title {
        font-size: 1.5rem;
    }
    .step-circle {
        width: 70px;
        height: 70px;
        font-size: 1rem;
    }
    .phone-mockup {
        width: 180px;
    }
}

/* Redesigned Events Signup Section */
.events-signup-label {
    color: #4B32E0;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}
.events-signup-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #18105F;
    margin-bottom: 2rem;
    line-height: 1.1;
}
.events-signup-desc {
    color: #6B7280;
    font-size: 1.25rem;
    margin-bottom: 0;
    max-width: 600px;
}
.events-signup-right {
    display: flex;
    align-items: center;
    justify-content: center;
}
.events-signup-slider-box {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(50, 27, 224, 0.10);
    padding: 2.5rem 2rem;
    max-width: 500px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
}
.events-signup-slider {
    position: relative;
    width: 100%;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.events-signup-slide {
    position: absolute;
    left: 0; top: 0; right: 0; bottom: 0;
    margin: auto;
    max-width: 100%;
    max-height: 260px;
    opacity: 0;
    transition: opacity 0.6s;
    z-index: 1;
    object-fit: contain;
    display: block;
}
.events-signup-slide.active {
    opacity: 1;
    z-index: 2;
}
@media (max-width: 900px) {
    .events-signup-title {
        font-size: 2.2rem;
    }
    .events-signup-slider-box {
        padding: 1.5rem 0.5rem;
        min-height: 200px;
    }
    .events-signup-slider {
        height: 150px;
    }
    .events-signup-slide {
        max-height: 150px;
    }
}

.events-signup-grid-slider {
    width: 100%;
    height: 260px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}
.events-signup-grid-slide {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100%;
    position: relative;
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}
.events-signup-col-left, .events-signup-col-right {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 50%;
    height: 100%;
    overflow: hidden;
    align-items: center;
    justify-content: flex-start;
}
.events-signup-grid-img {
    width: 90%;
    height: 110px;
    object-fit: contain;
    background: #f8f9fa;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(50,27,224,0.04);
    border: 1px solid #f0f0f0;
    transition: transform 1.5s cubic-bezier(0.77,0,0.175,1);
}
@media (max-width: 900px) {
    .events-signup-grid-slider {
        height: 150px;
    }
    .events-signup-grid-img {
        height: 60px;
    }
}

.cryptozy-carousel-section {
  width: 100%;
  background: transparent;
  padding: 40px 0 20px 0;
  margin: 0 auto;
}
.cryptozy-carousel {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}
.cryptozy-carousel-track {
  display: flex;
  width: max-content;
  animation: cryptozy-scroll 30s linear infinite;
  align-items: center;
}
.cryptozy-carousel-img {
  width: 200px;
  height: 120px;
  object-fit: cover;
  border-radius: 16px;
  margin: 0 18px;
  box-shadow: 0 2px 8px rgba(50,27,224,0.04);
  background: #f8f9fa;
  flex-shrink: 0;
  transition: box-shadow 0.3s;
}
.cryptozy-carousel-img:hover {
  box-shadow: 0 8px 24px rgba(50,27,224,0.10);
}
@keyframes cryptozy-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (max-width: 900px) {
  .cryptozy-carousel-img {
    width: 120px;
    height: 70px;
    margin: 0 8px;
  }
}

.cryptozy-vertical-carousel-section {
  width: 100vw;
  background: transparent;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 1;
}
.cryptozy-vertical-carousel {
  width: 100%;
  max-width: 340px;
  height: 440px; /* Show about 2 images at a time */
  overflow: hidden;
  position: relative;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cryptozy-vertical-track {
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: cryptozy-vertical-scroll 36s linear infinite;
}
.cryptozy-vertical-img {
  width: 320px;
  max-width: 90vw;
  height: 200px;
  object-fit: cover;
  border-radius: 18px;
  margin: 12px 0;
  box-shadow: 0 2px 8px rgba(50,27,224,0.04);
  background: #f8f9fa;
  flex-shrink: 0;
  transition: box-shadow 0.3s;
}
@keyframes cryptozy-vertical-scroll {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}
@media (max-width: 900px) {
  .cryptozy-vertical-carousel {
    max-width: 95vw;
    height: 240px;
  }
  .cryptozy-vertical-img {
    width: 95vw;
    height: 120px;
    margin: 8px 0;
  }
}

/* Hamburger icon animation */
.hamburger-menu.active .hamburger-icon span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger-menu.active .hamburger-icon span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .hamburger-icon span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 768px) {
    /* Fix for white border in mobile view */
    html, body {
        overflow-x: hidden;
        width: 100%;
        margin: 0;
        padding: 0;
        position: relative;
    }
    
    body {
        max-width: 100vw;
    }
}

/* Animated event image cluster for events-signup section */
.event-img-animate {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    animation: eventImgFloatIn 1.2s cubic-bezier(0.23, 1, 0.32, 1) forwards, eventImgFloat 4s ease-in-out infinite alternate;
}
.event-img-animate:nth-child(1) { animation-delay: 0.1s, 0s; }
.event-img-animate:nth-child(2) { animation-delay: 0.3s, 0.5s; }
.event-img-animate:nth-child(3) { animation-delay: 0.5s, 1s; }
.event-img-animate:nth-child(4) { animation-delay: 0.7s, 1.5s; }
.event-img-animate:nth-child(5) { animation-delay: 0.9s, 2s; }
.event-img-animate:nth-child(6) { animation-delay: 1.1s, 2.5s; }
.event-img-animate:nth-child(7) { animation-delay: 1.3s, 3s; }

@keyframes eventImgFloatIn {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    80% {
        opacity: 1;
        transform: translateY(-8px) scale(1.03);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes eventImgFloat {
    0% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-12px) scale(1.04);
    }
    100% {
        transform: translateY(0) scale(1);
    }
}

/* Events image grid */
.events-image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, auto);
    gap: 15px;
    max-width: 450px;
    margin: 0 auto;
    padding: 20px;
}

.grid-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(71, 63, 151, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(71, 63, 151, 0.2);
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    transition: transform 0.4s ease;
}

.grid-item:hover img {
    transform: scale(1.05);
}

/* Grid item positions */
.item1 {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

.item2 {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.item3 {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
}

.item4 {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}

.item5 {
    grid-column: 2 / 4;
    grid-row: 2 / 3;
}

.item6 {
    grid-column: 1 / 3;
    grid-row: 3 / 4;
}

.item7 {
    grid-column: 3 / 4;
    grid-row: 3 / 4;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .events-image-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 350px;
    }
    
    .item3 {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }
    
    .item4 {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
    }
    
    .item5 {
        grid-column: 1 / 3;
        grid-row: 3 / 4;
    }
    
    .item6 {
        grid-column: 1 / 2;
        grid-row: 4 / 5;
    }
    
    .item7 {
        grid-column: 2 / 3;
        grid-row: 4 / 5;
    }
}

/* Dashboard Background for Hero */
.dashboard-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 130%;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(8, 1fr);
    gap: 20px;
    padding: 30px;
    z-index: 0;
    overflow: hidden;
    background-color: rgba(236, 245, 255, 0.3);
    transform: translateZ(-10px) scale(1.5);
    transform-origin: center top;
    will-change: transform;
}

.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(170deg, rgba(236, 245, 255, 0.9) 0%, rgba(243, 240, 255, 0.8) 100%);
    perspective: 1000px;
}

/* Dashboard item positions */
.dashboard-item {
    border-radius: 16px;
    overflow: hidden;
    filter: blur(1px);
    opacity: 0.6;
    transform: translateZ(-5px);
    transition: all 0.5s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    will-change: transform, opacity;
}

.dashboard-item:nth-child(odd) {
    animation: float 15s infinite ease-in-out;
}

.dashboard-item:nth-child(even) {
    animation: float 18s infinite ease-in-out reverse;
}

.item1 {
    grid-column: 1 / 6;
    grid-row: 1 / 4;
    transform: rotate(-2deg);
}

.item2 {
    grid-column: 7 / 11;
    grid-row: 1 / 3;
    transform: rotate(1deg);
}

.item3 {
    grid-column: 11 / 13;
    grid-row: 2 / 5;
    transform: rotate(3deg);
}

.item4 {
    grid-column: 2 / 5;
    grid-row: 5 / 7;
    transform: rotate(-1deg);
}

.item5 {
    grid-column: 6 / 9;
    grid-row: 3 / 6;
    transform: rotate(2deg);
}

.item6 {
    grid-column: 9 / 13;
    grid-row: 6 / 9;
    transform: rotate(-3deg);
}

/* Dashboard card styles */
.dashboard-card {
    background: white;
    border-radius: 12px;
    padding: 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 8px 24px rgba(149, 157, 165, 0.1);
    border: 1px solid rgba(200, 210, 220, 0.5);
}

.dashboard-card.mobile {
    max-width: 280px;
    border-radius: 24px;
    padding: 12px;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

.badge {
    background: #ecfdf5;
    color: #047857;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 12px;
}

/* Chart mockups */
.dashboard-chart {
    flex: 1;
    border-radius: 8px;
    position: relative;
    min-height: 80px;
    background: linear-gradient(to right, #f3f4f6 0%, #e5e7eb 10%, #f3f4f6 20%);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

.circle-chart {
    background: radial-gradient(circle at center, #6366f1 0%, #6366f1 30%, #e0e7ff 31%, #e0e7ff 60%, #c7d2fe 61%, #c7d2fe 100%);
}

.bar-chart {
    background: linear-gradient(to bottom, #f9fafb 0%, #f9fafb 20%, #4f46e5 20%, #4f46e5 30%, #f9fafb 30%, #f9fafb 50%, #818cf8 50%, #818cf8 55%, #f9fafb 55%, #f9fafb 70%, #6366f1 70%, #6366f1 75%, #f9fafb 75%, #f9fafb 90%, #4338ca 90%, #4338ca 95%, #f9fafb 95%);
}

.line-chart {
    background: linear-gradient(to bottom, #f9fafb 50%, #f9fafb 50%);
    overflow: hidden;
}

.line-chart::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: #4f46e5;
    transform: translateY(-50%) translateX(0);
    animation: lineMove 4s infinite ease-in-out;
}

.area-chart {
    background: linear-gradient(to bottom, #ecfdf5 0%, #d1fae5 40%, #a7f3d0 80%, #6ee7b7 100%);
}

.dashboard-stats {
    display: flex;
    margin-top: 15px;
    gap: 15px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.value {
    font-weight: 700;
    color: #111827;
}

.label {
    font-size: 12px;
    color: #6b7280;
}

.status-indicators {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.status {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e5e7eb;
}

.status.active {
    background: #10b981;
}

/* Animations */
@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

@keyframes lineMove {
    0% {
        transform: translateY(-50%) translateX(-100%);
    }
    100% {
        transform: translateY(-50%) translateX(100%);
    }
}

/* Parallax effect */
@keyframes float {
    0%, 100% {
        transform: translateY(0) translateZ(-5px);
    }
    50% {
        transform: translateY(-10px) translateZ(-5px);
    }
}

/* Ensure content stays on top */
.hero .container {
    position: relative;
    z-index: 10;
}

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

/* Add parallax scroll effect */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    z-index: 5;
}

/* Add JavaScript for parallax effect */

/* Modern Events Signup Section */
.events-signup-modern {
    padding: 120px 0;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

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

.events-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.events-text-column {
    position: relative;
}

.section-tag-modern {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
    display: inline-block;
    color: #555;
}

.section-title-modern {
    font-size: 56px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 24px;
    color: #000;
}

.highlight-dot {
    color: #FF9500;
    font-size: 64px;
}

.section-desc-modern {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 32px;
    color: #333;
    max-width: 540px;
}

.events-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 32px;
}

.event-stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 40px;
    font-weight: 800;
    color: #000;
    line-height: 1;
}

.stat-label {
    font-size: 16px;
    color: #555;
    margin-top: 8px;
}

.modern-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #000;
    color: #fff;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.modern-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,149,0,0.2) 0%, rgba(255,149,0,0) 50%);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.modern-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.modern-button:hover::before {
    transform: translateX(0);
}

.modern-button svg {
    transition: transform 0.3s ease;
}

.modern-button:hover svg {
    transform: translateX(5px);
}

.events-image-column {
    position: relative;
}

.modern-image-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transform: perspective(1000px) rotateY(0deg);
    transition: transform 0.5s ease;
}

.modern-image-card:hover {
    transform: perspective(1000px) rotateY(2deg);
}

.main-event-image {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 60%, rgba(0,0,0,0.8) 100%);
}

.floating-element {
    position: absolute;
    background: #fff;
    border-radius: 12px;
    padding: 12px 16px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    animation: float 6s infinite ease-in-out;
}

.tag-element {
    top: 24px;
    right: 24px;
    background: #FF9500;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    padding: 8px 16px;
    animation-delay: 0.5s;
}

.date-element {
    top: 24px;
    left: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 14px;
    animation-delay: 1s;
}

.date-number {
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
    color: #000;
}

.date-month {
    font-size: 14px;
    font-weight: 600;
    color: #555;
    margin-top: 2px;
}

.location-element {
    bottom: 24px;
    left: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    animation-delay: 1.5s;
    color: #000;
    font-weight: 500;
}

.location-element svg {
    color: #FF9500;
}

.secondary-images {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.small-image-card {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    transform: translateY(0);
    transition: all 0.3s ease;
}

.small-image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.small-image-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.small-image-card:hover img {
    transform: scale(1.1);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Parallax effect for image cards */
.events-image-column {
    will-change: transform;
    transform: translateZ(0);
}

.events-text-column {
    will-change: transform;
    transform: translateZ(0);
}

/* Media Queries */
@media (max-width: 992px) {
    .events-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .section-title-modern {
        font-size: 42px;
    }
    
    .highlight-dot {
        font-size: 48px;
    }
    
    .main-event-image {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .events-signup-modern {
        padding: 80px 0;
    }
    
    .events-stats {
        gap: 24px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .section-title-modern {
        font-size: 36px;
    }
    
    .highlight-dot {
        font-size: 40px;
    }
    
    .modern-button {
        padding: 14px 24px;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .events-container {
        padding: 0 20px;
    }
    
    .section-desc-modern {
        font-size: 16px;
    }
    
    .events-stats {
        flex-direction: column;
        gap: 16px;
    }
    
    .secondary-images {
        flex-direction: column;
    }
    
    .small-image-card img {
        height: 160px;
    }
}

/* Modern Contact Section */
.contact-modern {
    padding: 120px 0;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.contact-modern::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(204, 50, 248, 0.05), rgba(50, 27, 224, 0.08));
    z-index: 0;
}

.contact-modern::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(50, 27, 224, 0.05), rgba(204, 50, 248, 0.08));
    z-index: 0;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 1;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-tag {
    display: inline-block;
    background-color: rgba(204, 50, 248, 0.1);
    color: #321BE0;
    font-size: 14px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 30px;
    margin-bottom: 20px;
    letter-spacing: 1.5px;
}

.contact-title {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #1a1a2e, #321BE0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-subtitle {
    font-size: 18px;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: flex-start;
}

.contact-left {
    position: relative;
}

.side-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.side-description {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 40px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: #fff;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #CC32F8, #321BE0);
    color: #fff;
    border-radius: 12px;
    font-size: 20px;
}

.card-text h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 5px;
}

.card-text p {
    font-size: 15px;
    color: #555;
    margin: 0;
}

.social-links-modern {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    color: #1a1a2e;
    border-radius: 50%;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.social-link:hover {
    background: linear-gradient(135deg, #CC32F8, #321BE0);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(204, 50, 248, 0.2);
}

.contact-right {
    position: relative;
}

.form-container {
    background-color: #fff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.modern-form {
    position: relative;
    z-index: 2;
}

.form-field {
    margin-bottom: 24px;
}

.form-field label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    font-size: 15px;
    color: #333;
    background-color: #f9fafb;
    transition: all 0.3s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #CC32F8;
    box-shadow: 0 0 0 3px rgba(204, 50, 248, 0.1);
    background-color: #fff;
}

.form-field textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #CC32F8, #321BE0);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.submit-button-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
}

.submit-button-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(204, 50, 248, 0.3);
}

.submit-button-modern:hover::before {
    left: 100%;
}

.submit-button-modern i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.submit-button-modern:hover i {
    transform: translateX(5px);
}

.form-decoration {
    position: absolute;
    z-index: 1;
}

.decoration-circle {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(204, 50, 248, 0.1), rgba(50, 27, 224, 0.1));
    opacity: 0.8;
}

.decoration-line {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 150px;
    height: 3px;
    background: linear-gradient(90deg, rgba(204, 50, 248, 0.3), rgba(50, 27, 224, 0.3));
    border-radius: 3px;
}

/* Responsive styles */
@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-title {
        font-size: 42px;
    }
    
    .side-title {
        font-size: 28px;
    }
    
    .contact-modern {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    .contact-modern {
        padding: 60px 0;
    }
    
    .contact-header {
        margin-bottom: 40px;
    }
    
    .contact-title {
        font-size: 36px;
    }
    
    .contact-subtitle {
        font-size: 16px;
    }
    
    .side-title {
        font-size: 24px;
    }
    
    .form-container {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .contact-container {
        padding: 0 20px;
    }
    
    .contact-title {
        font-size: 32px;
    }
    
    .card-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* Decorative Doodles */
.doodle {
    position: absolute;
    z-index: 1;
    opacity: 0.7;
    pointer-events: none;
    transition: all 0.5s ease;
}

/* Doodle positions */
.code-brackets {
    top: 30px;
    left: -30px;
    animation: float-slow 6s infinite ease-in-out;
}

.cog-wheel {
    top: 100px;
    right: 10px;
    animation: rotate 20s infinite linear;
}

.data-flow {
    bottom: 60px;
    left: -50px;
    animation: pulse-subtle 4s infinite ease-in-out;
}

.chart-line {
    top: 80px;
    right: 30px;
    animation: float-slow 8s infinite ease-in-out reverse;
}

.laptop-code {
    top: 30px;
    right: 50px;
    animation: float-slow 7s infinite ease-in-out;
}

.circuit {
    bottom: 50px;
    left: 40px;
    animation: pulse-subtle 5s infinite ease-in-out;
}

.quotes {
    top: 20px;
    left: 30px;
    animation: float-slow 5s infinite ease-in-out;
}

.stars {
    bottom: 40px;
    right: 30px;
    animation: pulse-subtle 3s infinite ease-in-out alternate;
}

.question-mark {
    top: 40px;
    right: 80px;
    animation: float-slow 6s infinite ease-in-out;
}

.chat-bubbles {
    bottom: 80px;
    left: 60px;
    animation: float-slow 7s infinite ease-in-out alternate;
}

.book-stack {
    top: 40px;
    left: 40px;
    animation: float-slow 8s infinite ease-in-out;
}

.light-bulb {
    bottom: 60px;
    right: 60px;
    animation: glow 4s infinite ease-in-out;
}

.calendar {
    top: 40px;
    left: 30px;
    animation: float-slow 7s infinite ease-in-out;
}

.devices {
    bottom: 80px;
    right: 30px;
    animation: float-slow 6s infinite ease-in-out alternate;
}

/* Doodle animations */
@keyframes float-slow {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse-subtle {
    0%, 100% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

@keyframes glow {
    0%, 100% {
        filter: drop-shadow(0 0 3px rgba(204, 50, 248, 0));
        opacity: 0.7;
    }
    50% {
        filter: drop-shadow(0 0 5px rgba(204, 50, 248, 0.5));
        opacity: 0.9;
    }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .doodle {
        transform: scale(0.8);
    }
    
    .code-brackets, .data-flow, .laptop-code, 
    .quotes, .question-mark, .book-stack, .calendar {
        left: 10px;
    }
    
    .cog-wheel, .chart-line, .circuit, 
    .stars, .chat-bubbles, .light-bulb, .devices {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .doodle {
        transform: scale(0.7);
        opacity: 0.5;
    }
}

@media (max-width: 576px) {
    .code-brackets, .cog-wheel, .circuit, .chat-bubbles, 
    .calendar, .light-bulb {
        display: none;
    }
}

/* Success Message Popup */
.success-message-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.success-message-popup.active {
    opacity: 1;
    visibility: visible;
}

.success-message-content {
    background-color: #fff;
    border-radius: 16px;
    padding: 40px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.success-message-popup.active .success-message-content {
    transform: translateY(0);
}

.success-icon {
    font-size: 60px;
    color: #4BB543;
    margin-bottom: 20px;
}

.success-message-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.success-message-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 25px;
}

.close-success-btn {
    background: linear-gradient(135deg, #CC32F8, #321BE0);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-success-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(204, 50, 248, 0.3);
}

body.popup-active {
    overflow: hidden;
}