/* General Styles */
*{
    font-family: "Poppins", serif !important;
}
body {
    font-family: "Poppins", serif !important;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}


input:active,
input:focus,
textarea:active,
textarea:focus,
button:active,
button:focus,
.btn:active,
.btn:focus,
select:active,
select:focus,
.page-link:active,
.page-link:focus {
	outline: none !important;
	box-shadow: none !important;
	border: none !important;
}


/* Navigation */
nav .nav-link {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
    
}
nav .nav-link:hover {
    color: #ffcc00;
}
nav .active {
    color: #ffcc00 !important;
}
.logo{
    width: 180px;
    /* height: 50px; */
    /* object-fit: cover; */
}

/* Header */
.header {
    background: linear-gradient(135deg, #00264d, #ffcc00);
    color: white;
    text-align: center;
    padding: 200px 0px;
    
}

.header h1 {
    font-size: 2.5em;
}

.header p {
    font-size: 1.2em;
    margin: 20px 0;
}
p{
    margin: 0;
}

.cta-button {
    background: #00264d;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1em;
}

.cta-button:hover {
    background: #005fa3;
}

/* Sections */
section {
    padding: 50px 0px;
    /* background: #f9f9f9; */
}
.services-section{
    padding: 120px 0px 120px 0px;
  background: linear-gradient(180deg, rgba(154, 223, 255, 0.2) 0%, rgba(0, 0, 59, 0.2) 156.73%), #00003B !important;
}
section:nth-child(even) {
    background: #ffffff;
}

section h2 {
    
    color: #00264d;
    margin-bottom: 20px;
}

section .card{
    height: 100%;
}

/* Testimonials */
#testimonial-box {
    text-align: center;
    font-style: italic;
    margin-top: 20px;
}

#testimonial-author {
    font-weight: bold;
    margin-top: 10px;
}

/* Back to Top Button */
#back-to-top {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #00264d;
    color: white;
    border: none;
    border-radius: 50%;
    padding: 10px 15px;
    font-size: 1.2em;
    cursor: pointer;
}

#back-to-top:hover {
    background: #005fa3;
}
@media (max-width: 768px) {
	.logo{
        width: 100px;
    }
    .header h1 {
        font-size: 2em;
    }
    .header{
        padding: 100px 0px;
    }
    section .card{
        height: 100%;
    }
    .footer-paragraph{
        text-align: center !important;
    }
}