@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;400;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;700&display=swap');

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    font-family: "Lora", serif;
}

.landing-page-text {
    font-family: "Montserrat", sans-serif;
    font-size: 30px;
    color: #fffdf7;
    align-items: center;
    text-align: left;
    margin-top: 160px;
    margin-bottom: 80px;
    position: relative;
    padding-left: 128px;
}

.features h4, .features span {
    font-family: "Montserrat", sans-serif;
}

.f-paragraph {
    width: 600px;
    margin-bottom: 40px;
}

.underline {
    position: relative;
    display: inline-block;
    border-bottom: 10px solid orange; 
    z-index: 1;
}

.landing-page-paragraph {
    font-size: 23px;
}

/* FEATURE SECTION */
.features-section {
    padding: 40px 128px;
    background-color: #f5f5f5;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px,1fr));
    gap: 24px;
}

.client-support-card {
    border-radius: 24px;
    background-color: #101a31;
    display: flex;
    flex-direction: column;
    padding: 24px 24px 40px;
    transition: .2s;
}

.client-support-card:hover {
    border-radius: 24px;
    border-bottom: solid #fca31f 9px ;
    transform: translateY(-5px);
    transition: .2s;
}

.agent-image-wrapper {
    align-self: center;
    display: flex;
    width: 96px;
    flex-direction: column;
    overflow: hidden;
    justify-content: center;
}

.agent-icon {
    aspect-ratio: 1.1;
    object-fit: cover;
    object-position: center;
    width: 100%;
}

.client-support-wrapper {
    display: flex;
    margin-top: 24px;
    flex-direction: column;
    font-size: 15px;
    color: white;
    text-align: center;
}

.client-support-title {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.client-support-description {
    margin-top: 8px;
    font-family: "Lora", sans-serif;
    font-weight: 400;
    line-height: 18px;
}



/* NAVIGATION PANE */


.top-bar {
    display: flex;
    min-height: 100px;
    width: 100%;
    align-items: center;
    justify-content: space-between; 
    flex-wrap: wrap;
    z-index: 2;
}

.logo-wrapper {
    align-self: stretch;
    display: flex;
    min-width: 240px;
    min-height: 80px;
    align-items: center;
    justify-content: flex-start;
    flex: 1;
}

.company-logo {
    aspect-ratio: 1.88;
    object-fit: cover;
    object-position: center;
    width: 150px;
    max-width: 150px;
}

.nav-contact-info-row {
    display: flex;
    flex-direction: row;
}

.nav-contact-item {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.nav-contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    padding: 3px;
}

.nav-contact-icon img {
    aspect-ratio: 1;
    object-fit: contain;
    width: 24px;
}

.nav-contact-text {
    flex: 1;
    min-width: 80px;
    color: white;
    font: 600 15px/1.2 "Montserrat", sans-serif;
}

.navigation-links-container {
    height: 100%;
    width: 100%;
    align-items: center;
    display: flex;
    flex-direction: row;
    margin: 16px 0; 
}

.navigation-bar {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    height: 100%;
    margin: 8px 0; 
    gap: 5px;
}

.nav-button {
    display: flex;
    justify-content: center;
    border-radius: 24px;
    width: 160px;
    font: 600 15px/1.2 "Montserrat", sans-serif;
    text-align: center;
    color: white;
    border: 2.5px solid white;
}

.nav-button:hover {
    background-color: white;
    color: black;
}
.nav-button-highlight {
    background-color: #fca31f;
    border: none;
}
.sidebar-nav{
    display: flex;
    align-content: space-between;
    justify-content: flex-end;
    width: 100%;
    height: 100%;
    gap:8px;
}
nav svg{
    fill: #FCA311;
}
#Nav-sidebar-active{
    display: none;
}
.Open-sidebar-btn, .Close-sidebar-btn{
    display: none;
}

.landing-page-content {
    width: 50%;
    margin-top: 140px;
    z-index: 1;
}

.landing-page-pg {
    padding: 40px 0;
    color: white;
    font: 500 23px/28px "Lora", sans-serif;
}

.landing-page-courses-heading {
    color: white;
    font: 700 37px/44px "Montserrat", sans-serif;
}

.call-to-action-button {
    margin-top: 24px;
    align-self: stretch;
    border-radius: 24px;
    background-color: #FCA311;
    color: white;
    width: 160px;
    height: 40px;
    font: 600 15px/1.2 "Montserrat", sans-serif;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.call-to-action-button:hover,
.call-to-action-button:focus {
    background-color: rgb(227, 147, 15);
    outline: none;
}

.call-to-action-button:focus-visible {
    box-shadow: 0 0 0 3px rgba(252, 163, 17, 0.25); 
}


/* REFLECTION COURSES SECTION */
.courses-section {
    background-color: #F0EEEA;
    padding: 40px 128px;
}

.courses-heading {
    align-self: stretch;
    width: 100%;
    color: black;
    font: 700 29px/1.2 "Montserrat", sans-serif;
}

.courses-content {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.courses-paragraph { 
    align-self: stretch;
    width: 80%;
    color: black;
    font: 400 15px/1.2 "Lora", sans-serif;
}

.courses-list {
    display: flex;
    margin-top: 24px;
    margin-left: 24px;
    gap: 8px;
    width: 100%;
    flex-direction: column;
    color: black;
    justify-content: flex-start; 
}

.courses-image-container {
    display: flex;
    flex-direction: column;
    width: 40%;
    justify-content: center;
}

.ref-dev-image {
    border-radius: 24px;
    object-fit: cover;
    object-position: center;
    height: 480px;
    align-self: stretch;
}


/* NAVIGATION PANE */
.navigation-bar-container {
    background: url(../Images/Home/DSC_0195-2048x1359.jpg) no-repeat center center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 16px 8%;
    width: auto;
}


.Company-info-top{
    width: 100%;
    display: flex;
    align-content: center;
    justify-content: space-between;
}

.nav-contact-text:hover {
    color: #fca31f;
}
.navigation-bar a {
    padding: 8px 0;
    text-decoration: none;
}

.nav-button:hover {
    background-color: white;
    color: black;
}

.nav-button-highlight {
    background-color: #fca31f;
    border: none;
}




/* COURSES SECTION */


/* SERVICES SECTION */
.services-section {
    padding: 40px 128px;
    background-color: #FCFCFC;
}
.services-title{
    font-family: "montserrat", sans-serif;
}
.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 24px;
    margin-top: 40px;
}
.our-services-card {
    border-radius: 24px;
    color: white;
    line-height: 1.2;
   
}
.our-services-card:hover{
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: .2s;
}
.our-services-image {
    aspect-ratio: 1;
    object-fit: cover;
    width: 100%;
    border-radius: 24px 24px 0 0;
}

.our-services-card-content {
    background-color: #101a31;
    border-radius: 0 0 16px 16px;
    padding: 40px 24px;
}

.our-services-card-title {
    font: 600 19px "Montserrat", sans-serif;
    margin-bottom: 16px;
}

.our-services-card-description {
    font: 400 15px "Lora", sans-serif;
}

.services-visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}



/* UPDATES SECTION */

.news-updates-container {
    background-color: #101a31;
    display: flex;
    flex-direction: column;
    justify-content:flex-start;
    margin: 0 auto;
    padding: 40px 128px; 
    width: 100%;
    box-sizing: border-box;
}

.update-header-container {
    display: flex;
    justify-content: flex-start;
    width: 100%;
}

.updates-title {
    color: white;
    padding: 0 0;
    font: 700 29px/1.2 "Montserrat", sans-serif;
    text-align: left;
    align-items: flex-start;
    width: 100%; 
}

.header-underline-container {
    display: flex;
    justify-content: center;
    margin-top: 8px;
    width: 80px;
    flex-direction: column;
}

.header-underline {
    background-color: #FCA311;
    min-height: 8px;
    width: 100%;
}

.more-blog-updates-button {
    font: 600 15px/1.2 "Montserrat", sans-serif;
    border-radius: 4px;
    margin-top: 16px;
    padding: 12px 24px;
    border: solid 2.5px #fff;
    background: none;
    color: white;
    cursor: pointer;
    display: block; 
    margin-left: auto;
    margin-right: auto;
}

.blog-article-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(524px, 1fr));
    gap: 24px;
    margin-top: 40px;
    width: 100%;
    justify-items: center; 
    align-items: center;
    padding: 24px 24px; 
    box-sizing: border-box;
}

.blog-article-card {
    border-radius: 24px;
    background-color: white;
    display: flex;
    max-width: 720px;
    align-items: center;
    gap: 24px; 
    color: black;
    justify-content: start;
    flex-wrap: wrap;
    padding: 24px;
    margin: 0 auto; /* Center cards in the grid */
}

.blog-article-image {
    aspect-ratio: 1;
    object-fit: cover;
    object-position: center;
    width: 160px;
    border-radius: 16px;
    margin: auto 0;
}

.blog-article-content {
    display: flex;
    min-width: 240px;
    flex-direction: column;
    justify-content: start;
    margin: auto 0;
}

.blog-article-title {
    font: 600 19px/25px "Montserrat", sans-serif;
    text-align: left;
}

.blog-article-body {
    display: flex;
    margin-top: 16px;
    width: 100%;
    flex-direction: column;
    font-size: 15px;
}

.blog-article-text {
    font: 400 15px/18px "Lora", sans-serif;
}

.blog-article-footer {
    display: flex;
    margin-top: 16px;
    height: 40px;
    align-items: center;
    gap: 8px;
    font: 700 15px/1.2 "Montserrat", sans-serif;
    justify-content: end;
}

.blog-read-more-button {
    font: 700 15px/1.2 "Montserrat", sans-serif;
    border: none;
    background-color: white;
    cursor: pointer;
    margin-left: auto;
}

.blog-read-more-icon {
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
    width: 24px;
}

.article-text {
    margin-top: 24px;
    font: 400 15px/18px "Lora", sans-serif;
}

.article-footer {
    display: flex;
    margin-top: 16px;
    align-items: center;
    gap: 8px;
    font: 700 15px/1.2 "Montserrat", sans-serif;
    justify-content: end;
    width: 50%;
}



/* COMPANY PARTNERS */

.company-partners-section {
    padding: 80px 0;
    background-color: white;
}

.company-partners-container {
    display: flex;
    flex-wrap:wrap;
    justify-content: center;
    gap: 10px;
    max-width: 1200px;
    margin: 0 auto;
}

.company-partner-icon-wrapper {
    flex: 1 1 250px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.company-partner-agl {
    width: 100px;
    height: 80px;
}
.company-partner-lgseta {
    width: 100px;
    height: 150px;
}

.company-partner-etdp {
    width: 100px;
    height: 100px;
}

.company-partner-ewseta {
    width: 100px;
    height: 80px;
}

.company-partner-mict {
    width: 250px;
    height: 100px;
}

.company-partner-pseta {
    width: 200px;
    height: 60px;
}


.company-partner-qcto {
    width: 175px;
    height: 100px;
}

.company-partner-seta-services {
    width: 80px;
    height: 80px;
}

.company-partner-icon-wrapper img{
    
    height: auto;
}

/* CONTACT US SECTION */

.contact-us-section {
    background-color: #101a31;
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 0px;
}

.contact-us-container {
    display: flex;
    flex-direction: column;
    color: white;
    text-align: center;
    line-height: 1.2;
}

.contact-us-content {
    display: flex;
    
    margin-top: 40px;
    margin-bottom: 40px;
    min-height: 112px;
    /* width: 724px; */
    max-width: 100%;
    flex-direction: column;
    justify-content: start;
}

.contact-us-heading {
    font-family: "Montserrat", sans-serif;
    align-self: stretch;
    flex: 1;
    width: 100%;
    font-size: 37px;
    font-weight: 700;
}

.contact-us-button {
    align-self: center;
    border-radius: 24px;
    margin-top: 16px;
    height: 40px;
    width: 160px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    background: white;
    border-color: white;
    cursor: pointer;
    color: black;
    font: 600 15px/1.2 "Montserrat", sans-serif;
}

.contact-us-button:hover {
    background: #FCA311;
    color: white;
}

 /* TESTIMONIAL SECTION */

.testimonial-section {
    background-color: #fcfcfc;
    padding: 40px 128px;
}

.testimonial-header {
    align-self: stretch;
    width: 100%;
    color: black;
    font: 700 29px/1.2 "Montserrat", sans-serif;
}

.testimonial-cards-row {
    margin-top: 40px; 
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(325px, 1fr));
    gap: 24px;

} 

.testimonial-card-container{
    border-radius: 24px;
    background-color: white;
    display: flex;
    align-items: center;
    gap: 16px;
    overflow: hidden;
    justify-content: center;
    flex-wrap: wrap;
    padding: 24px 24px;
    box-shadow: 0 1rem 2rem hsl(0 0% 0% / 20%);
}


.testimonial-card-image {
    aspect-ratio: 1;
    object-fit: cover;
    object-position: center;
    width: 160px;
    border-radius: 16px;
    align-self: stretch;
    margin: auto 0;
}

.testimonial-card-content {
    align-items: center;
    display: flex;
    min-width: 160px;
    flex-direction: column;
    justify-content: flex-start;
    flex: 1;
    flex-basis: 0%;
    margin: auto 0;
}

.testimonial-text-wrapper {
    display: flex;
    width: 100%;
    flex-direction: column;
    color: black;
    font: 400 15px "Lora", sans-serif;
}

.testimonial-quote {
    align-self: stretch;
    flex-direction: 1;
    width: 100%;
    line-height: 23px;
    text-align: center;}

.testimonial-author {
    align-self: stretch;
    flex: 1;
    margin-top: 16px;
    width: 100%;
    line-height: 1.2;
    text-align: center;
}

.rating-container {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.testimonial-rating-star {
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
    width: 24px;
    align-self: auto 0;
    margin-top: 24px;
    
}

/* Might have to comment out */
.testimonial-visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin-top: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

.test-load-more-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.load-more-testimonials {
    background: #FCA311;
   color: white;
   padding: 8px 0;
   width: 160px;
   height: 40px;
   border-radius: 24px;
   font: 700 15px/1.2 "Montserrat", sans-serif;
   border-style: none;
   cursor: pointer;
}

.load-more-testimonials:hover {
    background-color: #101a31;
    color: white;
    cursor: pointer;
}



/* FOOTER SECTION */

.footer-content {
    display: flex;
    padding: 40px 40px;

}

.image-container{
    display: flex;
    flex-direction: column;
    width: 33%;
    justify-content: center;
    padding: 64px 16px;
}

.full-width-image {
    aspect-ratio: 1.24;
    object-fit: contain;
    object-position: center;
    width: 66%;
    border-radius: 24;
}

 .footer-content-container{
    font-display: flex;
    flex-direction: row;
    justify-content: center;
    max-width: 100%;
 }

 .social-links {
    align-self: flex-start;
    display: flex;
    align-items: flex-start;
    gap: 16px;
 }

 .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    padding: 6px;
    overflow: hidden;
 }

 .social-icon img {
    aspect-ratio: 1;
    object-fit: contain;
    width: 36px;
 }

 .contact-info {
    display: flex;
    margin-top: 40px;
    width: 100%;
    flex-direction: column;
    gap: 24px;
 }

 .contact-item {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
 }

 .contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    padding: 3px;
 }

 .contact-icon img {
    aspect-ratio: 1;
    object-fit: contain;
    width: 24px;
 }

 .contact-text {
    flex: 1;
    min-width: 240px;
    color: white;
    font: 400 12px/1.2 "Lora", sans-serif;
 }

 .footer-bottom {
    display: flex;
    margin-top: 120px;
    width: 100%;
    align-items: center;
    color: white;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    font: 400 12px/1.2 "Lora", sans-serif;
 }

 .copyright{
    display: flex;
    min-width: 240px;
    align-items: center;
    gap: 8px;
    font-weight: 400;
 }

 .copyright img {
    aspect-ratio: 1;
    object-fit: contain;
    width: 24px;
 }

 .footer-nav {
    display: flex;
    min-width: 240px;
    align-items: center;
    gap: 24px;
    font-weight: 600;
 }

 .footer-nav a {
    color: #fff;
    text-decoration: none;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;

}

.contact-info,
.contact-item,
.footer-bottom,
.copyright,
.footer-nav {
  max-width: 100%;
}

.contact-text,
.footer-nav a {
  white-space: normal;
}


 .footer-container{
    display: flex;
    background-color: #101a31;
    height: 100%;
    padding: 40px 128px;
 }

/*****MOBILE RESPONSIVE***/

@media(max-width:955px){
    .Company-info-top{
        padding: 0;
        display:flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
        transition: .3s ease;
    }
    .top-bar{
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }
    .nav-button {
        display: flex;
        justify-content: center;
        border-radius: 24px;
        width: 100%;
        font: 600 15px/1.2 "Montserrat", sans-serif;
        text-align: center;
        color: white;
        border: none;
    }
}
@media(max-width: 720px) {

    .Company-info-top {
        padding: 0;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
        transition: 0.75s ease;
    }

    .top-bar {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }

    .nav-contact-info-row {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
        gap: 20px;
        margin: 50px 0;
        width: 40%;
    }

    .nav-button {
        display: flex;
        border-radius: 24px;
        font: 600 15px/1.2 "Montserrat", sans-serif;
        text-align: center;
        color: white;
        border: none;
        margin: 8px 0;
    }

    .sidebar-nav {
        flex-direction: column;
        align-content: space-between;
        padding: 50px 80px;
        position: fixed;
        top: 0;
        right: -100%;
        z-index: 10;
        width: max-content;
        height: 300px;
        background-color: #101a31;
        transition: 0.75s ease-out;
    }

    .nav-button-highlight {
        width: 200px;
    }

    .Open-sidebar-btn, .Close-sidebar-btn {
        padding: 20px;
        display: block;
        position: absolute;
        top: 0;
        right: 0;
    }

    #Nav-sidebar-active:checked ~ .sidebar-nav {
        right: 0;
    }

    .landing-page-content {
        width: 80%;
        margin-top: 10px;
        z-index: 1;
    }

    /* FEATURE SECTION */
    .features-section {
        padding: 20px 24px;
        background-color: #f5f5f5;
    }

    .features-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .client-support-card {
        border-radius: 16px;
        background-color: #101a31;
        display: flex;
        flex-direction: column;
        padding: 16px 16px 24px;
        transition: 0.2s;
    }

    .client-support-card:hover {
        border-radius: 16px;
        border-bottom: solid #fca31f 6px;
        transform: translateY(-4px);
        transition: 0.2s;
    }

    .agent-image-wrapper {
        align-self: center;
        display: flex;
        width: 80px; 
        flex-direction: column;
        overflow: hidden;
        justify-content: center;
    }

    .agent-icon {
        aspect-ratio: 1;
        object-fit: cover;
        object-position: center;
        width: 100%;
    }

    .client-support-wrapper {
        display: flex;
        margin-top: 16px;
        flex-direction: column;
        font-size: 13px;
        color: white;
        text-align: center;
    }

    .client-support-title {
        font-family: "Montserrat", sans-serif;
        font-weight: 700;
        line-height: 1.2;
        font-size: 16px;
    }

    .client-support-description {
        margin-top: 8px;
        font-family: "Lora", sans-serif;
        font-weight: 400;
        line-height: 16px;
        font-size: 12px;
    }

    /* REFLECTION COURSES SECTION */
    .courses-section {
        background-color: #F0EEEA;
        padding: 20px 24px;
    }

    .courses-heading {
        width: 100%;
        color: black;
        font: 700 22px/1.2 "Montserrat", sans-serif;
        text-align: left;
        margin-bottom: 16px;
    }

    .courses-content {
        display: flex;
        flex-direction: column;
        gap: 24px;
        margin-top: 16px;
    }

    .courses-paragraph {
        width: 100%;
        color: black;
        font: 400 14px/1.4 "Lora", sans-serif;
        text-align: left;
        margin-bottom: 16px;
    }

    .courses-list {
        display: flex;
        margin-top: 16px;
        gap: 12px;
        width: 100%;
        flex-direction: column;
        color: black;
        justify-content: flex-start;
    }

    .courses-image-container {
        display: flex;
        flex-direction: column;
        width: 100%;
        justify-content: center;
        align-items: center;
        margin-bottom: 24px;
    }

    .ref-dev-image {
        border-radius: 16px;
        object-fit: cover;
        object-position: center;
        height: 320px;
        width: 100%;
    }
    /**services**/

    .services-section {
        padding: 20px 40px;
    }

    .services-container {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 16px; 
    }

    .our-services-card {
        border-radius: 16px; 
    }

    .our-services-image {
        border-radius: 16px 16px 0 0; 
    }

    .our-services-card-content {
        padding: 24px 16px;
    }

    .our-services-card-title {
        font: 600 16px "Montserrat", sans-serif; 
    }

    .our-services-card-description {
        font: 400 14px "Lora", sans-serif; 
    }
/**Testimonial**/
    .testimonial-section {
        background-color: #fcfcfc;
        margin: 10px auto;
        display: flex;
        flex-direction: column;
        justify-content: center; 
        align-items:center;
        
    }
    .testimonial-header {
        width: 100%;
        color: black;
        font: 700 20px/1.2 "Montserrat", sans-serif;
        align-items: flex-start;
        justify-content: left;
    }
    .testimonial-card-container {
        border-radius: 24px;
        background-color: white;
        display: flex;
        align-items: center;
        gap: 10px;
        overflow: hidden;
        justify-content: center;
        flex-wrap: wrap;
        padding: 10px 24px;
        box-shadow: 0 1rem 2rem hsl(0 0% 0% / 20%);
        max-width: 960px; /* Optional*/
        width: 80%; 
    }

    .news-updates-container {
        padding: 40px 20px; 
    }

    .updates-title {
        font: 700 22px/1.2 "Montserrat", sans-serif;
        text-align: left; 
    }
    .update-header-container {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .blog-article-card-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); 
    }

    .blog-article-card {
        max-width: 100%; 
        padding: 24px;
    }

    .blog-article-image {
        width: 130px; 
    }

    .blog-article-title {
        font-size: 16px; 
    }

    .more-blog-updates-button {
        font: 600 13px/1.2 "Montserrat", sans-serif;
        padding: 8px 16px; 
    }

    .blog-article-body {
        font-size: 14px; 
    }

    .article-footer {
        font-size: 14px; 
    }
    
     /* FOOTER SECTION */
     .footer-content {
        display: flex;
        flex-direction: row;  
        padding: 20px; 
        align-items: center;  
        gap: 20px; 
        height: 100%;
    }

    .image-container {
        display: flex;
        flex-direction: column;
        width: 100%;  
        justify-content: center;
        padding: 32px 16px; 
    }

    .full-width-image {
        aspect-ratio: 1.24;
        object-fit: contain;
        object-position: center;
        width: 100%; 
        border-radius: 16px;
    }

    .footer-content-container {
        font-display: flex;
        flex-direction: column;  
        justify-content: center;
        max-width: 100%;
        align-items: center; 
        gap: 16px; 
    }

    .social-links {
        align-self: center; 
        display: flex;
        align-items: center;
        gap: 12px;  
    }

    .social-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px; 
        padding: 6px;
        overflow: hidden;
    }

    .social-icon img {
        aspect-ratio: 1;
        object-fit: contain;
        width: 30px; 
    }

    .contact-info {
        display: flex;
        margin-top: 20px;
        width: 100%;
        flex-direction: column;
        gap: 20px; 
    }

    .contact-item {
        display: flex;
        width: 100%;
        align-items: center;
        gap: 16px;
        flex-wrap: wrap;
    }

    .contact-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 22px; 
        padding: 3px;
    }

    .contact-icon img {
        aspect-ratio: 1;
        object-fit: contain;
        width: 20px; 
    }

    .contact-text {
        flex: 1;
        min-width: 200px; 
        color: white;
        font: 400 14px/1.2 "Lora", sans-serif; 
    }

    .footer-bottom {
        display: flex;
        margin-top: 40px;
        width: 100%;
        align-items: center;
        color: white;
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px; 
        font: 400 14px/1.2 "Lora", sans-serif; 
    }

    .copyright {
        display: flex;
        min-width: 240px;
        align-items: center;
        gap: 8px;
        font-weight: 400;
    }

    .copyright img {
        aspect-ratio: 1;
        object-fit: contain;
        width: 20px; 
    }

    .footer-nav {
        display: flex;
        min-width: 240px;
        align-items: center;
        gap: 16px; 
        font-weight: 600;
    }

    .footer-nav a {
        color: #fff;
        text-decoration: none;
    }

    .footer-container {
        display: flex;
        background-color: #101a31;
        height: 100%;
        padding: 20px 40px; 
        flex-direction: column; 
        align-items: center; 
    }
}
@media (max-width: 480px) {
    .news-updates-container {
        padding: 0px 10px; 
    }

    .updates-title {
        font-size: 20px; 
    }

    .blog-article-card-grid {
        grid-template-columns: 1fr; 
    }

    .blog-article-card {
        padding: 12px; 
    }

    .blog-article-image {
        width: 120px; 
    }

    .blog-article-title {
        font-size: 14px; 
    }

    .more-blog-updates-button {
        font: 600 12px/1.2 "Montserrat", sans-serif; 
        padding: 6px 12px; 
    }

    .blog-article-body {
        font-size: 13px; 
    }

    .article-footer {
        font-size: 12px; 
    }
}
@media (max-width: 1024px) {
    .services-section {
        padding: 80px 80px;
    }

    .services-container {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 32px;
        margin-top: 30px;
    }

    .our-services-card {
        border-radius: 16px;
    }

    .our-services-card-title {
        font-size: 17px;
    }

    .our-services-card-description {
        font-size: 14px;
    }

    .services-section {
        padding: 40px 20px;
    }
}

/* Media Query for 2048px */
@media (min-width: 2048px) {
    .services-section {
        padding: 60px 120px;
    }

    .services-container {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 32px;
        margin-top: 60px;
    }

    .our-services-card {
        border-radius: 30px;
    }

    .our-services-card-title {
        font-size: 22px;
    }

    .our-services-card-description {
        font-size: 17px;
    }
}
