        
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

html {
    scroll-behavior: smooth;
}


/* ka Overlay styles */
.hedaoverlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hedaoverlay.hedaactive {
    display: block;
    opacity: 1;
}

:root {
    --primary-gradient: linear-gradient(135deg, #1a1a1a70 0%, #2d2d2d 100%);
    --hover-color: #f3e260;
    --text-primary: #ffffff;
    --animation-timing: 0.3s;
}

footer {
    background: var(--primary-gradient);
    padding: 4rem 2rem 2rem;
    position: relative;
    overflow: hidden;
    color: var(--text-primary);
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background-size: 200% 100%;
    animation: gradientSlide 3s linear infinite;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.footer-section {
    background: rgba(45, 45, 45, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(135, 121, 31, 0.057);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--animation-timing) cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-section:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(31, 38, 135, 0.15);
    background: rgba(55, 55, 55, 0.25);
}

.footer-section h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--hover-color);
    transition: width var(--animation-timing) ease;
}

.footer-section:hover h3::after {
    width: 100%;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section li {
    margin: 1rem 0;
    transition: all var(--animation-timing) ease;
    position: relative;
}

.footer-section a {
    color: #cccccc;
    text-decoration: none;
    transition: all var(--animation-timing) ease;
    display: inline-flex;
    align-items: center;
    position: relative;
    padding: 0.5rem 0;
}

.footer-section a::before {
    content: '→';
    opacity: 0;
    margin-right: 0.5rem;
    transform: translateX(-10px);
    transition: all var(--animation-timing) ease;
}

.footer-section a:hover::before {
    opacity: 1;
    transform: translateX(0);
    color: var(--hover-color);
}

.footer-section a:hover {
    color: #dbcd34;
    transform: translateX(10px);
}

/*❌❌❌❌❌BEWARE OF SOSHOO❌❌❌❌*/


        /* Responsive Base Styles */
        .pu-social-container * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        .pu-social-container {
            --pu-animation-timing: 0.3s;
            --pu-fb-color: #3b5998;
            --pu-twitter-color: #1da1f2;
            --pu-linkedin-color: #0077b5;
            --pu-discord-color: #7289da;
            --pu-whatsapp-color: #25D366;
            --pu-email-color: #864842;
            --pu-youtube-color: #ea4335;
            --pu-background: #2d2d2d;
            --pu-text-color: #ffffff;
            
            /* Responsive Variables */
            --pu-icon-size-desktop: 50px;
            --pu-icon-size-tablet: 40px;
            --pu-icon-size-mobile: 35px;
            --pu-icon-font-size-desktop: 1.5rem;
            --pu-icon-font-size-mobile: 1.2rem;
        }

        .pu-social-links {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1rem;
            flex-wrap: wrap;
            max-width: 100%;
            padding: 1rem;
        }

        .pu-social-links a {
            width: var(--pu-icon-size-desktop);
            height: var(--pu-icon-size-desktop);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--pu-background);
            color: var(--pu-text-color);
            font-size: var(--pu-icon-font-size-desktop);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: all var(--pu-animation-timing) cubic-bezier(0.68, -0.55, 0.265, 1.55);
            position: relative;
            text-decoration: none !important;
            border-bottom: none !important;
        }

        .pu-social-links a::after {
            content: attr(data-profile);
            position: absolute;
            bottom: -35px;
            font-size: 0.8rem;
            opacity: 0;
            transform: translateY(-10px);
            transition: all var(--pu-animation-timing) ease;
            font-family: Arial, sans-serif;
            white-space: nowrap;
            pointer-events: none;
            font-weight: 600;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
            letter-spacing: 0.5px;
            /* background: rgba(0,0,0,0.7); */
            color: white;
            padding: 3px 8px;
            border-radius: 4px;
            z-index: 10;
        }

        /* Hover Effects */
        .pu-social-links a:hover::after {
            opacity: 1;
            transform: translateY(0);
            animation: pu-shimmer 2s infinite;
        }

        @keyframes pu-shimmer {
            0% { filter: brightness(1); }
            50% { filter: brightness(1.2); }
            100% { filter: brightness(1); }
        }

        .pu-social-links a:hover {
            transform: translateY(-10px) scale(1.2);
            box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
            z-index: 2;
        }

        .pu-social-links a i {
            transition: transform var(--pu-animation-timing) ease;
            position: relative;
            z-index: 1;
        }

        .pu-social-links a:hover i {
            transform: scale(1.2);
        }

        .pu-social-links.pu-has-hovered a:not(:hover) {
            opacity: 0.5;
            transform: scale(0.95);
            color: #837d4a;
        }

        /* Responsive Adjustments */
        @media (max-width: 1024px) {
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .footer-content {
                display: flex;
                flex-wrap: wrap;
                gap: 1rem;
            }

            .footer-section {
                flex: 1 1 300px;
                margin: 0.5rem;
                animation: slideIn var(--animation-timing) ease-out forwards;
                opacity: 0;
            }

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

            .footer-section:nth-child(1) { animation-delay: 0.1s; }
            .footer-section:nth-child(2) { animation-delay: 0.2s; }
            .footer-section:nth-child(3) { animation-delay: 0.3s; }
            .footer-section:nth-child(4) { animation-delay: 0.4s; }
        }
        
        @media screen and (max-width: 768px) {

            .pu-social-links {
                gap: 0.75rem;
            }

            .pu-social-links a {
                width: var(--pu-icon-size-tablet);
                height: var(--pu-icon-size-tablet);
                font-size: 1.3rem;
            }

            .pu-social-links a::after {
                font-size: 0.7rem;
                bottom: -30px;
                padding: 2px 6px;
            }
        }

        @media screen and (max-width: 480px) {
            .pu-social-links {
                gap: 0.5rem;
            }

            .pu-social-links a {
                width: var(--pu-icon-size-mobile);
                height: var(--pu-icon-size-mobile);
                font-size: var(--pu-icon-font-size-mobile);
            }

            .pu-social-links a::after {
                font-size: 0.6rem;
                bottom: -25px;
                padding: 2px 5px;
            }

            /* On very small screens, adjust hover behavior */
            .pu-social-links a:hover {
                transform: translateY(-5px) scale(1.1);
            }
        }

        /* Colored Icons */
        .pu-social-links a:hover .fa-facebook, 
        .pu-social-links a:hover[data-profile*="facebook"]::after { 
            color: var(--pu-fb-color); 
        }

        .pu-social-links a:hover .fa-twitter,
        .pu-social-links a:hover[data-profile*="twitter"]::after { 
            color: var(--pu-twitter-color); 
        }

        .pu-social-links a:hover .fa-instagram,
        .pu-social-links a:hover[data-profile*="instagram"]::after { 
            background: -webkit-linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.1));
        }

        .pu-social-links a:hover .fa-linkedin,
        .pu-social-links a:hover[data-profile*="linkedin"]::after { 
            color: var(--pu-linkedin-color); 
        }

        .pu-social-links a:hover .fa-discord,
        .pu-social-links a:hover[data-profile*="discord"]::after { 
            color: var(--pu-discord-color); 
        }

        .pu-social-links a:hover .fa-whatsapp,
        .pu-social-links a:hover[data-profile*="whatsapp"]::after { 
            color: var(--pu-whatsapp-color); 
        }

        .pu-social-links a:hover .fa-envelope,
        .pu-social-links a:hover[data-profile*="gmail"]::after { 
            color: var(--pu-email-color); 
        }

        .pu-social-links a:hover .fa-youtube,
        .pu-social-links a:hover[data-profile*="youtube"]::after { 
            color: var(--pu-youtube-color); 
        }




.copyright {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(45, 45, 45, 0.3);
    backdrop-filter: blur(3px);
    border-radius: 15px;
    animation: pulse 15s infinite;
    color: #cccccc;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Cantarell, sans-serif;
    min-height: 200vh;
    background-color: #1a1a1a;
}

.hedaheader {
    background-color: rgba(28, 28, 28, 0.98);
    padding: 15px;
    position: fixed;
    width: calc(100% - 30px);
    top: 12px;
    left:15px;
    right: 20px;
    z-index: 1000;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    transition: all 0.9s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
    font-family: 'Ubuntu';
}

.hedaheader.scrolled {
    top: 0;
    left: 0;
    right: 0;
    border-radius: 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    background-color: rgba(25, 25, 25, 0.282);
}

.hedaheader.scrolled-down {
    border-radius: 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    width:100%;
}

.hedaheader.scrolled-up {
    top: 10px;
    left: 10px;
    right: 15px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.544);
}

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

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

.hedalogo-text {
    font-size: 1.5rem;
    font-weight: 650;
    background: linear-gradient(45deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    color: transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.hedadonate-button {
    background-color: #5a5a5a;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.528);
}

.hedadonate-button:hover {
    transform: translateY(-2px);
    transform: scale(1.1);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.622);
    color:rgb(255, 255, 255);
}

.hedanav-list {
    display: flex;
    list-style-type: none;
    align-items: center;
    gap: 2rem;
    margin-left: auto;
    margin: 0;
    padding: 0;
    z-index: 1000;
}

.hedanav-list li {
    position: relative;
}

.hedanav-list a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    display: block;
    white-space: nowrap;
}

.hedanav-list a:hover {
    color: #dbcd34;
}

.hedahas-submenu {
    position: relative;
}

.hedahas-submenu > a {
    display: flex;
    align-items: center;
    gap: 4px;
}

.hedahas-submenu > a::after {
    content: '▾';
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.hedahas-submenu:hover > a::after {
    transform: rotate(180deg);
}

.hedasubmenu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #2d2d2d;
    min-width: 250px;
    list-style-type: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hedahas-submenu:hover .hedasubmenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.hedasubmenu li {
    margin: 0;
    padding: 0;
}

.hedasubmenu a {
    padding: 12px 16px;
    display: block;
    color: #ffffff;
    transition: all 0.3s ease;
    border-radius: 8px;
    white-space: nowrap;
}

.hedasubmenu a:hover {
    background-color: #3a3a3a;
    color: #ebe65a;
    padding-left: 20px;
}

.hedahamburger {
    margin-left: 20px;
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
    gap: 6px;
}

.hedahamburger span {
    width: 28px;
    height: 2px;
    background-color: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: left center;
}

@media (max-width: 1200px) {
    .hedanav-list {
        gap: 1rem;
    }
    .hedanav-list a {
        padding: 8px 12px;
        font-size: 0.95rem;
        white-space: nowrap;
    }
}

@media (max-width: 1024px) {
    .hedanav-list a {
        padding: 8px 8px;
        font-size: 0.9rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 900px) {
    .hedanav {
        justify-content: space-between;
    }
    .hedabrand {
        margin-right: 0;
    }
    .hedahamburger {
        display: flex;
    }

    .hedahamburger.hedaactive span:nth-child(1) {
        transform: rotate(45deg) translate(1px, -3px);
    }
    .hedahamburger.hedaactive span:nth-child(2) {
        opacity: 0;
        transform: translateX(-10px);
    }

    .hedahamburger.hedaactive span:nth-child(3) {
        transform: rotate(-45deg) translate(1px, 3px);
    }

    .hedanav-list {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 85%;
        background: rgba(28, 28, 28, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: stretch;
        padding: 5rem 2rem;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        gap: 0.5rem;
        border-radius: 15px;
        overflow-y: scroll;
    }

    .hedanav-list.active {
        right: 0;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    .hedanav-list.hedaactive {
        right: 0;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    }

    .hedanav-list li {
        opacity: 0;
        transform: translateX(50px);
        transition: all 0.3s ease;
    }

    .hedanav-list.hedaactive li {
        opacity: 1;
        transform: translateX(0);
        transition-delay: calc(0.1s * var(--i));
    }

    .hedanav-list a {
        padding: 1rem;
        font-size: 1.1rem;
        border-radius: 12px;
        transition: all 0.3s ease;
    }

    .hedanav-list a:hover {
        background-color: #3a3a3a;
    }

    .hedasubmenu {
        position: static;
        background-color: #242424;
        box-shadow: none;
        padding-left: 20px;
        padding: 0.5rem;
        margin: 0.5rem 0;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .hedahas-submenu.hedaactive .hedasubmenu {
        display: block;
        animation: slideDown 0.5s ease forwards;
    }

    @keyframes slideDown {
        0% {
            opacity: 0;
            transform: translateY(-10px);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .hedahas-submenu > a::after {
        float: right;
        transform: rotate(-90deg);
    }

    .hedahas-submenu.hedaactive > a::after {
        transform: rotate(0);
    }

    .hedadonate-button {
        align-items: center;
        width: 100%;
        height: 50px;
        margin-top: 1rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .footer-content {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .footer-section {
        flex: 1 1 300px;
        margin: 0.5rem;
        animation: slideIn var(--animation-timing) ease-out forwards;
        opacity: 0;
    }

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

    .footer-section:nth-child(1) { animation-delay: 0.1s; }
    .footer-section:nth-child(2) { animation-delay: 0.2s; }
    .footer-section:nth-child(3) { animation-delay: 0.3s; }
    .footer-section:nth-child(4) { animation-delay: 0.4s; }
}

@keyframes gradientSlide {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(52, 152, 219, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(52, 152, 219, 0); }
    100% { box-shadow: 0 0 0 0 rgba(52, 152, 219, 0); }
}

.footer-content:hover .footer-section:not(:hover) {
    filter: brightness(0.95);
    transform: scale(0.98);
}

.footer-section {
    scrollbar-width: thin;
    scrollbar-color: var(--hover-color) transparent;
}

.footer-section::-webkit-scrollbar {
    width: 6px;
}

.footer-section::-webkit-scrollbar-track {
    background: transparent;
}

.footer-section::-webkit-scrollbar-thumb {
    background-color: var(--hover-color);
    border-radius: 3px;
}
:root {
    --primary: #FFD700;
    --primary-dark: #e6c200;
    --dark: #121212;
    --light: #ffffff;
    --accent1: #ff3e6c;
    --accent2: #00c6ff;
    --text: #ffffff;
    --card-bg: rgba(25, 25, 25, 0.8);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
#canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.page-wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
}

/* Header Section */
.hero-section {
    height: 55vh;
    min-height: 300px;
    max-height: 600px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.hero-backdrop {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.5));
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}
.hero-title {
    font-size: clamp(2.3rem, 5vw, 3rem);
    font-weight: 500;

    margin-bottom: 20px;
    color: transparent;
    -webkit-text-stroke: 1px rgb(246, 255, 0);
    text-stroke: 1px rgb(251, 255, 0);
    transform: translateY(50px);
    opacity: 0;
    position: relative;
    animation: flicker 3s infinite alternate;
    text-shadow: 
        0 0 4px rgb(194, 185, 66),
        0 0 8px #ffd500;
}

@keyframes flicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        -webkit-text-stroke: 1px rgb(246, 255, 0);
        text-stroke: 1px rgb(225, 255, 0);
        text-shadow: 
            0 0 4px rgb(251, 255, 0),
            0 0 8px #f2ff00;
        opacity: 1;
    }
    20%, 24%, 55% {
        -webkit-text-stroke: 1px rgba(0, 255, 255, 0.5);
        text-stroke: 1px rgba(0, 255, 255, 0.5);
        text-shadow: none;
        opacity: 0.8;
    }
}



.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.2rem);
    line-height: 1.6;
    margin-bottom: 80px;
    max-width: 1000px;
    transform: translateY(30px);
    opacity: 0;
    color: white;
    font-family: 'Ubuntu';
}

/* Contact Grid Section */
.contact-section {
    position: relative;
    padding: 50px 0;
    margin-top: clamp(-60px, -8vw, -100px);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(15px, 4vw, 30px);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: clamp(20px, 4vw, 40px);
}

.contact-info {
    grid-column: span 4;
    display: grid;
    gap: 25px;
}

.contact-form-container {
    grid-column: span 8;
    position: relative;
    overflow: hidden;
}

.contact-form {
    background: rgba(25, 25, 25, 0.7);
    border-radius: 30px;
    padding: clamp(25px, 5vw, 50px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(5deg);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.contact-form:hover {
    box-shadow: 0 25px 50px rgba(255, 215, 0, 0.2);
    transform: perspective(1000px) rotateY(0deg);
}
  /* Card Animations */
  @keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.info-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 25px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transform: translateX(-50px);
    opacity: 0;
    animation: float 6s ease-in-out infinite;
}

.info-card:nth-child(1) { animation-delay: 0s; }
.info-card:nth-child(2) { animation-delay: 1s; }
.info-card:nth-child(3) { animation-delay: 2s; }

.info-card:hover {
    transform: translateY(-10px) scale(1.05) !important;
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.3);
}

.info-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s ease;
}

.info-card:hover:before {
    transform: scaleY(1);
}

.info-card:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}

.info-card:hover:after {
    transform: scaleX(1);
}

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

.info-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.info-card:hover .info-card-icon {
    background: var(--primary);
    transform: scale(1.1) rotate(5deg);
}

.info-card-icon i {
    font-size: 24px;
    color: var(--primary);
    transition: all 0.3s ease;
}

.info-card:hover .info-card-icon i {
    color: var(--dark);
    transform: rotate(360deg);
}
.info-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.info-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.action-button {
    background: transparent;
    border: none;
    color: var(--primary);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    padding: 5px 0;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.action-button i {
    margin-left: 5px;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.info-card:hover .action-button {
    opacity: 1;
    transform: translateY(0);
}

.info-card:hover .action-button i {
    transform: translateX(5px);
}

/* Form Styles */
.form-group {
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    color: var(--text);
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
}

.form-group input:focus ~ .input-highlight,
.form-group textarea:focus ~ .input-highlight {
    transform: scaleX(1);
}

.input-highlight {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent1), var(--accent2), var(--primary));
    background-size: 300% 100%;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    animation: gradient-move 4s linear infinite;
}

.form-group label {
    position: absolute;
    top: 20px;
    left: 20px;
    color: rgba(255, 255, 255, 0.6);
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
    top: 5px;
    left: 15px;
    padding: 0 5px;
    background: var(--dark);
    border-radius: 5px;
    font-size: 12px;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 1px;
}

.submit-btn {
    position: relative;
    overflow: hidden;
    padding: 15px 30px;
    border-radius: 15px;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s ease;
    width: 100%;
    z-index: 1;
}

.submit-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--primary);
    transition: all 0.4s ease;
    z-index: -1;
}

.submit-btn:hover:before {
    width: 100%;
}

.submit-btn:hover {
    color: var(--dark);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
    transform: translateY(-2px);
}

.submit-btn:after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
    transform: scale(0);
}

.submit-btn:active:after {
    animation: ripple 0.8s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 0.5;
    }
    100% {
        transform: scale(20);
        opacity: 0;
    }
}


:root {
    --map-shadow-color: rgba(0, 0, 0, 0.3);
    --map-gradient-start: rgba(0, 0, 0, 0.2);
    --map-gradient-end: rgba(0, 0, 0, 0);
    --map-border-radius: clamp(15px, 3vw, 30px);
    --map-height: clamp(250px, 60vh, 600px);
}

    /* Map Section */
    .map-section {
    width: 100%;
    max-width: 1200px;
    margin-top: 60px;
    
}
.map-wrapper {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.map-section {
    width: 100%;
    margin: 60px auto;
    position: relative;
}

.map-container {
    width: 100%;
    height: var(--map-height);
    border-radius: var(--map-border-radius);
    overflow: hidden;
    position: relative;
    transform-style: preserve-3d;
    transform: perspective(1200px) rotateX(5deg) scale(0.98);
    box-shadow: 0 20px 50px var(--map-shadow-color), 
                0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    opacity: 1;
    will-change: transform;
}

.map-container:hover {
    transform: perspective(1200px) rotateX(0deg) scale(1);
    box-shadow: 0 30px 70px var(--map-shadow-color), 
                0 10px 25px rgba(0, 0, 0, 0.1);
}

.map-container:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, var(--map-gradient-start), var(--map-gradient-end));
    z-index: 2;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.map-container:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
                            rgba(255,255,255,0.1) 0%, 
                            rgba(255,255,255,0) 20%, 
                            rgba(255,255,255,0) 80%, 
                            rgba(255,255,255,0.1) 100%);
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.map-container:hover:after {
    opacity: 1;
}

#map {
    width: 100%;
    height: 100%;
    background: url('https://via.placeholder.com/1600x900') no-repeat center center;
    background-size: cover;
    position: relative;
    transition: transform 0.6s ease;
}

.map-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 3;
    display: flex;
    gap: 10px;
}

.map-control-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.map-control-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}


        @media (max-width: 992px) {
    .map-container {
        transform: perspective(1000px) rotateX(3deg);
    }
}

@media (max-width: 768px) {
    .map-section {
        margin: 40px auto;
    }
    
    .map-container {
        transform: none;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }
    
    .map-control-btn {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 480px) {
    .map-section {
        margin: 30px auto;
    }
    
    .map-controls {
        bottom: 15px;
        right: 15px;
    }
    
    .map-control-btn {
        width: 32px;
        height: 32px;
    }
}

@media (prefers-color-scheme: dark) {
    body {
        background-color: #121212;
        color: #f5f5f5;
    }
    
    .map-container {
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    }
    
    .map-control-btn {
        background: rgba(45, 45, 45, 0.9);
        color: white;
    }
}

        /* Map Section */
        /* .map-section {
            width: 100%;
            max-width: 1200px;
            margin-top: 60px;
        }

        .map-container {
            width: 100%;
            height: clamp(250px, 50vw, 400px);
            border-radius: 30px;
            overflow: hidden;
            position: relative;
            transform: perspective(1000px) rotateX(5deg);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            transition: all 0.5s ease;
            opacity: 1;
            transform: translateY(0);
        }

        .map-container:hover {
            transform: perspective(1000px) rotateX(0deg);
        }

        .map-container:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(0deg, rgba(0,0,0,0.2), rgba(0,0,0,0));
            z-index: 1;
            pointer-events: none;
        }

        #map {
            width: 100%;
            height: 100%;
            background: url('https://via.placeholder.com/800x400') no-repeat center center;
            background-size: cover;
        } */

        /* Responsive adjustments */
        /* @media (max-width: 768px) {
            .map-container {
                transform: none;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            }
        } */

/* Action Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--card-bg);
    border-radius: 20px;
    padding: clamp(30px, 5vw, 40px);
    width: 90%;
    max-width: 500px;
    text-align: center;
    position: relative;
    transform: scale(0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

.modal-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.5s ease;
}

.modal.active .modal-icon {
    animation: pulse 2s infinite;
}

.modal-icon i {
    font-size: 36px;
    color: var(--primary);
}
.modal-title {
    font-size: 24px;
    margin-bottom: 15px;
}

.modal-text {
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.7);
}

.modal-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.modal-btn {
    padding: 12px 25px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.modal-btn-primary {
    background: var(--primary);
    color: var(--dark);
    border: none;
}

.modal-btn-primary:hover {
    background: var(--primary-dark);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
}

.modal-btn-primary:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.modal-btn-primary:hover:before {
    width: 200%;
    height: 200%;
}

.modal-btn-secondary {
    background: transparent;
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.modal-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Success Message */
.success-message {
    position: fixed;
    top: 80px;
    right: -300px;
    background: rgba(25, 25, 25, 0.9);
    border-left: 4px solid var(--primary);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    z-index: 100;
    backdrop-filter: blur(10px);
    width: clamp(250px, 80%, 300px);
    color:whitesmoke;
}

.success-message.active {
    right: 30px;
    animation: shake 0.5s ease-in-out;
}
   /* Animations */
   @keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes gradient-move {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 300% 0%;
    }
}

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

@keyframes shake {
    0% { transform: translateX(0); }
    20% { transform: translateX(-10px); }
    40% { transform: translateX(10px); }
    60% { transform: translateX(-5px); }
    80% { transform: translateX(5px); }
    100% { transform: translateX(0); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-20px); }
    60% { transform: translateY(-10px); }
}

/* Floating Particles */
.particle {
    position: fixed;
    width: 3px;
    height: 3px;
    background:  #968e5e;;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    box-shadow: 0 0 10px var(--primary);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .contact-info {
        grid-column: span 5;
    }
    .contact-form-container {
        grid-column: span 7;
    }
}

@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .contact-info, .contact-form-container {
        grid-column: span 12;
    }
    .contact-form {
        padding: clamp(20px, 5vw, 30px);
    }
    .info-card {
        transform: translateX(0);
        margin-bottom: 15px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: auto;
        padding: 80px 0 40px;
    }
    .contact-section {
        margin-top: -30px;
    }
    .container {
        padding: 0 20px;
    }
    .modal-buttons {
        flex-direction: column;
    }
    .info-card {
        padding: 20px;
    }
    .info-card-icon {
        width: 50px;
        height: 50px;
    }
    .form-group input, 
    .form-group textarea {
        padding: 15px;
    }
    .form-group label {
        top: 15px;
    }

}

@media (max-width: 576px) {
    .contact-section {
        margin-top: -20px;
        padding: 30px 0;
    }
    .contact-form {
        padding: 20px;
        border-radius: 20px;
    }
    .modal-content {
        padding: 25px 15px;
    }
    .success-message.active {
        right: 15px;
        left: 15px;
        width: auto;
    }
    .submit-btn {
        padding: 12px 20px;
    }
}

@media (max-width: 480px) {
    .hero-subtitle {
        font-size: 0.9rem;
    }
    .info-card h3 {
        font-size: 18px;
    }
    .info-card p {
        font-size: 14px;
    }
    .modal-icon {
        width: 60px;
        height: 60px;
    }
    .modal-icon i {
        font-size: 28px;
    }
}

/* Added cursor trail effect */
.cursor-trail {
    position: fixed;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    pointer-events: none;
    z-index: 10000;
    mix-blend-mode: screen;
    transform: translate(-50%, -50%);
    transition: opacity 0.2s ease;
    box-shadow: 0 0 10px 2px rgba(255, 215, 0, 0.5);
    opacity: 0;
}

/* Glowing border effect */
.glow-border {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 999;
    box-shadow: inset 0 0 30px rgba(255, 215, 0, 0.2);
    opacity: 0;
    transition: opacity 1s ease;
}

.glow-border.active {
    opacity: 1;
}

h3{
    color:whitesmoke;
}




/* Loading overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loading-overlay.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 80px;
    height: 80px;
    border: 4px solid rgba(255, 215, 0, 0.2);
    border-top: 4px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

.loading-text {
    color: var(--primary);
    font-size: 18px;
    letter-spacing: 3px;
    animation: fadeInOut 2s infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}
