*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root{
    --primary-color: #2e2480;
    --primary-light: #F2F2FDFF;
    --secondary-color: #005bb5;
    --primary-light-1: #CED0F8FF;
    --primary-light-2: #878CEDFF;
    --primary-variant-1: #3a2e8c;
    --primary-variant-2: #2e3880;
    --primary-variant-3: #402480;
    --primary-variant-4: #242e80;
    --primary-variant-5: #2e2470;
    --primary-variant-6: #4a2e80;
    --text-color: #333;
    --background-color: #f0f0f0;
    --border-color: #e0e0e0;
    --title-font: 'Archivo Black', sans-serif;
    --text-font: 'Inter', sans-serif;
}
body{
    font-family: var(--text-font);
}
.container{
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}
html{
    scroll-behavior: smooth;
}
a{
    text-decoration: none;
}
/* preloader */
#spinner-container{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    pointer-events: none;
}   
#spinner{
    width: 50px;
    height: 50px;
    border: 5px solid var(--primary-color);
    border-top: 5px solid var(--primary-light-1);
    border-radius: 50%;
    animation: spin 1.2s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.fade-out{
    animation: fadeOut 1s ease forwards;
}
@keyframes fadeOut {
    0% { opacity: 1; }
    100% { opacity: 0; }
}
#main-content{
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}
#main-content.show{
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto;
}
/* navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0; 
    width: 100%;
    padding: 0 2rem;
    background: transparent;
    height: 100px;
    z-index: 100;
}
.navbar.scrolled {
  background: var(--primary-variant-1);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
  transition: background 0.3s, box-shadow 0.3s;
}
.nav-container{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
}
.navbar-logo img {
    height: 7rem;
    width: auto;
    display: block;
}

.navbar-center {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    list-style: none;
    padding: 0;
    width: 100%;
}
.navbar-center li a {
    text-decoration: none;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    transition: color 0.2s;
}
.navbar-center li a {
    position: relative;
    transition: color 0.2s;
}

.navbar-center li a::after {
    content: '';
    display: block;
    position: absolute;
    left: -10px;
    right: -10px;
    bottom: -6px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    opacity: 0;
    transform: scaleX(0);
    transition: opacity 0.2s, transform 0.2s;
}


.navbar-center li a:hover::after {
    opacity: 1;
    transform: scaleX(1);
}
.navbar-center li:last-child a{
    display: none;
}
.navbar-right {
    margin-left: auto;
}

.lets-talk-btn {
    width: auto;
    white-space: nowrap;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 1.5rem;
    padding: 0.625rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0,119,255,0.08);
}

.lets-talk-btn:hover {
    background-color: var(--primary-variant-1);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    position: relative;
    width: 25px;
    height: 22px;
}
.hamburger span {
    width: 25px;
    height: 2px;
    background-color: #fff;
    transition: 0.3s;
    position: absolute;
    left: 0;
}
.hamburger span:nth-child(1) {
    top: 0;
}
.hamburger span:nth-child(2) {
    top: 10px;
}
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 10px;
}

.hamburger.active span:nth-child(2) {
    transform: rotate(-45deg);
    top: 10px;
}
.backdrop{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 99;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.backdrop.active{
    opacity: 1;
    pointer-events: auto;
}
/* hero section */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('assets/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(99, 94, 232, 0.412), rgba(0, 0, 0, 0.7));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    width: 100%;
}
.hero-content h1 {
    font-family: var(--title-font);
    font-size: 3.5rem;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    letter-spacing: .17em;
    color: var(--primary-light-1);
}

.company-logos {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
    width: 100%;
    padding: 0 2rem;
    box-sizing: border-box;
    overflow-x: hidden;
}

.company-logo-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 10rem;
    height: 6rem;
    background: transparent;
    border: .5px solid #fff;
    transition: box-shadow 0.2s;
    cursor: pointer;
    text-decoration: none;
    flex-shrink: 0;
}


.company-logo-box:hover {
    box-shadow: 0 0 0.5rem rgba(255,255,255,0.3);
}

.company-logo-box img {
    max-width: 85%;
    max-height: 75%;
    object-fit: contain;
}
.company-logo-box img:hover{
    transform: scale(1.05);
    transition: transform 0.2s;
}
/* for tablet */
@media (max-width: 768px) {
    .navbar{
        height: 80px;
    }   
      
    .navbar-center {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        position: absolute;
        top: 0;
        left: 0;
        width: 60%;
        height: 100vh;
        /* background-color: rgba(0, 0, 0, 0.2); */
        background-color: var(--primary-light);
        box-shadow: 8px 0 32px 0 rgba(31, 38, 135, 0.18), 0 8px 32px 0 rgba(31, 38, 135, 0.10);
        padding: 5rem 3rem;
        /* border-right: 1px solid var(--primary-light); */
        z-index: 100;
        opacity: 0;
        transform: translateX(-100%);
        pointer-events: none;
        transition:
            opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
            transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
            box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
            background-color 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.10);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        -moz-backdrop-filter: blur(8px);
        -ms-backdrop-filter: blur(8px);
        -o-backdrop-filter: blur(8px);
    }
    .navbar-center.active{
        opacity: 1;
        transform: translateX(0);
        pointer-events: auto;
    }
    .navbar-center.active li a{
        color: var(--primary-color);
    }
    .navbar-center li:last-child a{
        opacity: 0;
        transition:  opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .navbar-center.active li:last-child a{
        display: block;
        opacity: 1;
        transition:  opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .lets-talk-btn{
        display: none;
    }
    .navbar-logo.active{
        /* display: block;
        z-index: 200; */
    }
    .hamburger {    
        display: flex;
        z-index: 100;     
    }
    .hamburger.active span {
        width: 20px;
        height: 1.5px;
        
    }
   .hero-section{
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
   }
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .hero-content p {
        font-size: 1.12rem;
    }
    .company-logos {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1.5rem;
        padding: 0 1rem;
        align-items: stretch;
        overflow-x: unset;
    }
    .company-logo-box {
        width: 100%;
        height: 5.5rem;
        margin-bottom: 0;
    }
    .company-logo-box img {
        max-width: 90%;
        max-height: 80%;
    }
}
/* for mobile */
@media (max-width: 480px) {
    .nav-container{
        padding: 0;
    }
    .navbar-logo img {
        height: 5rem;
    }
    .hero-section{
      height: 100%;
      padding: 5rem 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
}
/* about section */
.about-section{
   padding: 5rem 0;
   min-height: 100vh;
}
.about-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}
.about-title{
    font-size: 2.5rem;
    font-weight: 400;
    text-align: center;
    font-family: var(--title-font);
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 2rem;
}
.about-title span{
    color: var(--primary-light-1);
    font-weight: 400;
    font-family: var(--title-font);
    text-transform: uppercase;
}
.about-items {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    gap: 2rem;
    width: 100%;
}

.about-item {
    /* 
      flex: 1 1 0; explanation:
      - flex-grow: 1 (item will grow to fill available space)
      - flex-shrink: 1 (item can shrink if needed)
      - flex-basis: 0 (initial size before growing/shrinking is 0)
      This makes all .about-item elements in a flex container share available space equally.
    */
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: .75rem;
    background-color: var(--primary-light);
    padding: 2rem;
    width: 100%;
    min-width: 0;
    min-height: 100%;
    border: none;
    color: var(--text-color);
    text-align: center;
}
.about-item h4{
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    font-family: var(--text-font);
}
.about-item p{
    color: var(--text-color);
    line-height: 1.5;
    font-size: 1rem;
    font-weight: 400;
    font-family: var(--text-font);
}
.about-icon-bg{
    aspect-ratio: 1 / 1;
    width: 3rem;
    background-color: var(--primary-light-1);
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-icon-bg i{
    color: var(--primary-color);
    font-size: 1.5rem;
}

/* for mobile */
@media (max-width: 480px) {
    .about-items {
        flex-direction: column;
        align-items: center;
    }
    .about-item {
        flex: auto; /* flex-grow: 1; flex-shrink: 1; flex-basis: auto */
        padding: 1rem;
    }
    .about-title{
        font-size: 1.8rem;
    }
    .about-item h4{
        font-size: 1.25rem;
    }
    .about-item p{
        font-size: .875rem;
    }
}
/* values section */
.values-section{
    padding: 5rem 0;
    min-height: 100vh;
    background-color: var(--primary-color);
    color: #fff;
}
.values-content{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
}
.values-title{
    font-size: 2.5rem;
    font-weight: 400;
    font-family: var(--title-font);
    text-transform: uppercase;
}
.values-subtitle{
    line-height: 1.2;
    font-size: 2rem;
    font-weight: 600;
    font-family: var(--text-font);
}
.values-subtitle span{
    color: var(--primary-light-1);
    text-transform: uppercase;
    font-weight: 400;
    font-family: var(--title-font);
    letter-spacing: .1em;
}
.values-grids{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background-color: var(--primary-variant-5);
    padding: 2rem 0;
    width: 100%;
    align-items: flex-start;
    justify-content: flex-start;
}
.values-item{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-left: .75rem;
    margin-bottom: 1rem;
}

.values-item i{
    font-size: 1.5rem;
    color: var(--primary-light-2);
}
.values-item-content{
    position: relative;
    padding: 0 1rem 0 2rem;
    /* border: 1px solid red; */
}
.values-item-content::before{
    content: '';
    position: absolute;
    left: 10px;
    width: 1px;
    height: 110px;
    background-color: var(--primary-light-1);
    box-shadow: 0 0 10px 0 rgba(200, 182, 234, 0.5);
}
.values-item h4{
    font-size: 1.25rem;
    font-weight: 600;
    font-family: var(--text-font);
    color: var(--primary-light);
    margin-bottom: .5rem;
    transition: all 0.3s ease;
}
.values-item h4:hover{
    color: var(--primary-light-1);
}
.bold{
    font-family: var(--title-font);
    font-weight: 400;
    font-size: 1.5rem;
    color: var(--primary-light-1);
}
.values-item p{
    font-size: 1rem;
    font-weight: 400;
    color: var(--primary-light-1);
     line-height: 1.5;
}
/* for tablet */
@media (max-width: 768px) {
    .values-grids{
        grid-template-columns: repeat(2, 1fr);
    }
}   
/* for mobile */
@media (max-width: 480px) {
    .values-grids{
        grid-template-columns: minmax(280px, 1fr);
    }
    .values-item-content{
        padding-top: 1rem;
    }
    .values-title{
        font-size: 1.8rem;
    }
    .values-subtitle{
        font-size: 1.5rem;
    }
    .values-item h4{
        font-size: 1.125rem;
    }
    .values-item p{
        font-size: .875rem;
    }
}
/* our divisions section */
.divisions-section{
    padding: 5rem 0;
    min-height: 100vh;
    background-color: var(--primary-light);
    color: var(--text-color);
    position: relative;
    overflow: hidden;
}
.divisions-content{   
 /* border: 2px solid blue; */
 /* position: relative; */
 z-index: 1;
 width: 100%;
 height: 100%;
}
.divisions-title{
    font-size: 2.5rem;
    font-weight: 400;
    font-family: var(--title-font);
    color: var(--primary-color);
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 2rem;
}
.divisions-items{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    gap: 8rem;
    position: relative;
    z-index: 1;
}
.divisions-item{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    /* border: 2px solid red; */
    padding: 1rem 3rem;
    z-index: 0;
}
.divisions-item.active{
    z-index: 1;
    opacity: 1;
}
/* .divisions-item:nth-child(even){
    flex-direction: row-reverse;
} */
.division-image{
    width: 50%;
    height: auto;
    object-fit: cover;
    position: relative;
   box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.division-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.division-content{
    /* border: 2px solid green; */
    width: 50%;
    height: 100%;
    object-fit: cover;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
}
.division-logo{
    width: 3rem;
    height: 3rem;
    object-fit: cover;
}
.division-logo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.division-title{
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--text-font);
    color: var(--text-color);
}
.division-description{
    font-size: 1rem;
    font-weight: 400;
    font-family: var(--text-font);
    color: var(--text-color);
    line-height: 1.5;
}
.division-buttons{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 0;
}
.button{
       padding: 0.5rem 1rem;
       font-size: 1rem;
       font-weight: 600;
       font-family: var(--text-font);
       cursor: pointer;
       transition: all 0.3s ease;
       box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
.learn-more-btn{
    background-color: var(--primary-color);
    color: var(--primary-light-1);
    border: none;
   
}
.visit-website-btn{
    background-color: var(--primary-light-1);
    border: none;
    color: var(--primary-color);
}
.learn-more-btn:hover{
    background-color: var(--primary-variant-1);
    color: var(--primary-light);
}
.visit-website-btn:hover{
    background-color: var(--primary-variant-1);
    color: var(--primary-light-1);
}
/* for tablet */
@media (max-width: 768px) {
    .divisions-section{
        position: static!important;
        opacity: 1!important;
        pointer-events: auto!important; 
    }
    /* .divisions-content{
        position: static!important;
        opacity: 1!important;
        pointer-events: auto!important; 
    }
    .divisions-items{
        position: static!important;
        opacity: 1!important;
        pointer-events: auto!important; 
    } */
    .divisions-item{
        position: static!important;
        opacity: 1!important;
        pointer-events: auto!important; 
        gap: 2rem;
        padding: 0;
    }
    .divisions-items{
        gap: 2rem;
    }
}
/* for mobile */
@media (max-width: 480px) {
    .divisions-item{
        flex-direction:  column;
        gap: 1rem;
    }
    /* .divisions-item:nth-child(even){
        flex-direction: column;
    } */
    .division-image{
        width: 100%;
        height: 100%
    }
    .division-image img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .division-content{
        padding: 0;
        width: 100%;
    }
    .divisions-title{
        font-size: 1.8rem;
    }
    .division-title{
        font-size: 1.25rem;
    }
    .division-description{
        font-size: .875rem;
    }
}
/* contact section */
.contact-section{
    padding: 5rem 0;
    color: var(--text-color);
    background-image: url('assets/bg-2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 30vh;
}
.contact-section::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(99, 94, 232, 0.412), rgba(0, 0, 0, 0.7));
}
.contact-content{
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    height: 100%;
}
.cta-text{
    width: 50%;
}
.cta-text h2{
    font-size: 2.5rem;
    font-weight: 400;
    font-family: var(--title-font);
    color: var(--primary-light);
    text-transform: uppercase;
    line-height: 1.2;
}
.cta-button{
    width: auto;
    white-space: nowrap;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 1.5rem;
    padding: 0.625rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0,119,255,0.08);
}
.cta-button i{
    margin-left: .5rem;
}
.cta-button:hover {
    background-color: var(--primary-variant-1);
}
/* for tablet */
@media (max-width: 768px) {
    .cta-text h2{
        font-size: 2rem;
    }
}
/* for mobile */
@media (max-width: 480px) {
    .contact-content{
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    .cta-text h2{
        font-size: 1.8rem;
    }
}   

/* footer section */
.footer-section{
    padding: 5rem 0 1.5rem 0;
    height: auto;
    background-color: var(--primary-color);
    color: var(--primary-light);
}
.footer-content{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding-bottom: 2rem;
}
.footer-left{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1rem;
}
.footer-logo{
    width: auto;
    height: 7rem;
    object-fit: cover;
}
.footer-logo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.footer-social{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 1.5rem;
}
.footer-social a{
    color: var(--primary-light-2);
    font-size: 1.3rem;
    transition: all 0.3s ease;
}
.footer-social a:hover{
    color: var(--primary-light-1);
}
.footer-links{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1rem;
    padding: 1rem;
}
.footer-links h3{
    font-size: 1.25rem;
    font-weight: 600;
    font-family: var(--text-font);
    color: var(--primary-light);
}   
.footer-links ul{
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    padding: 0;
}
.footer-links ul li a{
    text-decoration: none;
    color: var(--primary-light);
    font-size: 1rem;
    font-weight: 400;
    font-family: var(--text-font);
    padding: 0;
    transition: all 0.3s ease;
}
.footer-links ul li a:hover{
    color: var(--primary-light-2);
}
.footer-contact{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    background-color: var(--primary-variant-5);
    padding: 1rem;
}
.footer-contact h3{
    font-size: 1.25rem;
    font-weight: 600;
    font-family: var(--text-font);
    color: var(--primary-light);
    margin-bottom: 1.2rem;
}
.footer-contact p{
    font-size: 1rem;
    padding: 0;
    margin: 0;
    margin-bottom: .5rem;
}

.icons{
    margin-right: .5rem;
    color: var(--primary-light-2);
    font-size: 1.3rem;
}
.footer-bottom{
    text-align: center;
    font-size: .75rem;
    font-weight: 400;
    font-family: var(--text-font);
    color: var(--primary-light-1);
    padding: 1rem 0;
    border-top: 1px solid var(--primary-light-2);
}
/* for tablet */
@media (max-width: 768px) {
    .footer-content{
        grid-template-columns: repeat(2, 1fr);
    }
}
/* for mobile */
@media (max-width: 480px) {
    .footer-section{
        padding: 2rem 0;
        height: auto;
    }
    .footer-content{
        grid-template-columns: repeat(1, 1fr);
        gap: 1rem;
        grid-template-areas: 
            "contact"
            "links"
            "logo"
            "social";
    }
    
    .footer-contact {
        grid-area: contact;
    }
     .footer-links {
        grid-area: links;
    }
     .footer-contact h3{
        font-size: 1.1rem;
    }
    .footer-contact p{
        font-size: .75rem;
        margin-bottom: 1rem;
    }
    .icons{
    font-size: 1rem;
   }
      .footer-links h3{
        font-size: 1.1rem;
    }
       .footer-links ul li a{
        font-size: .75rem;
    }
    .footer-left {
        grid-area: logo;
        align-items: center;
        justify-content: center;
        gap: 0;
    }
        .footer-logo{
        width: 5rem;
        height: 5rem;
    } 
     .footer-social{
        gap: 1rem;
        justify-content: center;
        align-items: center;
    }  
    .footer-social a{
        font-size: 1.1rem;
    }
}
