@import 'https://fonts.googleapis.com/css?family=Montserrat:300,400,700&display=swap';

:root {
	--primary: #d10000;
	--secondary: #000000;
	--accent: #ffcc00;
	--text: #333333;
	--light: #f8f8f8;
}

* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

html {
	font-size: 10px;
	font-family: 'Montserrat', sans-serif;
	scroll-behavior: smooth;
}

body {
	opacity: 0;
	animation: fadeIn 1s ease-in forwards;
	background-color: var(--light);
}

@keyframes fadeIn {
	to {
		opacity: 1;
	}
}

section {
	transform: translateY(20px);
	opacity: 0;
	transition: all 0.8s ease;
}

section.show {
	transform: translateY(0);
	opacity: 1;
}

a {
	text-decoration: none;
}

.container {
	min-height: 100vh;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}

p {
	color: var(--text);
	font-size: 1.4rem;
	margin-top: 5px;
	line-height: 2.5rem;
	font-weight: 300;
	letter-spacing: 0.05rem;
}

.section-title {
	font-size: 4rem;
	font-weight: 300;
	color: var(--text);
	margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: 0.2rem;
	text-align: center;
	position: relative;
	display: inline-block;
}

.section-title span {
	color: var(--primary);
}

.section-title::after {
	content: '';
	position: absolute;
	width: 50%;
	height: 3px;
	bottom: -10px;
	left: 25%;
	background-color: var(--primary);
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.5s ease;
}

section.show .section-title::after {
	transform: scaleX(1);
}

.cta {
	display: inline-block;
	padding: 10px 30px;
	color: white;
	background-color: transparent;
	border: 2px solid var(--primary);
	font-size: 2rem;
	text-transform: uppercase;
	letter-spacing: 0.1rem;
	margin-top: 30px;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.cta:hover {
	color: white;
	background-color: var(--primary);
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: 0.5s;
	z-index: -1;
}

.cta:hover::before {
	left: 100%;
}

.brand h1 {
	font-size: 3rem;
	text-transform: uppercase;
	color: white;
	transition: all 0.3s ease;
}

.brand h1:hover {
	text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.brand h1 span {
	color: var(--primary);
}

/* Header section */
#header {
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100vw;
	height: auto;
}

#header .header {
	min-height: 8vh;
	background-color: rgba(31, 30, 30, 0.24);
	transition: 0.3s ease background-color;
}

#header .nav-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 100%;
	max-width: 1300px;
	padding: 0 10px;
}

#header .nav-list ul {
	list-style: none;
	position: absolute;
	background-color: rgb(41, 50, 60);
	width: 100vw;
	height: 100vh;
	left: 100%;
	top: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	z-index: 1;
	overflow-x: hidden;
	transition: 0.5s ease left;
}

#header .nav-list ul.active {
	left: 0%;
}

#header .nav-list ul a {
	font-size: 2.5rem;
	font-weight: 500;
	letter-spacing: 0.2rem;
	text-decoration: none;
	color: white;
	text-transform: uppercase;
	padding: 20px;
	display: block;
	position: relative;
	transition: all 0.3s ease;
}

#header .nav-list ul a::before {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	bottom: 0;
	left: 0;
	background-color: var(--accent);
	transition: width 0.3s ease;
}

#header .nav-list ul a:hover::before {
	width: 100%;
}

#header .hamburger {
	height: 60px;
	width: 60px;
	display: inline-block;
	border: 3px solid white;
	border-radius: 50%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 100;
	cursor: pointer;
	transform: scale(0.8);
	margin-right: 20px;
	transition: all 0.3s ease;
}

#header .hamburger:hover {
	transform: scale(0.9) rotate(90deg);
	border-color: var(--accent);
}

#header .hamburger:after {
	position: absolute;
	content: '';
	height: 100%;
	width: 100%;
	border-radius: 50%;
	border: 3px solid white;
	animation: hamburger_puls 1s ease infinite;
}

#header .hamburger .bar {
	height: 2px;
	width: 30px;
	position: relative;
	background-color: white;
	z-index: -1;
	transition: all 0.3s ease;
}

#header .hamburger .bar::after,
#header .hamburger .bar::before {
	content: '';
	position: absolute;
	height: 100%;
	width: 100%;
	left: 0;
	background-color: white;
	transition: 0.3s ease;
	transition-property: top, bottom;
}

#header .hamburger .bar::after {
	top: 8px;
}

#header .hamburger .bar::before {
	bottom: 8px;
}

#header .hamburger.active .bar {
	background-color: transparent;
}

#header .hamburger.active .bar::before {
	bottom: 0;
	transform: rotate(45deg);
	background-color: var(--accent);
}

#header .hamburger.active .bar::after {
	top: 0;
	transform: rotate(-45deg);
	background-color: var(--accent);
}

/* Hero Section */
#hero {
	background-image: url(./img/Images/b1.jpg);
	background-size: cover;
	background-position: top center;
	position: relative;
	z-index: 1;
}

#hero::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-color: black;
	opacity: 0.6;
	z-index: -1;
}

#hero .hero {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 50px;
	justify-content: flex-start;
}

#hero h1 {
	display: block;
	width: fit-content;
	font-size: 4rem;
	position: relative;
	color: transparent;
	animation: text_reveal 0.5s ease forwards, float 3s ease-in-out infinite;
	animation-delay: calc(0.2s * var(--i));
}

#hero h1:nth-child(1) {
	animation-delay: 1s;
}

#hero h1:nth-child(2) {
	animation-delay: 2s;
}

#hero h1:nth-child(3) {
	animation: text_reveal_name 0.5s ease forwards, float 3s ease-in-out infinite;
	animation-delay: 3s;
}

#hero h1 span {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 0;
	background-color: var(--primary);
	animation: text_reveal_box 1s ease;
	animation-delay: 0.5s;
}

#hero h1:nth-child(1) span {
	animation-delay: 0.5s;
}

#hero h1:nth-child(2) span {
	animation-delay: 1.5s;
}

#hero h1:nth-child(3) span {
	animation-delay: 2.5s;
}

/* Gallery Section */
.gallery {
	text-align: center;
	margin: 20px;
	perspective: 1000px;
}

.gallery h2 {
	color: var(--primary);
	text-transform: uppercase;
	margin-bottom: 20px;
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 3px;
	padding: 10px;
}

.gallery-item {
	width: 100%;
	height: 270px;
	object-fit: cover;
	border: 0px solid #000000;
	border-radius: 0px;
	overflow: hidden;
	cursor: pointer;
	transition: all 0.5s ease;
	transform-style: preserve-3d;
	position: relative;
}

.gallery-item:hover {
	transform: rotateY(15deg) scale(1.05);
	z-index: 10;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.gallery-item::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
	opacity: 1;
}

.modal {
	display: none;
	position: fixed;
	z-index: 1000;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.9);
	justify-content: center;
	align-items: center;
	padding-left: 0; /* Adjusted for mobile */
	padding-top: 0; /* Adjusted for mobile */
	box-sizing: border-box;
}

.modal-content {
	max-width: 90%; /* Adjusted for mobile */
	max-height: 80%;
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.6);
	object-fit: contain;
	animation: zoomIn 0.3s ease-out;
}

@keyframes zoomIn {
	from {
		transform: scale(0.5);
		opacity: 0;
	}
	to {
		transform: scale(1);
		opacity: 1;
	}
}

.close {
	position: absolute;
	top: 15px;
	right: 25px;
	color: #fff;
	font-size: 40px;
	font-weight: bold;
	cursor: pointer;
	transition: color 0.3s ease, transform 0.3s ease;
}

.close:hover {
	color: var(--primary);
	transform: rotate(90deg);
}

.prev,
.next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	color: white;
	font-size: 30px;
	font-weight: bold;
	cursor: pointer;
	user-select: none;
	transition: all 0.3s ease;
	padding: 15px;
	background-color: rgba(0, 0, 0, 0.5);
	border-radius: 50%;
}

.prev {
	left: 20px;
}

.next {
	right: 20px;
}

.prev:hover,
.next:hover {
	color: var(--primary);
	background-color: rgba(0, 0, 0, 0.8);
	transform: translateY(-50%) scale(1.1);
}

/* Achievement section */
#projects {
	background-color: #f9f9f9;
}

#projects .projects {
	flex-direction: column;
	max-width: 1200px;
	margin: 0 auto;
	padding: 100px 0;
}

#projects .projects-header h1 {
	margin-bottom: 50px;
}

#projects .all-projects {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

#projects .project-item {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: 80%;
	margin: 20px auto;
	overflow: hidden;
	border-radius: 10px;
	transition: all 0.5s ease;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	position: relative;
}

#projects .project-item:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

#projects .project-info {
	padding: 30px;
	flex-basis: 50%;
	height: 100%;
	width: 100%; /* Ensure full width on mobile */
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;
	background-image: linear-gradient(60deg, #29323c 0%, #485563 100%);
	color: white;
	position: relative;
	overflow: hidden;
}

#projects .project-info::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
	transition: 0.5s;
}

#projects .project-item:hover .project-info::before {
	left: 100%;
}

#projects .project-info h1 {
	font-size: 4rem;
	font-weight: 500;
	transition: all 0.3s ease;
}

#projects .project-item:hover .project-info h1 {
	color: var(--accent);
}

#projects .project-info h2 {
	font-size: 1.8rem;
	font-weight: 500;
	margin-top: 10px;
}

#projects .project-info p {
	color: white;
}

#projects .project-img {
	flex-basis: 50%;
	height: 300px;
	width: 100%; /* Ensure full width on mobile */
	overflow: hidden;
	position: relative;
}

#projects .project-img:after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-image: linear-gradient(60deg, #29323c 0%, #485563 100%);
	opacity: 0.2;
}

#projects .project-img img {
	transition: 0.5s ease transform;
}

#projects .project-item:hover .project-img img {
	transform: scale(1.1);
}

/* About Section */
#about .about {
	flex-direction: column-reverse;
	text-align: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 100px 20px;
}

#about .col-left {
	width: 250px;
	height: 360px;
	transition: all 0.5s ease;
}

#about .col-right {
	width: 100%;
}

#about .col-right h2 {
	font-size: 1.8rem;
	font-weight: 500;
	letter-spacing: 0.2rem;
	margin-bottom: 10px;
}

#about .col-right p {
	margin-bottom: 20px;
}

#about .col-right .cta {
	color: black;
	margin-bottom: 50px;
	padding: 10px 20px;
	font-size: 2rem;
}

#about .col-left .about-img {
	height: 100%;
	width: 100%;
	position: relative;
	border: 10px solid white;
	transition: all 0.5s ease;
}

#about .col-left .about-img:hover {
	transform: scale(1.05);
}

#about .col-left .about-img::after {
	content: '';
	position: absolute;
	left: -33px;
	top: 19px;
	height: 98%;
	width: 98%;
	border: 7px solid var(--primary);
	z-index: -1;
	transition: all 0.5s ease;
}

#about:hover .col-left .about-img::after {
	border-color: var(--accent);
}

/* contact Section */
#contact .contact {
	flex-direction: column;
	max-width: 1200px;
	margin: 0 auto;
	width: 90%;
}

#contact .contact-items {
	width: 100%;
	display: flex; /* Added for alignment */
	flex-direction: column; /* Added for alignment */
	align-items: center; /* Added for alignment */
}

#contact .contact-item {
	width: 80%;
	padding: 20px;
	text-align: center;
	border-radius: 10px;
	padding: 30px;
	margin: 15px 0; /* Adjusted margin */
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	box-shadow: 0px 0px 18px 0 #0000002c;
	transition: all 0.5s ease;
	background-color: white;
}

#contact .contact-item:hover {
	box-shadow: 0px 0px 5px 0 #0000002c;
	transform: translateY(-10px);
}

#contact .icon {
	width: 70px;
	margin: 0 auto;
	margin-bottom: 10px;
	transition: all 0.3s ease;
}

#contact .contact-item:hover .icon {
	transform: scale(1.1);
}

#contact .contact-info h1 {
	font-size: 2.5rem;
	font-weight: 500;
	margin-bottom: 5px;
	color: var(--primary);
}

#contact .contact-info h2 {
	font-size: 1.3rem;
	line-height: 2rem;
	font-weight: 500;
}

/* Footer */
#footer {
	background-image: linear-gradient(60deg, #000000 0%, #000000 100%);
	position: relative;
	overflow: hidden;
}

#footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(../materials/bg1.jpg) center/cover no-repeat;
	opacity: 0.1;
	z-index: 0;
}

#footer .footer {
	min-height: 200px;
	flex-direction: column;
	padding-top: 50px;
	padding-bottom: 10px;
	position: relative;
	z-index: 1;
}

#footer h2 {
	color: white;
	font-weight: 500;
	font-size: 1.8rem;
	letter-spacing: 0.1rem;
	margin-top: 10px;
	margin-bottom: 10px;
	position: relative;
	display: inline-block;
}

#footer h2::after {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	bottom: -5px;
	left: 0;
	background-color: var(--accent);
	transition: width 0.3s ease;
}

#footer:hover h2::after {
	width: 100%;
}

#footer .social-icon {
	display: flex;
	margin-bottom: 30px;
}

#footer .social-item {
	height: 50px;
	width: 50px;
	margin: 0 5px;
	transition: all 0.5s ease;
}

#footer .social-item:hover {
	transform: translateY(-10px) rotate(10deg);
}

#footer .social-item img {
	filter: grayscale(1);
	transition: 0.3s ease filter;
}

#footer .social-item:hover img {
	filter: grayscale(0);
}

#footer p {
	color: white;
	font-size: 1.3rem;
	text-align: center; /* Center footer text */
	padding: 0 10px; /* Add padding */
}

/* Keyframes */
@keyframes hamburger_puls {
	0% {
		opacity: 1;
		transform: scale(1);
	}
	100% {
		opacity: 0;
		transform: scale(1.4);
	}
}

@keyframes text_reveal_box {
	50% {
		width: 100%;
		left: 0;
	}
	100% {
		width: 0;
		left: 100%;
	}
}

@keyframes text_reveal {
	100% {
		color: white;
	}
}

@keyframes text_reveal_name {
	100% {
		color: var(--accent);
		font-weight: 500;
	}
}

@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(238, 5, 5, 0.7);
	}
	70% {
		box-shadow: 0 0 0 15px rgba(209, 0, 0, 0);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(209, 0, 0, 0);
	}
}

/* Proudly Member Of Section */
#memberships {
	padding: 50px 20px;
	background-color: #f9f9f9;
	text-align: center;
}

.memberships-container .section-title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 50px;
}

.member-logos {
	display: flex;
	flex-wrap: wrap; /* Allow wrapping */
	justify-content: center; /* Center items */
	gap: 20px; /* Gap between logos */
	max-width: 1000px;
	margin: 0 auto;
}

.member-logos .logo-box {
	width: 120px;
	height: 80px; /* Give a fixed height */
	background-color: #f9f9f9;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px;
	border-radius: 8px;
	transition: transform 0.3s ease;
}

.member-logos .logo-box:hover {
	transform: scale(1.05);
}

.member-logos img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

/* General Styling & Button */
.button-container {
	text-align: center;
	margin-top: -40px; /* Keeps button position relative to section above */
	margin-bottom: 40px; /* Add space below button */
	padding: 0 20px;
}

.view-more-btn {
	display: inline-block;
	padding: 15px 40px;
	color: white;
	background-color: var(--primary);
	border: none;
	border-radius: 5px;
	font-size: 1.6rem;
	text-transform: uppercase;
	letter-spacing: 0.1rem;
	text-align: center;
	transition: background-color 0.3s ease, transform 0.3s ease;
}

.view-more-btn:hover {
	background-color: var(--accent);
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.service-top {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 85px;
}

#about .section-title::after {
	content: none !important;
}

#contact .title {
	margin-bottom: 26px;
}

#about {
	margin-bottom: 0;
	padding-bottom: 0;
}

/* Touch target improvements */
a,
button {
	min-height: 44px;
	min-width: 44px;
}

.cta {
	padding: 12px 25px;
}

/* Text overflow prevention */
h1, h2, h3, p {
	word-wrap: break-word;
	overflow-wrap: break-word;
}

.project-info h1,
.project-info p {
	max-width: 100%;
}

/* WhatsApp Floating Button */
.whatsapp-float {
	position: fixed;
	width: 60px;
	height: 60px;
	bottom: 40px;
	right: 40px;
	background-color: #25d366;
	color: #FFF;
	border-radius: 50px;
	text-align: center;
	font-size: 30px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	animation: pulse-whatsapp 2s infinite;
}

/* Pulse animation for WhatsApp */
@keyframes pulse-whatsapp {
	0% {
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
	}
	70% {
		box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
	}
}

/* =================================================================== */
/* MEDIA QUERIES 							 */
/* =================================================================== */

/* Media Query For Tablet */
@media only screen and (min-width: 768px) {
	.cta {
		font-size: 2.5rem;
		padding: 20px 60px;
	}
	h1.section-title {
		font-size: 6rem;
	}

	/* Hero */
	#hero h1 {
		font-size: 7rem;
	}

	/* Project */
	#projects .project-item {
		flex-direction: row;
	}
	#projects .project-item:nth-child(even) {
		flex-direction: row-reverse;
	}
	#projects .project-item {
		height: 400px;
		margin: 0;
		width: 100%;
		border-radius: 0;
	}
	#projects .all-projects .project-info {
		height: 100%;
	}
	#projects .all-projects .project-img {
		height: 100%;
	}

	/* About */
	#about .about {
		flex-direction: row;
	}
	#about .col-left {
		width: 600px;
		height: 400px;
		padding-left: 60px;
	}
	#about .about .col-left .about-img::after {
		left: -45px;
		top: 34px;
		height: 98%;
		width: 98%;
		border: 10px solid var(--primary);
	}
	#about .col-right {
		text-align: left;
		padding: 30px;
	}
	#about .col-right h1 {
		text-align: left;
	}

	/* contact */
	#contact .contact {
		padding: 100px 0;
		min-width: 20vh;
	}
	#contact .contact-items {
		width: 100%;
		display: flex;
		flex-direction: row;
		justify-content: space-evenly;
		margin: 0;
	}
	#contact .contact-item {
		width: 30%;
		margin: 0;
		flex-direction: row;
	}
	#contact .contact-item .icon {
		height: 100px;
		width: 100px;
	}
	#contact .contact-item .icon img {
		object-fit: contain;
	}
	#contact .contact-item .contact-info {
		width: 100%;
		text-align: left;
		padding-left: 20px;
	}
}

/* Media Query For Desktop */
@media only screen and (min-width: 1200px) {
	/* header */
	#header .hamburger {
		display: none;
	}
	#header .nav-list ul {
		position: initial;
		display: block;
		height: auto;
		width: fit-content;
		background-color: transparent;
	}
	#header .nav-list ul li {
		display: inline-block;
	}
	#header .nav-list ul li a {
		font-size: 1.8rem;
	}
	#header .nav-list ul a:after {
		display: none;
	}
}

/* ================================================= */
/* Mobile Responsive Styles (<767px) 		 */
/* ================================================= */
@media only screen and (max-width: 767px) {
	html {
		font-size: 8px;
	}

	.container {
		min-height: 50vh;
	}
	
	.section-title {
		font-size: 3rem;
	}
	
	#header .brand h1 {
		font-size: 2.2rem;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
		max-width: 220px; /* Adjust width */
	}
	
	#hero h1 {
		font-size: 3.5rem;
	}

	#hero .hero {
		padding: 0 20px;
	}
	
	#projects .project-item {
		width: 95%;
		flex-direction: column;
	}
	
	#projects .project-info {
		padding: 20px;
	}
	
	#projects .project-info h1 {
		font-size: 2.8rem;
	}
	
	#projects .project-img {
		height: 250px;
	}
	
	.gallery-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}
	
	.gallery-item {
		height: 180px;
	}
	
	.modal-content {
		max-width: 95%;
		max-height: 70%;
	}
	
	#about .about {
		padding: 50px 20px;
	}
	
	#about .col-left {
		width: 200px;
		height: 300px;
		margin: 0 auto 30px;
	}
	
	#about .col-left .about-img::after {
		left: -25px;
		top: 15px;
		border-width: 5px;
	}
	
	#contact .contact-item {
		width: 90%;
		margin: 15px auto;
		padding: 20px;
	}
	
	#contact .contact-info h1 {
		font-size: 2.2rem;
	}
	
	#contact .contact-info h2 {
		font-size: 1.4rem;
	}
	
	#footer .brand h1 {
		font-size: 2.5rem;
		text-align: center;
	}

	/* Member Logos */
	.member-logos {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 15px;
		justify-items: center;
		align-items: center;
	}

	.logo-box {
		width: 100px;
		height: 100px;
	}

	/* Buttons */
	.view-more-btn {
		padding: 12px 30px;
		font-size: 1.4rem;
	}
	.whatsapp-float {
		width: 50px;
		height: 50px;
		bottom: 20px;
		right: 20px;
	}
}

/* ================================================= */
/* Very Small Mobile Styles (< 480px) 			 */
/* ================================================= */
@media only screen and (max-width: 480px) {
	#header .brand h1 {
		font-size: 1.8rem;
		max-width: 180px;
	}

	#hero h1 {
		font-size: 2.8rem;
	}
	
	#header .nav-list ul a {
		font-size: 2rem;
		padding: 15px;
	}

	.gallery-grid {
		grid-template-columns: 1fr;
	}
	.gallery-item {
		height: 200px;
	}
	
	/* --- FIX: Changed member logos to 2 columns for better spacing --- */
	.member-logos {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}

	#memberships .section-title {
		font-size: 2rem; /* Adjusted from 1.5rem for better visibility */
	}

	.whatsapp-float {
		width: 45px;
		height: 45px;
		bottom: 15px;
		right: 15px;
	}
}