@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;700&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Noto Sans', sans-serif;
    font-display: swap;
}

html{
    width: 100vw;
    padding: 0% !important;
    margin: 0% !important;
    overflow-x: hidden;
}

body {
    background: linear-gradient(25deg, #011D2A, #023147);
    font-family: 'Noto Sans';
    background-color: #021b29;
    width: 100vw;
    color: white !important;
}

header{  
    width: 100%;
    
}

.hero-section {
    position: relative;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    display: flex;
}

.fallback-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./Assets/images/backgroun-image.jpg');
    background-size: cover;
    background-position: center;
    z-index: -2;
    /* Ensures the image is behind any content, but above the video */
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    background-image: url('./Assets/images/backgroun-image.jpg');
            background-size: cover;
}
header .main{
    width: 100vw;
    padding: 0.8% 3% 0.3% 3%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.logo-img {
    position: absolute;
    top: 2%;
    left: 3%;
    width: 10vw;
    height: auto;
}

.tagline {
    font-family: 'Noto Sans';
    font-size: 78px;
    font-weight: 900;
    /* line-height: 1.6; */
    letter-spacing: 4.6px;
    color: white;
    margin: 0;
    flex: 6;
    align-items: center;
    text-align: center;
    height: min-content;
    margin-left: 2rem;
}

.tagline .highlight {
    font-family: 'Noto Sans', sans-serif;
    font-size: 1.5em;
    font-style: italic;
    color: #FAB722;
    letter-spacing: 0px;
    /* line-height: 24px; */
    text-align: center;
    font-weight: normal;
    transform: rotate(4deg);
    display: inline-block;
    margin: 0 0.65rem 0 -0.6rem !important;
    padding: 0 !important;

}

.stats {
    min-width: 70%;
    align-self: center;
    display: flex;
    /* gap: 5rem; */
    justify-content: space-around;
    align-items: center;
    padding: 20px 0;
    background-color: transparent;
    margin-bottom: 0.5rem;
}

.stats div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Noto Sans', sans-serif;
    gap: .4rem;
}

.data {
    display: block;
    font-size: 50px;
    font-weight: 600;
    color: white;
    font-family: 'Noto Sans', sans-serif;
}

.description {
    display: block;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    font-style: italic;
    font-family: 'Noto Sans', sans-serif;
}


.contact-info a {
    color: inherit; /* Maintains your existing text color */
    text-decoration: none; /* Removes the default underline */
    transition: color 0.3s ease; /* Smooth transition for hover effect */
  }
  
  .contact-info a:hover {
    color: #FAB722;
     text-decoration: none; /*Adds underline on hover */
  }
  
  /* Optional: Add subtle visual cues */
  .contact-info p {
    margin-bottom: 12px;
  }
  
  .contact-info label {
    font-weight: bold;
    margin-right: 5px;
  }
  
  /* Make the links appear interactive */
  .contact-info a {
    position: relative;
    display: inline-block;
    padding-bottom: 2px;
    cursor: pointer;
  }

@media (min-width: 575px) and (max-width: 1322px) {
    /* Your tablet-specific styles */
    .hero-section {
        height: 100vh;
    }

    header .main{
        padding: 3.2% 3% 0 3%;
    }

    .tagline {
        font-size: 2rem;
        /* line-height: 1.6; */
    }
    
    .tagline .highlight {
        font-size: 1.4em;
        margin: 0 2px 0 -5px !important;
        padding: 0 !important;
    }

    .stats {
        width: 70%;
    }

    .stats div {
        flex-grow: 1 !important;
        gap: 0.2rem !important;
    }

    .data {
        font-size: 30px;
    }
    
    .description {
        font-size: 10px;
    }
}

@media (max-width: 575px) {
    /* Styles for mobile phones */
    header{
        width: 100vw;
        align-items: flex-start;
    }

    header .main{
        padding: 5% 3% 0 3%;
    }

    .hero-section{
        height: 100vh;
    }

    header .main{
        justify-content: space-between;
    }

    .tagline{
        font-size: 1rem;
        /* line-height: 1.6; */
        min-height: 10%;
    }
    .tagline .highlight {
        font-size: 1.6em;
        margin: 0 2px 0 -6px !important;
        padding: 0 !important;
    }
    .stats{
        align-self: flex-start;
        padding: 10rem 1.5vw;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        gap: 3rem;
        align-items: start;
        justify-content: start;
    }

    .stats div{
        align-items: start;
        justify-content: start;
        gap: 1rem;
    }

    .stats div{
        gap: 0.2rem;
    }
    .data{
        font-size: 20px;
    }

    .description{
        font-size: 8px;
    }
}

@media (max-width: 400px){
    .logo-img{
        left: 10px;
    }

    header .main {
        padding: 4.8% 3% 0 3%;
    }
}

.services-custom {
    padding: 10rem 6% 2rem 6%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7rem;
    position: relative;
    overflow-x: hidden;
}
.watermark-text {
    position: absolute;
    top: 35%;
    left: 15%;
    font-size: 30vw;
    font-weight: 900;
    color: #0A3147;
    pointer-events: none;
    z-index: -1;
    transform: rotate(-10deg);
}

.services-custom .container-custom{
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.services-custom h2 {
    flex: 2.15;
    display: flex;
    align-self: left;
    flex-direction: column;
    justify-content: start;
    align-items: left;
    gap: 7px;
}

.services-custom .container-custom h2 .we-are {
    font-size: 130px;
    font-weight: 900;
    line-height: 140px;
    margin-bottom: 0px;
    display: inline-block;
}

.services-custom .container-custom h2 .flags {
    font-size: 130px;
    font-style: italic;
    color: #FAB722;
    font-weight: 400;
    display: inline-block;
    padding: 0;
    margin: 0;
    line-height: 140px;
}

.services-custom .container-custom h2 .entertainment {
    display: block;
    padding: 0;
    margin: 0;
    height: min-content;
    font-size: 90px;
    font-weight: 800;
    line-height: 80px;
}

@media (min-width: 575px) and (max-width: 1322px) {
    .services-custom {
        padding: 4rem 6%;
        gap: 1rem;
    }
    .watermark-text {
        top: 16%;
        left: 25%;
        font-size: 25vw;
    }

    .services-custom #about {
        flex-direction: column;
        gap: 6rem;
        align-items: flex-start;
        justify-content: flex-start;
    }
    
    .services-custom h2 {
        flex: 1;
        margin: 0rem 0;
        align-self: left;
    }
    
    .services-custom .container-custom h2 .we-are {
        font-size: 80px;
        line-height: 90px;
    }
    
    .services-custom .container-custom h2 .flags {
        font-size: 80px;
        line-height: 90px;
    }
    
    .services-custom .container-custom h2 .entertainment {
        font-size: 55px;
        line-height: 35px;
    }
}

@media (max-width: 575px) {
    .watermark-text {
            top: 12%;
            left: 37%;
            font-size: 25vw;
    }
    .services-custom{
        padding: 4rem 6%;
        gap: 1rem;
    }
    .services-custom #about{
        flex-direction: column;
        gap: 5rem;
        align-items: flex-start;
        justify-content: flex-start;
    }
    .services-custom h2{
        flex: 1;
        margin-bottom: 0rem;
        align-self: left;
    }
    .services-custom .container-custom h2 .we-are{
        font-size: 45px;
        line-height: 55px;
    }

    .services-custom .container-custom h2 .flags{
        font-size: 45px;
        line-height: 55px;
    }

    .services-custom .container-custom h2 .entertainment{
        font-size: 32px;
        line-height: 22px;
    }
}

.services-custom .container-custom p{
    flex: 1;
    font-weight: 100;
    font-size: 21px;
    line-height: 1.2;
    letter-spacing: 1px;
    
}

.services-custom .expertise{
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.services-custom .expertise p{
    font-weight: 100;
    font-size: 21px;
    line-height: 1.2;
    letter-spacing: 1px;
    /* text-align: justify; */
}

.tailored-section{
    margin-right: 1.9rem;
}

.tailored-section .container-custom {
    width: 100%;
    margin: 0 !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.tailored-section .container-custom .tailored-text {
    display: flex;
    justify-content: center;
    align-items: baseline;
    flex-direction: row;
    height: min-content;
    line-height: 100px;
}

.tailored-section .container-custom .for {
    font-size: 170px;
    font-style: italic;
    font-weight: 400;
    color: #FAB722;
    margin-right: 10px;
    transform: rotate(349.6deg);
    display: inline-block;
    margin-top: 15px;
}

.tailored-title {
    font-size: 150px;
    font-weight: 900;
    align-self: flex-end;
    line-height: 100px;
}

.excellence-title {
    font-size: 150px;
    font-weight: 900;
    line-height: 140px;
    margin-left: 30px !important;
}

.services-custom .tailored-section .tagline p {
    padding-left: 0px;
    font-size: 21.5px;
    /* margin-top: 20px; */
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 300;
}

@media (min-width: 575px) and (max-width: 1322px) {
    .tailored-section {
        margin-top: 2rem;
    }
    
    .tailored-title {
        line-height: 1.1;
    }
    
    .tailored-section .container-custom .tailored-text {
        line-height: 40px;
    }
    
    .tailored-section .container-custom .for {
        font-size: 85px;
        margin: 25px 5px 0 0!important;
    }
    
    .tailored-title {
        font-size: 85px;
        margin: 0 !important;
    }
    
    .excellence-title {
        font-size: 80px;
        line-height: 105px;
        margin-left: 2rem !important;
        margin-top: -2rem !important;
    }
    
    .services-custom .tailored-section .tagline p {
        font-size: 13.5px;
        margin-top: -1rem;
        letter-spacing: 0px;
        padding-left: 0px;
    }
    
    .services-custom .container-custom p,
    .services-custom .expertise p {
        font-size: 20px;
        line-height: 30px;
        letter-spacing: 0.2px;
        margin-bottom: 0 !important;
    }
    
    .services-custom .expertise {
        gap: 1rem;
    }
}

@media (max-width: 575px) {
    .tailored-section{
        margin-top: 4rem;
    }
    .tailored-title{
        line-height: 1;
    }
    .tailored-section .container-custom .tailored-text{
        line-height: 10px;
    }

    .tailored-section .container-custom .for{
        font-size: 50px;
        margin: 22px 2px 0 0 !important;
    }

    .tailored-title{
        font-size: 40px;
        margin: 0 !important;
    }

    .excellence-title{
        font-size: 38px;
        line-height: 65px;
        margin-top: -1rem !important;
    }

    .services-custom .tailored-section .tagline p{
        font-size: 6.4px;
        margin-top: -0.9rem;
        letter-spacing: 0px;
        padding-left: 0rem;
    }

    .services-custom .container-custom p, .services-custom .expertise p{
        font-size: 14px;
        line-height: 15px;
        letter-spacing: 0.2px;
        margin-bottom: 0 !important;
    }

    .services-custom .expertise {
        gap: 1rem;
    }
}

.service-cards {
    position: relative;
    overflow: hidden;
    width: 100vw !important;
}

.scroll-images {
    position: relative;
    margin: 0 !important;
    padding: 5% !important;
    min-width: 100vw !important;
    height: auto;
    display: flex;
    flex-wrap: nowrap;
    gap: 5%;
    overflow-x: scroll;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    align-items: stretch;
    /* Ensures all cards have the same height */
}

.scroll-images::-webkit-scrollbar {
    display: none;
}

.scroll-images .card {
    background-color: #FAB722;
    background-image: url('./Assets/images/card-background.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    border-radius: 20px;
    min-width: 30%;
    max-width: 30%;
    padding: 2rem;
    height: auto;
    /* Let the content define the height, but ensure consistency */
    color: #0A3147;
    margin-right: 15px;
    flex-grow: 1;
    /* Ensure all cards stretch to match the height of the tallest */
    display: flex;
    flex-direction: column;
    /* Ensure the card content flows vertically */
}

.card h2 {
    font-size: 28px;
    line-height: 1.2em;
    min-height: 2.4em;
    max-height: 2.4em;
    font-weight: 900;
    margin-bottom: 15px;
    align-content: flex-end;
}

.card ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: space-between;
    list-style-type: none;
    font-style: italic;
    font-weight: 200;
    padding: 0;
    margin: 1rem 0;
}

.card ul li {
    display: block;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 400;
}

button {
    background-color: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 25px;
    color: #000;
}

.left {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    background-color: transparent;
    border: none;
    padding: 10px;
    font-size: 4rem;
    cursor: pointer;
    border-radius: 0;
    color: white;
}

.right {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    background-color: transparent;
    border: none;
    padding: 10px;
    font-size: 4rem;
    cursor: pointer;
    border-radius: 0;
    color: white;
}

.service-cards button:active, button:focus{
    outline: none !important;
    box-shadow: none !important;
    background-color: transparent !important;
    border: none !important;
}



@media (min-width: 575px) and (max-width: 1322px) {
    .scroll-images .card {
        min-width: 55%;
        max-width: 55%;
        /* height: min-content; */
    }
        .left {
            font-size: 2rem;
        }
    
        .right {
            font-size: 2rem;
        }
}

@media (min-width: 900px) and (max-width: 1322px) {
    .scroll-images .card {
        min-width: 38%;
        max-width: 38%;
        /* height: min-content; */
    }
}

@media (max-width: 575px) {
    .scroll-images .card{
        min-width: 80%;
        max-width: 80%;
    }

    .card h2{
        font-size: 20px;
    }

    .card ul{
        gap: 0.5rem;
    }

    .card ul li{
        font-size: 15px;
    }

        .left {
            padding: 10px;
            font-size: 1rem;
            left: 0px;
        }
    
        .right {
            padding: 10px;
            font-size: 1rem;
            right: 0px;
        }
}

.quote-section {
    padding: 3rem 6%;
    color: #fff;
    position: relative;
    margin-top: 3rem;
}

.testimonial {
    position: relative;
    margin: 0 auto;
    color: #d3dfe5;
}

.quote-content {
    font-size: 21px;
    font-style: italic;
    line-height: 1.7;
    position: relative;
    z-index: 2;
    font-weight: 200;
}

.first-paragraph {
    text-indent: 8em;
}

.appstrophe-1,
.appstrophe-2 {
    font-size: 600px;
    color: #0A3147;
    position: absolute;
    z-index: -1;
    pointer-events: none;
    transform: rotate(2deg);
}

.appstrophe-1 {
    top: -400px;
    left: -30px;
}

.appstrophe-2 {
    bottom: -500px;
    right: -30px;
}

.author {
    font-size: 21px;
    font-style: italic;
    line-height: 1.7;
    position: relative;
    z-index: 2;
    font-weight: 200;
}

.author .title {
    font-weight: 600;
}

/* Social Media Section Styling */
.social-media {
      }
  
  .social-media h4 {
    font-size: 1.2rem;
  }
  
  .social-media h4 span {
    color: #FAB722; /* Replace with your highlight color */
  }
  
  .social-icons {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
  }
  
  .social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
   
    transition: all 0.3s ease;
    color: #0A3147;
    text-decoration: none;
  }
  
  .social-icons a:hover {
    /* Replace with your highlight color */
  color: #fff;
   
    transform: translateY(-3px);
    text-decoration: none;
  }
  
  .social-icons i {
    font-size: 25px;
  }
  
 
  
  /* Responsive adjustments */
  @media (max-width: 575px) {
    .social-icons {
      gap: 5px;
    }
    footer .navigation {
        /* flex: 1; */
        min-width: 3rem;
    }
    .social-icons i {
     
      font-size: 15px;
    }
    
  

  }

@media (max-width: 1322px) {
    .quote-section{
        padding-top: 7rem;
        padding-bottom: 6rem;
        border-top: 3px solid #FAB722;
        border-bottom: 3px solid #FAB722;
    }
    .quote-content {
        font-size: 20px;
        line-height: 1.6;
    }

    .appstrophe-1,
    .appstrophe-2 {
        font-size: 450px;
    }

        .appstrophe-1 {
            top: -300px;
            left: -30px;
        }
    
        .appstrophe-2 {
            bottom: -350px;
            right: -30px;
        }
    
                .author {
                    font-size: 21px;
                    line-height: 1.6;
                }
}

@media (max-width: 575px) {
    .quote-section {
        padding-top: 6rem;
        padding-bottom: 5rem;
        border-top: 3px solid #FAB722;
        border-bottom: 3px solid #FAB722;
    }

    .quote-content,  .author {
        font-size: 14px;
        line-height: 1.5;
    }

    .appstrophe-1,
    .appstrophe-2 {
        font-size: 230px;
    }

        .appstrophe-1 {
            top: -150px;
            left: -10px;
        }
    
        .appstrophe-2 {
            bottom: -180px;
            right: -10px;
        }

    .first-paragraph {
        text-indent: 4em;
    }
}

.cta-section {
    display: flex;
    flex-wrap: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding: 3rem 6%;
    gap: 2rem;
    color: white;
}

.cta-content {
    flex: 1.7;
}

.cta-title {
    font-size: 120px;
    font-weight: 900;
    margin: 0;
    padding: 0;
    line-height: 0.9;
}

.cta-title .highlight {
    display: inline-block;
    font-style: italic;
    color: #fab722;
    font-weight: 400;
}

.contact-info {
    flex: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 0.6rem;
}

.contact-info h3 {
    font-size: 60px;
    font-weight: 900;
    margin-bottom: 10px;
}

.contact-info .highlight {
    color: #fab722;
}

.contact-info p {
    font-size: 18px;
    line-height: 1.5;
    font-style: italic;
    font-weight: 100 !important;
}

.contact-info p label{
    font-weight: 400;
    display: block;
    font-style: normal;
    line-height: 1.2;
    margin-bottom: 0 !important;
}

.contact-info p strong{
    font-weight: 400;
}

@media (min-width: 575px) and (max-width: 1322px) {
    
    .cta-title {
            font-size: 100px;
        }
    
        .contact-info h3 {
            font-size: 50px;
            margin: 1rem 0;
        }
    
        .contact-info p {
            font-size: 18px;
            line-height: 1.5;
        }
    
        .contact-info p label {
            font-weight: 400;
            display: block;
            font-style: normal;
            line-height: 1.1;
        }
    
        .contact-info p strong {
            font-weight: 400;
        }
}

@media (min-width: 1135px) and (max-width: 1370px){
    .contact-info p {
            font-size: 15px;
            line-height: 1.5;
        }
}
@media (max-width: 1135px) {
    .cta-section {
        flex-direction: column;
        align-items:flex-start;
    }
}

@media (max-width: 725px){
    .cta-title {
        font-size: 80px;
    }

    .contact-info h3 {
        font-size: 55px;
    }
}

@media (max-width: 575.98px) {
    .cta-title{
        font-size: 50px;
    }

    .contact-info h3{
        font-size: 25px;
    }

    .contact-info p {
        font-size: 14px;
        line-height: 1.5;
    }
    
        .contact-info p label {
            font-weight: 400;
            display: block;
            font-style: normal;
            line-height: 1;
        }
    
        .contact-info p strong {
            font-weight: 400;
        }
}

footer {
    background-color: #fab722;
    background-image: url('./Assets/images/footer-background.svg');
    background-size: cover;
    padding: 0% 7%;
    color: #023147;
    display: flex !important;
    flex-direction: column;
    justify-content: space-between !important;
}

footer .main {
    padding: 3rem 0;
    display: flex !important;
    justify-content: space-between;
    align-items: end;
    gap: 20%;
}
footer .navigation {
    /* flex: 1; */
    min-width: 4rem;
}

footer .navigation ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.2rem;
}

footer .navigation ul li {
    font-size: 18px;
    font-weight: 300;
}

footer .navigation ul li a {
    color: #023147;
    text-decoration: none;
}

footer .navigation ul li a:hover {
    text-decoration: underline;
}

footer .contact-us {
    width: max-content !important;
    text-align: right;
}

footer .contact-info{
    width: max-content;
}

footer .contact-info h4 {
    font-size: clamp(8px, 4vw, 53px);
    color: #023147;
    margin-bottom: 0;
    font-weight: 900;
    width: max-content;
}

footer .contact-info h4 span {
    color: white;
}

footer .contact-info form {width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: clamp(0px, 0.01vh, 1rem);
}

footer .contact-info input[type="file"] {
    padding: 10px;
    border: 1px solid #023147;
    border-radius: 5px;
    background-color: white;
    color: #023147;
}

footer .contact-info button {
    background-color: #0A3147;
    color: white;
    font-size: 1rem;
    font-weight: 800;
    padding: 1.2rem 6rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-left: auto;
}

/* Apply button styles */
#apply-button {
    position: relative;
    background-color: #0A3147;
    color: white;
    font-size: 1rem;
    font-weight: 800;
    padding: 1.2rem 6rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#apply-button:hover {
    background-color: #022136;
}

/* Spinner styles */
.spinner {
    display: none;
    /* Hidden by default */
    width: 24px;
    height: 24px;
    border: 4px solid #ffffff;
    /* White border */
    border-top: 4px solid transparent;
    /* Transparent top border for the spinning effect */
    border-radius: 50%;
    animation: spin 1s linear infinite;
    position: absolute;
}

/* Keyframes for spinning animation */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Hide the button text when loading */
#apply-button.loading .button-text {
    visibility: hidden;
}

#apply-button.loading .spinner {
    display: inline-block;
}

footer .contact-info button:hover {
    background-color: #022136;
}

.contact-info form{
    width: 100%;
    display: flex;
    flex-direction: column !important;
    align-items: flex-end;
    justify-content: end;
}

.send-email{
    display: block;
    align-self: flex-end;
}

.file-upload-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.file-input {
    display: none;
}

/* Custom label styling */
.file-label {
    display: inline-block;
    width: 100%;
    padding: 2% 3%;
    font-size: 18px;
    font-style: italic;
    color: #023147;
    border: 2px solid #023147;
    border-radius: 8px;
    text-align: left;
    background-color: transparent;
    cursor: pointer;
}

/* Optional hover effect */
.file-label:hover {
    background-color: #e0a40a;
}

.footer-rights {
    /* Remove any margins */
    margin: 0 0 0.5rem 0;
    text-align: center;
    font-style: italic;
    color: #023147ce;
    font-size: 14px;
    background: transparent;
}

@media (max-width: 1322px) {
    footer .main{
        padding: 3rem 0;
    }
}

@media (max-width: 575px) {

    footer .main {
        padding: 1.5rem 0;
    }

    footer .navigation ul {
        gap: 0.1rem;
    }
    footer .navigation ul li {
        font-size: 7px;
        font-weight: 400;
    }

    footer .contact-info{
        gap: 0 !important;
    }

    .file-label{
        font-size: 7px;
        padding: 2% 5%;
        border-radius: 2px;
        border: 0.2px solid #023147;
    }
    footer .contact-info button{
        font-size: 0.4rem;
        padding: 0.4rem 2rem;
    }

    #apply-button{
        font-size: 0.4rem;
        padding: 0.4rem 2rem;
    }

    .spinner {
        width: 24px;
        height: 24px;
    }

    .footer-rights{
        font-size: 4px;
        flex: 0.1;
        /* margin-top: 10px; */
    }
}


/* Snackbar Styles */
#snackbar {
    visibility: hidden;
    min-width: 250px;
    max-width: 80%;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.95);
    /* Semi-transparent white */
    color: #011D2A;
    /* Dark blue text color */
    text-align: center;
    border-radius: 8px;
    /* Rounded corners */
    padding: 16px;
    position: fixed;
    z-index: 1000;
    /* Ensure it appears above other elements */
    left: 50%;
    bottom: 30px;
    font-size: 17px;
    transform: translateX(-50%);
    /* Center horizontally */
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
    /* Subtle shadow */
}

#snackbar.show {
    visibility: visible;
    /* Fade in/out animations */
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

/* Success message style */
#snackbar.success {
    border-left: 5px solid #28a745;
    /* Green border for success */
}

/* Error message style */
#snackbar.error {
    border-left: 5px solid #dc3545;
    /* Red border for error */
}

/* Animations */
@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}

@media (prefers-reduced-motion: no-preference) {
    .background-video {
        display: block;
    }
}