/* =========================
   GLOBAL
========================= */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;

    background: #f7f8f8;

    font-family: Arial, Helvetica, sans-serif;
}


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

.custom-navbar {
    width: min(95%, 1100px);

    margin: 25px auto 0;

    padding: 5px 10px;

    background: #111;

    border: 2px solid #111;

    border-radius: 50px;

    box-shadow:
        0 10px 20px rgba(0, 0, 0, 0.12),
        0 4px 8px rgba(0, 0, 0, 0.08);

    position: relative;

    z-index: 1000;
}


/* =========================
   INFOHUB
========================= */

.navbar-brand {
    color: #ffffff !important;

    font-size: 18px;
    font-weight: 700;

    letter-spacing: -0.5px;

    text-decoration: none;

    padding: 8px 15px !important;

    white-space: nowrap;
}

.navbar-brand span {
    color: #ec1212;
}


/* =========================
   NAVIGATION
========================= */

.custom-navbar .navbar-nav {
    gap: 2px;
}

.custom-navbar .nav-link {
    color: #ffffff !important;

    font-size: 14px;
    font-weight: 400;

    padding: 9px 14px !important;
  margin-right:40px;
    border-radius: 25px;

    transition: all 0.25s ease;
}


/* Hover */

.custom-navbar .nav-link:hover {
    background: #2b2b2b;
}


/* Active */

.custom-navbar .nav-link.active {
    background: #2b2b2b;
}


/* =========================
   HAMBURGER
========================= */

.navbar-toggler {
    border: none;

    padding: 8px 10px;

    box-shadow: none !important;

    outline: none !important;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

.navbar-toggler-icon {
    filter: invert(1);
}


/* =========================
   TABLET
========================= */

@media (max-width: 991px) {

    .custom-navbar {
        width: 74%;
    }

    .navbar-brand {
        font-size: 17px;
    }

    .custom-navbar .nav-link {
        font-size: 13px;

        padding: 8px 10px !important;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

    .custom-navbar {
        width: calc(90% - 24px);

        margin: 12px auto 0;

        padding: 5px 7px;

        border-radius: 22px;
    }


    /* Brand */

    .navbar-brand {
        font-size: 17px;

        padding: 8px 10px !important;
    }


    /* Hamburger */

    .navbar-toggler {
        padding: 7px 8px;
    }


    /* Dropdown */

    .navbar-collapse {
        margin-top: 6px;

        padding: 6px 3px 3px;

        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }


    /* Navigation list */

    .custom-navbar .navbar-nav {
        width: 100%;

        gap: 2px;
    }


    /* Navigation items */

    .custom-navbar .nav-item {
        width: 100%;
    }


    /* Links */

    .custom-navbar .nav-link {
        width: 80%;

        padding: 11px 13px !important;

        border-radius: 12px;

        font-size: 14px;
    }


    /* Active */

    .custom-navbar .nav-link.active {
        background: #2b2b2b;
    }
}


/* =========================
   SMALL PHONES
========================= */

@media (max-width: 400px) {

    .custom-navbar {
        width: calc(100% - 16px);

        margin-top: 8px;

        padding: 4px 6px;

        border-radius: 20px;
    }


    .navbar-brand {
        font-size: 16px;

        padding-left: 8px !important;
    }


    .navbar-toggler {
        padding: 6px 7px;
    }


    .custom-navbar .nav-link {
        font-size: 13px;

        padding: 10px 12px !important;
    }
}
/* =========================
   THEME TOGGLE
========================= */

.theme-item {
    display: flex;
    align-items: center;
    margin-left: 5px;
}

.theme-toggle {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: none;
    border-radius: 50%;

    background: #2b2b2b;
    color: #ffffff;

    cursor: pointer;

    transition: all 0.25s ease;
}

.theme-toggle:hover {
    background: #3a3a3a;
    transform: rotate(15deg);
}

.theme-toggle i {
    font-size: 14px;
}


/* =========================
   LIGHT MODE
========================= */

body.light-mode {
    background: #f7f8f8;
}


/* =========================
   DARK MODE
========================= */

body.dark-mode {
    background: #080808;
}

body.dark-mode .custom-navbar {
    background: #ffffff;
    border-color: #ffffff;
}

body.dark-mode .navbar-brand {
    color: #111111 !important;
}

body.dark-mode .custom-navbar .nav-link {
    color: #111111 !important;
}

body.dark-mode .custom-navbar .nav-link:hover,
body.dark-mode .custom-navbar .nav-link.active {
    background: #eeeeee;
}

body.dark-mode .theme-toggle {
    background: #111111;
    color: #ffffff;
}

body.dark-mode .theme-toggle:hover {
    background: #2b2b2b;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

    .theme-item {
        width: 100%;
        margin: 4px 0 0;
        padding-top: 4px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .theme-toggle {
        width: 100%;
        height: 40px;
        border-radius: 12px;
    }

    body.dark-mode .theme-item {
        border-top-color: rgba(0, 0, 0, 0.1);
    }
}
/* =================================
   HERO SECTION
================================= */

.hero-section {
    min-height: calc(100vh - 100px);

    display: flex;
    align-items: center;

    padding: 70px 0 80px;
}


/* =================================
   HERO CONTENT
================================= */

.hero-content {
    padding: 20px 10px 20px 30px;
}


/* Badge */

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 8px 14px;

    background: #ffffff;

    border: 1px solid #e7e7e7;

    border-radius: 30px;

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 1px;

    color: #555;

    margin-bottom: 18px;
}

.status-dot {
    width: 7px;
    height: 7px;

    background: #e61616;

    border-radius: 50%;
}


/* Main heading */

.hero-title {
    margin: 0;

    font-size: clamp(65px, 8vw, 110px);

    line-height: 0.95;

    font-weight: 800;

    letter-spacing: -5px;

    color: #111;
}

.hero-title span {
    color: #e61616;
}


/* =================================
   TYPING TEXT
================================= */

.typing-wrapper {
    margin-top: 25px;

    min-height: 32px;

    font-size: clamp(17px, 2vw, 23px);

    font-weight: 600;

    color: #222;

    letter-spacing: 0.5px;
}

.cursor {
    color: #e61616;

    font-weight: 400;

    animation: blink 0.8s infinite;
}

@keyframes blink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}


/* Description */

.hero-description {
    max-width: 520px;

    margin-top: 15px;

    font-size: 15px;

    line-height: 1.7;

    color: #666;
}


/* =================================
   BUTTONS
================================= */

.hero-buttons {
    display: flex;

    gap: 12px;

    margin-top: 28px;

    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 12px 20px;

    border-radius: 30px;

    text-decoration: none;

    font-size: 14px;

    font-weight: 600;

    transition: 0.25s ease;
}


/* Primary */

.primary-btn {
    background: #111;

    color: #fff;
}

.primary-btn:hover {
    background: #e61616;

    color: #fff;

    transform: translateY(-2px);
}


/* Secondary */

.secondary-btn {
    background: #fff;

    color: #111;

    border: 1px solid #ddd;
}

.secondary-btn:hover {
    border-color: #111;

    color: #111;

    transform: translateY(-2px);
}


/* =================================
   LOCATION CARD
================================= */

.location-card {
    background: #111;

    padding: 14px;

    border-radius: 24px;

    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.14);

    overflow: hidden;
}


/* Header */

.location-header {
    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 8px 6px 14px;
}

.location-label {
    display: block;

    font-size: 9px;

    letter-spacing: 1.5px;

    color: #999;

    margin-bottom: 4px;
}

.location-header h5 {
    margin: 0;

    color: #fff;

    font-size: 18px;

    font-weight: 600;
}


/* Location icon */

.location-icon {
    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #e61616;

    color: #fff;
}

.location-icon i {
    font-size: 16px;
}


/* =================================
   MAP
================================= */

.map-container {
    width: 100%;

    height: 260px;

    overflow: hidden;

    border-radius: 17px;

    background: #ddd;
}

.map-container iframe {
    width: 100%;

    height: 100%;

    border: 0;

    display: block;
}


/* Footer */

.location-footer {
    display: flex;

    align-items: center;

    gap: 8px;

    padding: 14px 5px 3px;

    color: #bbb;

    font-size: 12px;
}

.location-footer i {
    color: #e61616;
}


/* =================================
   TABLET
================================= */

@media (max-width: 991px) {

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

    .hero-content {
        padding-left: 10px;
    }

    .hero-title {
        font-size: clamp(60px, 9vw, 85px);
    }

    .map-container {
        height: 230px;
    }
}


/* =================================
   MOBILE
================================= */

@media (max-width: 767px) {

    .hero-section {
        min-height: auto;

        padding: 45px 0 60px;
    }


    /* Put content first */

    .hero-content {
        order: 1;

        padding: 0 8px;

        text-align: center;
    }


    /* Location */

    .location-card {
        order: 2;

        margin-top: 15px;
    }


    .hero-badge {
        font-size: 9px;

        padding: 7px 11px;
    }


    .hero-title {
        font-size: clamp(60px, 18vw, 82px);

        letter-spacing: -4px;
    }


    .typing-wrapper {
        margin-top: 20px;

        font-size: 16px;
    }


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

        font-size: 14px;
    }


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


    .hero-btn {
        padding: 11px 17px;

        font-size: 13px;
    }


    .location-card {
        margin-top: 25px;

        border-radius: 20px;
    }


    .map-container {
        height: 220px;
    }
}


/* =================================
   SMALL PHONES
================================= */

@media (max-width: 400px) {

    .hero-section {
        padding-top: 35px;
    }

    .hero-title {
        font-size: 58px;

        letter-spacing: -3px;
    }

    .typing-wrapper {
        font-size: 14px;
    }

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

    .hero-buttons {
        flex-direction: column;

        align-items: stretch;
    }

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

    .map-container {
        height: 200px;
    }
}
/* =========================================
   SERVICES SECTION
========================================= */

.services-section {
    padding: 90px 0 100px;
margin-bottom: 60px;
    background: #f7f8f8;
}


/* =========================================
   SECTION HEADING
========================================= */

.services-heading {
    margin-bottom: 35px;
}


/* SERVICES */

.section-label {
    display: inline-block;

    font-size: 38px;

    font-weight: 800;

    letter-spacing: -1.5px;

    line-height: 1;
}

.section-label span {
    color: #e61616;
}


/* MAIN SERVICES */

.section-subtitle {
    margin: 8px 0 0;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 2px;

    color: #555;
}

.section-subtitle span {
    color: #e61616;
}


/* =========================================
   SERVICE CARD
========================================= */

.service-card {
    position: relative;

    height: 100%;

    min-height: 360px;

    padding: 25px;

    background: #ffffff;

    border: 1px solid #e5e5e5;

    border-radius: 28px;

    overflow: hidden;

    display: flex;

    flex-direction: column;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


/* Red corner accent */

.service-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 65px;
    height: 5px;

    background: #e61616;

    border-radius: 0 0 10px 0;
}


/* =========================================
   CARD NUMBER
========================================= */

.service-number {
    position: absolute;

    top: 20px;
    right: 22px;

    font-size: 12px;

    font-weight: 700;

    color: #bdbdbd;

    letter-spacing: 1px;
}


/* =========================================
   ICON
========================================= */

.service-icon {
    width: 52px;
    height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

    border-radius: 16px;

    background: #111;

    color: #ffffff;

    transition: 0.3s ease;
}

.service-icon i {
    font-size: 21px;
}


/* =========================================
   TITLE
========================================= */

.service-card h3 {
    margin: 0 0 14px;

    font-size: 18px;

    line-height: 1.15;

    font-weight: 750;

    letter-spacing: -0.3px;

    color: #111;
}


/* =========================================
   DESCRIPTION
========================================= */

.service-card p {
    margin: 0;

    font-size: 13px;

    line-height: 1.7;

    color: #777;

    max-width: 270px;
}


/* =========================================
   LINK
========================================= */

.service-link {
    margin-top: auto;

    padding-top: 25px;

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #111;

    font-size: 13px;

    font-weight: 700;

    text-decoration: none;

    transition: 0.25s ease;
}

.service-link i {
    font-size: 14px;

    transition: transform 0.25s ease;
}


/* =========================================
   HOVER
========================================= */

.service-card:hover {
    transform: translateY(-7px);

    border-color: #d7d7d7;

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.10);
}


.service-card:hover .service-icon {
    background: #e61616;

    transform: translateY(-2px);
}


.service-card:hover .service-link {
    color: #e61616;
}


.service-card:hover .service-link i {
    transform: translate(3px, -3px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .services-section {
        padding: 70px 0 80px;
    }

    .section-label {
        font-size: 34px;
    }

    .service-card {
        min-height: 340px;

        padding: 22px;
    }

    .service-card h3 {
        font-size: 17px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .services-section {
        padding: 60px 0 70px;
    }


    .services-heading {
        margin-bottom: 25px;

        padding: 0 5px;
    }


    .section-label {
        font-size: 32px;

        letter-spacing: -1px;
    }


    .section-subtitle {
        font-size: 10px;

        letter-spacing: 1.7px;
    }


    .service-card {
        min-height: 320px;

        padding: 23px;

        border-radius: 24px;
    }


    .service-icon {
        width: 48px;
        height: 48px;

        margin-bottom: 22px;
    }


    .service-card h3 {
        font-size: 17px;
    }


    .service-card p {
        font-size: 13px;

        max-width: 100%;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 400px) {

    .services-section {
        padding-top: 50px;
    }


    .section-label {
        font-size: 29px;
    }


    .service-card {
        min-height: 300px;

        padding: 20px;

        border-radius: 22px;
    }


    .service-number {
        right: 18px;
    }


    .service-card h3 {
        font-size: 16px;
    }


    .service-card p {
        font-size: 12px;

        line-height: 1.6;
    }
}
/* =========================================
   FULL SERVICES
========================================= */

.full-service {
    padding: 80px 0 100px;

    background: #f7f8f8;
}


/* =========================================
   HEADING
========================================= */

.full-service-heading {
    margin-bottom: 35px;
}

.full-service-label {
    font-size: 38px;

    font-weight: 800;

    letter-spacing: -1.5px;

    line-height: 1;
}

.full-service-label span {
    color: #e61616;
}

.full-service-heading p {
    margin: 9px 0 0;

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 2px;

    color: #555;
}

.full-service-heading p span {
    color: #e61616;
}


/* =========================================
   SERVICES GRID
========================================= */

.full-service-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 14px;
}


/* =========================================
   GLASS SERVICE CARD
========================================= */

.liquid.glass {
    position: relative;

    min-height: 88px;

    padding: 16px 18px;

    display: flex;

    align-items: center;

    gap: 14px;

    background: rgba(255, 255, 255, 0.75);

    border: 1px solid #e3e3e3;

    border-radius: 20px;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.05);

    backdrop-filter: blur(12px);

    -webkit-backdrop-filter: blur(12px);

    overflow: hidden;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}


/* Red top accent */

.liquid.glass::before {
    content: "";

    position: absolute;

    top: 0;
    left: 20px;

    width: 35px;
    height: 3px;

    background: #e61616;

    border-radius: 0 0 5px 5px;
}


/* =========================================
   ICON
========================================= */

.service-mini-icon {
    width: 43px;
    height: 43px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 13px;

    background: #111;

    color: #fff;

    transition: 0.25s ease;
}

.service-mini-icon i {
    font-size: 17px;
}


/* =========================================
   CONTENT
========================================= */

.mini-content {
    min-width: 0;

    padding-right: 22px;
}

.mini-content span {
    display: block;

    margin-bottom: 2px;

    font-size: 9px;

    font-weight: 700;

    color: #aaa;

    letter-spacing: 1px;
}

.mini-content h3 {
    margin: 0;

    font-size: 14px;

    line-height: 1.3;

    font-weight: 650;

    color: #151515;
}


/* =========================================
   ARROW
========================================= */

.mini-arrow {
    position: absolute;

    right: 17px;

    top: 50%;

    transform: translateY(-50%);

    font-size: 15px;

    color: #aaa;

    transition: 0.25s ease;
}


/* =========================================
   HOVER
========================================= */

.liquid.glass:hover {
    transform: translateY(-4px);

    border-color: #d5d5d5;

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

.liquid.glass:hover .service-mini-icon {
    background: #e61616;
}

.liquid.glass:hover .mini-arrow {
    color: #e61616;

    transform:
        translate(3px, calc(-50% - 3px));
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .full-service {
        padding: 70px 0 80px;
    }

    .full-service-label {
        font-size: 34px;
    }

    .full-service-grid {
        gap: 12px;
    }

    .liquid.glass {
        min-height: 84px;

        padding: 14px;
    }

    .mini-content h3 {
        font-size: 13px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .full-service {
        padding: 60px 0 70px;
    }


    .full-service-heading {
        margin-bottom: 25px;

        padding: 0 5px;
    }


    .full-service-label {
        font-size: 31px;
    }


    .full-service-heading p {
        font-size: 9px;

        letter-spacing: 1.5px;
    }


    .full-service-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 10px;
    }


    .liquid.glass {
        min-height: 135px;

        padding: 17px 14px;

        border-radius: 18px;

        display: flex;

        flex-direction: column;

        align-items: flex-start;

        justify-content: center;

        gap: 10px;
    }


    .liquid.glass::before {
        left: 15px;
    }


    .service-mini-icon {
        width: 40px;
        height: 40px;

        border-radius: 11px;
    }


    .service-mini-icon i {
        font-size: 15px;
    }


    .mini-content {
        padding-right: 12px;
    }


    .mini-content span {
        font-size: 8px;
    }


    .mini-content h3 {
        font-size: 12px;

        line-height: 1.3;
    }


    .mini-arrow {
        right: 13px;

        top: 16px;

        transform: none;

        font-size: 12px;
    }


    .liquid.glass:hover .mini-arrow {
        transform: translate(2px, -2px);
    }
}


/* =========================================
   VERY SMALL PHONES
========================================= */

@media (max-width: 380px) {

    .full-service-grid {
        gap: 8px;
    }

    .liquid.glass {
        min-height: 125px;

        padding: 14px 12px;
    }

    .service-mini-icon {
        width: 36px;
        height: 36px;
    }

    .mini-content h3 {
        font-size: 11px;
    }
}
/* =========================================
   FOOTER
========================================= */

.site-footer {
    position: relative;

    background: #0d0d0d;

    color: #ffffff;

    padding: 75px 0 20px;

    overflow: hidden;
}


/* =========================================
   SUBTLE RED GLOW
========================================= */

.site-footer::before {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    top: -220px;
    right: -100px;

    background: rgba(230, 22, 22, 0.12);

    border-radius: 50%;

    filter: blur(80px);

    pointer-events: none;
}


/* =========================================
   FOOTER MAIN
========================================= */

.footer-main {
    display: grid;

    grid-template-columns:
        1.5fr
        0.8fr
        1fr
        1.3fr;

    gap: 55px;

    padding-bottom: 55px;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.1);
}


/* =========================================
   BRAND
========================================= */

.footer-logo {
    display: inline-block;

    color: #ffffff;

    font-size: 32px;

    font-weight: 800;

    letter-spacing: -1.5px;

    text-decoration: none;
}

.footer-logo span {
    color: #e61616;
}


.footer-tagline {
    margin: 10px 0 0;

    color: #ffffff;

    font-size: 13px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 0.8px;
}


.footer-description {
    max-width: 310px;

    margin: 15px 0 0;

    color: #888;

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================
   SOCIAL
========================================= */

.footer-social {
    display: flex;

    gap: 8px;

    margin-top: 22px;
}

.footer-social a {
    width: 36px;
    height: 36px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #1c1c1c;

    color: #ffffff;

    text-decoration: none;

    transition: 0.25s ease;
}

.footer-social a:hover {
    background: #e61616;

    transform: translateY(-3px);
}


/* =========================================
   FOOTER COLUMNS
========================================= */

.footer-column h3 {
    margin: 3px 0 20px;

    font-size: 14px;

    font-weight: 700;

    color: #ffffff;
}


.footer-column h3::after {
    content: "";

    display: block;

    width: 25px;
    height: 2px;

    margin-top: 8px;

    background: #e61616;

    border-radius: 5px;
}


/* =========================================
   LINKS
========================================= */

.footer-column ul {
    list-style: none;

    margin: 0;
    padding: 0;
}


.footer-column li {
    margin-bottom: 11px;
}


.footer-column li a {
    color: #888;

    font-size: 13px;

    text-decoration: none;

    transition: 0.2s ease;
}


.footer-column li a:hover {
    color: #ffffff;

    padding-left: 4px;
}


/* =========================================
   CONTACT
========================================= */

.contact-item {
    display: flex;

    align-items: flex-start;

    gap: 11px;

    margin-bottom: 15px;

    color: #888;

    font-size: 12px;

    line-height: 1.6;

    text-decoration: none;

    transition: 0.2s ease;
}


.contact-item:hover {
    color: #ffffff;
}


.contact-icon {
    width: 32px;
    height: 32px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: #1b1b1b;

    color: #e61616;

    transition: 0.2s ease;
}


.contact-item:hover .contact-icon {
    background: #e61616;

    color: #ffffff;
}


/* =========================================
   FOOTER BOTTOM
========================================= */

.footer-bottom {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding-top: 20px;
}


.footer-bottom p {
    margin: 0;

    color: #666;

    font-size: 11px;
}


/* =========================================
   DEVELOPER CREDIT
========================================= */

.developer-credit {
    text-align: right;
}


.developer-credit span {
    color: #e61616;

    font-weight: 600;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .site-footer {
        padding-top: 65px;
    }


    .footer-main {
        grid-template-columns:
            1.5fr
            1fr
            1fr;

        gap: 40px;
    }


    .footer-brand {
        grid-column: span 3;
    }


    .footer-description {
        max-width: 500px;
    }
}


/* =========================================
   MOBILE
========================================= */

/* =========================================
   COMPACT MOBILE FOOTER
========================================= */

@media (max-width: 767px) {

    .site-footer {
        padding: 40px 0 15px;
    }

    /* Main footer layout */
    .footer-main {
        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 25px 18px;

        padding-bottom: 25px;
    }


    /* ==============================
       BRAND
    ============================== */

    .footer-brand {
        grid-column: span 2;
    }

    .footer-logo {
        font-size: 25px;
    }

    .footer-tagline {
        margin-top: 5px;

        font-size: 9px;

        letter-spacing: 0.5px;
    }

    .footer-description {
        margin-top: 8px;

        max-width: 100%;

        font-size: 11px;

        line-height: 1.5;
    }


    /* ==============================
       SOCIAL
    ============================== */

    .footer-social {
        margin-top: 12px;

        gap: 6px;
    }

    .footer-social a {
        width: 30px;
        height: 30px;

        font-size: 12px;
    }


    /* ==============================
       COLUMNS
    ============================== */

    .footer-column h3 {
        margin: 0 0 12px;

        font-size: 11px;
    }

    .footer-column h3::after {
        width: 20px;

        height: 1.5px;

        margin-top: 5px;
    }


    .footer-column li {
        margin-bottom: 7px;
    }

    .footer-column li a {
        font-size: 10px;
    }


    /* ==============================
       CONTACT
    ============================== */

    .contact-item {
        gap: 7px;

        margin-bottom: 9px;

        font-size: 9px;

        line-height: 1.4;
    }

    .contact-icon {
        width: 25px;
        height: 25px;

        border-radius: 7px;

        font-size: 10px;
    }


    /* ==============================
       BOTTOM
    ============================== */

    .footer-bottom {
        display: flex;

        flex-direction: row;

        align-items: center;

        justify-content: space-between;

        gap: 10px;

        padding-top: 12px;
    }

    .footer-bottom p {
        font-size: 8px;

        line-height: 1.4;
    }

    .developer-credit {
        text-align: right;
    }

}
/* =========================================
   CONTACT SECTION
========================================= */

.contact-section {
    padding: 90px 0 100px;

    background: #ffffff;
}


/* =========================================
   HEADING
========================================= */

.contact-heading {
    margin-bottom: 40px;
}

.contact-label {
    font-size: 38px;

    font-weight: 800;

    letter-spacing: -1.5px;

    line-height: 1;
}

.contact-label span {
    color: #e61616;
}

.contact-heading p {
    margin: 9px 0 0;

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 2px;

    color: #555;
}

.contact-heading p span {
    color: #e61616;
}


/* =========================================
   CONTACT WRAPPER
========================================= */

.contact-wrapper {
    display: grid;

    grid-template-columns:
        0.85fr
        1.5fr;

    gap: 25px;
}


/* =========================================
   LEFT CONTACT INFO
========================================= */

.contact-info {
    position: relative;

    padding: 38px;

    min-height: 570px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    background: #101010;

    color: #ffffff;

    border-radius: 30px;

    overflow: hidden;
}


/* Red glow */

.contact-info::after {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    right: -100px;
    bottom: -100px;

    background: rgba(230, 22, 22, 0.18);

    border-radius: 50%;

    filter: blur(55px);

    pointer-events: none;
}


/* =========================================
   INFO CONTENT
========================================= */

.contact-small-title {
    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;

    color: #e61616;
}


.contact-info h2 {
    margin: 13px 0 15px;

    font-size: 40px;

    line-height: 1.05;

    letter-spacing: -1.5px;

    font-weight: 750;
}

.contact-info h2 span {
    color: #e61616;
}


.contact-info-top > p {
    max-width: 390px;

    margin: 0;

    color: #8d8d8d;

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================
   CONTACT DETAILS
========================================= */

.contact-detail {
    position: relative;

    z-index: 2;

    display: flex;

    align-items: flex-start;

    gap: 13px;

    padding: 13px 0;

    color: #ffffff;

    text-decoration: none;

    border-top:
        1px solid rgba(255, 255, 255, 0.08);

    transition: 0.25s ease;
}


.contact-detail:hover {
    transform: translateX(5px);

    color: #ffffff;
}


.contact-detail-icon {
    width: 38px;
    height: 38px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: #1d1d1d;

    color: #e61616;

    transition: 0.25s ease;
}


.contact-detail:hover .contact-detail-icon {
    background: #e61616;

    color: #ffffff;
}


.contact-detail span {
    display: block;

    margin-bottom: 3px;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 1.5px;

    color: #777;
}


.contact-detail p {
    margin: 0;

    font-size: 12px;

    line-height: 1.5;

    color: #ddd;
}


/* =========================================
   FORM CARD
========================================= */

.contact-form-card {
    padding: 38px;

    background: #f7f7f7;

    border: 1px solid #e7e7e7;

    border-radius: 30px;
}


/* =========================================
   FORM HEADER
========================================= */

.form-header {
    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    margin-bottom: 30px;
}


.form-header span {
    display: block;

    margin-bottom: 5px;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1px;

    color: #e61616;
}


.form-header h3 {
    margin: 0;

    font-size: 24px;

    font-weight: 750;

    color: #111;
}


.form-red-dot {
    width: 10px;
    height: 10px;

    border-radius: 50%;

    background: #e61616;

    box-shadow:
        0 0 0 6px rgba(230, 22, 22, 0.08);
}


/* =========================================
   FORM ROW
========================================= */

.form-row {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 18px;
}


/* =========================================
   FORM GROUP
========================================= */

.form-group {
    margin-bottom: 20px;
}


.form-group label {
    display: block;

    margin-bottom: 7px;

    font-size: 9px;

    font-weight: 750;

    letter-spacing: 1.2px;

    color: #555;
}


/* =========================================
   INPUTS
========================================= */

.form-group input,
.form-group select,
.form-group textarea {

    width: 100%;

    padding: 13px 15px;

    font-family: inherit;

    font-size: 13px;

    color: #111;

    background: #ffffff;

    border: 1px solid #dedede;

    border-radius: 13px;

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}


.form-group input,
.form-group select {
    height: 48px;
}


.form-group textarea {
    min-height: 125px;

    resize: vertical;
}


.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {

    border-color: #e61616;

    box-shadow:
        0 0 0 3px rgba(230, 22, 22, 0.08);
}


/* =========================================
   SUBMIT BUTTON
========================================= */

.contact-submit {

    width: 100%;

    height: 52px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 0 18px;

    margin-top: 2px;

    border: none;

    border-radius: 15px;

    background: #111;

    color: #ffffff;

    font-family: inherit;

    font-size: 13px;

    font-weight: 700;

    cursor: pointer;

    transition: 0.25s ease;
}


.contact-submit i {
    font-size: 17px;

    transition: 0.25s ease;
}


.contact-submit:hover {

    background: #e61616;

    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(230, 22, 22, 0.18);
}


.contact-submit:hover i {
    transform: translate(3px, -3px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .contact-section {
        padding: 70px 0 80px;
    }


    .contact-wrapper {
        grid-template-columns: 1fr;
    }


    .contact-info {
        min-height: auto;

        padding: 32px;
    }


    .contact-info-top {
        margin-bottom: 25px;
    }


    .contact-info h2 {
        font-size: 34px;
    }


    .contact-detail {
        padding: 11px 0;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .contact-section {
        padding: 60px 0 70px;
    }


    .contact-heading {
        margin-bottom: 25px;

        padding: 0 5px;
    }


    .contact-label {
        font-size: 31px;
    }


    .contact-heading p {
        font-size: 9px;

        letter-spacing: 1.5px;
    }


    .contact-info {
        padding: 25px;

        border-radius: 23px;
    }


    .contact-info h2 {
        margin-top: 10px;

        font-size: 30px;

        letter-spacing: -1px;
    }


    .contact-info-top > p {
        font-size: 11px;

        line-height: 1.6;
    }


    .contact-detail {
        gap: 10px;

        padding: 10px 0;
    }


    .contact-detail-icon {
        width: 34px;
        height: 34px;

        border-radius: 10px;
    }


    .contact-detail p {
        font-size: 10px;
    }


    .contact-form-card {
        padding: 23px;

        border-radius: 23px;
    }


    .form-header {
        margin-bottom: 23px;
    }


    .form-header h3 {
        font-size: 20px;
    }


    .form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }


    .form-group {
        margin-bottom: 15px;
    }


    .form-group input,
    .form-group select {
        height: 45px;

        padding: 11px 13px;

        font-size: 12px;
    }


    .form-group textarea {
        min-height: 110px;

        font-size: 12px;
    }


    .contact-submit {
        height: 48px;

        border-radius: 13px;

        font-size: 12px;
    }

}


/* =========================================
   SMALL PHONES
========================================= */

@media (max-width: 400px) {

    .contact-section {
        padding: 50px 0 60px;
    }


    .contact-info {
        padding: 21px;

        border-radius: 20px;
    }


    .contact-info h2 {
        font-size: 27px;
    }


    .contact-form-card {
        padding: 20px;

        border-radius: 20px;
    }


    .form-header h3 {
        font-size: 18px;
    }

}
/* =========================================
   BLOG SECTION
========================================= */

.blog-section {
    padding: 90px 0 100px;

    background: #f7f8f8;
}


/* =========================================
   BLOG HEADING
========================================= */

.blog-heading {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    margin-bottom: 38px;
}


.blog-label {
    font-size: 38px;

    font-weight: 800;

    letter-spacing: -1.5px;

    line-height: 1;
}


.blog-label span {
    color: #e61616;
}


.blog-heading p {
    margin: 9px 0 0;

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 2px;

    color: #555;
}


.blog-heading p span {
    color: #e61616;
}


/* =========================================
   VIEW ALL
========================================= */

.view-all-blog {
    display: flex;

    align-items: center;

    gap: 8px;

    padding: 10px 15px;

    border: 1px solid #ddd;

    border-radius: 50px;

    color: #111;

    background: #fff;

    font-size: 11px;

    font-weight: 700;

    text-decoration: none;

    transition: 0.25s ease;
}


.view-all-blog i {
    transition: 0.25s ease;
}


.view-all-blog:hover {
    background: #111;

    border-color: #111;

    color: #fff;
}


.view-all-blog:hover i {
    transform: translate(3px, -3px);
}


/* =========================================
   BLOG CARD
========================================= */

.blog-card {
    position: relative;

    height: 100%;

    min-height: 425px;

    padding: 24px;

    display: flex;

    flex-direction: column;

    background: #ffffff;

    border: 1px solid #e5e5e5;

    border-radius: 27px;

    overflow: hidden;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


.blog-card:hover {
    transform: translateY(-7px);

    border-color: #d7d7d7;

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


/* =========================================
   TOP
========================================= */

.blog-card-top {
    display: flex;

    align-items: center;

    justify-content: space-between;
}


.blog-category {
    padding: 6px 10px;

    border-radius: 50px;

    background: #111;

    color: #fff;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 1px;
}


.blog-number {
    font-size: 11px;

    font-weight: 700;

    color: #bbb;
}


/* =========================================
   ICON
========================================= */

.blog-icon {
    width: 58px;
    height: 58px;

    margin-top: 28px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 17px;

    background: #f2f2f2;

    color: #111;

    transition: 0.3s ease;
}


.blog-icon i {
    font-size: 23px;
}


.blog-card:hover .blog-icon {
    background: #e61616;

    color: #fff;

    transform: rotate(-4deg);
}


/* =========================================
   CONTENT
========================================= */

.blog-content {
    display: flex;

    flex-direction: column;

    flex: 1;

    padding-top: 23px;
}


.blog-date {
    font-size: 8px;

    font-weight: 700;

    letter-spacing: 1.3px;

    color: #e61616;
}


.blog-content h2 {
    margin: 9px 0 12px;

    font-size: 21px;

    line-height: 1.18;

    letter-spacing: -0.5px;

    font-weight: 750;

    color: #111;
}


.blog-content p {
    margin: 0;

    color: #777;

    font-size: 12px;

    line-height: 1.7;
}


/* =========================================
   READ MORE
========================================= */

.read-more {
    margin-top: auto;

    padding-top: 22px;

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #111;

    font-size: 11px;

    font-weight: 750;

    text-decoration: none;
}


.read-more i {
    transition: 0.25s ease;
}


.read-more:hover {
    color: #e61616;
}


.read-more:hover i {
    transform: translateX(4px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .blog-section {
        padding: 70px 0 80px;
    }

    .blog-label {
        font-size: 34px;
    }

    .blog-card {
        min-height: 400px;

        padding: 22px;
    }

    .blog-content h2 {
        font-size: 19px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .blog-section {
        padding: 60px 0 70px;
    }


    .blog-heading {
        align-items: flex-start;

        margin-bottom: 25px;
    }


    .blog-label {
        font-size: 31px;
    }


    .blog-heading p {
        font-size: 9px;

        letter-spacing: 1.5px;
    }


    .view-all-blog {
        padding: 8px 11px;

        font-size: 9px;
    }


    .blog-card {
        min-height: 370px;

        padding: 21px;

        border-radius: 22px;
    }


    .blog-icon {
        width: 50px;
        height: 50px;

        margin-top: 23px;

        border-radius: 14px;
    }


    .blog-icon i {
        font-size: 20px;
    }


    .blog-content {
        padding-top: 19px;
    }


    .blog-content h2 {
        font-size: 18px;

        line-height: 1.2;
    }


    .blog-content p {
        font-size: 11px;

        line-height: 1.6;
    }


    .read-more {
        padding-top: 18px;

        font-size: 10px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 400px) {

    .blog-section {
        padding: 50px 0 60px;
    }


    .blog-heading {
        margin-bottom: 20px;
    }


    .blog-label {
        font-size: 28px;
    }


    .view-all-blog {
        font-size: 8px;

        padding: 7px 9px;
    }


    .blog-card {
        min-height: 350px;

        padding: 18px;

        border-radius: 20px;
    }


    .blog-content h2 {
        font-size: 17px;
    }


    .blog-content p {
        font-size: 10px;
    }

}
/* =================================
   EXPERIENCE — IMPORTANT HOME FEATURE
================================= */

.experience-banner {
    width: calc(100% - 80px);
    max-width: 1100px;
    margin: 55px auto 30px;

    padding: 28px 40px;

    display: flex;
    align-items: center;
    gap: 35px;

    background: #111;
    border-radius: 24px;

    position: relative;
    overflow: hidden;

    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);

    opacity: 0;
    transform: translateY(35px);

    animation: experienceAppear 0.9s ease forwards;
}


/* Red glow */

.experience-banner::after {
    content: "";

    position: absolute;
    width: 220px;
    height: 220px;

    right: -80px;
    top: -100px;

    background: #e61616;

    border-radius: 50%;

    opacity: 0.12;

    animation: experienceGlow 4s ease-in-out infinite;
}


/* =================================
   15+
================================= */

.experience-main {
    min-width: 245px;

    display: flex;
    align-items: baseline;
    gap: 12px;

    position: relative;
    z-index: 2;
}

.experience-number {
    font-size: 70px;
    line-height: 1;

    font-weight: 900;

    color: #e61616;

    letter-spacing: -4px;

    animation: numberReveal 1s ease 0.3s both;
}

.experience-years {
    font-size: 14px;

    font-weight: 700;

    letter-spacing: 2px;

    color: #fff;

    max-width: 80px;

    line-height: 1.3;
}


/* =================================
   DIVIDER
================================= */

.experience-divider {
    width: 1px;
    height: 75px;

    background: rgba(255, 255, 255, 0.2);

    animation: dividerReveal 1s ease 0.5s both;
}


/* =================================
   TEXT
================================= */

.experience-text {
    position: relative;
    z-index: 2;
}

.experience-text h3 {
    margin: 0 0 7px;

    color: #fff;

    font-size: 24px;
    font-weight: 700;
}

.experience-text p {
    margin: 0;

    max-width: 600px;

    color: #bdbdbd;

    font-size: 15px;

    line-height: 1.6;
}


/* =================================
   ANIMATIONS
================================= */

@keyframes experienceAppear {

    0% {
        opacity: 0;
        transform: translateY(35px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }

}


@keyframes numberReveal {

    0% {
        opacity: 0;
        transform: translateX(-30px) scale(0.8);
    }

    70% {
        transform: translateX(5px) scale(1.05);
    }

    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }

}


@keyframes dividerReveal {

    from {
        height: 0;
        opacity: 0;
    }

    to {
        height: 75px;
        opacity: 1;
    }

}


@keyframes experienceGlow {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.25);
    }

}


/* =================================
   HOVER
================================= */

.experience-banner {
    transition: transform 0.35s ease,
                box-shadow 0.35s ease;
}

.experience-banner:hover {
    transform: translateY(-5px);

    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}


/* =================================
   MOBILE
================================= */

@media (max-width: 767px) {

    .experience-banner {
        width: calc(100% - 30px);

        margin: 35px auto 20px;

        padding: 25px 20px;

        flex-direction: column;

        text-align: center;

        gap: 18px;
    }


    .experience-main {
        min-width: auto;

        justify-content: center;

        align-items: center;
    }


    .experience-number {
        font-size: 58px;
    }


    .experience-years {
        text-align: left;

        font-size: 11px;
    }


    .experience-divider {
        width: 60px;
        height: 1px;

        background: rgba(255, 255, 255, 0.2);
    }


    .experience-text h3 {
        font-size: 21px;
    }


    .experience-text p {
        font-size: 13px;

        line-height: 1.6;
    }

}
/* =====================================================
   EXPERIENCE STRIP
===================================================== */

.experience-strip {
    position: relative;
    width: 100%;
    padding: 72px 6%;
    background: #ffffff;
    overflow: hidden;
}

.experience-strip__inner {
    position: relative;
    max-width: 1180px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: auto 1px minmax(0, 1fr) auto;
    align-items: center;
    gap: 38px;

    opacity: 0;
    transform: translateY(24px);

    animation: experienceReveal 0.8s cubic-bezier(.22, 1, .36, 1) forwards;
}


/* =====================================================
   NUMBER
===================================================== */

.experience-strip__number {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 150px;
}

.experience-strip__number strong {
    display: block;

    font-size: clamp(58px, 6vw, 82px);
    line-height: .82;
    letter-spacing: -5px;
    font-weight: 800;

    color: #111111;
}

.experience-strip__number strong span {
    color: #e61616;
}

.experience-strip__number small {
    margin-top: 15px;

    font-size: 11px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 3px;

    color: #777777;
}


/* =====================================================
   DIVIDER
===================================================== */

.experience-strip__divider {
    width: 1px;
    height: 82px;

    background: #dedede;

    transform-origin: center;
    animation: dividerReveal .9s ease .25s both;
}


/* =====================================================
   CONTENT
===================================================== */

.experience-strip__content {
    max-width: 650px;
}

.experience-strip__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 11px;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.2px;

    color: #e61616;
}

.experience-strip__eyebrow::before {
    content: "";

    width: 24px;
    height: 1px;

    background: #e61616;
}

.experience-strip__content h2 {
    margin: 0;

    font-size: clamp(25px, 3vw, 38px);
    line-height: 1.12;
    letter-spacing: -1.3px;
    font-weight: 750;

    color: #111111;
}

.experience-strip__content h2 span {
    color: #777777;
}

.experience-strip__content p {
    max-width: 620px;

    margin: 13px 0 0;

    font-size: 14px;
    line-height: 1.7;

    color: #666666;
}


/* =====================================================
   ICON MARK
===================================================== */

.experience-strip__mark {
    width: 50px;
    height: 50px;

    display: grid;
    place-items: center;

    border: 1px solid #e4e4e4;
    border-radius: 50%;

    color: #111111;
    font-size: 21px;

    transition:
        background .3s ease,
        color .3s ease,
        border-color .3s ease,
        transform .3s ease;
}

.experience-strip__mark i {
    transition: transform .3s ease;
}

.experience-strip:hover .experience-strip__mark {
    background: #e61616;
    border-color: #e61616;
    color: #ffffff;
    transform: translateY(-3px);
}

.experience-strip:hover .experience-strip__mark i {
    transform: rotate(-8deg);
}


/* =====================================================
   BOTTOM ACCENT
===================================================== */

.experience-strip::after {
    content: "";

    position: absolute;
    left: 6%;
    right: 6%;
    bottom: 0;

    height: 1px;

    background: #eeeeee;
}


/* =====================================================
   ANIMATIONS
===================================================== */

@keyframes experienceReveal {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes dividerReveal {
    from {
        opacity: 0;
        transform: scaleY(0);
    }

    to {
        opacity: 1;
        transform: scaleY(1);
    }
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {

    .experience-strip {
        padding: 60px 5%;
    }

    .experience-strip__inner {
        grid-template-columns: auto 1px minmax(0, 1fr);
        gap: 28px;
    }

    .experience-strip__mark {
        display: none;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {


.whatsapp-nav-btn{
    margin-left:200px;
}
    .experience-strip {
        padding: 42px 22px;
    }

    .experience-strip__inner {
        grid-template-columns: auto 1px minmax(0, 1fr);
        gap: 17px;
    }

    .experience-strip__number {
        min-width: 76px;
    }

    .experience-strip__number strong {
        font-size: 47px;
        letter-spacing: -3px;
    }

    .experience-strip__number small {
        margin-top: 11px;
        font-size: 8px;
        letter-spacing: 2px;
    }

    .experience-strip__divider {
        height: 75px;
    }

    .experience-strip__eyebrow {
        margin-bottom: 8px;
        font-size: 8px;
        letter-spacing: 1.5px;
    }

    .experience-strip__eyebrow::before {
        width: 16px;
    }

    .experience-strip__content h2 {
        font-size: 21px;
        line-height: 1.18;
        letter-spacing: -.6px;
    }

    .experience-strip__content p {
        margin-top: 9px;
        font-size: 11.5px;
        line-height: 1.55;
    }

}


/* =====================================================
   VERY SMALL DEVICES
===================================================== */

@media (max-width: 380px) {

    .experience-strip {
        padding: 36px 16px;
    }

    .experience-strip__inner {
        gap: 13px;
    }

    .experience-strip__number {
        min-width: 68px;
    }

    .experience-strip__number strong {
        font-size: 42px;
    }

    .experience-strip__content h2 {
        font-size: 19px;
    }

    .experience-strip__content p {
        font-size: 11px;
    }

}
/* NAVBAR LOGO */



/* InfoHub symbol */
.nav-logo {
    width: 58px;
    height: 40px;

    display: block;

    object-fit: contain;
    object-position: center;

    border-radius: 50%;
}

/* Navbar alignment */
.navbar {
    min-height: 72px;
    display: flex;
    align-items: center;
}

/* Mobile */
@media (max-width: 768px) {
    .nav-logo {
        width: 52px;
        height: 52px;
    }
}
/* MOBILE */

@media (max-width: 767px) {

    .logo-wrapper {
        width: 50px;
        height: 50px;
    }

    .nav-logo {
        width: 115%;
        height: 115%;
    }
}
/* =========================================
GLOBAL
========================================= */

/* ==============================
   WHATSAPP NAV BUTTON
   ============================== */

.whatsapp-nav-btn {
    position: relative;

    width: 90px;
    height: 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    background: #25D366;
    color: #ffffff;

    border-radius: 24px;

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    line-height: 1;

    /* Keeps button aligned properly */
    vertical-align: middle;

    /* Animation */
    animation: whatsapp-pop 2.8s ease-in-out infinite;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}


/* WhatsApp icon */

.whatsapp-nav-btn i {
    font-size: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    line-height: 1;
}


/* Hover */

.whatsapp-nav-btn:hover {
    color: #ffffff;

    background: #20bd5a;

    transform: translateY(-2px);

    box-shadow: 0 8px 18px rgba(37, 211, 102, 0.25);
}


/* ==============================
   POP ANIMATION
   ============================== */

@keyframes whatsapp-pop {

    0% {
        transform: scale(1);
    }

    8% {
        transform: scale(1.06);
    }

    16% {
        transform: scale(0.98);
    }

    24% {
        transform: scale(1.03);
    }

    32% {
        transform: scale(1);
    }

    100% {
        transform: scale(1);
    }
}
/* =================================
   MOBILE WHATSAPP BUTTON
   ================================= */

@media (max-width: 768px) {

    .whatsapp-nav-btn {
        width: 90%;
        height: 42px;

        margin-left: 20px;
        margin-right: 8px;

        padding: 0 16px;

        display: inline-flex;
        align-items: center;
        justify-content: center;

        gap: 8px;

        border-radius: 24px;

        font-size: 14px;
        font-weight: 600;

        white-space: nowrap;
    }

    .whatsapp-nav-btn i {
        font-size: 18px;
        display: flex;
        align-items: center;
    }

    .whatsapp-nav-btn span {
        display: inline;
    }
}