body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f8ff;
    color: #333;
}
/* Header Section */
.head-container {
    min-height: auto;
    margin-bottom: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background-color: white;
    padding: 10px 0;
} 

/* Navigation */
 nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 100px;
}

nav .logo img {
    width: 120px;
    cursor: pointer;
    transition: all 0.5s;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

nav ul li {
    margin: 0 15px;
}
/* Make all nav links black first, then override the active one */
nav ul li a {
    color: black; /* Default to black */
    text-decoration: none;
    font-size: 18px;
    padding: 5px 10px;
    transition: background 0.3s;
}

nav ul li a.active {
    color: white; /* Keep "Images" in white (or adjust if needed) */
}

nav ul li a.active,
nav ul li a:hover {
    background: #33b5ed;
    border-radius: 5px;
}
.container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    width: 80%;
    max-width: 1200px;
    padding: 20px;
    justify-content: center;
    align-items: center;
    margin: auto;
}
h1{
    font-family: "Poppins", sans-serif;
    color: #252525;
    line-height: 1.3;
    font-size: 50px;
    font-weight: 600;
    text-align: center;
}


.card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 40px;
    text-align: center;
    transition: 0.3s;
    width: 350px;
    height: 250px;
}

.card:hover {
    transform: scale(1.05);
}

.card img {
    max-width: 150px;
    height: auto;
    margin-bottom: 10px;
}

.title {
    font-size: 1.8em;
    font-weight: bold;
    color: #333;
}
/*FOOTER*/
footer {
	color: #E5E8EF;
	background: #000D;
	padding: 50px 0; 
}
footer .footer-container {
	max-width: 1300px;
	margin: auto;
	padding: 0 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap-reverse;
}
footer .social-media img{
	width: 22px;
}
footer .logo {
	width: 180px;
	color: #fff;
}
footer .social-media a{
	margin-right: 10px;
	font-size: 22px;
	text-decoration: none;
}
footer .right-col h1{
	font-size: 26px;
}
footer .border{
	width: 100px;
	height: 4px;
	background: linear-gradient(to right, #33b5ed, #15749d);
	margin: 2px;
}
footer .newsletter-form {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}
footer input::placeholder {
  color: white !important;
}
footer .txtb {
	flex: 1;
	padding: 18px 40px;
	font-size: 16px;
	background: #343A40;
	border: none;
	font-weight: 700;
	outline: none;
	border-radius: 5px;
	min-width: 260px;
	margin-top: 20px;
	color: white;
}
footer .btn {
	margin-top: 20px;
	padding: 18px 40px;
	font-size: 16px;
	color: #f1f1f1;
	background: linear-gradient(to right, #33b5ed, #2788b2);
	border: none;
	font-weight: 700;
	outline: none;
	border-radius: 5px;
	margin-left: 20px;
	cursor: pointer;
	transition: opacity .3s linear;	
}
footer .btn:hover {
	opacity: .7;
}

/*PROPERTIES FOR MAKING WEBSITE RESPONSIVE*/
@media screen and (max-width: 960px) {
	.footer-container {
		max-width: 600px;
	}
	.right-col {
		width: 100%;
		margin-bottom: 60px;
	}
	.left-col {
		width: 100%;
		text-align: center;
	}
	.social-media {
		display: flex;
		justify-content: center;
	}}