*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: "Jost", sans-serif;
	text-decoration: none;
	list-style: none;
}


:root{
	--bg-color: #ffffff;
	--text-color: #0f172a;
	--main-color: #000080;
	--other-color: #334155;
	--big-font: 4.3rem;
	--h2-font: 2.2rem;
	--p-font: 1rem;
}

body{
	color: var(--text-color);
	background: var(--bg-color);
}




header{
	position: fixed;
	right: 0;
	top: 0;
	width: 100%;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: transparent;
	padding: 20px 11%;
	background-color: #ffff;
	border-bottom: 2px solid #1111;
	transition: all .45s ease;

}

.logo img {
    width: 100%;
    height: auto;
}

.navbar{
	display: flex;

}
.navbar a {
		font-size:var(--p-font);
		color: var(--main-color);
		font-weight: 400;
		padding: 10px 25px;
		margin: 0 5px;
		background: transparent;
		border-radius: 30px;
		transition: all .45s ease;
	}

.navbar a:hover{
		background: #f7f9fb;
	}
.navbar a.active{
		background: #f7f9fb;
	}

.icons{
	display: flex;
	align-items: center;
}
.icons i {
		height: 50px;
		width: 50px;
		background: #f7f9fb;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		border-radius: 50%;
		color: var(--other-color);
		font-size: 22px;
		margin-right: 25px;
		margin-left: 10px;
		transition: all .45s ease;
	}

.icon i:hover{
	transform: scale(0.9);
}

#menu-icon{
	color: var(--other-color);
	font-size: 33px;
	z-index: 10001;
	cursor: pointer;
	display: none;
}


.home {
    height: 100vh;  /* Full viewport height */
    width: 100%;    /* Full width */
    display: grid;
    grid-template-columns: 1fr 1fr;  /* Two columns layout: Left side for text, Right side for the image */
    align-items: center;  /* Center the content vertically */
    position: relative;
}

.home-img {
    width: 100%;    /* Full width */
    height: 100%;    /* Increased height for a larger box */
    position: absolute;
    overflow: hidden;  /* Hide any overflow */
    z-index: 0;  /* Ensure the image stays below the text */
}

.home-img img {
    width: 100%;        /* Ensure the image spans the full width */
    height: 100%;       /* Ensure the image spans the full height */
    object-fit: cover;  /* Makes the image cover the area while maintaining its aspect ratio */
    object-position: center center; /* Centers the image */

}


.home-text {
    position: absolute;   /* Absolute positioning for the text */
    top: 40%;  /* Adjust the top position as needed */
    left: 5%;  /* Adjust the left position as needed */
    z-index: 1;  /* Ensure text is above the image */
    /* Set text color to white for better visibility */
}
.home-text h4{
	font-size: 20px;
	color: #babfc6; 
	margin-bottom: 40px;
}
.home-text h1{
	font-size: 35px;
	color: #ffff;
	line-height: 1.2;
	margin: 25px 0 45px;
}
.btn {
	font-size: 12px;
    color: black; /* Set text color to black */
    display: inline-block; /* To apply padding and border */
    padding: 10px 20px; /* Adjust padding to create space around text */
    border-radius: 20px; /* Rounded corners */
    background-color: white; /* White background */
    text-decoration: none; /* Remove underline */
	letter-spacing: 1px;
	margin-top: 40px;
	transition: all .45s ease;
}

.btn:hover{
	letter-spacing: 2.5px;
	opacity: 0.8;
}



section{
	padding: 100px 11% 90px;
}



header.sticky{
	background: var(--bg-color);
	padding: 22px 15%;
}

.middle-text h2{
	font-size: var(--h2-font);
	color: var(--text-color);
	font-weight: 600;
}
span{
	color: var(--main-color);
}

.feature-content{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, auto));
	gap: 2rem;
	align-items: center;
	margin-top: 5rem;
}


.row{
	padding: 40px 30px;
	background: #ffffff;
	border-radius: 20px;
	transition: all .45s ease;
	border: 2px solid #1111;
}

.main-row{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-around;
	gap: 2rem;
}

.row-img img {
    width: 170px;
    height: auto;
    max-width: 100%;
    transition: transform 0.45s ease; /* Add a smooth transition for scaling */
}

.row-img img:hover {
    transform: scale(1.2); /* Scale the image to 110% of its original size */
}

.row-text h6{
	font-size: 10px;
	font-weight: 500;
	color: #111;
	margin-bottom: 1rem;
}

.row-text h3{
	margin-bottom: 1rem;
	font-size: 20px;
	font-weight: 600;
}

.row-btn{
	font-size: 10px;
    color: white; /* Set text color to black */
    display: inline-block; /* To apply padding and border */
    padding: 10px 20px; /* Adjust padding to create space around text */
    border-radius: 20px; /* Rounded corners */
    background-color: var(--main-color); /* White background */
    text-decoration: none; /* Remove underline */
	letter-spacing: 1px;
	transition: all .45s ease;
}

.row-btn:hover{
	letter-spacing: 2px;
	color: var(--bg-color);
	background: black;
}

.seemore-btn{
	font-size: 18px;
    color: white; /* Set text color to black */
    display: inline-block; /* To apply padding and border */
    padding: 10px 20px; /* Adjust padding to create space around text */
    border-radius: 18px; /* Rounded corners */
    background-color: black; /* White background */
    text-decoration: none; /* Remove underline */
	letter-spacing: 1px;
	transition: all .45s ease;
}
.seemore-btn:hover{
	letter-spacing: 2px;
	color: var(--bg-color);
	background: var(--main-color);
}


.see-more {

    display: flex;
    justify-content: center;   /* Centers horizontally */
    align-items: center;       /* Centers vertically */

}


.cta {
	background: url(../../images/banner-1.png);
	height: 70vh;
	background-size: cover;
	background-position: center;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.cta-text{
	max-width: 560px;
	margin-left: 120px;
}

.cta-text .logo img{
	width: 100px;
	height: auto;
	margin-bottom: 4.5rem;
}
.cta-text h3{
	font-size: 2rem;
	line-height: 1.2;
	color: #e6e2e2;
	margin-bottom: 1.5rem;
}
.cta-text p{
	font-size: var(--p-font);
	color: #c1bbbb;
	font-size: 12px;
	font-weight:500;
	margin-bottom: 2.5rem;
}


.contact{
	padding: 50px 11% 40px;
}

.main-contact{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, auto));
	gap: 2rem;
	align-items: center;
}

.contact-content h5{
	font-size: 1.1rem;
	margin-bottom: 20px;
}
.contact-content li{
	margin-bottom: 12px;
}

.contact-content li a{
	display: block;
	font-size: 15px;
	color: #000080;
	font-weight: 400;
	transition: all .45s ease;
}
.contact-content li a:hover{
	color: var(--text-color);
	transform: translateX(-5px);
}




.contact-section {
    background: #f7f9fb;
    padding: 40px 20px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
    font-family: "Jost", sans-serif;
	margin-bottom: 50px;
}

.contact-section h2 {
    text-align: center;
    color: #0f172a;
    font-size: 2rem;
    margin-bottom: 10px;
}

.contact-section p {
    text-align: center;
    color: #334155;
    margin-bottom: 30px;
    font-size: 1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    font-size: 1rem;
    color: #0f172a;
    background: #fff;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #000080;
    background: #f1f5f9;
}

.contact-form button {
    padding: 15px;
    background: #000080;
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    background: #334155;
}

.contact-form .actions {
    display: flex;
    justify-content: space-between;
}

.contact-form button.reset {
    background: #e5e7eb;
    color: #0f172a;
}

.contact-form button.reset:hover {
    background: #cbd5e1;
}


.end-text p{
	text-align: center;
	padding: 20px;
	font-size: 14px;
	letter-spacing: 1px;
	color: var(--other-color);
}





/* FOR RESPONSIVENESS */


@media(max-width: 1400px){
	header{
		padding: 18px 3%;
	}

	section{
		padding: 80px 3% 70px;
	}
	.home{
		gap: 1rem;
	}
}

@media(max-width: 1515px){
	:root{
		--big-font: 3.3rem;
		--h2-font: 2rem;
	}
	header.sticky{
		padding: 18px 5%;
	}
}
@media(max-width: 1410px){
	.row-text h6{
		margin-bottom: 5px;
	}
	.row-text h3{
		margin-bottom: 1 rem;
	}

	.cta-text{
		margin-left: 55px;
	}

	.home{
		height: 90vh;
	}
}

@media(max-width: 1200px){
	#menu-icon{
		display: initial;
		height: 50px;
		width: 50px;
		background: #f7f9fb;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		border-radius: 50%;
		color: var(--other-color);
		font-size: 32px;
	}
	.navbar{
		position: absolute;
		top: 100%;
		right: -100%;
		width: 300px;
		height: 125vh;
		background-color: var(--bg-color);
		display: flex;
		flex-direction: column;
		align-items: center;
		padding: 13px 30px;
		transition: all .45s ease;
	}
	.navbar a{
		display: block;
		margin: 1.1rem 0;
	}
	.navbar.open{
		right: 0;
	}
}

@media(max-width: 940px){
	.home{
		grid-template-columns: 1fr;
		height: 117vh;
	}


	.icons i{
		margin-right: 15px;
		margin-left: 5px;
	}
	header.sticky{
		padding: 15px 5%;
	}
}

@media(max-width: 580px){
	:root{
		--big-font: 3rem;
		--h2-font: 1.8rem;
	}
	.cta-text{
		margin-left: 30px;
	}
	.cta-text h3{
		font-size: 2.4rem;
	}

	header.sticky{
		padding: 15px 3%;
	}
}

@media (min-width: 600px) {
    .contact-form .actions {
        flex-direction: row; /* Adjust for larger screens */
        justify-content: space-between;
    }
}

@media (max-width: 400px) {
    .contact-section {
        padding: 20px 10px;
    }

    .contact-section h2 {
        font-size: 1.5rem;
    }

    .contact-section p {
        font-size: 0.9rem;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 0.9rem;
        padding: 10px;
    }

    .contact-form button {
        font-size: 0.9rem;
        padding: 10px;
    }
}





