
.FirstNav p {
    color: white;
}



/* 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 */
}


                                          /* About Us page */

.about-section {
    padding: 70px 20px;
    text-align: center;
}

.about-container h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-details {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}


.about-text p {
    font-size: 1.2rem;
    max-width: 700px; /* Why */
    margin: 0 auto; /* Why */
    text-align: left;
}

/* 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;
}
