:root {
            --primary: #FF7700;
            --primary-light: #FF9838;
            --primary-dark: #E05D00;
            --dark: #1A1A2E;
            --darker: #0D0D15;
            --light: #F5F5F5;
            --gray: #7B7B8F;
        }

        /* Animated Neon Border Effects for KYC Navigation Item */

        .main-div1::before {
            content: '';
            position: absolute;
            top: -3px;
            left: -3px;
            right: -3px;
            bottom: -3px;
            background: linear-gradient(45deg, #ff6b3591, #f7921e86, #ffff018a, #d9ff0081, #83e22b88, #14ff20);
            background-size: 400% 400%;
            border-radius: 8px;
            z-index: -1;
            animation: neon-border 3s ease-in-out infinite, gradient-shift 4s ease-in-out infinite;
            filter: blur(1px);
        }

        .main-div1::after {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    background: linear-gradient(45deg, transparent, rgba(255, 107, 53, 0.3), transparent, rgba(0, 255, 255, 0.3), transparent);
    background-size: 200% 200%;
    border-radius: 10px;
    z-index: -2;
    animation: outer-glow 2s ease-in-out infinite alternate, gradient-shift 4s ease-in-out infinite;
    filter: blur(2px);
}

        @keyframes neon-border {
            0%, 100% {
                box-shadow: 
                    0 0 5px rgba(255, 107, 53, 0.8),
                    0 0 10px rgba(255, 107, 53, 0.6),
                    0 0 15px rgba(255, 107, 53, 0.4),
                    inset 0 0 5px rgba(255, 107, 53, 0.2);
            }
            25% {
                box-shadow: 
                    0 0 5px rgba(255, 255, 1, 0.8),
                    0 0 10px rgba(255, 255, 1, 0.6),
                    0 0 15px rgba(255, 255, 1, 0.4),
                    inset 0 0 5px rgba(255, 255, 1, 0.2);
            }
            50% {
                box-shadow: 
                    0 0 5px rgba(0, 255, 255, 0.8),
                    0 0 10px rgba(0, 255, 255, 0.6),
                    0 0 15px rgba(0, 255, 255, 0.4),
                    inset 0 0 5px rgba(0, 255, 255, 0.2);
            }
            75% {
                box-shadow: 
                    0 0 5px rgba(138, 43, 226, 0.8),
                    0 0 10px rgba(138, 43, 226, 0.6),
                    0 0 15px rgba(138, 43, 226, 0.4),
                    inset 0 0 5px rgba(138, 43, 226, 0.2);
            }
        }

        @keyframes gradient-shift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        @keyframes outer-glow {
            0% {
                opacity: 0.3;
                transform: scale(1);
            }
            100% {
                opacity: 0.7;
                transform: scale(1.05);
            }
        }

        /* Responsive neon effect sizing */
.main-div1 {
    position: relative;
    overflow: visible;
    display: inline-block;
    padding: 2px 4px;
}

.main-div1 a {
    position: relative;
    z-index: 1;
    white-space: nowrap;
}

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

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--darker);
            color: var(--light);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* Header & Navigation */
        header {
            background: rgba(13, 13, 21, 0.8);
            backdrop-filter: blur(10px);
            position: fixed;
            width: 100%;
            z-index: 1000;
            padding: 15px 0;
            border-bottom: 1px solid rgba(255, 119, 0, 0.2);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        /* Stats Section */
        .stats {
            background: linear-gradient(135deg, rgba(255, 119, 0, 0.1) 0%, rgba(0, 208, 255, 0.1) 100%);
            padding: 80px 0;
            text-align: center;
            margin-bottom: 20px;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
        }

        .stat-item {
            padding: 30px;
        }

        .stat-number {
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 15px;
            font-family: 'Rajdhani', sans-serif;
        }

        .stat-text {
            color: var(--light);
            font-size: 1.2rem;
            font-weight: 500;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo-icon {
            width: 67px;
            height: 67px;
            background: #ff77001c;
            border-radius: 10px;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-right: 12px;
            position: relative;
            overflow: hidden;
        }

        .logo-icon::before {
            content: '';
            position: absolute;
            width: 150%;
            height: 150%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            animation: shine 3s infinite linear;
        }

        @keyframes shine {
            0% {
                transform: translateX(-100%) rotate(45deg);
            }

            100% {
                transform: translateX(100%) rotate(45deg);
            }
        }

        .logo-text {
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
            font-size: 1.5rem;
            background: linear-gradient(to right, var(--primary), var(--primary-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* Mobile menu */
        .menu-toggle {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 21px;
            cursor: pointer;
        }

        .menu-toggle span {
            height: 3px;
            width: 100%;
            background-color: var(--light);
            border-radius: 3px;
            transition: all 0.3s;
        }

        /* Hamburger to X animation */
        .menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

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

        .menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 25px;
        }

        nav ul li a {
            color: var(--light);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
            font-size: 0.95rem;
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s;
        }

        nav ul li a:hover {
            color: var(--primary);
        }

        nav ul li a:hover::after {
            width: 100%;
        }

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

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background:
                radial-gradient(circle at 20% 30%, rgba(255, 119, 0, 0.15) 0%, transparent 20%),
                radial-gradient(circle at 80% 70%, rgba(255, 119, 0, 0.1) 0%, transparent 20%);
            z-index: -1;
        }

        .hero-content {
            max-width: 700px;
            z-index: 1;
        }

        .hero h1 {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.8rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero h1 span {
            background: linear-gradient(to right, var(--primary), var(--primary-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero p {
            font-size: 1.1rem;
            margin-bottom: 30px;
            color: var(--gray);
        }

        .btn {
            display: inline-block;
            padding: 14px 28px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            transition: transform 0.3s, box-shadow 0.3s;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 119, 0, 0.3);
        }

        .floating-shapes {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: -1;
        }

        .shape {
            position: absolute;
            border-radius: 50%;
            opacity: 0.3;
        }

        .shape-1 {
            width: 200px;
            height: 200px;
            background: var(--primary);
            top: 15%;
            right: 5%;
            animation: float 15s infinite ease-in-out;
        }

        .shape-2 {
            width: 120px;
            height: 120px;
            background: var(--primary-light);
            bottom: 20%;
            right: 20%;
            animation: float 12s infinite ease-in-out reverse;
        }

        .shape-3 {
            width: 160px;
            height: 160px;
            background: var(--primary-dark);
            bottom: 15%;
            left: 10%;
            animation: float 18s infinite ease-in-out;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0) rotate(0deg);
            }

            50% {
                transform: translateY(-20px) rotate(10deg);
            }
        }

        /* About Section */
        .about {
            padding: 80px 0;
            position: relative;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.2rem;
            margin-bottom: 15px;
        }

        .section-title h2 span {
            color: var(--primary);
        }

        .section-title p {
            color: var(--gray);
            max-width: 600px;
            margin: 0 auto;
            font-size: 1.05rem;
        }

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

        .about-text h3 {
            font-size: 1.6rem;
            margin-bottom: 20px;
            color: var(--primary-light);
        }

        .about-text p {
            margin-bottom: 15px;
            color: var(--gray);
            font-size: 1.05rem;
        }

        .about-image {
            position: relative;
            order: -1;
        }

        .hexagon {
            width: 300px;
            height: 340px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
            margin: 0 auto;
            position: relative;
            overflow: hidden;
        }

        .hexagon-inner {
            position: absolute;
            top: 5px;
            left: 5px;
            right: 5px;
            bottom: 5px;
            background: var(--dark);
            clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 25px;
        }

        .hexagon-content {
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100%;
        }

        .hexagon-logo {
            margin-bottom: 15px;
        }

        .hexagon-logo img {
            width: 30rem;
            height: 30rem;
            object-fit: contain;
            /* border-radius: 50%; */
            background: rgba(255, 255, 255, 0.1);
            padding: -20px;
            margin-top: 38px;
        }

        .hexagon-text {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .hexagon-content i {
            font-size: 3.2rem;
            color: var(--primary);
            margin-bottom: 20px;
        }

        .hexagon-content h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
        }

        .hexagon-content p {
            color: var(--gray);
            font-size: 0.95rem;
        }

        /* Focus Areas */
        .focus {
            padding: 80px 0;
            background: rgba(13, 13, 21, 0.5);
        }

        .focus-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 25px;
        }

        .focus-card {
            background: rgba(26, 26, 46, 0.6);
            border: 1px solid rgba(255, 119, 0, 0.2);
            border-radius: 15px;
            padding: 25px;
            transition: transform 0.3s, box-shadow 0.3s;
            position: relative;
            overflow: hidden;
        }

        .focus-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 0;
            background: var(--primary);
            transition: height 0.3s;
        }

        .focus-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
        }

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

        .focus-card i {
            font-size: 2.2rem;
            color: var(--primary);
            margin-bottom: 18px;
        }

        .focus-card h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
        }

        .focus-card p {
            color: var(--gray);
            font-size: 1rem;
        }

        /* Vision & Mission */
        .vision-mission {
            padding: 80px 0;
        }

        .vm-container {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .vm-card {
            background: rgba(26, 26, 46, 0.6);
            border-radius: 15px;
            padding: 30px;
            position: relative;
            overflow: hidden;
        }

        .vm-card h3 {
            font-size: 1.6rem;
            margin-bottom: 20px;
            color: var(--primary);
        }

        .vm-card p {
            color: var(--gray);
            margin-bottom: 15px;
            font-size: 1.05rem;
        }

        .vm-card ul {
            list-style: none;
            margin-top: 20px;
        }

        .vm-card ul li {
            margin-bottom: 10px;
            padding-left: 25px;
            position: relative;
            color: var(--gray);
            font-size: 1.05rem;
        }

        .vm-card ul li::before {
            content: '▸';
            color: var(--primary);
            position: absolute;
            left: 0;
        }

        /* Values */
        .values {
            padding: 80px 0;
            background: rgba(13, 13, 21, 0.5);
        }

        .values-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 25px;
        }

        .value-card {
            text-align: center;
            padding: 25px;
            background: rgba(26, 26, 46, 0.6);
            border-radius: 15px;
            transition: transform 0.3s;
        }

        .value-card:hover {
            transform: translateY(-8px);
        }

        .value-icon {
            width: 70px;
            height: 70px;
            background: rgba(255, 119, 0, 0.1);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 0 auto 20px;
        }

        .value-icon i {
            font-size: 1.8rem;
            color: var(--primary);
        }

        .value-card h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
        }

        .value-card p {
            color: var(--gray);
            font-size: 1rem;
        }

        /* Events Section - New Design */
        .events-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .event-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s;
            border: 1px solid rgba(255, 119, 0, 0.1);
        }

        .event-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 119, 0, 0.1);
            border-color: var(--primary);
            box-shadow: 0 20px 40px rgba(255, 119, 0, 0.2);
        }

        .event-image {
            height: 200px;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            color: white;
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

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

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

        .photo-overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 15px;
            border-radius: 50%;
            opacity: 0;
            transition: opacity 0.3s;
            font-size: 1.5rem;
        }

        .event-card:hover .photo-overlay {
            opacity: 1;
        }

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

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

        .event-overlay {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(0, 0, 0, 0.7);
            padding: 8px 15px;
            border-radius: 20px;
            backdrop-filter: blur(10px);
        }

        .event-date {
            color: var(--primary);
            font-weight: 600;
            font-size: 0.9rem;
        }

        .event-info {
            padding: 25px;
            margin-top: 20px;
        }

        .event-info h3 {
            color: var(--light);
            margin-bottom: 15px;
            font-size: 1.4rem;
            font-weight: 600;
        }

        .event-info p {
            color: var(--gray);
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .event-stats {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .event-stats span {
            color: var(--primary);
            font-size: 0.9rem;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .event-stats i {
            width: 16px;
            text-align: center;
        }

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

        .modal-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            max-width: 90%;
            max-height: 90%;
            animation: modalZoom 0.3s ease-out;
        }

        .modal-image {
            width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        }

        .modal-close {
            position: absolute;
            top: 20px;
            right: 30px;
            color: white;
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
            z-index: 10001;
            transition: color 0.3s;
        }

        .modal-close:hover {
            color: var(--primary);
        }

        @keyframes modalZoom {
             from {
                 transform: translate(-50%, -50%) scale(0.3);
                 opacity: 0;
             }
             to {
                 transform: translate(-50%, -50%) scale(1);
                 opacity: 1;
             }
         }

         /* Contact Section */
         .contact-section {
             padding: 80px 0;
             /* background: var(--dark); */
         }

         .contact-content {
             display: grid;
             grid-template-columns: 1fr 1fr;
             gap: 60px;
             margin-bottom: 60px;
         }

         .contact-info {
             display: flex;
             flex-direction: column;
             gap: 30px;
         }

         .contact-item {
             display: flex;
             align-items: flex-start;
             gap: 20px;
             padding: 25px;
             background: rgba(255, 255, 255, 0.05);
             border-radius: 15px;
             border: 1px solid rgba(255, 255, 255, 0.1);
             transition: all 0.3s;
         }

         .contact-item:hover {
             background: rgba(255, 255, 255, 0.08);
             border-color: var(--primary);
             transform: translateY(-5px);
         }

         .contact-icon {
             width: 50px;
             height: 50px;
             background: linear-gradient(135deg, var(--primary), var(--primary-light));
             border-radius: 50%;
             display: flex;
             align-items: center;
             justify-content: center;
             font-size: 1.2rem;
             color: white;
             flex-shrink: 0;
         }

         .contact-details h3 {
             font-size: 1.2rem;
             margin-bottom: 8px;
             color: white;
         }

         .contact-details p {
             color: var(--gray);
             line-height: 1.6;
         }

         .contact-form-container {
             background: rgba(255, 255, 255, 0.05);
             padding: 40px;
             border-radius: 20px;
             border: 1px solid rgba(255, 255, 255, 0.1);
         }

         .contact-form {
             display: flex;
             flex-direction: column;
             gap: 20px;
         }

         .form-group {
             position: relative;
         }

         .form-group input,
         .form-group textarea {
             width: 100%;
             padding: 15px 20px;
             background: rgba(255, 255, 255, 0.1);
             border: 1px solid rgba(255, 255, 255, 0.2);
             border-radius: 10px;
             color: white;
             font-size: 1rem;
             transition: all 0.3s;
         }

         .form-group input:focus,
         .form-group textarea:focus {
             outline: none;
             border-color: var(--primary);
             background: rgba(255, 255, 255, 0.15);
             box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
         }

         .form-group input::placeholder,
         .form-group textarea::placeholder {
             color: var(--gray);
         }

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

         .btn-primary {
             background: linear-gradient(135deg, var(--primary), var(--primary-light));
             color: white;
             border: none;
             padding: 15px 30px;
             border-radius: 10px;
             font-size: 1.1rem;
             font-weight: 600;
             cursor: pointer;
             transition: all 0.3s;
             text-transform: uppercase;
             letter-spacing: 1px;
         }

         .btn-primary:hover {
             transform: translateY(-2px);
             box-shadow: 0 10px 30px rgba(52, 152, 219, 0.3);
         }

         .map-container {
             margin-top: 40px;
         }

         .map-wrapper {
             border-radius: 20px;
             overflow: hidden;
             box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
             border: 1px solid rgba(255, 255, 255, 0.1);
         }

         .map-wrapper iframe {
             filter: grayscale(20%) contrast(1.2);
             transition: filter 0.3s;
         }

         .map-wrapper:hover iframe {
             filter: grayscale(0%) contrast(1);
         }

        /* CTA Section */
        .cta {
            padding: 80px 0;
            text-align: center;
            background: linear-gradient(135deg, rgba(255, 119, 0, 0.1) 0%, rgba(13, 13, 21, 0.8) 100%);
        }

        .cta h2 {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.2rem;
            margin-bottom: 20px;
        }

        .cta p {
            color: var(--gray);
            max-width: 600px;
            margin: 0 auto 30px;
            font-size: 1.05rem;
        }

        /* Footer */
        footer {
            background: var(--dark);
            padding: 50px 0 25px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 35px;
            margin-bottom: 35px;
        }

        .footer-logo {
            margin-bottom: 20px;
        }

        .footer-about p {
            color: var(--gray);
            margin-bottom: 20px;
            font-size: 1.05rem;
        }

        .footer-heading {
            font-size: 1.2rem;
            margin-bottom: 20px;
            color: var(--light);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: var(--gray);
            text-decoration: none;
            transition: color 0.3s;
            font-size: 1.05rem;
        }

        .footer-links a:hover {
            color: var(--primary);
        }

        .social-links {
            display: flex;
            gap: 12px;
            margin-top: 20px;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: var(--light);
            text-decoration: none;
            transition: background 0.3s, transform 0.3s;
        }

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

        .copyright {
            text-align: center;
            padding-top: 25px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--gray);
            font-size: 0.95rem;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s, transform 0.8s;
        }

        .animate.animated {
            opacity: 1;
            transform: translateY(0);
        }

        /* Tablet Styles */
        @media (min-width: 768px) {
            .hero h1 {
                font-size: 3.2rem;
            }

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

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

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

            .shape-1 {
                width: 250px;
                height: 250px;
            }

            .shape-2 {
                width: 150px;
                height: 150px;
            }

            .shape-3 {
                width: 200px;
                height: 200px;
            }

            .hexagon-logo img {
                padding: 20px;
            }
        }

        /* Desktop Styles */
        @media (min-width: 992px) {
            .about-content {
                grid-template-columns: 1fr 1fr;
            }

            .about-image {
                order: 1;
            }

            .focus-grid {
                grid-template-columns: repeat(4, 1fr);
            }

            .vm-container {
                grid-template-columns: 1fr 1fr;
            }

            .values-grid {
                grid-template-columns: repeat(4, 1fr);
            }

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

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

            .hexagon {
                width: 380px;
                height: 430px;
            }

            .hexagon-content i {
                font-size: 4rem;
            }
        }

        /* Large Desktop Styles */
        @media (min-width: 1200px) {
            .container {
                padding: 0;
            }

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

            .shape-1 {
                width: 300px;
                height: 300px;
                right: 10%;
            }

            .shape-2 {
                right: 30%;
            }

            .shape-3 {
                left: 20%;
            }
        }

        /* Mobile Navigation */
        @media (max-width: 768px) {
            .menu-toggle {
                display: flex;
            }

            nav {
                position: fixed;
                top: 100px;
                left: -100%;
                width: 80%;
                height: calc(100vh - 70px);
                background: var(--darker);
                border-right: 1px solid rgba(255, 119, 0, 0.2);
                transition: left 0.3s;
                z-index: 999;
            }

            nav.active {
                left: 0;
            }

            nav ul {
                flex-direction: column;
                padding: 30px;
            }

            nav ul li {
                margin: 0 0 25px 0;
            }

            nav ul li a {
                font-size: 1.1rem;
            }

            /* Adjust KYC neon animation for mobile */
            .main-div1::before {
                top: -2px;
                left: -2px;
                right: -2px;
                bottom: -2px;
                border-radius: 6px;
                animation-duration: 4s;
                filter: blur(0.5px);
            }

            .main-div1::after {
                top: -3px;
                left: -3px;
                right: -3px;
                bottom: -3px;
                border-radius: 6px;
                animation: outer-glow 3s ease-in-out infinite alternate, gradient-shift 5s ease-in-out infinite;
                filter: blur(1px);
            }

            .main-div1 {
                padding: 1px 2px;
                font-size: 0.9rem;
            }

            .main-div1 a {
                font-size: inherit;
            }

            @keyframes neon-border {
                0%, 100% {
                    box-shadow: 
                        0 0 3px rgba(255, 107, 53, 0.6),
                        0 0 6px rgba(255, 107, 53, 0.4),
                        0 0 9px rgba(255, 107, 53, 0.2);
                }
                25% {
                    box-shadow: 
                        0 0 3px rgba(255, 255, 1, 0.6),
                        0 0 6px rgba(255, 255, 1, 0.4),
                        0 0 9px rgba(255, 255, 1, 0.2);
                }
                50% {
                    box-shadow: 
                        0 0 3px rgba(0, 255, 255, 0.6),
                        0 0 6px rgba(0, 255, 255, 0.4),
                        0 0 9px rgba(0, 255, 255, 0.2);
                }
                75% {
                    box-shadow: 
                        0 0 3px rgba(138, 43, 226, 0.6),
                        0 0 6px rgba(138, 43, 226, 0.4),
                        0 0 9px rgba(138, 43, 226, 0.2);
                }
            }

            .events-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .event-card {
                margin: 0 10px;
            }

            .event-image {
                height: 150px;
                font-size: 3rem;
            }

            .event-info {
                padding: 20px;
            }

            .event-stats {
                gap: 6px;
            }

            .hexagon-logo img {
                padding: 43px;
            }

            .contact-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .contact-form-container {
                padding: 25px;
            }

            .contact-item {
                padding: 20px;
            }

            .contact-icon {
                width: 45px;
                height: 45px;
                font-size: 1.1rem;
            }

            .map-container {
                margin-top: 30px;
            }

            .map-wrapper iframe {
                height: 300px;
            }
        }
