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

html {
    scroll-behavior: smooth;
}


body {
    font-family: Arial, Helvetica, sans-serif;
    color: #222;
    line-height: 1.6;
}

/* FULL-SCREEN INTRO */
.intro-section {
    height: 100vh;                  /* Full viewport height */
    width: 100%;
    background-image: url("https://media2.giphy.com/media/v1.Y2lkPTc5MGI3NjExNHBkaGkzczV6c2d4cGVxczJ6Y3o0MnJ6dHAzZDVqYnJtMjhodmdzdCZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/ITRemFlr5tS39AzQUL/giphy.gif");
    color: white;
    display: flex;                  /* Center content */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;

}

.intro-section h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.intro-section p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.intro-section .btn {
    background: white;
    color: #4466cc;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.intro-section .btn:hover {
    background: #eef2ff;
}

/* NAVBAR */
.navbar {
    background: #16094a;
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 25px;
}

.navbar a {
    text-decoration: none;
    color: #fff;
    padding: 8px 15px;
    transition: 0.2s;
}

.navbar a:hover {
    color: #5a8dee;
}

.navbar a.active {
    color: #5a8dee;   /* Highlight color for current section */
    font-weight: bold;
    border-bottom: 2px solid #5a8dee; /* optional underline */
}


/* ABOUT */
.about {
    display: flex;
    justify-content: center;
    padding: 60px 20px 40px 20px;
    background: #250e82;
}

.about-section {
    max-width: 600px;
    text-align: center;
}

.about-photo {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.about-logos-photo {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    margin: 20px;
    margin-top: 60px; 
    background: #000;
}


.about-section h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #fff;
    border-bottom-width: 2px; 
    border-bottom-style: solid;
    text-decoration: underline;
}

.about-section p {
    font-size: 1rem;
    line-height: 1.6;
    color: #fff;
}

/* PROJECTS */

.projects {
    display: flex;
    justify-content: center;
    padding: 40px 20px 60px 20px;
    background: #250e82; 
}

.projects-section {
    max-width: 800px;
    text-align: center;
}

.projects-section h2{
    font-size: 2rem;
    margin-bottom: 15px;
    color: #fff;
    border-bottom-width: 2px; 
    border-bottom-style: solid;
    text-decoration: underline;
}

.projects-section p{
    font-size: 1rem;
    line-height: 1.6;
    color: #fff;   
}

.projects-section a{
    color: #2a6cff;
    text-decoration: none;
    font-weight: bold;   
}

.projects-section a:hover{
    text-decoration: underline;
}

.projects-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 25px;
    background-color: #fff; /* White background for table */
    color: #222;            /* Dark text */
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3); /* subtle shadow for contrast */
}

.projects-table th,
.projects-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.projects-table th {
    background-color: #f4f4f4;
    font-weight: bold;
    color: #333;
}

.projects-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.projects-table tr:hover {
    background-color: #e6f0ff; /* subtle hover effect */
}

.projects-table a {
    color: #2a6cff;
    text-decoration: none;
    font-weight: bold;
}

.projects-table a:hover {
    text-decoration: underline;
}





/* FOOTER */
.footer {
    background-color: #000;
    color: #ccc;
    text-align: center;
    padding: 40px 20px;
}

.footer-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 15px;
}

.footer-icon {
    width: 40px;
    height: 40px;
    filter: invert(100%); /* Makes icons white if they are black */
    transition: 0.2s;
}

.footer-icon:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

.footer-text {
    font-size: 0.85rem;
    color: #888;
}





