/*======================================================
    DHRUV LOGISTICS
======================================================*/

:root {

    --primary: #123F92;

    --secondary: #EA3C36;

    --dark: #202B45;

    --text: #5B6478;

    --white: #ffffff;

    --light: #F4F8FD;

    --radius: 14px;

    --transition: .35s ease;

}

/*=========================
RESET
=========================*/

* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}

html {

    scroll-behavior: smooth;

}

body {

    font-family: 'Inter', sans-serif;

    overflow-x: hidden;

    color: var(--dark);

}

img {

    display: block;

    max-width: 100%;

}

ul {

    list-style: none;

}

a {

    text-decoration: none;

}

.container {

    max-width: 1320px;

    margin: auto;

    padding: 0 15px;

}

/*=========================
HEADER
=========================*/

.header {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    z-index: 999;

    background: #fff;

    box-shadow: 0 8px 30px rgba(0, 0, 0, .05);

}

.navbar {

    display: flex;

    justify-content: space-between;

    align-items: center;

    height: 92px;

}

.logo img {

    width: auto;
height:75px
}

.nav-menu {

    display: flex;

    gap: 34px;

    align-items: center;

}

.nav-menu>li {

    position: relative;

}

.nav-menu>li>a {

    color: var(--dark);

    font-size: 15px;

    font-weight: 600;

    transition: .3s;

}

.nav-menu>li>a:hover {

    color: var(--secondary);

}

.nav-menu .active {

    color: var(--secondary);

}

/*=========================
SUB MENU
=========================*/

.submenu {

    position: absolute;

    left: 0;

    top: 160%;

    width: 240px;

    background: #fff;

    border-radius: 14px;

    box-shadow: 0 20px 60px rgba(0, 0, 0, .08);

    opacity: 0;

    visibility: hidden;

    transition: .35s;

    padding: 10px 0;

}

.dropdown:hover .submenu {

    top: 120%;

    opacity: 1;

    visibility: visible;

}

.submenu li a {

    display: block;

    padding: 12px 20px;

    color: #444;

}

.submenu li a:hover {

    background: #F4F8FD;

    color: var(--primary);

}

/*=========================
BUTTONS
=========================*/

.header-btns {

    display: flex;

    gap: 14px;

}

.btn-call {

    border: 1px solid var(--primary);

    padding: 14px 24px;

    border-radius: 12px;

    color: var(--primary);

    font-weight: 600;

}

.btn-call:hover {

    background: var(--primary);

    color: #fff;

}

.btn-quote {

    background: var(--primary);

    color: #fff;

    padding: 14px 26px;

    border-radius: 12px;

    font-weight: 600;

}

.btn-quote:hover {

    background: #0D347F;

}

/*======================================================
HERO
======================================================*/

.hero {

    position: relative;

    height: 880px;

    margin-top: 92px;

    overflow: hidden;

}

/* Background Image */

.hero-image {

    position: absolute;

    inset: 0;

    background: url("../images/hero/truck.webp") center center/cover no-repeat;

    z-index: 1;

}

/* White Gradient */

.hero-overlay {

    position: absolute;

    inset: 0;

    z-index: 2;

    background:

        linear-gradient(90deg,

            rgba(255, 255, 255, .92) 0%,

            rgba(255, 255, 255, .88) 18%,

            rgba(255, 255, 255, .70) 35%,

            rgba(255, 255, 255, .30) 55%,

            rgba(255, 255, 255, 0) 78%);

}

/* Container */

.hero .container {

    position: relative;

    z-index: 5;

    height: 100%;

}

/* Grid */

.hero-grid {

    display: grid;

    grid-template-columns: 560px 1fr;

    align-items: center;

    height: 100%;

}

/* Left */

.hero-left {

    max-width: 560px;

}

/* Badge */

.hero-badge {

    display: inline-block;

    background: #fff;

    padding: 10px 18px;

    border-radius: 30px;

    font-size: 13px;

    font-weight: 700;

    color: #123F92;

    margin-bottom: 28px;

}

/* Heading */

.hero h1 {

    font-size: 68px;

    line-height: 1.08;

    font-weight: 800;

    color: #1F2A44;

    margin-bottom: 22px;

}

.hero h1 span {

    color: #EA3C36;

}

.hero h2 {

    font-size: 24px;

    margin-bottom: 24px;

    font-weight: 700;

    color: #123F92;

}

.hero h2 span {

    color: #EA3C36;

}

.hero p {

    font-size: 18px;

    line-height: 1.8;

    color: #55637C;

    margin-bottom: 40px;

}

/* Buttons */

.hero-buttons {

    display: flex;

    gap: 18px;

}

.btn-primary-hero {

    background: #123F92;

    color: #fff;

    padding: 18px 34px;

    border-radius: 14px;

    font-weight: 700;

}

.btn-secondary-hero {

    border: 2px solid #123F92;

    color: #123F92;

    padding: 18px 34px;

    border-radius: 14px;

    font-weight: 700;

}

/*=============================
HEADER RIGHT
=============================*/

.header-right {

    display: flex;

    align-items: center;

    gap: 18px;

}

/*=============================
MOBILE TOGGLE
=============================*/

.menu-toggle {

    width: 46px;

    height: 46px;

    border: none;

    background: transparent;

    cursor: pointer;

    display: none;

    padding: 0;

}

.menu-toggle span {

    display: block;

    width: 28px;

    height: 3px;

    margin: 5px auto;

    background: #123F92;

    border-radius: 50px;

    transition: .35s;

}

/*====================================
MOBILE MENU
====================================*/

.mobile-overlay {

    position: fixed;

    inset: 0;

    background: rgba(0, 0, 0, .45);

    opacity: 0;

    visibility: hidden;

    transition: .35s;

    z-index: 998;

}

.mobile-menu {

    position: fixed;

    top: 0;

    right: -100%;

    width: 320px;

    max-width: 100%;

    height: 100vh;

    background: #fff;

    z-index: 9999;

    transition: .35s;

    display: flex;

    flex-direction: column;

    padding: 30px;

    overflow: auto;

}

.mobile-top {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 35px;

}

.mobile-top img {

    width: 160px;

}

.close-menu {

    border: none;

    background: none;

    font-size: 34px;

    cursor: pointer;

}

.mobile-menu ul {

    padding: 0;

    margin: 0;

    list-style: none;

}

.mobile-menu li {

    border-bottom: 1px solid #eee;

}

.mobile-menu li a {

    display: block;

    padding: 16px 0;

    color: #222;

    font-weight: 600;

}

.mobile-buttons {

    margin-top: 35px;

    display: flex;

    flex-direction: column;

    gap: 15px;

}

.mobile-buttons a {

    text-align: center;

}

/* Active */

.mobile-menu.active {

    right: 0;

}

.mobile-overlay.active {

    opacity: 1;

    visibility: visible;

}

body.menu-open {

    overflow: hidden;

}

/*==================================================
HERO STATS
==================================================*/
.hero-stats-section {

    position: relative;

    margin-top: -70px;
    /* overlaps hero */

    z-index: 50;

}

  

.stats-card{

    background:#fff;

    border-radius:24px;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    padding:35px;

    box-shadow:0 20px 60px rgba(0,0,0,.08);

}

.stat-item{

    display:flex;

    align-items:center;

    gap:18px;

    padding:0 25px;

    border-right:1px solid #ECECEC;

}

.stat-item:last-child {

    border: none;

}

.stat-icon {

    width: 68px;

    height: 68px;

    border-radius: 50%;

    background: #EFF5FF;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 30px;

}

.stat-icon.red {

    background: #FFF2F2;

}

.stat-item h3 {

    font-size: 34px;

    color: #123F92;

    margin-bottom: 6px;

    font-weight: 800;

}

.stat-item p {

    color: #666;

    margin: 0;

    font-size: 15px;

}

/*======================================================
ABOUT SECTION
======================================================*/

.about-section{

    padding:120px 0;

    background:#fff;

}

.about-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:80px;

}

/* Left */

.about-image{

    position:relative;

}

.about-image img{

    width:100%;

    border-radius:24px;

    object-fit:cover;

    box-shadow:0 20px 60px rgba(0,0,0,.08);

}

/* Experience Box */

.experience-box{

    position:absolute;

    right:-25px;

    bottom:40px;

    width:180px;

    height:180px;

    background:#123F92;

    color:#fff;

    border-radius:22px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

    box-shadow:0 25px 50px rgba(18,63,146,.25);

}

.experience-box span{

    font-size:52px;

    font-weight:800;

    line-height:1;

    margin-bottom:10px;

}

/* Right */

.section-tag{

    display:inline-block;

    padding:10px 18px;

    border-radius:30px;

    background:#EFF5FF;

    color:#123F92;

    font-weight:700;

    font-size:13px;

    letter-spacing:.5px;

    margin-bottom:25px;

}

.about-content h2{

    font-size:48px;

    font-weight:800;

    color:#1E293B;

    line-height:1.2;

    margin-bottom:25px;

}

.about-content p{

    font-size:17px;

    color:#667085;

    line-height:1.9;

    margin-bottom:35px;

}

/* Features */

.about-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px 30px;

    margin-bottom:40px;

}

.about-features div{

    display:flex;

    align-items:center;

    gap:12px;

    font-size:17px;

    font-weight:600;

    color:#263247;

}

/* Tick */

.about-features div::before{

    content:"✓";

    width:28px;

    height:28px;

    border-radius:50%;

    background:#123F92;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:14px;

    flex-shrink:0;

}

/* Hover */

.about-image img{

    transition:.4s;

}

.about-image:hover img{

    transform:scale(1.03);

}
 

/*==================================================
                PRODUCTS SECTION
==================================================*/

.products-section{
    position:relative;
    padding:100px 0;
    background:#f7f9fc;
    overflow:hidden;
}

.products-section .container{
    position:relative;
}

/*=====================================
        SECTION HEADING
======================================*/

.section-heading{
    text-align:center;
    max-width:760px;
    margin:0 auto 70px;
}

.section-tag{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:10px 24px;
    border-radius:50px;
    background:#e9f2ff;
    color:#123f92;
    font-size:14px;
    font-weight:700;
    letter-spacing:.5px;
    text-transform:uppercase;
    margin-bottom:20px;
}

.section-heading h2{
    font-size:46px;
    line-height:1.2;
    font-weight:700;
    color:#1c2c4c;
    margin-bottom:18px;
}

.section-heading p{
    font-size:18px;
    line-height:1.8;
    color:#697a95;
    margin:0;
}

/*=====================================
            SLIDER
======================================*/

.products-slider{
    position:relative;
}

.dl-viewport{
    overflow:hidden;
}

.dl-track{
    display:flex;
    transition:.45s ease;
    will-change:transform;
}

.dl-slide{
    flex:0 0 100%;
    padding:18px;
    box-sizing:border-box;
}

@media(min-width:768px){

    .dl-slide{
        flex:0 0 50%;
    }

}

@media(min-width:992px){

    .dl-slide{
        flex:0 0 33.333%;
    }

}

@media(min-width:1400px){

    .dl-slide{
        flex:0 0 25%;
    }

}

/*=====================================
            PRODUCT CARD
======================================*/

.product-card{

    background:#fff;
    border-radius:20px;
    overflow:hidden;

    display:flex;
    flex-direction:column;

    height:100%;

    border:1px solid #edf1f6;

    transition:.35s;

    box-shadow:
    0 12px 35px rgba(0,0,0,.05);

}

.product-card:hover{

    box-shadow:
    0 25px 60px rgba(0,0,0,.10);

}

/*=====================================
            IMAGE
======================================*/

.product-image{

    position:relative;

    overflow:hidden;

    aspect-ratio:4/3;

}

.product-image img{

    width:100%;
    height:100%;
    padding:10px 10px 0 10px;
    object-fit:cover;
    border-radius:20px 20px 0 0;
    transition:.6s;

}

.product-card:hover img{

    transform:scale(1.08);

}

.product-image::after{

    content:"";

    position:absolute;

    inset:0;
 

}

/*=====================================
        OPTIONAL TAG
======================================*/

.product-tag{

    position:absolute;

    top:18px;
    left:18px;

    background:#123f92;

    color:#fff;

    padding:7px 18px;

    border-radius:50px;

    font-size:12px;

    font-weight:600;

    z-index:5;

}

/*=====================================
            CONTENT
======================================*/

.product-content{

    padding:22px;

    display:flex;

    flex-direction:column;

    flex:1;

}

.product-content h3{

    font-size:22px;
    font-weight:700;

    line-height:1.2;

    margin-bottom:8px;

    color:#1c2c4c;

}

.product-content p {
    color: rgb(102, 112, 133);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 18px;
    min-height: 55px;
}

/*=====================================
        EXPLORE BUTTON
======================================*/

.product-content a{

    display:inline-flex;

    align-items:center;

    gap:10px;

    margin-top:auto;

    color:#123f92;

    font-weight:600;

    font-size:16px;

    text-decoration:none;

    transition:.3s;

}

.product-content a span{

    transition:.35s;

}

.product-content a:hover{

    color:#083a94;

}

.product-content a:hover span{

    transform:translateX(8px);

}

/*=====================================
            ARROWS
======================================*/

.dl-arrow{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:58px;

    height:58px;

    border:none;

    border-radius:50%;

    background:#fff;

    color:#1c2c4c;

    font-size:22px;

    cursor:pointer;

    z-index:20;

    box-shadow:
    0 10px 30px rgba(0,0,0,.12);

    transition:.35s;

}

.dl-prev{

    left:-30px;

}

.dl-next{

    right:-30px;

}

.dl-arrow:hover{

    background:#123f92;

    color:#fff;

    transform:translateY(-50%) scale(1.08);

}

/*=====================================
            DOTS
======================================*/

.dl-nav{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:12px;

    margin-top:45px;

}

.dl-dot{

    width:12px;

    height:12px;

    border-radius:50px;

    background:#ffffff;

    cursor:pointer;

    transition:.35s;
    border:none;

}

.dl-dot.active{

    width:38px;

    background:#123f92;

}

/*=====================================
        DRAGGING
======================================*/

.products-slider.dragging .dl-track{

    transition:none;

    cursor:grabbing;

}

.dl-track{

    cursor:grab;

}

/*=====================================
        RESPONSIVE
======================================*/

@media(max-width:1200px){

    .section-heading h2{

        font-size:40px;

    }

}

@media(max-width:991px){

    .products-section{

        padding:80px 0;

    }

    .section-heading{

        margin-bottom:50px;

    }

    .section-heading h2{

        font-size:34px;

    }

    .section-heading p{

        font-size:16px;

    }

    .product-content{

        padding:24px;

    }

    .product-content h3{

        font-size:25px;

    }

    .dl-prev{

        left:-12px;

    }

    .dl-next{

        right:-12px;

    }

}

@media(max-width:767px){

    .products-section{

        padding:70px 0;

    }

    .section-heading{

        margin-bottom:40px;

    }

    .section-heading h2{

        font-size:28px;

    }

    .section-heading p{

        font-size:15px;

    }

    .product-content{

        padding:22px;

    }

    .product-content h3{

        font-size:24px;

    }

    .product-content p{

        font-size:15px;

    }

    .dl-arrow{

        width:48px;

        height:48px;

        font-size:18px;

    }

    .dl-prev{

        left:5px;

    }

    .dl-next{

        right:5px;

    }

}


/*=============================
        WHY CHOOSE SECTION
==============================*/

/*==================================================
                WHY CHOOSE SECTION
==================================================*/

.why-choose-section{
    padding:80px 0;
    background:#fff;
}

.why-wrapper{
    display:flex;
    min-height:330px;
    overflow:hidden;
}

/*==================================================
                LEFT SECTION
==================================================*/

.why-left{

    width:72%;

    position:relative;

    background:
    linear-gradient(
        90deg,
        rgba(255,255,255,1) 0%,
        rgba(255,255,255,1) 38%,
        rgba(255,255,255,.96) 45%,
        rgba(255,255,255,.75) 55%,
        rgba(255,255,255,.30) 67%,
        transparent 78%
    ),
    url("../images/why-us.webp");

    background-size:cover;

    background-position:center;

    display:flex;

    align-items:center;

}

/*==================================================
            CONTENT BOX
==================================================*/

.why-content{

    width:44%;

    padding:40px;

}

/*==================================================
            TAG
==================================================*/

.section-tag{

    display:inline-block;

    position:relative;

    padding:12px 24px;

    border-radius:40px;

    background:#edf4ff;

    color:#0b3b8d;

    font-size:14px;

    font-weight:700;

    letter-spacing:.5px;

    text-transform:uppercase;

    margin-bottom:30px;

}

.section-tag::after{

    content:"";

    position:absolute;

    left:28px;

    bottom:10px;

    width:45px;

    height:2px;

    background:#df2c2c;

}

/*==================================================
            PARAGRAPH
==================================================*/

.why-content p{

    font-size:15px;

    line-height:2;

    color:#56657d;

    margin-bottom:30px;

}

/*==================================================
            LIST
==================================================*/

.why-list{

    margin:0;

    padding:0;

    list-style:none;

}

.why-list li{

    position:relative;

    padding-left:28px;

    margin-bottom:18px;

    color:#1f3557;

    font-size:15px;

}

.why-list li::before{

    content:"✓";

    position:absolute;

    left:0;

    color:#0b3b8d;

    font-weight:bold;

}

/*==================================================
            RIGHT SECTION
==================================================*/

.why-right{

    width:28%;

    position:relative;

    background:
    linear-gradient(
        rgba(9,31,70,.90),
        rgba(9,31,70,.90)
    ),
    url("../images/about.webp");

    background-size:cover;

    background-position:center;

    display:flex;

    align-items:center;

}

/*==================================================
        RIGHT CONTENT
==================================================*/
 

.why-right-content{

    padding:45px;

    color:#fff;

}

.why-right-content h2{

    font-size:26px;

    line-height:1.2;

    margin-bottom:25px;

    font-weight:700;

}

.why-right-content p{

    color:rgba(255,255,255,.82);

    line-height:1.9;

    font-size:15px;

    margin-bottom:30px;

}

/*==================================================
                BUTTON
==================================================*/

.quote-btn{

    display:inline-flex;

    align-items:center;

    gap:12px;

    padding:14px 30px;

    background:#e62f2f;

    color:#fff;

    text-decoration:none;

    font-weight:600;

    border-radius:4px;

    transition:.3s;

}

.quote-btn span{

    transition:.3s;

}

.quote-btn:hover{

    background:#c91d1d;

}

.quote-btn:hover span{

    transform:translateX(6px);

}

/*==================================================
            RESPONSIVE
==================================================*/

@media(max-width:991px){

.why-wrapper{

flex-direction:column;

}

.why-left{

width:100%;

background-position:center;

}

.why-content{

width:55%;

padding:40px;

}

.why-right{

width:100%;

}

}

@media(max-width:767px){

.why-choose-section{

padding:60px 0;

}

.why-content{

width:100%;

padding:30px;

background:rgba(255,255,255,.92);

}

.why-right-content{

padding:35px;

}

.why-right-content h2{

font-size:32px;

}

.section-tag{

font-size:13px;

padding:10px 18px;

}

}

/*==========================================
        INDUSTRIES SECTION
==========================================*/

.industries-section{

    padding:80px 0;

    background:#fff;

}

/*==========================================*/

.industries-section .section-heading{

    text-align:center;

    margin-bottom:40px;

}

.industries-section .section-heading h2{

    font-size:38px;

    color:#18315b;

    font-weight:700;

    position:relative;

    display:inline-block;

    margin:0;

}

.industries-section .section-heading h2::after{

    content:"";

    width:45px;

    height:3px;

    background:#e33131;

    display:block;

    margin:12px auto 0;

    border-radius:5px;

}

/*==========================================*/

.industry-grid{

    display:grid;

    grid-template-columns:repeat(7,1fr);

    gap:18px;

}

/*==========================================*/

.industry-card{

    background:#fff;

    border:1px solid #edf0f5;

    border-radius:12px;

    padding:24px 15px;

    text-align:center;

    text-decoration:none;

    transition:.35s;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    min-height:135px;

}

.industry-card:hover{

    transform:translateY(-6px);

    border-color:#123f92;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

/*==========================================*/

.industry-card img{

    width:75px; 

    object-fit:contain;

    margin-bottom:18px;

    transition:.35s;

}

.industry-card:hover img{

    transform:scale(1.08);

}

/*==========================================*/

.industry-card span{

    color:#1e3355;

    font-size:15px;

    font-weight:600;

    line-height:1.4;

}

/*==========================================*/

@media(max-width:1200px){

.industry-grid{

grid-template-columns:repeat(4,1fr);

}

}

@media(max-width:768px){

.industry-grid{

grid-template-columns:repeat(2,1fr);

gap:15px;

}

.industries-section{

padding:60px 0;

}

.industries-section .section-heading h2{

font-size:30px;

}

.industry-card{

min-height:120px;

padding:20px;

}

 

.industry-card span{

font-size:14px;

}

}

@media(max-width:480px){

.industry-grid{

grid-template-columns:1fr 1fr;

}

}

/*=========================================
            FOOTER
=========================================*/

.footer{

    background:linear-gradient(135deg,#07204c,#0a3d91);

    color:#fff;

    padding:70px 0 0;

}

/*=========================================*/

.footer-grid{

    display:grid;

    grid-template-columns:1.4fr 1fr 1fr 1.2fr;

    gap:60px;

    padding-bottom:50px;

}

/*=========================================*/

.footer-logo img{

    max-width:220px;

    margin-bottom:20px;

}

.footer-about p{

    color:rgba(255,255,255,.75);

    line-height:1.9;

    margin-bottom:30px;

}

/*=========================================*/

.social-links{

    display:flex;

    gap:12px;

}

.social-links a{

    width:42px;

    height:42px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    color:#fff;

    transition:.35s;

    text-decoration:none;

}

.social-links a:hover{

    background:#e62b2b;

    transform:translateY(-5px);

}

/*=========================================*/

.footer h4{

    font-size:22px;

    margin-bottom:25px;

    position:relative;

}

.footer h4::after{

    content:"";

    width:40px;

    height:3px;

    background:#e62b2b;

    display:block;

    margin-top:10px;

}

/*=========================================*/

.footer ul{

    margin:0;

    padding:0;

    list-style:none;

}

.footer ul li{

    margin-bottom:15px;

}

.footer ul li a{

    color:rgba(255,255,255,.78);

    text-decoration:none;

    transition:.3s;

}

.footer ul li a:hover{

    color:#fff;

    padding-left:8px;

}

/*=========================================*/

.contact-list li{

    display:flex;

    gap:15px;

    align-items:center;

    color:rgba(255,255,255,.78);

    line-height:1.8;

}

.contact-list i{

    color:#ff4040;

    margin-top:5px;

    width:18px;

}

/*=========================================*/

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.12);

    padding:25px 0;

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:20px;

}

.footer-bottom p{

    margin:0;

    color:rgba(255,255,255,.75);

}

.footer-bottom div{

    display:flex;

    gap:30px;

}

.footer-bottom a{

    color:rgba(255,255,255,.75);

    text-decoration:none;

    transition:.3s;

}

.footer-bottom a:hover{

    color:#fff;

}

/*=========================================
        RESPONSIVE
=========================================*/

@media(max-width:992px){

.footer-grid{

grid-template-columns:repeat(2,1fr);

gap:40px;

}

}

 @media (max-width: 576px) {

    .footer-grid{
        display:grid;
        grid-template-columns:repeat(2,1fr);
        gap:30px 20px;
    }

    /* About section full width */
    .footer-about{
        grid-column:1/-1;
        text-align:left;
    }

    .footer-logo img{
        width:170px;
        margin:0 0 20px;
    }

    .footer-about p{
        margin:0 0 25px;
        max-width:100%;
        text-align:left;
    }

    .social-links{
        justify-content:flex-start;
    }

    /* Headings */
    .footer h4{
        text-align:left;
        font-size:22px;
        margin-bottom:18px;
    }

    .footer h4::after{
        margin:10px 0 0;
    }

    /* Lists */
    .footer ul{
        text-align:left;
    }

    .footer ul li{
        margin-bottom:12px;
    }

    .footer ul li a{
        padding:0;
    }

    /* Contact */
    .contact-list{
        text-align:left;
    }

    .contact-list li{
        display:flex;
        justify-content:flex-start;
        align-items:center;
        gap:12px;
        text-align:left;
    }

    /* Bottom */
    .footer-bottom{
        flex-direction:column;
        gap:15px;
        text-align:center;
    }

    .footer-bottom div{
        justify-content:center;
        gap:20px;
        flex-wrap:wrap;
    }

    .footer-grid > :last-child {
        grid-column: 1 / -1;
    }

}