.thumbnail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Auto-adjust columns */
    gap: 20px; /* Space between items */
    max-width: 920px;
	background-color: #fff;
    margin: 0 auto;
}

.thumbnail-item {
    text-align: center; /* Center-align image and description */
}

.thumbnail {
    max-width: 200px;
	margin: 3px;
    width: 100%;
    height: auto; /* Preserve aspect ratio */
    cursor: pointer;
    border: 2px solid #ddd;
    border-radius: 4px;
    transition: transform 0.2s;
}

.thumbnail:hover {
    transform: scale(1.05);
    border-color: #aaa;
}

.thumbnail-description {
    font-size: 0.9em; /* Slightly smaller font */
    color: #555; /* Subtle color for descriptions */
    margin-top: 5px;
}


.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    overflow: auto;
    justify-content: center;
    align-items: center;
}

.modal-content {
    max-width: 80%;
    max-height: 80%;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
.custom-nav {
    max-width: 920px;
    margin: 0 auto; /* Center the nav on the page */
    display: flex;
    justify-content: space-between; /* Space out links evenly */
    padding: 10px;
}

.custom-nav a {
    text-decoration: none;
    color: black; /* Default link color */
    padding: 5px 10px;
    transition: background-color 0.3s ease; /* Smooth hover effect */
}

.custom-nav a:hover {
    background-color: white;
    color: black; /* Optional: maintain legibility */
    border-radius: 4px; /* Optional: rounded corners */
}


.slideshow-container {
    width: 920px;
    height: 210px;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
}

.slide {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 1s ease, opacity 1s ease;
    opacity: 0;
}

.slide.active {
    left: 0;
    opacity: 1;
    transform: translateX(0);
}

.slide.previous {
    left: -100%;
    transform: translateX(0);
    opacity: 0;
}
		
		
		

	
	
	
        .projects-section {
            max-width: 920px;
            margin: 0 auto;
            padding: 0px;
            /*background-color: #f9f9f9;*/
            border: 0px solid #ddd;
            border-radius: 8px;
        }

        .projects-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(275px, 1fr));
            gap: 20px;
        }

        .project {
            padding: 15px;
            background-color: #fff;
            border: 0px solid #ccc;
            border-radius: 8px;
           /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);*/
        }

        .project h3 {
            margin-top: 0;
            color: #333;
            font-size: 1.2em;
        }

        .project p {
            margin: 5px 0;
            color: #555;
        }

        .project strong {
            color: #000;
        }
	
	
	
	
	
	
	
		
		
		
		
		
		
		
		
        body {
            font-family: Arial, sans-serif;
            background-color: #a1bed6;
            margin: 0;
            padding: 0;
        }

        header {
            background-color: #a1bed6;
            padding: 10px 20px;
        }

        header h1 {
            margin: 0;
            font-size: 2em;
        }

        nav {
            display: flex;
            justify-content: space-around;
            margin: 10px 0;
        }

        nav a {
            text-decoration: none;
            color: #333;
            font-weight: bold;
        }

        .hero {
            text-align: center;
        }

        .hero img {
            width: 920px;
            max-height: 400px;
            object-fit: cover;
            padding: 0.4;
        }

        section {
            display: flex;
            justify-content: space-between;
            margin: 20px;
        }

        .about, .contact {
            width: 45%;
            background-color: #fff;
            padding: 20px;
            border-radius: 5px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        footer {
            background-color: #021957;
            color: #fff;
            text-align: center;
            padding: 10px 0;
            margin-top: 20px;
        }

        footer a {
            color: #fff;
            text-decoration: none;
            font-weight: bold;
        }
		

	
.page-header {
    max-width: 900px; /* Set maximum width */
    margin: 0 auto; /* Center the section horizontally */
    padding: 10px; /* Add some padding */
	background-color: #fff;
}		
	
	
	
.custom-section-header {
    max-width: 920px; /* Set maximum width */
    margin: 0 auto; /* Center the section horizontally */
    padding: 0px; /* Add some padding */
}	
		
.custom-section {
    max-width: 920px; /* Set maximum width */
    margin: 0 auto; /* Center the section horizontally */
    padding: 0px; /* Add some padding */
    background-color: #fff; /* Optional: Background color */
    border: 0px solid #ddd; /* Optional: Border for styling */
    border-radius: 0px; /* Optional: Rounded corners */
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0.1); /* Optional: Subtle shadow */
}	
		
.two-column-section {
    max-width: 920px; /* Set maximum width for the section */
    margin: 0 auto; /* Center the section on the page */
    display: flex; /* Enable flexbox for layout */
    gap: 0px; /* Add spacing between columns */
	 background-color: #fff; 
}

.column {
    flex: 1; /* Ensure both columns are equal in width */
    margin: 10px; /* Add padding inside each column */
    background-color: #fff; /* Optional: Background color for columns */
    border: 10px solid #fff; /* Optional: Border around each column */
    border-radius: 0px; /* Optional: Rounded corners for styling */
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0.1); /* Optional: Subtle shadow */
}

@media (max-width: 768px) {
    .two-column-section {
        flex-direction: column; /* Stack columns vertically on smaller screens */
    }
}