* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


.icon-text-link {
    display: inline-flex;
    align-items: center;
}


.copyright-year {
    color: #000000;
}




body {
    font-family: monospace;
    text-transform: capitalize;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden; /* Prevent horizontal scrolling */
}


.wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}


.footer-h4 {
    font-weight: bold;
    text-shadow: 0px 2px 1px rgba(255, 255, 255, 0.5) !important;
    color: #112e57;
}


.footer-col h4 a {
    color: white;
    font-family: monospace;
    font-weight: bolder;
    text-decoration: none;
}


/* Footer Container Layout */
.footer-container {
    width: 100%; /* Use full width of the screen */
    margin: 0 auto;
    background-image: linear-gradient(to bottom, #001d5800, #001d588c);
    padding: 70px 0;
    color: #112e57;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px; /* Adds space between the columns */
    overflow: hidden; /* Ensure content doesn't overflow */
}


/* Footer Columns Default Layout */
.footer-col {
    flex: 1 1 30%; /* Columns take up 30% of the container */
    min-width: 400px; /* Prevents columns from getting too narrow */
    padding: 40px 45px;
}


.copy-right-container{
    justify-content: center;
    justify-items: center;
    margin: 0;
    align-items: center;
    text-align: center;
    width: 100%;
    text-transform: lowercase !important;
}




.copyright-login {
    cursor: default;
    font-size: 17px;
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
  }
 
 
  .copyright-login:hover {
    cursor: default;
    color: #000000 !important;
  }
 
 
 
 
 
 
 
 
  .copyright-link {
    color: #000000;
    text-decoration: none;
    background:
      linear-gradient(
        to right,
        rgba(100, 200, 200, 0),
        rgba(100, 200, 200, 0)
      ),
      linear-gradient(
        to right,
        #dabde2,
        #e6c1f0,
        #d8c8f4,
        #c1cef5,
        #9ec0e0,
        #5d6c80
 
 
    );
    background-size: 100% 3px, 0 3px;
    background-position: 100% 100%, 0 100%;
    background-repeat: no-repeat;
    transition: background-size 300ms;
 
 
  }
 
 
  .copyright-link:hover {
    color: #000000;
    text-decoration: none;
    background-size: 0 3px, 100% 3px;
  }
 
 
 






/* Adjust Layout for Screens Larger than 1410px */
@media (min-width: 1410px) {
    .footer-container {
        justify-content: space-around; /* Distribute columns evenly */
    }


    .footer-col {
        flex: 1 1 30%; /* Ensure columns spread across the screen */
    }
}


/* Rearrange Columns on Smaller Screens */
@media (max-width: 1410px) {
    .footer-col:nth-of-type(2) {
        order: 2; /* Move the second column to the third position */
    }
    .footer-col:nth-of-type(3) {
        order: 3; /* Move the third column to the second position */
    }
    .footer-col {
        flex: 1 1 100%; /* Each column takes up the full width */
    }
}


/* Adjustments for Small Screens */
@media (max-width: 550px) {
    .footer-col {
        padding: 15px;
        text-align: left;
        font-size: 1rem !important;
    }


   
}


.row {
    display: flex;
    flex-wrap: wrap;
}


.footer-col h4 {
    font-size: 20px;
    margin-bottom: 35px;
    font-weight: 500;
    position: relative;
    text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.5);
    color: #112e57;
}


.footer-col h4::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    background: #5466878c;
    height: 2px;
    box-sizing: border-box;
    width: 125px;
}


.footer-col ul {
    padding-left: 0;
    list-style: none;
    line-height: 1.5;
}


.contact p {
    padding: 7px;
}


.footer-col ul li a {
    display: block;
    font-size: 15px;
    text-transform: none;
    text-shadow: 0px 2px 1px rgba(255, 255, 255, 0.5);
    color: #112e57;
    display: block;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}


.footer-col ul li a:hover {
    color: #061e61;
    font-weight: bolder;
    transform: translateX(8px);
    cursor: pointer;
}


.footer-col .social-link a {
    display: inline-block;
    height: 40px;
    width: 40px;
    background: rgba(255, 255, 255, 0.47);
    margin: 0 10px 0 10px;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: #112e57;
    transition: all 0.5s ease;
}


.footer-col .social-link a:hover {
    color: #112e57;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
    cursor: pointer;
}


.email-logo {
    transform: translateY(8px);
}


footer {
    display: inline-block;
    text-shadow: 0px 2px 2px rgba(255, 255, 255, 0.5);
    text-align: center;
    background: #001d5800;
    padding: 10px;
    color: #112e57;
    font-size: 18px;
    font-weight: bold;
    margin: 0 !important;
}





