body {
    font-family: Roboto, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    background-color: #190d86;
    color: #fff;
    font-family: Roboto, Roboto-fallback, sans-serif;
    padding: 0.25rem 0;
    position: sticky;
    top: 0;
    z-index: 2;
}

header {
    background: #160d69;
    color: #fff;
    padding: 0.25rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}
header .logo {
    height: 120px;
    width: 180px;
    
}

header .container {
    display: flex;
    font-family: Roboto, Roboto-fallback, sans-serif;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-left: 60px;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 1rem;
    margin-right: 60px;
}

header nav ul li {
    margin: 0;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
}

/* About Us section styles */
#about {
    padding: 2rem 0;
    text-align: center;
    flex-grow: 1;
}

#about .container {
    max-width: 800px;
    margin: 0 auto;
}

#about h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #190d86;
}

.about-box {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    color: #333;
}

.about-box p {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}
.about-box ul {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}
/*Constulancy*/
.three-boxes {
    display: flex;
    justify-content: space-between;
    padding: 20px; /* Adjust padding as needed */
    margin-bottom: 40px; /* Adds space below the boxes to ensure they don't touch the footer */
}

.box1, .box2, .box3 {
    flex: 1;
    margin: 0 10px; /* Adds space between the boxes */
    padding: 20px; /* Adds padding inside each box */
    border: 1px solid #ddd; /* Optional border for better visual separation */
    border-radius: 8px; /* Optional border radius for rounded corners */
}

.box1img {
    width: 100%;
    height: 200px; /* Adjust height as needed */
    background-size: cover;
    background-position: center;
    border-radius: 8px; /* Optional border radius for the image */
}

.box-title {
    font-weight: 700;
    color: #190d86;
    font-family: 'Times New Roman', Times, serif;
    font-size: 1.25rem;
    margin-bottom: 10px; /* Adds space below the title */
}

.box-text {
    font-size: 1.05rem;
    color: black;
    font-family: 'Times New Roman', Times, serif;
}

/* Footer styles */
footer {
    background: #190d86;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    margin-top: auto;
}

footer .footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social-icons a {
    color: #fff;
    font-size: 1.5rem;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #04d9ff;
}
nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

nav ul li {
    float: left;
}

nav ul li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

nav ul li a:hover {
    background-color: #04d9ff;
}

nav ul li.dropdown {
    display: inline-block;
}

nav ul li.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #190d86;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content li {
    float: none;
}

.dropdown-content li a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content li a:hover {
    background-color: #04d9ff;
}
#gen-ai {
    padding: 20px 0;
}

#gen-ai .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

#gen-ai h2 {
    font-size: 2em;
    
}

#gen-ai p {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 20px;
    
    text-align: center;
}

#gen-ai ul {
    list-style-type: disc;
    padding-left: 0px;
    margin-bottom: 0px;
    
}
/* Responsive styles */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        align-items: flex-start;
    }

    header nav ul {
        flex-direction: column;
        gap: 0.5rem;
    }

    #about .container {
        padding: 1rem;
    }

    #about h2 {
        font-size: 2rem;
    }

    #about p {
        font-size: 1rem;
    }
}