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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #0a0a0a;
            color: #fff;
            overflow-x: hidden;
        }

        /* .nav-bar {
            position: fixed;
            top: 30px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 50px;
            padding: 15px 40px;
            z-index: 1000;
            display: flex;
            gap: 40px;
            align-items: center;
        }

        .nav-bar a {
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
        }

        .nav-bar a:hover {
            color: #00f7ff;
        }

        .nav-bar .logo {
            font-weight: 700;
            font-size: 22px;
            background: linear-gradient(135deg, #00f7ff, #ff00ea);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-right: 20px;
        } */

       /* Base nav-bar styles */
.nav-bar {
  position: fixed;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 15px 35px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 40px;
  justify-content: space-between;
  margin-top: auto;
  /* justify-content: space-around;  */
}

/* Logo styling */
.nav-bar .logo {
  font-weight: 700;
  font-size: 22px;
  background: linear-gradient(135deg, #00f7ff, #ff7377);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Links */
.nav-links {
  display: flex;
  gap: 30px;
  
}

 .nav-bar a {
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
             justify-content: center !important; 
        }

        .nav-bar a:hover {
            color: #00f7ff;
        }

/* Hamburger menu hidden by default */
.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: #fff;
}

/* Button styling */
.register-btn {
  background: linear-gradient(135deg, #00f7ff, #ff7377);
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  text-align: center;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.register-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .nav-bar {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 20px;
    gap: 10px;
    border-radius: 20px;
  }

  .hamburger {
    display: block;
  }

  .nav-links {
    display: none; /* 🔒 Hidden by default */
    flex-direction: column;
    width: 100%;
    gap: 15px;
    
  }

  .nav-links.active {
    display: flex; /* ✅ Only visible when toggled */
  }
}







        .hero-services {
            height: 70vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .gradient-orb {
            position: absolute;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            filter: blur(100px);
            opacity: 0.3;
            animation: orbit 15s infinite ease-in-out;
        }

        .orb-1 {
            background: radial-gradient(circle, #00f7ff, transparent);
            top: -200px;
            left: -200px;
        }

        .orb-2 {
            background: radial-gradient(circle, #ff7377, transparent);
            bottom: -200px;
            right: -200px;
            animation-delay: -7s;
        }

        @keyframes orbit {
            0%, 100% {
                transform: translate(0, 0) scale(1);
            }
            50% {
                transform: translate(50px, -50px) scale(1.2);
            }
        }

        .hero-content {
            position: relative;
            z-index: 1;
            text-align: center;
            max-width: 900px;
            padding: 0 20px;
        }

        .hero-services h1 {
            font-size: 70px;
            font-weight: 900;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #fff 0%, #00f7ff 50%, #ff7377 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: fadeInUp 1s ease-out;
        }

        .hero-services p {
            font-size: 22px;
            color: #b0b0b0;
            animation: fadeInUp 1s ease-out 0.2s both;
        }

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

        .services-main {
            padding: 100px 20px;
            background: linear-gradient(180deg, #0a0a0a 0%, #0f0f1a 100%);
            position: relative;
        }

        .services-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .service-box {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 25px;
            padding: 40px;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            align-items: flex-start;
            gap: 30px;
        }

        .service-left {
            display: flex;
            flex-direction: column;
            align-items: center;
            min-width: 120px;
        }

        .service-content {
            flex: 1;
        }

        .service-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0, 247, 255, 0.1), rgba(			56, 0, 1));
            opacity: 0;
            transition: opacity 0.5s;
        }

        .service-box:hover::before {
            opacity: 1;
        }

        .service-box:hover {
            transform: translateY(-15px) scale(1.02);
            border-color: rgba(0, 247, 255, 0.5);
            box-shadow: 0 25px 50px rgba(0, 247, 255, 0.2);
        }

        .service-icon-wrapper {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, rgba(0, 247, 255, 0.2), rgba(255, 0, 234, 0.2));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            font-size: 40px;
            position: relative;
            z-index: 1;
            transition: all 0.5s;
        }

        .service-box:hover .service-icon-wrapper {
            transform: rotate(10deg) scale(1.1);
            background: linear-gradient(135deg, rgba(0, 247, 255, 0.4), rgba(	255, 115, 119));
        }

        .service-number {
            font-size: 50px;
            font-weight: 900;
            background: linear-gradient(135deg, #00f7ff, #ff7377);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            opacity: 0.2;
            transition: all 0.5s;
            margin-top: 10px;
        }

        .service-box:hover .service-number {
            opacity: 0.4;
            transform: scale(1.1);
        }

        .service-title {
            font-size: 26px;
            font-weight: 700;
            margin-bottom: 15px;
            color: #fff;
            position: relative;
            z-index: 1;
        }

        .service-description {
            font-size: 15px;
            line-height: 1.7;
            color: #b0b0b0;
            position: relative;
            z-index: 1;
            margin-bottom: 20px;
        }

        .service-features {
            list-style: none;
            margin-top: 20px;
            position: relative;
            z-index: 1;
        }

        .service-features li {
            padding: 8px 0;
            color: #888;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .service-features li::before {
            content: '✓';
            color: #00f7ff;
            font-weight: 700;
            font-size: 16px;
        }

        .service-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-top: 20px;
            color: #00f7ff;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            position: relative;
            z-index: 1;
            transition: all 0.3s;
        }

        .service-link:hover {
            gap: 15px;
            color: #ff7377;
        }

        .cta-banner {
            margin: 80px auto;
            max-width: 1200px;
            background: linear-gradient(135deg, rgba(0, 247, 255, 0.1), rgba(	56, 0, 1));
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 30px;
            padding: 60px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-banner::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.03), transparent);
            animation: shine 3s infinite;
        }

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

        .cta-banner h2 {
            font-size: 50px;
            font-weight: 900;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #fff, #00f7ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            position: relative;
            z-index: 1;
        }

        .cta-banner p {
            font-size: 18px;
            color: #b0b0b0;
            margin-bottom: 30px;
            position: relative;
            z-index: 1;
        }

        .cta-button {
            display: inline-block;
            padding: 18px 45px;
            background: linear-gradient(135deg, #00f7ff, #ff7377);
            color: #fff;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 16px;
            transition: all 0.3s;
            position: relative;
            z-index: 1;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 40px rgba(0, 247, 255, 0.3);
        }

        @media (max-width: 768px) {
            .hero-services h1 {
                font-size: 45px;
            }
            /* .nav-bar {
                flex-wrap: wrap;
                gap: 20px;
                padding: 15px 20px;
            } */
            .service-box {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            .service-left {
                flex-direction: row;
                gap: 20px;
            }
            .cta-banner h2 {
                font-size: 35px;
            }
        }


          /* Popup Modal Styles */
    .popup-modal, .register-modal {
       
        display: none; 
        position: fixed; 
        z-index: 1001;
        left: 0;
        top: 0;
        width: 100%; 
        height: 100%; 
        overflow: auto;
        background-color: rgba(0,0,0,0.8); 
        backdrop-filter: blur(5px);
        align-items: center; 
        justify-content: center; 
    }

   
    .popup-modal.active, .register-modal.active {
        display: flex;
    }


    .popup-modal-content, .register-modal-content {
        background: #1a1a2e;
        margin: auto;
        padding: 40px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        width: 90%;
        max-width: 500px;
        position: relative;
        box-shadow: 0 10px 30px rgba(0, 247, 255, 0.2);
        animation: fadeInScale 0.3s ease-out;
    }

    @keyframes fadeInScale {
        from {
            opacity: 0;
            transform: scale(0.95);
        }
        to {
            opacity: 1;
            transform: scale(1);
        }
    }

    .close-button {
        color: #aaa;
        position: absolute;
        top: 15px;
        right: 25px;
        font-size: 35px;
        font-weight: bold;
        cursor: pointer;
        transition: color 0.3s ease;
    }

    .close-button:hover,
    .close-button:focus {
        color: #00f7ff;
        text-decoration: none;
    }

    .popup-modal-content h2, .register-modal-content h2 {
        text-align: center;
        margin-bottom: 30px;
        font-size: 32px;
        background: linear-gradient(135deg, #00f7ff, #ff7377);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group label {
        display: block;
        margin-bottom: 8px;
        color: #b0b0b0;
        font-size: 15px;
    }

    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group input[type="tel"] {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        background-color: #0f0f1a;
        color: #fff;
        font-size: 16px;
        transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }

    .form-group input[type="text"]:focus,
    .form-group input[type="email"]:focus,
    .form-group input[type="tel"]:focus {
        border-color: #00f7ff;
        outline: none;
        box-shadow: 0 0 10px rgba(0, 247, 255, 0.3);
    }

    .checkbox-group {
        display: flex;
        align-items: center;
        margin-bottom: 25px;
    }

    .checkbox-group input[type="checkbox"] {
        margin-right: 10px;
        accent-color: #00f7ff; 
        width: 18px;
        height: 18px;
    }

    .checkbox-group label {
        color: #b0b0b0;
        font-size: 14px;
        cursor: pointer;
    }

    .submit-button {
        width: 100%;
        padding: 15px;
        background: linear-gradient(135deg, #00f7ff, #ff7377);
        color: #fff;
        border: none;
        border-radius: 50px;
        font-size: 18px;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .submit-button:hover {
        opacity: 0.9;
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(0, 247, 255, 0.3);
    }

    /* Responsive Styles for Popup & Register Modals */
@media (max-width: 600px) {
    .popup-modal-content,
    .register-modal-content {
        padding: 25px;
        border-radius: 15px;
        width: 95%;
        max-width: 90%;
    }

    .popup-modal-content h2,
    .register-modal-content h2 {
        font-size: 24px;
    }

    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group input[type="tel"] {
        font-size: 14px;
        padding: 10px 12px;
    }

    .submit-button {
        padding: 12px;
        font-size: 16px;
    }

    .close-button {
        font-size: 28px;
        top: 10px;
        right: 15px;
    }

    .checkbox-group label {
        font-size: 13px;
    }
}


/* ===== FOOTER STYLES ===== */
.main-footer {
    background: linear-gradient(180deg, #0a0a0a 0%, #0f0f1a 100%);
    padding: 80px 20px 30px;
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 247, 255, 0.5), transparent);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.footer-col h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
    display: inline-block;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #00f7ff, #ff7377);
    border-radius: 2px;
}

/* Footer Logo */
.footer-logo {
    font-weight: 700;
    font-size: 28px;
    background: linear-gradient(135deg, #00f7ff, #ff7377);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.footer-about p {
    color: #b0b0b0;
    line-height: 1.7;
    font-size: 15px;
}

/* Footer Links */
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #00f7ff;
    transform: translateX(5px);
}

/* Contact Info */
.contact-info {
    margin-bottom: 15px;
}

.contact-info p {
    color: #b0b0b0;
    font-size: 15px;
    margin-bottom: 8px;
}

.contact-info a {
    color: #00f7ff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #ff7377;
}

/* Address Text */
.address-text {
    color: #b0b0b0;
    line-height: 1.7;
    font-size: 14px;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: #888;
    font-size: 14px;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b0b0b0;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: linear-gradient(135deg, #00f7ff, #ff7377);
    border-color: transparent;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 247, 255, 0.3);
}

/* Responsive Footer */
@media (max-width: 768px) {
    .main-footer {
        padding: 60px 20px 30px;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-col h4 {
        font-size: 18px;
    }

    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-logo {
        font-size: 24px;
    }

    .social-icons a {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}



























 .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .gradient-bg {
            position: absolute;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 50%, rgba(0, 247, 255, 0.15), transparent 50%),
                        radial-gradient(circle at 80% 50%, rgba(56, 0, 1), transparent 50%);
            animation: pulse 8s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.6; }
        }

        .hero-content {
            position: relative;
            z-index: 1;
            text-align: center;
            max-width: 1200px;
            padding: 0 20px;
        }

        .hero h1 {
            font-size: 80px;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 30px;
            background: linear-gradient(135deg, #fff 0%, #00f7ff 50%, #ff7377 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: slideUp 1s ease-out;
        }

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

        .hero p {
            font-size: 24px;
            color: #b0b0b0;
            margin-bottom: 50px;
            animation: slideUp 1s ease-out 0.2s both;
        }

        .cta-button {
            display: inline-block;
            padding: 20px 50px;
            background: linear-gradient(135deg, #00f7ff, #ff7377);
            color: #fff;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 18px;
            transition: all 0.3s;
            animation: slideUp 1s ease-out 0.4s both;
            position: relative;
            overflow: hidden;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 40px rgba(0, 247, 255, 0.3);
        }

        .stats-section {
            padding: 120px 20px;
            background: linear-gradient(180deg, #0a0a0a 0%, #1a0a1a 100%);
        }

        .stats-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }

        .stat-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 50px 30px;
            text-align: center;
            transition: all 0.3s;
        }

        .stat-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(0, 247, 255, 0.3);
        }

        .stat-number {
            font-size: 60px;
            font-weight: 900;
            background: linear-gradient(135deg, #00f7ff, #ff7377);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 15px;
        }

        .stat-label {
            font-size: 18px;
            color: #b0b0b0;
        }

        .services-section {
            padding: 120px 20px;
            background: #0a0a0a;
        }

        .section-title {
            text-align: center;
            font-size: 60px;
            font-weight: 900;
            margin-bottom: 80px;
            background: linear-gradient(135deg, #fff, #00f7ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .services-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: linear-gradient(135deg, rgba(0, 247, 255, 0.05), rgba(255, 0, 234, 0.05));
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 30px;
            padding: 50px;
            transition: all 0.4s;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, #00f7ff, #ff7377);
            transform: scaleX(0);
            transition: transform 0.4s;
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-card:hover {
            transform: translateY(-10px);
            border-color: rgba(0, 247, 255, 0.3);
        }

        .service-icon {
            font-size: 50px;
            margin-bottom: 25px;
        }

        .service-title {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 20px;
            color: #fff;
        }

        .service-desc {
            font-size: 16px;
            line-height: 1.7;
            color: #b0b0b0;
        }

        .process-section {
            padding: 120px 20px;
            background: linear-gradient(180deg, #0a0a0a 0%, #1a1a2e 100%);
        }

        .process-timeline {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
        }

        .timeline-item {
            display: flex;
            gap: 40px;
            margin-bottom: 60px;
            align-items: center;
        }

        .timeline-number {
            font-size: 80px;
            font-weight: 900;
            background: linear-gradient(135deg, #00f7ff, #ff7377);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            min-width: 120px;
        }

        .timeline-content {
            flex: 1;
            background: rgba(255, 255, 255, 0.03);
            border-left: 3px solid #00f7ff;
            padding: 30px;
            border-radius: 15px;
        }

        .timeline-title {
            font-size: 26px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .timeline-desc {
            color: #b0b0b0;
            line-height: 1.7;
        }

        .cta-section {
            padding: 150px 20px;
            text-align: center;
            background: radial-gradient(circle at center, rgba(0, 247, 255, 0.1), transparent 70%);
        }

        .cta-section h2 {
            font-size: 70px;
            font-weight: 900;
            margin-bottom: 30px;
            background: linear-gradient(135deg, #fff, #00f7ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .cta-section p {
            font-size: 22px;
            color: #b0b0b0;
            margin-bottom: 50px;
        }

        .contact-grid {
            max-width: 800px;
            margin: 50px auto 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
        }

        .contact-item {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 30px;
            transition: all 0.3s;
        }

        .contact-item:hover {
            border-color: #00f7ff;
            transform: scale(1.05);
        }

        .contact-icon {
            font-size: 40px;
            margin-bottom: 15px;
        }

        .contact-label {
            font-size: 14px;
            color: #888;
            margin-bottom: 5px;
        }

        .contact-value {
            font-size: 16px;
            font-weight: 600;
            color: #00f7ff;
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 50px;
            }
            .nav-bar {
                flex-wrap: wrap;
                gap: 20px;
            }
            .section-title {
                font-size: 40px;
            }
            .timeline-item {
                flex-direction: column;
                text-align: center;
            }
        }