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

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

    body {
        font-family: 'Poppins', sans-serif;
        background: linear-gradient(45deg, #0a0a0a, #1a1a1a);
        color: #fff;
        min-height: 100vh;
    }

    #particles-js {
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: #000000;
        z-index: -1;
    }

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

    header {
        display: flex;
        justify-content: flex-end; /* Keeps the logo and nav-links at opposite ends */
        align-items: center;
        padding: 20px 0;
        z-index: 1;
    }

    .nav-links {
        display: flex;
        list-style: none;
        margin-left: 0;
    }

    .nav-links li {
        margin-left: 30px;
    }

    .nav-links a {
        color: #fff;
        text-decoration: none;
        font-size: 16px;
        font-weight: 500;
    }

    .nav-links a.active {
        color: #00f0ff;
    }

    .about {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100vh;
        padding: 50px 0;
        text-align: center;
    }

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

    .highlight {
        color: #00f0ff;
    }

    .about-content h1 {
        font-size: 48px;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .about-content p {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    .hero {
        display: flex;
        align-items: center;   /* Vertically centers content */
        justify-content: center; /* Horizontally centers content */
        min-height: 100vh; /* Takes the full height of the viewport */
        position: relative;
    }
    
    .hero-content {
        text-align: center; /* Centers the text */
    }
    
    .hero-content h1{
        text-align: center;
        font-size: 50px;
    }

    .hero-content h2 {
        text-align: center;
        font-size: 30px;
    }

    .hero-content h4 {
        text-align: center;
        font-size: 30px;
    }

    .highlight {
        color: #00f0ff;
    }

    .hero-content p {
        font-size: 42px;
        line-height: 2.6;
        margin-bottom: 30px;
    }

.grid-item {
    background-color: #050505;
    border: 1px solid rgba(0, 0, 0, 0.6);
    background: #1a1a1a;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 4px 4px 4px #00f0ff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.icon-link {
    color: rgb(255, 255, 255);
    font-size: 1.5em;
    text-decoration: none;
    display: inline-block;
    margin: 20px;
}

.icon-link:hover {
    color: #00a2ff;
}

.social-icons {
    display: flex;
    gap: 10px;
}

    .btn {
        display: inline-block;
        padding: 12px 30px;
        background-color: #00f0ff;
        color: #000;
        text-decoration: none;
        border-radius: 30px;
        font-weight: 600;
        transition: background-color 0.3s;
    }

    .btn:hover {
        background-color: #00d4e0;
    }

    .hero-image {
        position: absolute;
        top: 35%;
        left: 70%;
        position: relative;
        width: 400px;
        height: 400px;
    }

    .hexagon {
        position: absolute;
        top: 35%;
        left: -5%;
        width: 100%;
        height: 100%;
        background-color: #00f0ff;
        clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
        animation: glow 2s infinite alternate;
    }

    /* General Styles remain the same */
    .tiles {
        display: flex;
        gap: 30px;
        padding: 50px 0;
        justify-content: center;  /* Center the tiles horizontally */
        align-items: center;      /* Center the tiles vertically */
        min-height: 100vh;        /* Ensures the section takes up the full viewport height */
    }

    .tile {
        flex: 1;
        max-width: 500px;        /* Set a max-width for better control */
        background: #1a1a1a;
        padding: 40px;
        border-radius: 15px;
        box-shadow: 4px 4px 4px #00f0ff;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .about-tile, .additional-tile,tile contact {
        text-align: center;
    }

    .highlight {
        color: #00f0ff;
    }

    .tile h1 {
        font-size: 36px;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .tile p {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    @keyframes glow {
        from {
            box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
        }
        to {
            box-shadow: 0 0 40px rgba(0, 240, 255, 0.8);
        }
    }

    .hero-image img {
        position: absolute;
        top: 75%;
        left: 48%;
        transform: translate(-50%, -50%);
        width: 110%;
        height: 110%;
        object-fit: cover;
        clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    }

    /* Animation for hero content */
    .hero-content {
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 1s forwards;
        animation-delay: 0.5s;
    }

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

    /* Animation for hero image */
    .hero-image {
        opacity: 0;
        transform: scale(0.9);
        animation: fadeInScale 1s forwards;
        animation-delay: 0.7s;
    }

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

    /* Hover effect for social icons */
    .social-icons {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 20px;
    }

    .social-icons a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        background-color: #333;
        border-radius: 50%;
        color: #fff;
        font-size: 20px;
        text-decoration: none;
        transition: background-color 0.3s;
    }

    .social-icons a:hover {
        background-color: #00f0ff;
    }



    /* Responsive Design */
    @media (max-width: 1200px) {
        .hero {
            padding: 3rem 5rem;
        }
    }

    @media (max-width: 768px) {
        .hero {
            flex-direction: column;
            text-align: center;
        }

        .hero-content {
            margin-bottom: 3rem;
        }

        .hero-image {
            width: 100%;
        }

        .hexagon {
            width: 200px;
            height: 200px;
        }

        .hexagon::before {
            width: 250px;
            height: 250px;
        }

        .image img {
            width: 280px;
            height: 280px;
        }

        .image {
            top: -40px; /* Adjust positioning for mobile */
            left: -20px;
        }
    }

    @media (max-width: 768px) {
        .tiles {
            flex-direction: column;
        }

        .tile {
            max-width: 100%;     /* Allow tiles to expand fully on smaller screens */
        }
    }
    
/* Hide the hero image on small screens */
@media (max-width: 768px) {
    .hero-image {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .hero-image {
        margin-top: 20px;
    }

    .hero-content h1,
    .hero-content h2,
    .hero-content h3 {
        text-align: center;
    }

    .hero-content .btn {
        margin-top: 20px;
    }
}




