* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    
    background: linear-gradient(to right, #eef8f5, #f3f7ff);
}

/* =========================
NAVBAR
========================= */

.custom-navbar {
    width: 100%;
    background: #f3f7f6;
    padding: 14px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    position: sticky;
    top: 0;
    z-index: 999;
}

/* CONTAINER SPACING */

.navbar {
    padding: 0;
}

/* LOGO */

.brand-logo {
    width: 38px;
    height: auto;
    object-fit: contain;
}

.brand-text {
    font-size: 20px;
    font-weight: 700;
    color: #19324d;
    letter-spacing: 0.4px;
}

/* NAV LINKS */

.navbar-nav {
    gap: 35px;
}

.nav-link {
    color: #23374d !important;
    font-size: 15px;
    font-weight: 500;
    position: relative;
    transition: 0.3s ease;
}

/* LANGUAGE BUTTON */

.lang-btn {
    border: none;
    outline: none;
    background: linear-gradient(135deg, #1d8fff, #39c86f);
    color: #fff;
    padding: 10px 22px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.lang-btn:hover {
    transform: translateY(-2px);
}

/* TOGGLER */

.custom-toggler {
    border: none;
    box-shadow: none !important;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:991px) {

    .navbar-collapse {
        background: #ffffff;
        margin-top: 18px;
        padding: 25px;
        border-radius: 18px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }

    .navbar-nav {
        gap: 12px;
        margin-bottom: 20px;
    }

    .nav-link {
        font-size: 16px;
    }

    .lang-btn {
        width: 100%;
    }

}

@media(max-width:576px) {

    .brand-text {
        font-size: 15px;
    }

    .brand-logo {
        width: 32px;
    }

}


/* =========================================
HERO SECTION CSS
========================================= */

.hero-section {
    width: 100%;
    padding: 40px 0 80px;
    overflow: hidden;
}

/* LEFT SIDE */

.hero-content {
    max-width: 560px;
}

/* BADGE */

.hero-badge {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
    background: #ffffff;
    color: #0b84ff;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
    margin-bottom: 25px;
}

/* TITLE */

.hero-title {
    font-size: 50px;
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 25px;

    /* MAIN GRADIENT */
    background: linear-gradient(90deg,
            #0f7dc6 0%,
            #2b8fd0 18%,
            #8bc53f 42%,
            #d6b328 58%,
            #193458 78%,
            #0d2342 100%);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

    display: inline-block;
}

/* REMOVE OLD COLORS */

.blue-text {
    background: none;
    -webkit-text-fill-color: unset;
    color: inherit;
}

.green-text {
    background: none;
    -webkit-text-fill-color: unset;
    color: inherit;
}

/* SUBTITLE */

.hero-subtitle {
    font-size: 27px;
    line-height: 1.5;
    color: #243b55;
    font-weight: 600;
    margin-bottom: 20px;
}

/* DESCRIPTION */

.hero-description {
    font-size: 18px;
    line-height: 1.9;
    color: #64748b;
    margin-bottom: 35px;
    max-width: 540px;
}

/* BUTTONS */

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

/* EXPLORE BUTTON */

.explore-btn {
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 16px;
    background: linear-gradient(135deg, #0b84ff, #f3b316);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    transition: 0.35s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.explore-btn:hover {
    transform: translateY(-3px);
    color: #fff;
}

/* CONTACT BUTTON */

.contact-btn {
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 16px;
    border: 2px solid #0b84ff;
    background: #fff;
    color: #0b84ff;
    font-size: 16px;
    font-weight: 600;
    transition: 0.35s ease;
}

.contact-btn:hover {
    transform: translateY(-3px);
}

/* RIGHT BOX */

.hero-image-box {
    position: relative;
    width: 100%;
    min-height: 460px;
    border-radius: 35px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* PRODUCT IMAGE */

.hero-product-img {
    width: 78%;
    max-width: 360px;
    position: relative;
    z-index: 2;
    object-fit: contain;
}

/* BLUR EFFECTS */

.blur-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
}

.blue-blur {
    width: 120px;
    height: 120px;
    background: #d8ebff;
    top: 5px;
    left: 5px;
}

.green-blur {
    width: 140px;
    height: 140px;
    background: #dff9dc;
    right: 20px;
    bottom: 20px;
}

/* =========================================
RESPONSIVE
========================================= */

@media(max-width:1200px) {

    .hero-title {
        font-size: 60px;
    }

}

@media(max-width:991px) {

    .hero-section {
        padding: 70px 0;
        text-align: center;
    }

    .hero-content {
        margin: auto;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image-box {
        min-height: 380px;
    }

}

@media(max-width:767px) {

    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 22px;
    }

    .hero-description {
        font-size: 16px;
        line-height: 1.8;
    }

}

@media(max-width:576px) {

    .hero-section {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 38px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-description {
        font-size: 15px;
    }

    .explore-btn,
    .contact-btn {
        width: 100%;
        text-align: center;
    }

    .hero-image-box {
        min-height: 300px;
        border-radius: 28px;
    }

    .hero-product-img {
        width: 85%;
    }

}


/* =========================================
ABOUT SECTION CSS
========================================= */

.about-section {
    width: 100%;
    padding: 90px 0;
}

/* MAIN BOX */

.about-box {

    width: 100%;

    background: linear-gradient(135deg,
            rgba(241, 250, 247, 0.95),
            rgba(255, 255, 255, 0.95));

    border: 1px solid rgba(223, 232, 239, 0.9);

    border-radius: 26px;

    padding: 45px 50px;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);

    backdrop-filter: blur(10px);

    transition: 0.4s ease;
}

/* TITLE */

.about-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 22px;
    letter-spacing: -1px;
    color: #0f2d4f;
}

/* DESCRIPTION */

.about-description {
    font-size: 18px;
    line-height: 2;
    color: #617182;
    font-weight: 400;
}

/* =========================================
RESPONSIVE
========================================= */

@media(max-width:1200px) {

    .about-title {
        font-size: 48px;
    }

    .about-description {
        font-size: 20px;
    }

}

@media(max-width:991px) {

    .about-section {
        padding: 70px 0;
    }

    .about-box {
        padding: 40px 35px;
    }

    .about-title {
        font-size: 40px;
    }

    .about-description {
        font-size: 18px;
        line-height: 1.9;
    }

}

@media(max-width:768px) {

    .about-title {
        font-size: 34px;
    }

    .about-description {
        font-size: 17px;
    }

}

@media(max-width:576px) {

    .about-section {
        padding: 60px 0;
    }

    .about-box {

        border-radius: 22px;

        padding: 30px 22px;
    }

    .about-title {
        font-size: 28px;
        margin-bottom: 18px;
    }

    .about-description {
        font-size: 15px;
        line-height: 1.9;
    }

}



/* =========================================
PRODUCT SECTION CSS
========================================= */

.product-section {
    width: 100%;
    padding: 100px 0;
}

/* SECTION TITLE */

.product-main-title {
    font-size: 50px;
    font-weight: 700;
    color: #102d4e;
    margin-bottom: 40px;
    letter-spacing: -1px;
}

/* PRODUCT CARD */

.product-card-box {

    width: 100%;

    background:
        linear-gradient(135deg,
            rgba(239, 251, 246, 0.95),
            rgba(255, 255, 255, 0.98));

    border-radius: 35px;

    padding: 10px 60px;

    position: relative;

    overflow: hidden;

    border:
        2px solid transparent;

    background-clip: padding-box;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.05);
}

/* GRADIENT BORDER */

.product-card-box::before {

    content: "";

    position: absolute;

    inset: 0;

    border-radius: 35px;

    padding: 2px;

    background: linear-gradient(135deg,
            #2d9cff,
            #43d36f,
            #f0b028);

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite: xor;

    mask-composite: exclude;

    pointer-events: none;
}

/* IMAGE SIDE */

.product-image-wrapper {

    position: relative;

    width: 100%;

    display: flex;

    align-items: center;

    justify-content: center;
}

/* SOFT GLOW */

.product-image-bg {

    position: absolute;

    width: 240px;

    height: 240px;

    background: #effcf1;

    border-radius: 50%;

    filter: blur(10px);
}

/* PRODUCT IMAGE */

.product-image {

    width: 100%;

    max-width: 300px;

    position: relative;

    z-index: 2;

    object-fit: contain;
}

/* CONTENT */

.product-content {
    position: relative;
    z-index: 2;
}

/* BADGE */

.product-badge {

    display: inline-block;

    padding: 12px 24px;

    border-radius: 50px;

    background: #ebf9eb;

    color: #55a15d;

    font-size: 14px;

    font-weight: 600;

    margin-bottom: 25px;
}

/* TITLE */

.product-title {

    font-size: 40px;

    font-weight: 700;

    color: #102d4e;

    margin-bottom: 18px;

    letter-spacing: -1px;
}

/* DESCRIPTION */

.product-description {

    font-size: 18px;

    line-height: 1.8;

    color: #677788;

    margin-bottom: 30px;

    max-width: 700px;
}

/* FEATURES */

.product-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-features li {

    position: relative;

    padding-left: 25px;

    margin-bottom: 22px;

    font-size: 16px;

    color: #3b4b5d;

    line-height: 1.8;

    font-weight: 500;
}

/* GREEN DOT */

.product-features li::before {

    content: "";

    position: absolute;

    left: 0;

    top: 12px;

    width: 10px;

    height: 10px;

    border-radius: 50%;

    background:
        linear-gradient(135deg,
            #41d167,
            #88cf41);

    box-shadow:
        0 0 10px rgba(65, 209, 103, 0.5);
}

/* =========================================
RESPONSIVE
========================================= */

@media(max-width:1200px) {

    .product-main-title {
        font-size: 50px;
    }

    .product-title {
        font-size: 42px;
    }

}

@media(max-width:991px) {

    .product-section {
        padding: 80px 0;
    }

    .product-main-title {
        font-size: 42px;
        text-align: center;
    }

    .product-card-box {
        padding: 45px 35px;
    }

    .product-content {
        text-align: center;
    }

    .product-description {
        margin-left: auto;
        margin-right: auto;
    }

    .product-features li {
        text-align: left;
    }

}

@media(max-width:768px) {

    .product-main-title {
        font-size: 36px;
    }

    .product-title {
        font-size: 34px;
    }

    .product-description {
        font-size: 18px;
    }

    .product-features li {
        font-size: 17px;
    }

}

@media(max-width:576px) {

    .product-section {
        padding: 60px 0;
    }

    .product-card-box {

        border-radius: 28px;

        padding: 30px 22px;
    }

    .product-main-title {
        font-size: 30px;
        margin-bottom: 25px;
    }

    .product-title {
        font-size: 28px;
    }

    .product-badge {
        font-size: 13px;
        padding: 10px 18px;
    }

    .product-description {
        font-size: 15px;
        line-height: 1.8;
    }

    .product-features li {

        font-size: 14px;

        padding-left: 32px;

        line-height: 1.8;
    }

    .product-features li::before {

        width: 12px;
        height: 12px;
        top: 10px;
    }

}


/* =========================================
FOUNDERS SECTION CSS
========================================= */

.founders-section {
    width: 100%;
    padding: 50px 0;
}

/* SECTION TITLE */

.founders-main-title {
    font-size: 50px;
    font-weight: 700;
    color: #0f2d4f;
    margin-bottom: 45px;
    letter-spacing: -1px;
}

/* CARD */

.founder-card {

    width: 100%;

    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, 0.98),
            rgba(250, 252, 255, 0.98));

    border-radius: 26px;

    padding: 28px;

    display: flex;

    align-items: flex-start;

    gap: 24px;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.05);

    transition: 0.4s ease;

    border: 1px solid rgba(230, 236, 243, 0.9);

    height: 100%;
}


/* IMAGE */

.founder-image-box {

    flex-shrink: 0;
}

.founder-image {

    width: 110px;

    height: 110px;

    border-radius: 50%;

    object-fit: cover;

    border: 5px solid #fff;

    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.08);
}

/* CONTENT */

.founder-content {
    width: 100%;
}

/* NAME */

.founder-name {

    font-size: 30px;

    font-weight: 600;

    color: #132f4d;

    margin-bottom: 8px;

    letter-spacing: -0.5px;
}

/* DESIGNATION */

.founder-designation {

    font-size: 18px;

    color: #2878b8;

    font-weight: 600;

    margin-bottom: 18px;
}

/* LINE */

.founder-line {

    width: 90px;

    height: 4px;

    border-radius: 50px;

    background:
        linear-gradient(135deg,
            #0c8bff,
            #d0d343);

    margin-bottom: 18px;
}

/* DETAILS */

.founder-details {

    font-size: 16px;

    line-height: 1.8;

    color: #5f6f81;

    margin-bottom: 8px;
}

/* =========================================
RESPONSIVE
========================================= */

@media(max-width:1200px) {

    .founders-main-title {
        font-size: 50px;
    }

    .founder-name {
        font-size: 28px;
    }

}

@media(max-width:991px) {

    .founders-section {
        padding: 80px 0;
    }

    .founders-main-title {
        font-size: 42px;
        text-align: center;
    }

    .founder-card {
        padding: 25px;
    }

}

@media(max-width:768px) {

    .founder-card {

        flex-direction: column;

        align-items: center;

        text-align: center;
    }

    .founder-line {
        margin-left: auto;
        margin-right: auto;
    }

    .founder-name {
        font-size: 25px;
    }

    .founder-designation {
        font-size: 18px;
    }

    .founder-details {
        font-size: 16px;
    }

}

@media(max-width:576px) {

    .founders-section {
        padding: 60px 0;
    }

    .founders-main-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .founder-card {

        border-radius: 22px;

        padding: 22px;
    }

    .founder-image {

        width: 90px;
        height: 90px;
    }

    .founder-name {
        font-size: 22px;
    }

    .founder-designation {
        font-size: 16px;
    }

    .founder-details {
        font-size: 14px;
        line-height: 1.8;
    }

}


/* =========================================
WHY CHOOSE US SECTION CSS
========================================= */

.why-section {
    width: 100%;
    padding: 100px 0;
}

/* TITLE */

.why-main-title {

    font-size: 50px;

    font-weight: 700;

    color: #102d4e;

    margin-bottom: 45px;

    letter-spacing: -1px;
}

/* CARD */

.why-card {

    width: 100%;

    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, 0.98),
            rgba(252, 253, 255, 0.98));

    border-radius: 28px;

    padding: 8px 8px;

    text-align: center;

    border: 1px solid rgba(230, 236, 243, 0.8);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.05);

    transition: 0.4s ease;

    height: 100%;
}

/* ICON BOX */

.why-icon-box {

    width: 100%;

    display: flex;

    justify-content: center;

    margin-bottom: 25px;
}

/* ICON BACKGROUND */

.why-icon-bg {

    width: 78px;

    height: 78px;

    border-radius: 24px;

    background:
        linear-gradient(135deg,
            #1bb4ff,
            #42d66d,
            #f1b228);

    display: flex;

    align-items: center;

    justify-content: center;

    box-shadow:
        0 10px 25px rgba(66, 214, 109, 0.25);
}

/* ICON */

.why-icon-bg i {

    font-size: 28px;

    color: #fff;
}

/* TITLE */

.why-card-title {

    font-size: 22px;

    font-weight: 700;

    color: #132f4d;

    margin-bottom: 18px;

    line-height: 1.4;
}

/* DESC */

.why-card-desc {

    font-size: 16px;

    line-height: 1.9;

    color: #64748b;

    margin-bottom: 0;
}

/* =========================================
RESPONSIVE
========================================= */

@media(max-width:1200px) {

    .why-main-title {
        font-size: 50px;
    }

    .why-card-title {
        font-size: 24px;
    }

}

@media(max-width:991px) {

    .why-section {
        padding: 80px 0;
    }

    .why-main-title {
        font-size: 42px;
        text-align: center;
    }

    .why-card {
        padding: 35px 24px;
    }

}

@media(max-width:768px) {

    .why-main-title {
        font-size: 36px;
    }

    .why-card-title {
        font-size: 22px;
    }

    .why-card-desc {
        font-size: 16px;
    }

}

@media(max-width:576px) {

    .why-section {
        padding: 60px 0;
    }

    .why-main-title {
        font-size: 30px;
        margin-bottom: 30px;
    }

    .why-card {

        border-radius: 24px;

        padding: 30px 22px;
    }

    .why-icon-bg {

        width: 65px;
        height: 65px;
        border-radius: 20px;
    }

    .why-icon-bg i {
        font-size: 22px;
    }

    .why-card-title {
        font-size: 20px;
    }

    .why-card-desc {

        font-size: 14px;

        line-height: 1.8;
    }

}


/* =========================================
PARTNER / CONTACT SECTION CSS
========================================= */

.partner-section{
    width:100%;
    padding:100px 0;
    background:#f5f8fb;
}

/* MAIN BOX */

.partner-box{

    width:100%;

    background:
    linear-gradient(
        135deg,
        rgba(239,249,252,0.98),
        rgba(255,250,241,0.98)
    );

    border-radius:34px;

    padding:50px;

    border:1px solid rgba(228,235,241,0.8);

    box-shadow:
    0 15px 40px rgba(0,0,0,0.05);

    position:relative;

    overflow:hidden;
}

/* SOFT GLOW */

.partner-box::before{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    background:
    radial-gradient(
        rgba(116,221,126,0.12),
        transparent 70%
    );

    top:-100px;

    right:-100px;

    border-radius:50%;
}

/* TITLE */

.partner-title{

    font-size:50px;

    font-weight:700;

    color:#102d4e;

    margin-bottom:18px;

    letter-spacing:-1px;

    position:relative;

    z-index:2;
}

/* SUBTITLE */

.partner-subtitle{

    font-size:18px;

    line-height:1.8;

    color:#67788a;

    margin-bottom:40px;

    position:relative;

    z-index:2;
}

/* CARD */

.partner-card{

    width:100%;

    background:#ffffff;

    border-radius:22px;

    padding:28px;

    border:1px solid rgba(236,240,244,0.8);

    box-shadow:
    0 10px 25px rgba(0,0,0,0.04);

    transition:0.35s ease;

    position:relative;

    z-index:2;

    height:100%;
}

/* CARD TITLE */

.partner-card-title{

    font-size:20px;

    font-weight:700;

    color:#183553;

    margin-bottom:15px;
}

/* LINKS */

.partner-link{

    text-decoration:none;

    font-size:20px;

    font-weight:600;

    color:#2679bc;

    transition:0.3s ease;

    word-break:break-word;
}

.partner-link:hover{
    color:#0c8cff;
}

/* ADDRESS */

.partner-address{

    font-size:20px;

    line-height:1.9;

    color:#64748b;

    margin-bottom:0;
}

/* =========================================
RESPONSIVE
========================================= */

@media(max-width:1200px){

    .partner-title{
        font-size:50px;
    }

}

@media(max-width:991px){

    .partner-section{
        padding:80px 0;
    }

    .partner-box{
        padding:40px 35px;
    }

    .partner-title{
        font-size:42px;
    }

    .partner-subtitle{
        font-size:18px;
    }

}

@media(max-width:768px){

    .partner-title{
        font-size:34px;
    }

    .partner-card-title{
        font-size:20px;
    }

    .partner-link{
        font-size:18px;
    }

    .partner-address{
        font-size:17px;
    }

}

@media(max-width:576px){

    .partner-section{
        padding:60px 0;
    }

    .partner-box{

        border-radius:28px;

        padding:30px 22px;
    }

    .partner-title{
        font-size:28px;
    }

    .partner-subtitle{

        font-size:15px;

        line-height:1.8;

        margin-bottom:30px;
    }

    .partner-card{

        border-radius:18px;

        padding:22px;
    }

    .partner-card-title{
        font-size:18px;
    }

    .partner-link{
        font-size:15px;
    }

    .partner-address{

        font-size:14px;

        line-height:1.8;
    }

}



/* =========================================
FOOTER SECTION CSS
========================================= */

.footer-section{

    width:100%;

    background:#ffffff;

    padding:60px 0 40px;

    border-top:1px solid rgba(228,235,241,0.8);
}

/* TOP */

.footer-top{
    margin-bottom:40px;
}

/* COMPANY NAME */

.footer-company-name{

    font-size:30px;

    font-weight:700;

    color:#123254;

    letter-spacing:-1px;

    margin-bottom:0;
}


/* LEFT SIDE */

.footer-details-wrapper{

    display:flex;

    align-items:flex-start;

    gap:22px;
}

/* LOGO */

.footer-logo{

    width:75px;

    object-fit:contain;
}

/* TAGLINE */

.footer-tagline{

    font-size:18px;

    color:#5f7082;

    line-height:1.8;

    margin-bottom:18px;
}

/* CONTACT ROW */

.footer-contact-row{

    display:flex;

    align-items:center;

    flex-wrap:wrap;

    gap:14px;

    margin-bottom:14px;
}

/* LINKS */

.footer-link{

    text-decoration:none;

    font-size:16px;

    font-weight:600;

    color:#2877b8;

    transition:0.3s ease;
}

/* DIVIDER */

.footer-divider{

    color:#9aa9b8;

    font-size:22px;
}

/* ADDRESS */

.footer-address{

    font-size:16px;

    line-height:1.9;

    color:#67788a;

    margin-top:15px;

    margin-bottom:0;
}

/* NAVIGATION */

.footer-nav-wrapper{

    width:100%;

    height:100%;

    display:flex;

    align-items:center;

    justify-content:flex-end;
}

/* NAV */

.footer-nav{

    display:flex;

    align-items:center;

    flex-wrap:wrap;

    gap:18px;

    list-style:none;

    margin:0;

    padding:0;
}

/* NAV ITEM */

.footer-nav li{
    position:relative;
}

/* VERTICAL LINE */

.footer-nav li:not(:last-child)::after{

    content:"";

    position:absolute;

    right:-10px;

    top:50%;

    transform:translateY(-50%);

    width:1px;

    height:18px;

    background:#c8d3de;
}

/* NAV LINKS */

.footer-nav-link{

    text-decoration:none;

    font-size:18px;

    font-weight:500;

    color:#4d6075;

    transition:0.3s ease;
}

/* =========================================
RESPONSIVE
========================================= */
@media(max-width:991px){

    .footer-section{
        padding:50px 0 35px;
    }

    .footer-company-name{
        font-size:32px;
        text-align:center;
    }

    .footer-details-wrapper{

        flex-direction:column;

        align-items:center;

        text-align:center;
    }

    .footer-nav-wrapper{
        justify-content:center;
    }

    .footer-address{
        max-width:700px;
        margin-left:auto;
        margin-right:auto;
    }

}

@media(max-width:768px){

    .footer-tagline{
        font-size:18px;
    }

    .footer-link{
        font-size:18px;
    }

    .footer-address{
        font-size:16px;
    }

    .footer-nav-link{
        font-size:18px;
    }

}

@media(max-width:576px){

    .footer-section{
        padding:40px 0 30px;
    }

    .footer-company-name{
        font-size:26px;
    }

    .footer-content-wrapper{
        padding-top:30px;
    }

    .footer-logo{
        width:55px;
    }

    .footer-tagline{

        font-size:15px;

        line-height:1.8;
    }

    .footer-contact-row{

        justify-content:center;

        gap:10px;
    }

    .footer-link{
        font-size:14px;
    }

    .footer-divider{
        font-size:14px;
    }

    .footer-address{

        font-size:13px;

        line-height:1.8;
    }

    .footer-nav{

        justify-content:center;

        gap:14px;
    }

    .footer-nav-link{
        font-size:14px;
    }

}