* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

 body {
    background: linear-gradient(135deg, #091627 50%, #02111e 100%);
    color: #c7d5e0;
    min-height: 100vh;
    line-height: 1.6;
}

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

.text-center {
    margin-left: 20%;
    font-size: 15px;
}

.navbar {
            background: linear-gradient(90deg, #171a21 0%, #1b2838 100%);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid #66c0f4;
            border-bottom-left-radius: 50px;
            border-bottom-right-radius: 50px;
        }
        
        .navbar-box {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            max-height: 10vh;
        }
        
        .logo h1 {
            color: #66c0f4;
            font-size: 28px;
            font-weight: 700;
            text-shadow: 0 0 10px rgba(102, 192, 244, 0.3);
            letter-spacing: 1px;
        }
        
        .menu nav ul {
            display: flex;
            list-style: none;
            align-items: center;
        }
        
        .menu nav ul li {
            margin-left: 25px;
            position: relative;
        }
        
        .menu nav ul li a {
            color: #c7d5e0;
            text-decoration: none;
            font-weight: 500;
            padding: 8px 15px;
            border-radius: 4px;
            transition: all 0.3s ease;
            display: block;
        }
        
        .menu nav ul li a:hover {
            background-color: rgba(102, 192, 244, 0.2);
            color: #66c0f4;
        }
        
        /* Dropdown Styles */
        .dropdown {
            position: relative;
        }
        
        .dropdown-content {
            display: none;
            position: absolute;
            background-color: #1b2838;
            min-width: 180px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
            border-radius: 4px;
            border: 1px solid #66c0f4;
            z-index: 1;
            top: 100%;
            left: 0;
            overflow: hidden;
        }
        
        .dropdown-content li {
            margin: 0;
        }
        
        .dropdown-content li a {
            padding: 12px 16px;
            border-bottom: 1px solid rgba(102, 192, 244, 0.1);
        }
        
        .dropdown-content li:last-child a {
            border-bottom: none;
        }
        
        .dropdown:hover .dropdown-content {
            display: block;
        }

.Content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}


img {
    max-width: 1000px;
    max-height: 500px;
    border-radius: 50px;
}

.container-1 {
    max-width: 40%;
    margin: 100px;
}        

.container-2 {
    max-width: 40%;
    margin: 100px;
}

.container-3 {
    max-width: 40%;
    margin: 100px;
}
.container-4 {
    max-width: 40%;
    margin: 100px;
}


.small-img {
    background: rgba(27, 40, 56, 0.7);
    display: flex;
    border-radius: 8px;
    text-align: center;
    justify-content: space-evenly;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: -120vh;
}
        
.small-img:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}


b {
    margin: 30px;
    font-size: 15px;
}

.side-image {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 5vh;
    top: -800px;
    margin-left: 120vh;
    margin-top: 200px;
    background: rgba(27, 40, 56, 0.7);
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
    margin-right: 120px;
    align-items: center;
}

.images-2 {
    margin: 20px;
    max-width: 300px;
    max-height: 300px;
}