



/* Second Nav */

.SecondNav{
    position: fixed; /* Initially positioned below the first nav */
    height: 75px; /* Fixes the height of the nav to 75 pixels */
    width: 85%;
    background-color:  #0ecc9d; /* Changes the background color to light blue with high priority */
    display: flex; /* in a horzontal line */
    gap: 25rem;
    justify-content: center;
    padding: 0.5vw 6.81vw; /* Adds spacing inside the nav: smaller padding top and bottom, larger on left and right */
    align-items: center; /* Centers items vertically in the nav */
    box-shadow: 2px 2px 16px rgba(248, 89, 89, 0.15); /* Adds a shadow for depth with a light opacity */
    z-index: 1000; /* Nothing will be overlapped */
    top: 0px; 
    border-radius: 1rem;
}

    .SecondNav.fixed {
        position: fixed;
        top: 0;
    }
   
.SecondNav img {
    width: 60px; /* Force this width to be applied */
    height:auto; /* Maintain aspect ratio */
}

.SecondNav .items ul {
    display: flex;
    gap: 1rem;
   
}

.SecondNav .items ul li {
    list-style: none;
    
}

.SecondNav .items ul li a {
    display: inline-block; /* Allows padding and border to be added around text */
    padding: 8px 16px; /* Adds padding inside the box */
    text-decoration: none;
    color: rgb(1, 1, 14); /* Text color */
    font-size: 20px; /* Font size */
    font-weight: 600;
    transition: all 0.3s ease; /* Smooth transition */
    border: 2px solid transparent; /* Initially transparent border */
    border-radius: 8px; /* Rounds the corners */
}

.SecondNav .items ul li a.active, 
.SecondNav .items ul li a:hover {
    color: rgb(33, 34, 28); /* Hover text color */
    background-color: rgba(68, 0, 255, 0.1); /* Light background color on hover */
    border: 2px solid rgb(66, 59, 129); /* Border on hover */
}
/* Contact Us page */

                                    
.contact-section {
    padding: 50px 20px;
    text-align: center;
    background-color: #f4f7fb;
}

.contact-container h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #000305;
}

.contact-container p {
    font-size: 1.2rem;
    margin-top: 20px;
    margin-bottom: 40px;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); /* Why */
    gap: 30px;
    justify-items: center;
    padding: 0 20px;
}

.contact-card {
    background-color: #7cb662;
    padding: 30px;
    border-radius: 40px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.contact-card i {
    font-size: 3rem;
    color: #005fa3;
    margin-bottom: 15px;
}

.contact-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #333;
}

.contact-card p {
    font-size: 1.2rem;
}

.contact-card a {
    text-decoration: none;
    color: #005fa3;
    font-weight: bold;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: #ff6600;
}

.cta-container {
    margin-top: 50px;
    background-color: #005fa3;
    color: white;
    padding: 30px 20px;
    border-radius: 8px;
}

.cta-container p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.cta-button {
    background-color: #ff6600;
    color: white;
    padding: 15px 30px;
    font-size: 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #e65c00;
}


/* Footer */

footer {
    padding: 6vw;
    background-color: #002753;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    display: flex;
    flex-direction: row;
}

footer .footer-col {
    padding-bottom: 40px;
    
}

footer h3 {
    color: white;
    font-weight: 600;
    padding-bottom: 20px;
}

footer li{
    list-style: none;
    color: gray;
    padding: 10px 0;
    font-size: 15px;
    cursor: pointer;
    transition: 00.3s ease;
}


footer li:hover{
    color: white;
}

.Copyright {
    width: 100%;
    text-align: center;
    margin-top: auto;
    margin-bottom: 10px; /* Adjust this value to control how far down it goes */
    color: white;
}


.prolinks i {
    color: white;
    padding: 0 10px;
    cursor: pointer;
}

footer .Subscribe {
    margin-top: 20px;
}

footer input {
    width: 220px;
    padding: 15px 12px;
    background: rgb(91, 91, 201);
    border: none;
    outline: none;
    color: white;
}

footer .subscribe a{
    text-decoration: none;
    font-size: 0.9rem;
    padding: 13px 40px;
    background-color:white;
    font-weight: 600;
    border-radius: 5px;
}


footer .subscribe a.yellow{
    color: rgb(0, 0, 0);
    background: rgb(177, 177, 40);
    transition: 0.3s ease;
}

footer .subscribe a.yellow:hover{
    color: rgb(255, 94, 0);
    background: white;
}

.footer-col p{
    color:gray;
}

.subscribe input::placeholder {
    color: rgb(229, 229, 243);
    font-weight: 500;
    font-size: 0.9rem;
}


/* Footer */

footer {
    padding: 6vw;
    background-color: #002753;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    display: flex;
    flex-direction: row;
}

footer .footer-col {
    padding-bottom: 40px;
    
}

footer h3 {
    color: white;
    font-weight: 600;
    padding-bottom: 20px;
}

footer li, .Anchor{
    list-style: none;
    color: gray;
    padding: 10px 0;
    font-size: 15px;
    cursor: pointer;
    transition: 00.3s ease;
    text-decoration: none;
}


footer li:hover , .Anchor:hover {
    color: white;
}

.Copyright {
    width: 100%;
    text-align: center;
    margin-top: auto;
    margin-bottom: 10px; /* Adjust this value to control how far down it goes */
    color: white;
}


.prolinks i {
    color: white;
    padding: 0 10px;
    cursor: pointer;
}

footer .Subscribe {
    margin-top: 20px;
}

footer input {
    width: 220px;
    padding: 15px 12px;
    background: rgb(91, 91, 201);
    border: none;
    outline: none;
    color: white;
}

footer .subscribe a{
    text-decoration: none;
    font-size: 0.9rem;
    padding: 13px 40px;
    background-color:white;
    font-weight: 600;
    border-radius: 5px;
}


footer .subscribe a.yellow{
    color: rgb(0, 0, 0);
    background: rgb(177, 177, 40);
    transition: 0.3s ease;
}

footer .subscribe a.yellow:hover{
    color: rgb(255, 94, 0);
    background: white;
}

.footer-col p{
    color:gray;
}


.subscribe input::placeholder {
    color: rgb(229, 229, 243);
    font-weight: 500;
    font-size: 0.9rem;
}

/* Footer */

footer {
    padding: 6vw;
    background-color: #002753;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    display: flex;
    flex-direction: row;
}

footer .footer-col {
    padding-bottom: 40px;
    
}

footer h3 {
    color: white;
    font-weight: 600;
    padding-bottom: 20px;
}

footer li{
    list-style: none;
    color: gray;
    padding: 10px 0;
    font-size: 15px;
    cursor: pointer;
    transition: 00.3s ease;
}


footer li:hover{
    color: white;
}

.Copyright {
    width: 100%;
    text-align: center;
    margin-top: auto;
    margin-bottom: 10px; /* Adjust this value to control how far down it goes */
    color: white;
}


.prolinks i {
    color: white;
    padding: 0 10px;
    cursor: pointer;
}

footer .Subscribe {
    margin-top: 20px;
}

footer input {
    width: 220px;
    padding: 15px 12px;
    background: rgb(91, 91, 201);
    border: none;
    outline: none;
    color: white;
}

footer .subscribe a{
    text-decoration: none;
    font-size: 0.9rem;
    padding: 13px 40px;
    background-color:white;
    font-weight: 600;
    border-radius: 5px;
}


footer .subscribe a.yellow{
    color: rgb(0, 0, 0);
    background: rgb(177, 177, 40);
    transition: 0.3s ease;
}

footer .subscribe a.yellow:hover{
    color: rgb(255, 94, 0);
    background: white;
}

.footer-col p{
    color:gray;
}

.subscribe input::placeholder {
    color: rgb(229, 229, 243);
    font-weight: 500;
    font-size: 0.9rem;
}


/* Footer */

footer {
    padding: 6vw;
    background-color: rgb(39, 57, 59);
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    display: flex;
    flex-direction: row;
}

footer .footer-col {
    padding-bottom: 40px;
    
}

footer h3 {
    color: white;
    font-weight: 600;
    padding-bottom: 20px;
}

footer li, .Anchor{
    list-style: none;
    color: gray;
    padding: 10px 0;
    font-size: 15px;
    cursor: pointer;
    transition: 00.3s ease;
    text-decoration: none;
}


footer li:hover , .Anchor:hover {
    color: white;
}

.Copyright {
    width: 100%;
    text-align: center;
    margin-top: auto;
    margin-bottom: 10px; /* Adjust this value to control how far down it goes */
    color: white;
}


.prolinks i {
    color: white;
    padding: 0 10px;
    cursor: pointer;
}

footer .Subscribe {
    margin-top: 20px;
}

footer input {
    width: 220px;
    padding: 15px 12px;
    background: rgb(91, 91, 201);
    border: none;
    outline: none;
    color: white;
}

footer .subscribe a{
    text-decoration: none;
    font-size: 0.9rem;
    padding: 13px 40px;
    background-color:white;
    font-weight: 600;
    border-radius: 5px;
}


footer .subscribe a.yellow{
    color: rgb(0, 0, 0);
    background: rgb(177, 177, 40);
    transition: 0.3s ease;
}

footer .subscribe a.yellow:hover{
    color: rgb(255, 94, 0);
    background: white;
}

.footer-col p{
    color:gray;
}


.subscribe input::placeholder {
    color: rgb(229, 229, 243);
    font-weight: 500;
    font-size: 0.9rem;
}
