/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
}

/* Navbar Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;

}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 45px;
    width: 53px;
    margin-right: 5px;
}

.logo h1 {
    font-size: 24px;
    color: #5a2f1c;
    margin: 0;
}

.logo p {
    font-size: 14px;
    color: #cc4444;
    margin: 0;
}

/* Menu Styles */
nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
}

nav ul li a:hover {
    color: #cc4444;
}

/* Hamburger Menu (Three Lines) */
.menu-icon {
    display: none;
    cursor: pointer;
    position: absolute;
    right: 20px; /* Aligns hamburger to the right side of the screen */
    z-index: 3;
}

.menu-icon div {
    width: 30px;
    height: 4px;
    background-color: #333;
    margin: 6px 0;
    transition: 0.4s;
}

/* Hidden Menu for Small Screens */
nav ul {
    display: flex;
}

.hidden {
    display: none;
}

/* Hamburger Menu Display (100% Height) */
nav ul.visible {
    background-color: rgba(0, 0, 0, 0.8); /* Light black background with transparency */
    flex-direction: column;
    align-items: center;
    position: fixed;
    top: 0;
    right: 0;
    height: 100%; /* Set height to 100% */
    width: 100%; /* Full width */
    z-index: 2;
    padding-top: 30px; /* Reduced padding to push items closer to the top */
}

nav ul.visible li {
    margin: 10px 0; /* Reduced margin between menu items */
}

nav ul.visible li a {
    color: #fff;
    font-size: 24px;
    text-align: center;
    width: 100%;
}

/* Main Content Styles */
.main-content {
    text-align: center;
    padding: 50px;
    background-image: url('img/main-bg.jpeg'); /* Add your background image */
    background-size: cover; /* Cover the entire area */
    background-position: center; /* Center the image */
    min-height: 50vh; /* Increased minimum height to 80% of the viewport height */
    color: white; /* Text color for contrast against the background */
}

.main-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.main-content p {
    font-size: 20px;
    margin-bottom: 40px;
}

.apply-button {
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    background-color: #007bff;
    border-radius: 5px;
    text-decoration: none;
}

.apply-button:hover {
    background-color: #0056b3;
}

/* Media Query for Small Screens */
@media (max-width: 768px) {
    nav ul {
        display: none; /* Hide menu by default on small screens */
        flex-direction: column;
        align-items: center;
        position: fixed;
        top: 0;
        right: 0;
        height: 100%; /* Hamburger menu with 100% height */
        width: 100%; /* Full width for menu */
        z-index: 2; /* Above the blur */
    }

    nav ul.visible {
        display: flex; /* Show menu when 'visible' class is added */
        background-color: rgba(0, 0, 0, 0.8); /* Light black background with transparency */
    }

    nav ul li {
        margin: 10px 0; /* Reduced margin between menu items */
    }

    nav ul li a {
        color: #fff; /* White text on light black background */
        font-size: 24px;
        text-align: center; /* Center-align text */
        width: 100%;
    }

    .menu-icon {
        display: block;
        z-index: 3; /* Ensure the icon is above the menu */
        right: 20px; /* Align hamburger to the right side */
    }

    /* Change hamburger icon color to white when menu is visible */
    .menu-icon.active div {
        background-color: #fff; /* White color when active */
    }

    .menu-icon.active div:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .menu-icon.active div:nth-child(2) {
        opacity: 0;
    }

    .menu-icon.active div:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}
.intern h2 {
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
}
.container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.card {
    background-color: white;
    width: 250px;
    padding: 20px;
    margin: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.about{
    display: none;
}
.about-title{
    text-align: center;
}
.profile {
    background-color:transparent;
    width: 250px;
    padding: 20px;
    margin: 10px;
    border-radius: 8px;
    text-align: center;
}
.about-team{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
.card img {
    width: 130px;
    height: 130px;
    margin-bottom: 10px;
}

.card h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.card p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

 .apply-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.apply-button:hover {
    background-color: #e6e6e6;
}
.community-section {
    width: 100%;
    text-align: center;
    background-color: #e1e1e1;
    color: rgb(0, 0, 0);
    padding: 50px 20px;
    
}

.community-section h2 {
    margin-bottom: 30px;
    font-size: 32px;
}

.community-stats {
    display: flex;
    justify-content: space-around;
}

.stat {
    text-align: center;
}

.stat h2 {
    font-size: 48px;
    margin-bottom: 10px;
}

.stat p {
    font-size: 16px;
}
.whoweare{
margin:20px;
}
.services-section {
    text-align: center;
    padding: 5px 0;
}

.services-title {
    font-size: 2.5em;
    color: #34495e;
}

.services-subtitle {
    color: #7f8c8d;
    margin-bottom: 40px;
}

.services-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 0 10px;
}

.service-box {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 250px;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
}

.service .icon img {
hight:150px;
    width: 130px;
    margin-bottom: 15px;
}

.service h3 {
    color: #2c3e50;
    font-size: 1.5em;
    margin-bottom: 0px;
}

.service p {
    color: #7f8c8d;
    font-size: 0.9em;
    margin-bottom: 20px;
}

.more-button {
    display: inline-block;
    padding: 10px 10px;
    background-color: #3498db;
    color: #ffffff;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.9em;
}

.more-button:hover {
    background-color: #2980b9;
}
