/* =========================================================
   TECH INFO SOLUTION
   Main Website Stylesheet
========================================================= */

/* =========================================================
   ROOT VARIABLES
========================================================= */

:root {
    --primary: #071c46;
    --primary-dark: #04132f;
    --primary-light: #123e82;
    --secondary: #13a9dc;
    --secondary-dark: #0d8fbe;
    --accent: #27c1eb;
    --white: #ffffff;
    --light-bg: #f7faff;
    --light-blue: #eef9fd;
    --text: #0b1735;
    --muted: #475467;
    --muted-soft: #667085;
    --body-dark: #344054;
    --heading-color: #071c46;
    --border: #e7ebf2;
    --section-space: 82px;
    --section-space-mobile: 64px;
    --section-title-size: 32px;
    --section-title-mobile: 28px;
    --container: 1320px;
    --shadow-sm: 0 5px 20px rgba(7, 28, 70, 0.06);
    --shadow-md: 0 12px 35px rgba(7, 28, 70, 0.09);
}

/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
textarea,
select {
    font-family: inherit;
}

button {
    border: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: min(92%, var(--container));
    margin-inline: auto;
}

/* =========================================================
   TOP BAR
========================================================= */

.top-bar {
    position: relative;
    z-index: 1100;
    background: var(--primary);
    color: var(--white);
    font-size: 13px;
}

.top-bar-inner {
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* LEFT CONTACT */

.top-contact {
    display: flex;
    align-items: center;
    gap: 25px;
}

.top-contact a {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--white);
    opacity: 0.95;
    transition:
        color 0.25s ease,
        opacity 0.25s ease;
}

.top-contact a:hover {
    color: var(--accent);
    opacity: 1;
}

.top-icon {
    color: var(--accent);
}

/* RIGHT SIDE */

.top-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.top-tagline {
    color: rgba(255, 255, 255, 0.95);
    font-size: 12px;
    font-weight: 500;
}

/* SOCIAL */

.social-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-links a {
    width: 24px;
    height: 24px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    transition: all 0.25s ease;
}

.social-links a:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    transform: translateY(-1px);
}

/* =========================================================
   HEADER
========================================================= */

.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid #edf0f5;
    box-shadow:
        0 4px 20px
        rgba(7, 28, 70, 0.035);
    backdrop-filter: blur(12px);
}

.header-inner {
    height: 86px;
    display: flex;
    align-items: center;
    gap: 35px;
}

/* =========================================================
   LOGO
========================================================= */

.site-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.site-logo img {
    width: 215px;
    height: auto;
    object-fit: contain;
}

/* =========================================================
   NAVIGATION
========================================================= */

.main-navigation {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 27px;
}

.main-navigation > a,
.dropdown-toggle {
    position: relative;
    padding: 31px 0;
    color: var(--text);
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    transition: color 0.25s ease;
}

.main-navigation > a:hover,
.dropdown-toggle:hover,
.main-navigation .active {
    color: var(--secondary);
}

/* ACTIVE / HOVER LINE */

.main-navigation > a::after,
.dropdown-toggle::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 22px;
    width: 0;
    height: 2px;
    border-radius: 10px;
    background: var(--secondary);
    transition: width 0.25s ease;
}

.main-navigation > a:hover::after,
.main-navigation > a.active::after,
.dropdown-toggle:hover::after,
.dropdown-toggle.active::after {
    width: 100%;
}

/* =========================================================
   SERVICES DROPDOWN
========================================================= */

.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 75px;
    left: -25px;
    width: 280px;
    padding: 10px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow:
        0 20px 50px
        rgba(0, 0, 0, 0.10);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        visibility 0.25s ease;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 11px 14px;
    border-radius: 8px;
    color: var(--text);
    font-size: 13px;
    font-weight: 500;
    transition:
        background 0.2s ease,
        color 0.2s ease,
        padding 0.2s ease;
}

.dropdown-menu a:hover {
    padding-left: 18px;
    background: var(--light-blue);
    color: var(--secondary);
}

/* =========================================================
   GET FREE QUOTE BUTTON
========================================================= */

.quote-button {
    flex-shrink: 0;
    padding: 13px 19px;
    border-radius: 8px;
    background:
        linear-gradient(
            135deg,
            var(--primary-light),
            var(--secondary)
        );
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow:
        0 7px 18px
        rgba(19, 169, 220, 0.18);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.quote-button:hover {
    transform: translateY(-2px);
    box-shadow:
        0 12px 28px
        rgba(19, 169, 220, 0.28);
}

/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.mobile-menu-button {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    background: transparent;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.mobile-menu-button span {
    width: 24px;
    height: 2px;
    border-radius: 5px;
    background: var(--primary);
    transition: 0.25s ease;
}

/* =========================================================
   HERO SECTION
========================================================= */

.hero-section {
    position: relative;
    overflow: hidden;
    padding: 70px 0 35px;
    background:
        radial-gradient(
            circle at 83% 25%,
            rgba(19, 169, 220, 0.10),
            transparent 28%
        ),
        radial-gradient(
            circle at 75% 80%,
            rgba(39, 193, 235, 0.06),
            transparent 25%
        ),
        linear-gradient(
            180deg,
            #ffffff 0%,
            #fbfdff 100%
        );
}

/* HERO MAIN GRID */

.hero-container {
    position: relative;
    z-index: 2;
    min-height: 450px;
    display: grid;
    grid-template-columns:
        minmax(0, 0.92fr)
        minmax(0, 1.08fr);
    align-items: center;
    gap: 50px;
}

/* =========================================================
   HERO LEFT CONTENT
========================================================= */

.hero-content {
    position: relative;
    z-index: 5;
}

/* SINCE 2012 */

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 7px 13px;
    border:
        1px solid
        rgba(19, 169, 220, 0.20);
    border-radius: 30px;
    background: #f4fbfe;
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.7px;
}

.badge-dot {
    width: 7px;
    height: 7px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--secondary);
    box-shadow:
        0 0 0 4px
        rgba(19, 169, 220, 0.12);
}

/* MAIN HEADING */

.hero-content h1 {
    max-width: 610px;
    color: var(--primary);
    font-size: clamp(45px, 4vw, 65px);
    font-weight: 800;
    letter-spacing: -2.4px;
    line-height: 1.06;
}

.hero-content h1 span {
    display: block;
    color: var(--secondary);
}

/* HERO DESCRIPTION */

.hero-description {
    max-width: 570px;
    margin-top: 24px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.8;
    text-align: justify;
}

/* =========================================================
   HERO BUTTONS
========================================================= */

.hero-buttons {
    margin-top: 30px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.btn-primary,
.btn-outline {
    min-height: 51px;
    padding: 0 22px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 700;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}

/* PRIMARY */

.btn-primary {
    background:
        linear-gradient(
            135deg,
            var(--primary-light),
            var(--secondary)
        );
    color: var(--white);
    box-shadow:
        0 10px 25px
        rgba(19, 169, 220, 0.20);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow:
        0 15px 35px
        rgba(19, 169, 220, 0.30);
}

/* OUTLINE */

.btn-outline {
    border: 1.5px solid #247db8;
    background: var(--white);
    color: var(--primary);
}

.btn-outline:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.play-icon {
    width: 24px;
    height: 24px;
    border: 1px solid currentColor;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-left: 2px;
    font-size: 8px;
}

/* =========================================================
   HERO RIGHT VISUAL
========================================================= */

.hero-visual {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.device-wrapper {
    position: relative;
    z-index: 3;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.hero-device-image {
    width: 100%;
    max-width: 710px;
    margin-left: auto;
    object-fit: contain;
    filter:
        drop-shadow(
            0 25px 28px
            rgba(7, 28, 70, 0.13)
        );
}

/* =========================================================
   HERO DECORATIVE DOTS
========================================================= */

.hero-dots {
    position: absolute;
    z-index: 1;
    top: 25px;
    right: 0;
    width: 430px;
    height: 330px;
    opacity: 0.45;
    background-image:
        radial-gradient(
            rgba(19, 169, 220, 0.40) 1.2px,
            transparent 1.2px
        );
    background-size: 16px 16px;
    -webkit-mask-image:
        linear-gradient(
            to left,
            #000 20%,
            transparent 100%
        );
    mask-image:
        linear-gradient(
            to left,
            #000 20%,
            transparent 100%
        );
}

/* =========================================================
   HERO STATS
========================================================= */

.hero-stats {
    position: relative;
    z-index: 10;
    margin-top: 15px;
    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.stat-item {
    position: relative;
    min-height: 100px;
    padding: 23px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

/* DIVIDER */

.stat-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 25px;
    right: 0;
    width: 1px;
    height: 50px;
    background: var(--border);
}

/* STAT ICON */

.stat-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border:
        1px solid
        rgba(19, 169, 220, 0.18);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(
            135deg,
            #eef8ff,
            #e8fbff
        );
    color: var(--secondary);
    font-size: 20px;
    font-weight: 800;
}

/* STAT VALUE */

.stat-item strong {
    display: block;
    color: var(--primary);
    font-size: 25px;
    font-weight: 800;
    line-height: 1.05;
}

.stat-item span {
    display: block;
    margin-top: 5px;
    color: #344054;
    font-size: 12px;
    font-weight: 500;
}

.stat-item small {
    display: block;
    margin-top: 2px;
    color: var(--muted);
    font-size: 10px;
}

/* =========================================================
   LARGE TABLET / SMALL LAPTOP
========================================================= */

@media (max-width: 1200px) {
    .header-inner {
        gap: 22px;
    }
    .main-navigation {
        gap: 20px;
    }
    .site-logo img {
        width: 195px;
    }
    .hero-container {
        gap: 25px;
    }
    .hero-content h1 {
        font-size: 52px;
    }
    .stat-item {
        padding-inline: 22px;
    }
}

/* =========================================================
   TABLET NAVIGATION
========================================================= */

@media (max-width: 1100px) {
    .main-navigation {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: none;
        margin: 0;
        padding: 15px 4% 25px;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: var(--white);
        border-top: 1px solid var(--border);
        box-shadow:
            0 16px 30px
            rgba(7, 28, 70, 0.08);
    }
    .main-navigation.open {
        display: flex;
    }
    .main-navigation > a,
    .dropdown-toggle {
        width: 100%;
        padding: 14px 5px;
        font-size: 14px;
    }
    .main-navigation > a::after,
    .dropdown-toggle::after {
        display: none;
    }
    .nav-dropdown {
        width: 100%;
    }
    .dropdown-toggle {
        justify-content: space-between;
    }
    .dropdown-menu {
        position: static;
        width: 100%;
        max-height: 0;
        padding: 0 10px;
        overflow: hidden;
        border: 0;
        border-radius: 8px;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
        background: var(--light-bg);
        transition:
            max-height 0.3s ease,
            padding 0.3s ease;
    }
    .nav-dropdown:hover .dropdown-menu {
        transform: none;
    }
    .nav-dropdown.active .dropdown-menu {
        max-height: 500px;
        padding: 8px 10px;
    }
    .quote-button {
        margin-left: auto;
    }
      .mobile-menu-button {
        display: flex;
        margin-left: auto;
        flex-shrink: 0;
    }
    /* HERO */
    .hero-container {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(0, 1fr);
        gap: 20px;
    }
    .hero-content h1 {
        font-size: 49px;
        letter-spacing: -1.8px;
    }
    .hero-description {
        font-size: 14px;
    }
    .hero-visual {
        min-height: 370px;
    }
    .hero-stats {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
    .stat-item:nth-child(2)::after {
        display: none;
    }
    .stat-item:nth-child(1),
    .stat-item:nth-child(2) {
        border-bottom: 1px solid var(--border);
    }
}

/* =========================================================
   MOBILE / TABLET
========================================================= */

@media (max-width: 768px) {
    /* TOP BAR */
    .top-bar-inner {
        min-height: auto;
        padding: 7px 0;
    }
    .top-tagline,
    .social-links {
        display: none;
    }
    .top-contact {
        width: 100%;
        justify-content: center;
        gap: 15px;
        font-size: 11px;
    }
    /* HEADER */
    .header-inner {
        height: 76px;
        gap: 16px;
        justify-content: space-between;
    }
    
    .site-logo {
        min-width: 0;
    }
    
    .site-logo img {
        width: 185px;
        max-width: calc(100vw - 105px);
    }
    
    .mobile-menu-button {
        margin-left: auto;
        flex: 0 0 42px;
    }
    
    .quote-button {
        display: none;
    }
    /* HERO */
    .hero-section {
        padding:
            48px 0
            25px;
    }
    .hero-container {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-content h1 {
        max-width: 620px;
        font-size: 44px;
        letter-spacing: -1.5px;
    }
    .hero-description {
        max-width: 600px;
        font-size: 14px;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-visual {
        min-height: auto;
        margin-top: 5px;
    }
    .device-wrapper {
        justify-content: center;
    }
    .hero-device-image {
        max-width: 580px;
        margin-inline: auto;
    }
    .hero-dots {
        top: 0;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        width: 90%;
        height: 100%;
    }
    .hero-stats {
        margin-top: 20px;
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
    .stat-item {
        min-height: 95px;
        padding: 20px;
    }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 520px) {
    .container {
        width: min(91%, var(--container));
    }
    /* TOP */
    .top-contact {
        flex-direction: column;
        align-items: center;
        gap: 1px;
        padding: 2px 0;
    }
    /* LOGO */
    .site-logo img {
        width: 175px;
    }
    /* HERO */
    .hero-section {
        padding-top: 38px;
    }
    .hero-badge {
        margin-bottom: 15px;
    }
    .hero-content h1 {
        font-size: 37px;
        letter-spacing: -1px;
        line-height: 1.08;
    }
    .hero-description {
        margin-top: 20px;
        font-size: 14px;
        line-height: 1.7;
    }
    .hero-buttons {
        width: 100%;
        margin-top: 25px;
        flex-direction: column;
    }
    .btn-primary,
    .btn-outline {
        width: 100%;
    }
    .hero-device-image {
        max-width: 430px;
    }
    /* STATS */
    .hero-stats {
        grid-template-columns: 1fr;
        border-radius: 10px;
    }
    .stat-item {
        min-height: 86px;
        padding: 18px 22px;
    }
    .stat-item:not(:last-child)::after {
        top: auto;
        bottom: 0;
        left: 20px;
        right: auto;
        width: calc(100% - 40px);
        height: 1px;
    }
    .stat-item:nth-child(2)::after {
        display: block;
    }
    .stat-item:nth-child(1),
    .stat-item:nth-child(2) {
        border-bottom: 0;
    }
    .stat-icon {
        width: 41px;
        height: 41px;
    }
    .stat-item strong {
        font-size: 23px;
    }
}

/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 380px) {
    .site-logo img {
        width: 160px;
    }
    .hero-content h1 {
        font-size: 33px;
    }
    .hero-description {
        font-size: 13px;
    }
}
/* =========================================================
   TRUSTED CLIENTS
========================================================= */

.trusted-clients {
    padding:
        75px 0
        45px;
    background: #ffffff;
    border-bottom: 1px solid var(--border);
}

/* HEADING */

.trusted-heading {
    margin-bottom: 32px;
    text-align: center;
    color: var(--primary);
    font-size: 17px;
    font-weight: 700;
}

.trusted-heading span {
    color: var(--secondary);
}

/* CLIENT GRID */

.clients-grid {
    display: grid;
    grid-template-columns:
        repeat(7, minmax(0, 1fr));
    align-items: stretch;
}

/* CLIENT ITEM */

.client-item {
    position: relative;
    min-height: 115px;
    padding: 10px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* DIVIDER */

.client-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 20%;
    right: 0;
    width: 1px;
    height: 60%;
    background: var(--border);
}

/* LOGO */

.client-item img {
    width: auto;
    max-width: 170px;
    height: 75px;
    margin-bottom: 14px;
    object-fit: contain;
    transition:
        transform 0.3s ease,
        filter 0.3s ease;
}

.client-item:hover img {
    transform: translateY(-4px);
}

/* CLIENT NAME */

.client-item strong {
    display: block;
    color: var(--text);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
}

.client-item span {
    display: block;
    margin-top: 3px;
    color: var(--muted);
    font-size: 10px;
}

/* =========================================================
   TRUSTED CLIENTS RESPONSIVE
========================================================= */

@media (max-width: 1100px) {
    .clients-grid {
        grid-template-columns:
            repeat(4, 1fr);
    }
    .client-item {
        border-bottom: 1px solid var(--border);
    }
    .client-item:nth-child(4)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .trusted-clients {
        padding-top: 55px;
    }
    .clients-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }
    .client-item {
        min-height: 120px;
    }
    .client-item:nth-child(even)::after {
        display: none;
    }
    .client-item img {
        max-width: 145px;
        height: 68px;
    }
}

@media (max-width: 480px) {
    .trusted-heading {
        font-size: 15px;
    }
    .client-item {
        padding-inline: 8px;
    }
    .client-item img {
        height: 60px;
        max-width: 130px;
    }
}
/* =========================================================
   ABOUT SECTION
========================================================= */

.about-section {
    position: relative;
    padding: var(--section-space) 0;
    background:
        linear-gradient(
            135deg,
            #f9fcff 0%,
            #ffffff 60%
        );
}

.about-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    gap: 75px;
}

/* LEFT CONTENT */

.about-content {
    max-width: 610px;
}

.section-label {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--secondary);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.about-content h2 {
    max-width: 550px;
    color: var(--primary);
    font-size: var(--section-title-size);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.6px;
}

.about-content h2 span {
    display: block;
    color: var(--secondary);
}

.about-intro {
    max-width: 570px;
    margin-top: 22px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.8;
    text-align: justify;
}

/* FEATURES */

.about-features {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.about-feature-icon {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            var(--primary-light),
            var(--secondary)
        );
    font-size: 14px;
    font-weight: 800;
    box-shadow:
        0 6px 15px
        rgba(19, 169, 220, 0.17);
}

.about-feature strong {
    display: block;
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
}

.about-feature p {
    margin-top: 2px;
    color: var(--muted);
    font-size: 12.5px;
    line-height: 1.6;
}

/* BUTTON */

.about-button {
    margin-top: 30px;
    min-height: 48px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 8px;
    background:
        linear-gradient(
            135deg,
            var(--primary-light),
            var(--secondary)
        );
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    box-shadow:
        0 8px 20px
        rgba(19, 169, 220, 0.18);
    transition: all 0.3s ease;
}

.about-button:hover {
    transform: translateY(-3px);
    box-shadow:
        0 12px 28px
        rgba(19, 169, 220, 0.28);
}

/* RIGHT IMAGE */

.about-visual {
    position: relative;
}

.about-visual img {
    width: 100%;
    min-height: 430px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow:
        0 18px 45px
        rgba(7, 28, 70, 0.12);
}

/* EXPERIENCE CARD */

.about-experience-card {
    position: absolute;
    left: -30px;
    bottom: 30px;
    min-width: 165px;
    padding: 18px 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--border);
    box-shadow:
        0 15px 35px
        rgba(7, 28, 70, 0.12);
    backdrop-filter: blur(8px);
}

.about-experience-card strong {
    display: block;
    color: var(--secondary);
    font-size: 30px;
    font-weight: 800;
    line-height: 1;
}

.about-experience-card span {
    display: block;
    margin-top: 6px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
}

.about-experience-card small {
    display: block;
    margin-top: 2px;
    color: var(--muted);
    font-size: 10px;
}

/* =========================================================
   ABOUT RESPONSIVE
========================================================= */

@media (max-width: 1000px) {
    .about-grid {
        gap: 45px;
    }
    .about-content h2 {
        font-size: 42px;
    }
    .about-visual img {
        min-height: 390px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 75px 0;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }
    .about-content {
        max-width: 100%;
    }
    .about-content h2 {
        max-width: 600px;
        font-size: 40px;
    }
    .about-intro {
        max-width: 650px;
    }
    .about-visual {
        max-width: 650px;
        width: 100%;
        margin-inline: auto;
    }
    .about-experience-card {
        left: 20px;
    }
}

@media (max-width: 520px) {
    .about-section {
        padding: 60px 0;
    }
    .about-content h2 {
        font-size: 34px;
    }
    .about-intro {
        font-size: 14px;
    }
    .about-visual img {
        min-height: 310px;
    }
    .about-experience-card {
        left: 15px;
        bottom: 15px;
        min-width: 145px;
        padding: 15px 17px;
    }
    .about-experience-card strong {
        font-size: 26px;
    }
}
/* =========================================================
   OUR SERVICES
========================================================= */

.services-section {
    padding: var(--section-space) 0;
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f8fbff 100%
        );
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

.section-heading .section-label {
    margin-bottom: 8px;
}

.section-heading h2 {
    margin-top: 0;
    color: var(--heading-color);
    font-size: var(--section-title-size);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.6px;
}

.section-heading h2 span {
    color: var(--secondary);
}

.section-heading p {
    max-width: 680px;
    margin: 12px auto 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.75;
}

/* SERVICE GRID */

.services-grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: 22px;
}

/* SERVICE CARD */

.service-card {
    position: relative;
    min-height: 290px;
    padding: 30px 27px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow:
        0 8px 25px
        rgba(7, 28, 70, 0.045);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background:
        linear-gradient(
            90deg,
            var(--primary-light),
            var(--secondary)
        );
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-7px);
    border-color:
        rgba(19, 169, 220, 0.25);
    box-shadow:
        0 18px 45px
        rgba(7, 28, 70, 0.10);
}

.service-card:hover::before {
    transform: scaleX(1);
}

/* ICON */

.service-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border:
        1px solid
        rgba(19, 169, 220, 0.18);
    border-radius: 12px;
    background:
        linear-gradient(
            135deg,
            #f0f8ff,
            #e9fbff
        );
    color: var(--secondary);
    font-size: 24px;
}

/* TITLE */

.service-card h3 {
    min-height: 44px;
    color: var(--primary);
    font-size: 17px;
    font-weight: 750;
    line-height: 1.3;
}

/* DESCRIPTION */

.service-card p {
    margin-top: 12px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}

/* READ MORE */

.service-card a {
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--secondary);
    font-size: 12px;
    font-weight: 700;
    transition: gap 0.25s ease;
}

.service-card a:hover {
    gap: 11px;
}

/* =========================================================
   SERVICES RESPONSIVE
========================================================= */

@media (max-width: 1000px) {
    .services-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 650px) {
    .services-section {
        padding: 70px 0;
    }
    .section-heading {
        margin-bottom: 35px;
    }
    .section-heading h2 {
        font-size: 34px;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .service-card {
        min-height: auto;
    }
}

/* =========================================================
   TECHNOLOGIES
========================================================= */

.technologies-section {
    padding: var(--section-space) 0;
    background: #ffffff;
}

.technologies-section .section-heading h2 span {
    color: var(--secondary);
}

/* GRID */

.technologies-grid {
    display: grid;
    grid-template-columns:
        repeat(6, minmax(0, 1fr));
    gap: 18px;
}

/* CARD */

.technology-card {
    min-height: 135px;
    padding: 22px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-align: center;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow:
        0 7px 22px
        rgba(7, 28, 70, 0.045);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.technology-card:hover {
    transform: translateY(-6px);
    border-color:
        rgba(19, 169, 220, 0.28);
    box-shadow:
        0 16px 35px
        rgba(7, 28, 70, 0.09);
}

/* LOGO */

.technology-card img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.technology-card:hover img {
    transform: scale(1.08);
}

/* LABEL */

.technology-card span {
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
}

/* =========================================================
   TECHNOLOGIES RESPONSIVE
========================================================= */

@media (max-width: 1100px) {
    .technologies-grid {
        grid-template-columns:
            repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .technologies-section {
        padding: 70px 0;
    }
    .technologies-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
        gap: 14px;
    }
}

@media (max-width: 520px) {
    .technologies-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
    .technology-card {
        min-height: 120px;
    }
    .technology-card img {
        width: 44px;
        height: 44px;
    }
}

/* =========================================================
   RECENT PROJECTS
========================================================= */

.projects-section {
    padding: var(--section-space) 0;
    background:
        linear-gradient(
            180deg,
            #f8fbff 0%,
            #ffffff 100%
        );
}

/* FILTERS */

.project-filters {
    margin: -10px 0 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.project-filter {
    padding: 9px 17px;
    border: 1px solid transparent;
    border-radius: 7px;
    background: #f3f6fa;
    color: var(--text);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

.project-filter:hover {
    color: var(--secondary);
    border-color:
        rgba(19, 169, 220, 0.20);
    background: #eef9fd;
}

.project-filter.active {
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            var(--primary-light),
            var(--secondary)
        );
    box-shadow:
        0 7px 18px
        rgba(19, 169, 220, 0.18);
}

/* GRID */

.projects-grid {
    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));
    gap: 22px;
}

/* CARD */

.project-card {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 13px;
    box-shadow:
        0 8px 24px
        rgba(7, 28, 70, 0.05);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 18px 40px
        rgba(7, 28, 70, 0.11);
}

/* IMAGE */

.project-image {
    position: relative;
    height: 190px;
    overflow: hidden;
    background: #f4f7fb;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.045);
}

/* OVERLAY */

.project-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        rgba(7, 28, 70, 0.78);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-overlay a {
    padding: 10px 16px;
    border: 1px solid rgba(255,255,255,0.55);
    border-radius: 7px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    backdrop-filter: blur(5px);
}

/* CONTENT */

.project-content {
    padding: 19px 20px 21px;
}

.project-type {
    display: inline-block;
    margin-bottom: 7px;
    color: var(--secondary);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.project-content h3 {
    color: var(--primary);
    font-size: 16px;
    font-weight: 750;
}

.project-content p {
    margin-top: 5px;
    color: var(--muted);
    font-size: 11px;
}

/* BUTTON */

.projects-button-wrap {
    margin-top: 38px;
    text-align: center;
}

.projects-button {
    min-height: 48px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 8px;
    background:
        linear-gradient(
            135deg,
            var(--primary-light),
            var(--secondary)
        );
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    box-shadow:
        0 8px 22px
        rgba(19, 169, 220, 0.18);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.projects-button:hover {
    transform: translateY(-3px);
    box-shadow:
        0 13px 30px
        rgba(19, 169, 220, 0.28);
}

/* =========================================================
   PROJECTS RESPONSIVE
========================================================= */

@media (max-width: 1100px) {
    .projects-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
    .project-image {
        height: 220px;
    }
}

@media (max-width: 650px) {
    .projects-section {
        padding: 70px 0;
    }
    .project-filters {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 5px;
    }
    .project-filter {
        flex-shrink: 0;
    }
    .projects-grid {
        grid-template-columns: 1fr;
    }
    .project-image {
        height: 220px;
    }
}
/* =========================================================
   CLIENT TESTIMONIALS
========================================================= */

.testimonials-section {
    position: relative;
    padding: var(--section-space) 0;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(19, 169, 220, 0.06),
            transparent 25%
        ),
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f8fbff 100%
        );
}

/* HEADING */

.testimonials-section .section-heading {
    margin-bottom: 48px;
}

.testimonials-section .section-heading h2 span {
    color: var(--secondary);
}

/* =========================================================
   TESTIMONIAL GRID
========================================================= */

.testimonials-grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 24px;
}

/* =========================================================
   TESTIMONIAL CARD
========================================================= */

.testimonial-card {
    position: relative;
    min-height: 310px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 15px;
    box-shadow:
        0 10px 30px
        rgba(7, 28, 70, 0.055);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-7px);
    border-color:
        rgba(19, 169, 220, 0.25);
    box-shadow:
        0 20px 45px
        rgba(7, 28, 70, 0.11);
}

/* FEATURED CARD */

.featured-testimonial {
    border-color:
        rgba(19, 169, 220, 0.25);
    box-shadow:
        0 14px 38px
        rgba(19, 169, 220, 0.10);
}

/* TOP */

.testimonial-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
}

/* QUOTE */

.quote-icon {
    height: 45px;
    color:
        rgba(19, 169, 220, 0.18);
    font-family: Georgia, serif;
    font-size: 60px;
    font-weight: 700;
    line-height: 0.8;
}

/* RATING */

.testimonial-rating {
    color: #f5b301;
    font-size: 14px;
    letter-spacing: 2px;
    white-space: nowrap;
}

/* TESTIMONIAL TEXT */

.testimonial-text {
    margin-top: 23px;
    color: var(--body-dark);
    font-size: 13px;
    line-height: 1.8;
}

/* CLIENT */

.testimonial-client {
    margin-top: auto;
    padding-top: 26px;
    display: flex;
    align-items: center;
    gap: 13px;
}

/* AVATAR */

.client-avatar {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background:
        linear-gradient(
            135deg,
            var(--primary-light),
            var(--secondary)
        );
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.3px;
    box-shadow:
        0 7px 17px
        rgba(19, 169, 220, 0.18);
}

/* CLIENT DETAILS */

.client-details strong {
    display: block;
    color: var(--primary);
    font-size: 13px;
    font-weight: 750;
}

.client-details span {
    display: block;
    margin-top: 3px;
    color: var(--muted);
    font-size: 10px;
}

/* =========================================================
   DOTS
========================================================= */

.testimonial-dots {
    margin-top: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

.testimonial-dots span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #cbd5e1;
}

.testimonial-dots span.active {
    width: 22px;
    border-radius: 10px;
    background: var(--secondary);
}

/* =========================================================
   TESTIMONIAL RESPONSIVE
========================================================= */

@media (max-width: 900px) {
    .testimonials-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
    .testimonial-card:last-child {
        grid-column: 1 / -1;
        max-width: calc(50% - 12px);
        width: 100%;
        margin-inline: auto;
    }
}

@media (max-width: 650px) {
    .testimonials-section {
        padding: 70px 0;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .testimonial-card,
    .testimonial-card:last-child {
        grid-column: auto;
        max-width: none;
        min-height: auto;
    }
    .testimonial-dots {
        display: none;
    }
}
/* =========================================================
   CALL TO ACTION
========================================================= */

.cta-section {
    padding: 25px 0 95px;
    background: #f8fbff;
}

.cta-box {
    position: relative;
    padding: 50px 55px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px;
    overflow: hidden;
    border-radius: 20px;
    background:
        linear-gradient(
            135deg,
            var(--primary-dark) 0%,
            var(--primary) 55%,
            var(--primary-light) 100%
        );
    box-shadow:
        0 20px 50px
        rgba(7, 28, 70, 0.18);
}

/* DECORATIVE SHAPE */

.cta-box::before {
    content: "";
    position: absolute;
    width: 290px;
    height: 290px;
    right: -90px;
    top: -130px;
    border-radius: 50%;
    background:
        rgba(19, 169, 220, 0.13);
}

.cta-box::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    right: 180px;
    bottom: -115px;
    border-radius: 50%;
    background:
        rgba(255, 255, 255, 0.05);
}

/* CONTENT */

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 690px;
}

.cta-label {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--accent);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.4px;
}

.cta-content h2 {
    color: #ffffff;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.18;
    font-weight: 800;
}

.cta-content h2 span {
    color: var(--accent);
}

.cta-content p {
    max-width: 620px;
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    line-height: 1.8;
}

/* ACTIONS */

.cta-actions {
    position: relative;
    z-index: 2;
    min-width: 190px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
}

/* PRIMARY BUTTON */

.cta-primary-btn {
    min-height: 50px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 8px;
    background:
        linear-gradient(
            135deg,
            var(--secondary),
            var(--accent)
        );
    color: #ffffff;
    font-size: 13px;
    font-weight: 750;
    box-shadow:
        0 10px 25px
        rgba(19, 169, 220, 0.28);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.cta-primary-btn:hover {
    transform: translateY(-3px);
    box-shadow:
        0 15px 30px
        rgba(19, 169, 220, 0.36);
}

/* PHONE */

.cta-phone-btn {
    min-height: 50px;
    padding: 8px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background:
        rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.72);
    font-size: 9px;
    backdrop-filter: blur(5px);
    transition:
        background 0.25s ease,
        border-color 0.25s ease;
}

.cta-phone-btn strong {
    margin-top: 2px;
    color: #ffffff;
    font-size: 12px;
}

.cta-phone-btn:hover {
    background:
        rgba(255, 255, 255, 0.12);
    border-color:
        rgba(255, 255, 255, 0.30);
}

/* =========================================================
   CTA RESPONSIVE
========================================================= */

@media (max-width: 900px) {
    .cta-box {
        padding: 42px 35px;
        flex-direction: column;
        align-items: flex-start;
    }
    .cta-actions {
        min-width: 220px;
    }
}

@media (max-width: 600px) {
    .cta-section {
        padding: 15px 0 70px;
    }
    .cta-box {
        padding: 35px 24px;
        border-radius: 16px;
    }
    .cta-content h2 {
        font-size: 29px;
    }
    .cta-actions {
        width: 100%;
        min-width: 0;
    }
    .cta-primary-btn,
    .cta-phone-btn {
        width: 100%;
    }
}
/* =========================================================
   SITE FOOTER
========================================================= */

.site-footer {
    position: relative;
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.72);
}

/* MAIN */

.footer-main {
    padding-top: 75px;
    padding-bottom: 65px;
    display: grid;
    grid-template-columns:
        1.45fr 0.8fr 1.15fr 1.2fr;
    gap: 55px;
}

/* =========================================================
   ABOUT
========================================================= */

.footer-about {
    max-width: 330px;
}

.footer-logo {
    display: inline-flex;
    margin-bottom: 22px;
}

.footer-logo img {
    width: 215px;
    max-height: 65px;
    object-fit: contain;
    object-position: left center;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
    line-height: 1.8;
}

/* SOCIAL */

.footer-social {
    margin-top: 23px;
    display: flex;
    align-items: center;
    gap: 9px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.footer-social a:hover {
    transform: translateY(-3px);
    border-color: var(--secondary);
    background: var(--secondary);
}

/* =========================================================
   COLUMNS
========================================================= */

.footer-column h3 {
    position: relative;
    margin-bottom: 24px;
    padding-bottom: 12px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 750;
}

.footer-column h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 28px;
    height: 2px;
    border-radius: 5px;
    background: var(--secondary);
}

.footer-column ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-column li {
    margin-bottom: 11px;
}

.footer-column li a {
    position: relative;
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
    transition:
        color 0.25s ease,
        padding-left 0.25s ease;
}

.footer-column li a::before {
    content: "›";
    margin-right: 7px;
    color: var(--secondary);
}

.footer-column li a:hover {
    padding-left: 4px;
    color: #ffffff;
}

/* =========================================================
   CONTACT
========================================================= */

.footer-contact-item {
    margin-bottom: 19px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact-icon {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    background:
        rgba(19, 169, 220, 0.12);
    color: var(--accent);
    font-size: 13px;
}

.footer-contact-item div {
    min-width: 0;
}

.footer-contact-item small {
    display: block;
    margin-bottom: 3px;
    color: rgba(255, 255, 255, 0.42);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-contact-item a,
.footer-contact-item div > span {
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    line-height: 1.55;
    overflow-wrap: anywhere;
    transition: color 0.25s ease;
}

.footer-contact-item a + a {
    display: block;
    margin-top: 4px;
}

.footer-contact-item a:hover {
    color: var(--accent);
}

/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {
    border-top:
        1px solid rgba(255, 255, 255, 0.08);
    background:
        rgba(0, 0, 0, 0.10);
}

.footer-bottom-inner {
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.50);
    font-size: 11px;
}

.footer-bottom p strong {
    color: rgba(255, 255, 255, 0.75);
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 11px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.50);
    font-size: 11px;
    transition: color 0.25s ease;
}

.footer-legal a:hover {
    color: var(--accent);
}

.footer-legal span {
    color: rgba(255, 255, 255, 0.15);
}

/* =========================================================
   FOOTER RESPONSIVE
========================================================= */

@media (max-width: 1050px) {
    .footer-main {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
        gap: 45px;
    }
    .footer-about {
        max-width: none;
    }
}

@media (max-width: 650px) {
    .footer-main {
        padding-top: 55px;
        padding-bottom: 45px;
        grid-template-columns: 1fr;
        gap: 38px;
    }
    .footer-logo img {
        width: 195px;
    }
    .footer-bottom-inner {
        padding-top: 20px;
        padding-bottom: 20px;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 10px;
    }
}
/* =========================================================
   INNER HERO
========================================================= */

.inner-hero {
    padding: 72px 0 68px;
    text-align: center;
    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(19, 169, 220, 0.10),
            transparent 25%
        ),
        linear-gradient(
            180deg,
            #f8fbff 0%,
            #ffffff 100%
        );
}

.inner-hero-content {
    max-width: 850px;
}

.inner-hero h1 {
    margin-top: 13px;
    color: var(--primary);
    font-size: clamp(38px, 5vw, 60px);
    font-weight: 850;
    line-height: 1.08;
}

.inner-hero h1 span {
    color: var(--secondary);
}

.inner-hero p {
    max-width: 720px;
    margin: 20px auto 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.85;
}

/* =========================================================
   SERVICE PAGE HERO / INTRO SPACING
   Only affects pages where .inner-hero is immediately
   followed by .service-intro-section.
========================================================= */

.inner-hero + .service-intro-section {
    padding-top: 24px;
}

/* If service-page-hero class exists in Blade, reduce only
   the service hero's bottom space without affecting About,
   Technologies, Portfolio, Blog or Contact pages. */
.service-page-hero {
    padding-bottom: 30px;
}

/* =========================================================
   ABOUT PAGE INTRO
========================================================= */

.about-page-section {
    padding: var(--section-space) 0;
}

.about-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
}


/* IMAGE */

.about-page-image {
    position: relative;
}

.about-page-image img {
    width: 100%;
    display: block;
    border-radius: 16px;

    box-shadow:
        0 18px 45px
        rgba(7, 28, 70, 0.12);
}


/* EXPERIENCE BADGE */

.about-page-experience {
    position: absolute;

    left: 24px;
    bottom: 24px;

    min-width: 150px;

    padding: 16px 20px;

    border-radius: 10px;

    background: #ffffff;

    box-shadow:
        0 12px 28px
        rgba(7, 28, 70, 0.14);
}

.about-page-experience strong {
    display: block;

    color: var(--secondary);

    font-size: 28px;
    font-weight: 800;

    line-height: 1;
}

.about-page-experience span {
    display: block;

    margin-top: 5px;

    color: var(--primary);

    font-size: 11px;
    font-weight: 700;
}

.about-page-experience small {
    display: block;

    margin-top: 2px;

    color: var(--muted);

    font-size: 10px;
}


/* CONTENT */

.about-page-content h2 {
    margin-top: 10px;

    color: var(--primary);

    font-size: var(--section-title-size);
    font-weight: 800;

    line-height: 1.2;
    letter-spacing: -0.6px;
}

.about-page-content h2 span {
    color: var(--secondary);
}

.about-page-content > p {
    margin-top: 16px;

    color: var(--muted);

    font-size: 13px;
    line-height: 1.75;
}


/* POINTS */

.about-page-points {
    margin-top: 28px;

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 13px;
}

.about-page-point {
    display: flex;

    align-items: center;

    gap: 9px;

    color: var(--primary);

    font-size: 12px;
    font-weight: 700;

    line-height: 1.5;
}

.about-page-point span {
    width: 23px;
    height: 23px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 6px;

    background: var(--secondary);

    color: #ffffff;

    font-size: 10px;
    font-weight: 800;
}

/* =========================================================
   MISSION & VISION
========================================================= */

.mission-vision-section {
    padding: var(--section-space) 0;
    background: #f8fbff;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.purpose-card {
    padding: 32px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow:
        0 9px 28px
        rgba(7, 28, 70, 0.05);
}

.purpose-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background:
        linear-gradient(
            135deg,
            var(--primary-light),
            var(--secondary)
        );
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
}

.purpose-card h3 {
    margin-top: 21px;
    color: var(--primary);
    font-size: 18px;
}

.purpose-card p {
    margin-top: 11px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.7;
}

/* =========================================================
   WHY US
========================================================= */

.why-us-section {
    padding: var(--section-space) 0;
}

.why-us-grid {
    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.why-us-card {
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 13px;
    background: #ffffff;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.why-us-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 16px 35px
        rgba(7, 28, 70, 0.09);
}

.why-us-card strong {
    color:
        rgba(19, 169, 220, 0.25);
    font-size: 30px;
}

.why-us-card h3 {
    margin-top: 13px;
    color: var(--primary);
    font-size: 15px;
}

.why-us-card p {
    margin-top: 9px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.7;
}

/* =========================================================
   ABOUT PAGE CTA
========================================================= */

.about-page-cta {
    padding: 10px 0 95px;
}

.about-page-cta-box {
    padding: 42px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    border-radius: 18px;
    background:
        linear-gradient(
            135deg,
            var(--primary-dark),
            var(--primary-light)
        );
}

.about-page-cta-box span {
    color: var(--accent);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
}

.about-page-cta-box h2 {
    max-width: 650px;
    margin-top: 8px;
    color: #ffffff;
    font-size: 27px;
    line-height: 1.3;
}

.about-page-cta-box a {
    min-height: 48px;
    padding: 0 21px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 8px;
    background:
        linear-gradient(
            135deg,
            var(--secondary),
            var(--accent)
        );
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
}

/* =========================================================
   ABOUT PAGE RESPONSIVE
========================================================= */

@media (max-width: 1000px) {
    .about-page-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }
    .mission-vision-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
    .why-us-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 650px) {
    .inner-hero {
        padding: 70px 0 65px;
    }
    .inner-hero h1 {
        font-size: 38px;
    }
    .about-page-section,
    .mission-vision-section,
    .why-us-section {
        padding: 70px 0;
    }
    .about-page-points {
        grid-template-columns: 1fr;
    }
    .mission-vision-grid,
    .why-us-grid {
        grid-template-columns: 1fr;
    }
    .about-page-cta {
        padding-bottom: 70px;
    }
    .about-page-cta-box {
        padding: 32px 24px;
        flex-direction: column;
        align-items: flex-start;
    }
    .about-page-cta-box h2 {
        font-size: 24px;
    }
    .about-page-cta-box a {
        width: 100%;
    }
}
/* =========================================================
   SERVICE PAGE
========================================================= */

.service-intro-section {
    padding: 24px 0 var(--section-space);
}

.service-intro-grid {
    display: grid;
    grid-template-columns:1.4fr 0.75fr;
    gap: 70px;
    align-items: start;
}

.service-intro-content,
.service-intro-card {
    margin-top: 0;
}


/* =========================================================
   SERVICE INTRO CONTENT
========================================================= */

.service-intro-content h2 {
    margin-top: 10px;

    color: var(--primary);

    font-size: var(--section-title-size);
    font-weight: 800;

    line-height: 1.2;
    letter-spacing: -0.6px;
}

.service-intro-content h2 span {
    color: var(--secondary);
}

.service-intro-content > p {
    margin-top: 16px;

    color: var(--muted);

    font-size: 13px;
    line-height: 1.75;
}


/* =========================================================
   FEATURE LIST
========================================================= */

.service-feature-list {
    margin-top: 28px;

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 13px;
}

.service-feature-item {
    display: flex;

    align-items: center;

    gap: 9px;

    color: var(--primary);

    font-size: 12px;
    font-weight: 700;

    line-height: 1.5;
}

.service-feature-item span {
    width: 23px;
    height: 23px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 6px;

    background: var(--secondary);

    color: #ffffff;

    font-size: 10px;
    font-weight: 800;
}


/* =========================================================
   SERVICE SIDE CARD
========================================================= */

.service-intro-card {
    padding: 34px;

    border-radius: 16px;

    background:
        linear-gradient(
            145deg,
            var(--primary-dark),
            var(--primary-light)
        );

    box-shadow:
        0 18px 45px
        rgba(7, 28, 70, 0.16);
}

.service-intro-card > span {
    color: var(--accent);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.1px;

    text-transform: uppercase;
}

.service-intro-card h3 {
    margin-top: 8px;

    color: #ffffff;

    font-size: 25px;
    font-weight: 750;

    line-height: 1.25;
}

.service-intro-card ul {
    margin: 24px 0 0;

    padding: 0;

    list-style: none;
}

.service-intro-card li {
    padding: 11px 0;

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.09);

    color:
        rgba(255, 255, 255, 0.86);

    font-size: 12px;

    line-height: 1.5;
}

.service-intro-card li::before {
    content: "✓";

    margin-right: 9px;

    color: var(--accent);

    font-weight: 800;
}

.service-intro-card a {
    margin-top: 25px;

    min-height: 46px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 8px;

    background: var(--secondary);

    color: #ffffff;

    font-size: 11px;
    font-weight: 700;

    transition:
        background 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.service-intro-card a:hover {
    background: var(--accent);

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px
        rgba(19, 169, 220, 0.22);
}
/* =========================================================
   SERVICE BENEFITS
========================================================= */

.service-benefits-section {
    padding: var(--section-space) 0;
    background: #f8fbff;
}

.service-benefits-grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.service-benefit-card {
    padding: 30px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 14px;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.service-benefit-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 16px 38px
        rgba(7, 28, 70, 0.08);
}

.service-benefit-card strong {
    color:
        rgba(19, 169, 220, 0.22);
    font-size: 30px;
}

.service-benefit-card h3 {
    margin-top: 12px;
    color: var(--primary);
    font-size: 15px;
}

.service-benefit-card p {
    margin-top: 9px;
    color: var(--muted);
    font-size: 12.5px;
    line-height: 1.75;
}

/* =========================================================
   PROCESS
========================================================= */

.service-process-section {
    padding: var(--section-space) 0;
}

.service-process-grid {
    position: relative;
    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.service-process-item {
    padding: 28px;
    border-radius: 13px;
    border: 1px solid var(--border);
    background: #ffffff;
}

.service-process-item span {
   display: inline-block;
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 24px;
    color: var(--secondary);
}

@media (max-width: 767px) {
    .service-process-item > span {
        font-size: 21px;
        margin-bottom: 18px;
    }
}

.service-process-item h3 {
    margin-top: 13px;
    color: var(--primary);
    font-size: 15px;
}

.service-process-item p {
    margin-top: 8px;
    color: var(--muted);
    font-size: 12.5px;
    line-height: 1.7;
}

/* =========================================================
   TECHNOLOGY BOX
========================================================= */

.service-tech-section {
    padding: 15px 0 95px;
}

.service-tech-box {
    padding: 42px 45px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    border-radius: 17px;
    background: #f8fbff;
    border: 1px solid var(--border);
}

.service-tech-box h2 {
    max-width: 430px;
    margin-top: 8px;
    color: var(--primary);
    font-size: 28px;
    line-height: 1.3;
}

.service-tech-list {
    max-width: 520px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.service-tech-item {
    min-width: 105px;
    padding: 10px 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(19, 169, 220, 0.16);
    border-radius: 8px;
    background: #ffffff;
    box-shadow:
        0 4px 12px
        rgba(7, 28, 70, 0.035);
}

/* SEO Tools / Platforms */
.service-tools-list .service-tech-item {
    padding: 12px 18px;
    min-height: 44px;
}

.service-tools-list .service-tech-item span {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
    white-space: nowrap;
}

.service-tech-item img {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    object-fit: contain;
}

.service-tech-item span {
    color: var(--primary);
    font-size: 10px;
    font-weight: 700;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1000px) {
    .service-intro-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }
    .service-benefits-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
    .service-process-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
    .service-tech-box {
        flex-direction: column;
        align-items: flex-start;
    }
   .service-tech-list {
    max-width: 570px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}
}

@media (max-width: 650px) {
    .service-intro-section,
    .service-benefits-section,
    .service-process-section {
        padding: 70px 0;
    }
    .service-feature-list {
        grid-template-columns: 1fr;
    }
    .service-benefits-grid,
    .service-process-grid {
        grid-template-columns: 1fr;
    }
    .service-tech-section {
        padding-bottom: 70px;
    }
    .service-tech-box {
        padding: 30px 24px;
    }
    .service-tech-box h2 {
        font-size: 24px;
    }
}
/* =========================================================
   E-COMMERCE INTEGRATIONS
========================================================= */

.ecommerce-integrations-section {
    padding: var(--section-space) 0;
    background: #f8fbff;
}

.ecommerce-integrations-grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.integration-card {
    padding: 30px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow:
        0 8px 25px
        rgba(7, 28, 70, 0.04);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.integration-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 16px 38px
        rgba(7, 28, 70, 0.09);
}

.integration-icon {
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background:
        linear-gradient(
            135deg,
            var(--primary-light),
            var(--secondary)
        );
    color: #ffffff;
    font-size: 17px;
    font-weight: 800;
}

.integration-card h3 {
    margin-top: 19px;
    color: var(--primary);
    font-size: 16px;
}

.integration-card p {
    margin-top: 10px;
    color: var(--muted);
    font-size: 12.5px;
    line-height: 1.75;
}

.integration-card > span {
    display: block;
    margin-top: 17px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
    color: var(--secondary);
    font-size: 9px;
    font-weight: 700;
}

/* RESPONSIVE */

@media (max-width: 850px) {
    .ecommerce-integrations-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 650px) {
    .ecommerce-integrations-section {
        padding: 70px 0;
    }
}
/* =========================================================
   WEB APPLICATION FEATURES
========================================================= */

.webapp-features-section {
    padding: var(--section-space) 0;
    background: #ffffff;
}

.webapp-features-grid {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.webapp-feature {
    padding: 25px 27px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    border: 1px solid var(--border);
    border-radius: 13px;
    background: #ffffff;
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.webapp-feature:hover {
    transform: translateY(-4px);
    border-color:
        rgba(19, 169, 220, 0.25);
    box-shadow:
        0 13px 30px
        rgba(7, 28, 70, 0.07);
}

.webapp-feature > span {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background:
        linear-gradient(
            135deg,
            var(--primary-light),
            var(--secondary)
        );
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
}

.webapp-feature h3 {
    color: var(--primary);
    font-size: 14px;
    font-weight: 750;
}

.webapp-feature p {
    margin-top: 6px;
    color: var(--muted);
    font-size: 12.5px;
    line-height: 1.7;
}

/* RESPONSIVE */

@media (max-width: 750px) {
    .webapp-features-section {
        padding: 70px 0;
    }
    .webapp-features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .webapp-feature {
        padding: 22px;
        gap: 14px;
    }
}
/* =========================================================
   MOBILE APP FEATURES
========================================================= */

.mobile-features-section {
    padding: var(--section-space) 0;
    background: #f8fbff;
}

.mobile-features-grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.mobile-feature-card {
    padding: 27px;
    border: 1px solid var(--border);
    border-radius: 13px;
    background: #ffffff;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.mobile-feature-card:hover {
    transform: translateY(-5px);
    border-color:
        rgba(19, 169, 220, 0.25);
    box-shadow:
        0 14px 32px
        rgba(7, 28, 70, 0.07);
}

.mobile-feature-card > span {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background:
        linear-gradient(
            135deg,
            var(--primary-light),
            var(--secondary)
        );
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
}

.mobile-feature-card h3 {
    margin-top: 18px;
    color: var(--primary);
    font-size: 15px;
    font-weight: 750;
}

.mobile-feature-card p {
    margin-top: 8px;
    color: var(--muted);
    font-size: 12.5px;
    line-height: 1.75;
}

/* Responsive */

@media (max-width: 900px) {
    .mobile-features-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 650px) {
    .mobile-features-section {
        padding: 70px 0;
    }
    .mobile-features-grid {
        grid-template-columns: 1fr;
    }
}
/* =========================================================
   SEO FOCUS AREAS
========================================================= */

.seo-focus-section {
    padding: var(--section-space) 0;
    background: #f8fbff;
}

.seo-focus-grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.seo-focus-card {
    position: relative;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 13px;
    background: #ffffff;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.seo-focus-card:hover {
    transform: translateY(-5px);
    border-color:
        rgba(19, 169, 220, 0.25);
    box-shadow:
        0 14px 32px
        rgba(7, 28, 70, 0.07);
}

.seo-focus-card > span {
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background:
        linear-gradient(
            135deg,
            var(--primary-light),
            var(--secondary)
        );
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
}

.seo-focus-card h3 {
    margin-top: 18px;
    color: var(--primary);
    font-size: 15px;
    font-weight: 750;
}

.seo-focus-card p {
    margin-top: 8px;
    color: var(--muted);
    font-size: 12.5px;
    line-height: 1.75;
}

/* Responsive */

@media (max-width: 900px) {
    .seo-focus-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 650px) {
    .seo-focus-section {
        padding: 70px 0;
    }
    .seo-focus-grid {
        grid-template-columns: 1fr;
    }
}
/* =========================================================
   WEBSITE MAINTENANCE CARE
========================================================= */

.maintenance-care-section {
    padding: var(--section-space) 0;
    background: #f8fbff;
}

.maintenance-care-grid {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.maintenance-care-card {
    padding: 25px 27px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    border: 1px solid var(--border);
    border-radius: 13px;
    background: #ffffff;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.maintenance-care-card:hover {
    transform: translateY(-4px);
    border-color:
        rgba(19, 169, 220, 0.25);
    box-shadow:
        0 13px 30px
        rgba(7, 28, 70, 0.07);
}

.maintenance-care-card > span {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background:
        linear-gradient(
            135deg,
            var(--primary-light),
            var(--secondary)
        );
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
}

.maintenance-care-card h3 {
    color: var(--primary);
    font-size: 14px;
    font-weight: 750;
}

.maintenance-care-card p {
    margin-top: 7px;
    color: var(--muted);
    font-size: 12.5px;
    line-height: 1.75;
}

/* Responsive */

@media (max-width: 750px) {
    .maintenance-care-section {
        padding: 70px 0;
    }
    .maintenance-care-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .maintenance-care-card {
        padding: 22px;
        gap: 14px;
    }
}
/* =========================================================
   TECHNOLOGIES PAGE
========================================================= */

.technologies-intro-section {
    padding: 30px 0 20px;
    background: #ffffff;
}

.technology-category-section {
    padding: 60px 0;
}

.technologies-intro-section + .technology-category-section {
    padding-top: 35px;
}

.technology-category-section.alt-bg {
    background: #f8fbff;
}

.technology-category-layout {
    display: grid;
    grid-template-columns:
        minmax(250px, 0.75fr)
        minmax(0, 1.7fr);
    align-items: start;
    gap: 55px;
}

.technology-category-content {
    position: sticky;
    top: 110px;
}

.technology-category-number {
    display: block;
    margin-bottom: 13px;
    color:
        rgba(19, 169, 220, 0.17);
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
}

.technology-category-content h2 {
    margin-top: 9px;
    color: var(--primary);
    font-size: var(--section-title-size);
    line-height: 1.25;
}

.technology-category-content h2 span {
    display: block;
    color: var(--secondary);
}

.technology-category-content p {
    margin-top: 15px;
    max-width: 390px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.8;
}

/* Technology cards */

.technology-page-grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.technology-page-card {
    min-height: 185px;
    padding: 25px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #ffffff;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.technology-page-card:hover {
    transform: translateY(-5px);
    border-color:
        rgba(19, 169, 220, 0.26);
    box-shadow:
        0 15px 35px
        rgba(7, 28, 70, 0.07);
}

.technology-page-card img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.technology-page-card h3 {
    margin-top: 17px;
    color: var(--primary);
    font-size: 15px;
    font-weight: 750;
}

.technology-page-card p {
    margin-top: 7px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.7;
}

/* Integrations */

.technology-integration-grid {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.technology-integration-card {
    padding: 27px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #ffffff;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.technology-integration-card:hover {
    transform: translateY(-5px);
    box-shadow:
        0 15px 35px
        rgba(7, 28, 70, 0.07);
}

.technology-integration-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background:
        linear-gradient(
            135deg,
            var(--primary-light),
            var(--secondary)
        );
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
}

.technology-integration-card h3 {
    margin-top: 17px;
    color: var(--primary);
    font-size: 15px;
    font-weight: 750;
}

.technology-integration-card p {
    margin-top: 8px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.75;
}

/* Responsive */

@media (max-width: 1000px) {
    .technology-category-layout {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .technology-category-content {
        position: static;
    }
    .technology-category-content p {
        max-width: 650px;
    }
}

@media (max-width: 800px) {
    .technology-page-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 650px) {

    .technologies-intro-section {
        padding: 35px 0 18px;
    }

    .technology-category-section {
        padding: 50px 0;
    }

    .technologies-intro-section + .technology-category-section {
        padding-top: 30px;
    }

    .technology-page-grid,
    .technology-integration-grid {
        grid-template-columns: 1fr;
    }

    .technology-category-content h2 {
        font-size: 26px;
    }
}
/* =========================================================
   PORTFOLIO PAGE
========================================================= */

.portfolio-page-section {
    padding: 32px 0 var(--section-space);
    background: #ffffff;
}

.portfolio-page-hero {
    padding-bottom: 32px;
}

.portfolio-page-filters {
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 9px;
}

.portfolio-page-filters .project-filter {
    padding: 9px 18px;
    border: 1px solid var(--border);
    border-radius: 30px;
    background: #ffffff;
    color: var(--muted);
    cursor: pointer;
    font-size: 10px;
    font-weight: 700;
    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease;
}

.portfolio-page-filters .project-filter:hover,
.portfolio-page-filters .project-filter.active {
    border-color: var(--secondary);
    background: var(--secondary);
    color: #ffffff;
}

/* Grid */

.portfolio-page-grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: 24px;
}

/* Card */

.portfolio-page-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 15px;
    background: #ffffff;
    box-shadow:
        0 8px 28px
        rgba(7, 28, 70, 0.04);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.portfolio-page-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 18px 40px
        rgba(7, 28, 70, 0.09);
}

/* Project image */

.portfolio-page-image {
    position: relative;
    overflow: hidden;
    height: 235px;
    background: #eef4fa;
}

.portfolio-page-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        transform 0.45s ease;
}

.portfolio-page-card:hover
.portfolio-page-image img {
    transform: scale(1.035);
}

.portfolio-category {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 11px;
    border-radius: 20px;
    background:
        rgba(7, 28, 70, 0.9);
    color: #ffffff;
    font-size: 8px;
    font-weight: 750;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

/* Content */

.portfolio-page-content {
    padding: 24px;
}

.portfolio-page-content h3 {
    color: var(--primary);
    font-size: 17px;
    font-weight: 800;
}

.portfolio-page-content p {
    margin-top: 9px;
    min-height: 56px;
    color: var(--muted);
    font-size: 12.5px;
    line-height: 1.75;
}

/* PORTFOLIO TECHNOLOGY ICONS */

.portfolio-tech-stack {
    margin-top: 18px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.portfolio-tech-icon {
    width: 48px;
    height: 48px;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;

    border: 1px solid var(--border);
    border-radius: 9px;

    background: #ffffff;

    box-shadow:
        0 4px 12px
        rgba(7, 28, 70, 0.05);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.portfolio-tech-icon img {
   width: 32px;
    height: 32px;
    object-fit: contain;
}

.portfolio-tech-icon:hover {
    transform: translateY(-2px);

    border-color:
        rgba(19, 169, 220, 0.30);

    box-shadow:
        0 7px 18px
        rgba(7, 28, 70, 0.09);
}

/* Fallback when technology logo is not available */

.portfolio-tech-fallback {
    padding: 5px 9px;

    border-radius: 5px;

    background: #eef9fd;

    color: var(--secondary-dark);

    font-size: 8px;
    font-weight: 700;
}

.portfolio-page-content > a {
    display: inline-block;
    margin-top: 20px;
    color: var(--secondary);
    font-size: 10px;
    font-weight: 750;
}

.portfolio-page-content > a:hover {
    color: var(--primary);
}


/* Responsive */

@media (max-width: 1050px) {
    .portfolio-page-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {

    .portfolio-page-hero {
        padding-bottom: 28px;
    }

    .portfolio-page-section {
        padding: 30px 0 70px;
    }

    .portfolio-page-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-page-image {
        height: 230px;
    }

    .portfolio-page-content p {
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .portfolio-page-filters {
        gap: 7px;
    }
    .portfolio-page-filters .project-filter {
        padding: 8px 13px;
    }
}
/* =========================================================
   BLOG PAGE
========================================================= */

.blog-featured-section {
    padding: 32px 0 var(--section-space);
    background: #ffffff;
}

.blog-page-hero {
    padding-bottom: 32px;
}

.blog-featured-card {
    display: grid;
    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(0, 0.85fr);
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 17px;
    background: #ffffff;
    box-shadow:
        0 12px 36px
        rgba(7, 28, 70, 0.06);
}

.blog-featured-image {
    min-height: 390px;
    overflow: hidden;
    background: #eef4fa;
}

.blog-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-featured-content {
    padding: 48px 42px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-category {
    display: inline-flex;
    width: fit-content;
    padding: 6px 10px;
    border-radius: 20px;
    background: #eef9fd;
    color: var(--secondary-dark);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.blog-featured-content h2 {
    margin-top: 18px;
    color: var(--primary);
    font-size: 27px;
    line-height: 1.35;
}

.blog-meta {
    margin-top: 11px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px;
    color: #98a2b3;
    font-size: 9px;
}

.blog-featured-content p {
    margin-top: 18px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.8;
}

.blog-featured-content > a {
    display: inline-block;
    width: fit-content;
    margin-top: 24px;
    color: var(--secondary);
    font-size: 10px;
    font-weight: 750;
}

/* Blog listing */

.blog-listing-section {
    padding: var(--section-space) 0;
    background: #f8fbff;
}

.blog-grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: 23px;
}

.blog-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 15px;
    background: #ffffff;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 17px 38px
        rgba(7, 28, 70, 0.08);
}

.blog-card-image {
    position: relative;
    height: 215px;
    overflow: hidden;
    background: #edf3f8;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.blog-card:hover
.blog-card-image img {
    transform: scale(1.035);
}

.blog-card-image .blog-category {
    position: absolute;
    left: 15px;
    bottom: 15px;
    background:
        rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(8px);
}

.blog-card-content {
    padding: 23px;
}

.blog-card-content .blog-meta {
    margin-top: 0;
}

.blog-card-content h3 {
    margin-top: 11px;
    color: var(--primary);
    font-size: 15.5px;
    line-height: 1.45;
}

.blog-card-content p {
    margin-top: 10px;
    color: var(--muted);
    font-size: 12.5px;
    line-height: 1.75;
}

.blog-card-content > a {
    display: inline-block;
    margin-top: 18px;
    color: var(--secondary);
    font-size: 10px;
    font-weight: 750;
}

/* Responsive */

@media (max-width: 1000px) {
    .blog-featured-card {
        grid-template-columns: 1fr;
    }
    .blog-featured-image {
        min-height: 320px;
    }
    .blog-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .blog-featured-section,
    .blog-listing-section {
        padding: 70px 0;
    }
    .blog-featured-content {
        padding: 30px 25px;
    }
    .blog-featured-content h2 {
        font-size: 23px;
    }
    .blog-featured-image {
        min-height: 240px;
    }
    .blog-grid {
        grid-template-columns: 1fr;
    }
}
/* =========================================================
   CONTACT PAGE
========================================================= */

.contact-page-hero {
    padding-bottom: 32px;
}

.contact-main-section {
    padding: 32px 0 var(--section-space);
    background: #ffffff;
}

.contact-secondary-link {
    display: block;
    margin-top: 4px;
    color: var(--secondary);
}

.contact-main-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 0.8fr)
        minmax(0, 1.2fr);
    align-items: start;
    gap: 65px;
}

/* Contact information */

.contact-info-area h2 {
    margin-top: 10px;
    color: var(--primary);
    font-size: var(--section-title-size);
    line-height: 1.2;
}

.contact-info-area h2 span {
    display: block;
    color: var(--secondary);
}

.contact-intro {
    max-width: 520px;
    margin-top: 16px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.8;
}

.contact-info-list {
    margin-top: 35px;
    display: grid;
    gap: 13px;
}

.contact-info-item {
    padding: 17px 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid var(--border);
    border-radius: 11px;
    background: #ffffff;
}

.contact-info-icon {
    width: 39px;
    height: 39px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #eef9fd;
    color: var(--secondary);
    font-size: 15px;
    font-weight: 800;
}

.contact-info-item > div:last-child {
    min-width: 0;
}

.contact-info-item span {
    display: block;
    margin-bottom: 4px;
    color: #98a2b3;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.7px;
}

.contact-info-item a,
.contact-info-item p {
    color: var(--primary);
    font-size: 12px;
    font-weight: 650;
    line-height: 1.55;
    word-break: break-word;
}

/* Support note */

.contact-support-note {
    margin-top: 25px;
    padding: 20px 22px;
    border-left: 3px solid var(--secondary);
    border-radius: 0 9px 9px 0;
    background: #f7faff;
}

.contact-support-note strong {
    color: var(--primary);
    font-size: 11px;
}

.contact-support-note p {
    margin-top: 6px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.65;
}

/* =========================================================
   CONTACT FORM
========================================================= */

.contact-form-card {
    padding: 37px;
    border: 1px solid var(--border);
    border-radius: 17px;
    background: #ffffff;
    box-shadow:
        0 15px 45px
        rgba(7, 28, 70, 0.07);
}

.contact-form-card h2 {
    margin-top: 9px;
    color: var(--primary);
    font-size: 26px;
}

.contact-form-card > p {
    margin-top: 8px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.7;
}

.contact-form {
    margin-top: 28px;
}

.contact-form-row {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.contact-field {
    margin-bottom: 17px;
}

.contact-field label {
    display: block;
    margin-bottom: 7px;
    color: var(--primary);
    font-size: 11px;
    font-weight: 750;
}

.contact-field label span {
    color: var(--secondary);
}

.contact-field input,
.contact-field select,
.contact-field textarea {
    width: 100%;
    padding: 12px 13px;
    border: 1px solid var(--border);
    border-radius: 8px;
    outline: none;
    background: #ffffff;
    color: var(--text);
    font-family: inherit;
    font-size: 12px;
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.contact-field textarea {
    resize: vertical;
    min-height: 125px;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
    border-color:
        rgba(19, 169, 220, 0.7);
    box-shadow:
        0 0 0 3px
        rgba(19, 169, 220, 0.08);
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: #a8b0bd;
}

/* Consent */

.contact-consent {
    margin-top: 2px;
    display: flex;
    align-items: flex-start;
    gap: 9px;
}

.contact-consent input {
    margin-top: 2px;
    accent-color: var(--secondary);
}

.contact-consent label {
    color: var(--muted);
    font-size: 9px;
    line-height: 1.5;
}

/* Submit */

.contact-submit-btn {
    margin-top: 22px;
    padding: 12px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    border-radius: 7px;
    background:
        linear-gradient(
            135deg,
            var(--primary-light),
            var(--secondary)
        );
    color: #ffffff;
    cursor: pointer;
    font-size: 10px;
    font-weight: 750;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow:
        0 10px 25px
        rgba(19, 169, 220, 0.22);
}

/* =========================================================
   CONTACT PROCESS
========================================================= */

.contact-quick-section {
    padding: 45px 0;
    background: var(--primary);
}

.contact-quick-grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: 25px;
}

.contact-quick-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-quick-item > span {
    color: var(--secondary);
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
}

.contact-quick-item h3 {
    color: #ffffff;
    font-size: 12px;
}

.contact-quick-item p {
    margin-top: 5px;
    color:
        rgba(255, 255, 255, 0.62);
    font-size: 9.5px;
    line-height: 1.6;
}

/* =========================================================
   MAP
========================================================= */

.contact-map-section {
    padding: var(--section-space) 0;
    background: #f8fbff;
}

.contact-map {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #ffffff;
    box-shadow:
        0 10px 30px
        rgba(7, 28, 70, 0.05);
}

.contact-map iframe {
    width: 100%;
    height: 420px;
    display: block;
    border: 0;
}

/* =========================================================
   CONTACT RESPONSIVE
========================================================= */

@media (max-width: 950px) {
    .contact-main-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }
}

@media (max-width: 700px) {
    .contact-page-hero {
        padding-bottom: 28px;
    }

    .contact-main-section {
        padding: 30px 0 70px;
    }

    .contact-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-quick-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .contact-map-section {
        padding: 70px 0;
    }

    .contact-map iframe {
        height: 330px;
    }
}

@media (max-width: 480px) {
    .contact-info-area h2 {
        font-size: 28px;
    }

    .contact-form-card {
        padding: 26px 20px;
    }

    .contact-map iframe {
        height: 290px;
    }
}

/* =========================================================
   GLOBAL RESPONSIVE TYPOGRAPHY
========================================================= */
@media (max-width: 768px) {
    :root {
        --section-space: var(--section-space-mobile);
        --section-title-size: var(--section-title-mobile);
    }
    .section-heading {
        margin-bottom: 34px;
    }
    .about-content h2,
    .about-page-content h2,
    .service-intro-content h2,
    .contact-info-area h2 {
        font-size: var(--section-title-mobile);
    }
}


/* =========================================================
   SERVICE PAGE MOBILE SPACING
========================================================= */

@media (max-width: 650px) {
    .service-page-hero {
        padding-bottom: 28px;
    }

    .inner-hero + .service-intro-section {
        padding-top: 28px;
    }
}

/* =========================================================
   CONTACT DETAILS POLISH
========================================================= */

.contact-info-item .contact-secondary-link {
    font-size: 12px;
    line-height: 1.55;
}


/* =========================================================
   T estimonial image
========================================================= */

.client-avatar-image {
    overflow: hidden;
    padding: 0;
}

.client-avatar-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

/* =========================================================
 Contact Form Messages 
========================================================= */

.contact-success-message {
    margin: 20px 0;
    padding: 14px 16px;

    border: 1px solid #b7e4c7;
    border-radius: 8px;

    background: #ecfdf3;
    color: #166534;

    font-size: 14px;
    line-height: 1.6;
}

.contact-error-message {
    margin: 20px 0;
    padding: 14px 16px;

    border: 1px solid #fecaca;
    border-radius: 8px;

    background: #fef2f2;
    color: #b42318;

    font-size: 13px;
    line-height: 1.6;
}

.contact-error-message ul {
    margin: 7px 0 0 18px;
}

.contact-field-error {
    display: block;

    margin-top: 6px;

    color: #dc2626;

    font-size: 11px;
    font-weight: 600;
}

.service-icon img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    display: block;
}

/* =====================================================
   404 ERROR PAGE
===================================================== */

.error-page-section {
    padding: 110px 0;
    text-align: center;
    background: var(--light-bg);
}

.error-page-content {
    max-width: 700px;
    margin: 0 auto;
}

.error-page-content h1 {
    margin: 12px 0 18px;
    font-size: 48px;
    color: var(--primary);
}

.error-page-content p {
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 17px;
    line-height: 1.7;
    color: var(--muted);
}

.error-page-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

@media (max-width: 767px) {
    .error-page-section {
        padding: 80px 0;
    }

    .error-page-content h1 {
        font-size: 36px;
    }
}
/* =====================================================
   BLOG LISTING
===================================================== */

.blog-section {
    padding: var(--section-space) 0;
    background: var(--white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.blog-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: 0.25s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(7, 28, 70, 0.08);
}

.blog-image {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--light-bg);
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.04);
}

.blog-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    color: var(--primary);
    font-weight: 700;
}

.blog-content {
    padding: 24px;
}

.blog-date {
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary);
}

.blog-content h2 {
    margin: 0 0 12px;
    font-size: 21px;
    line-height: 1.4;
}

.blog-content h2 a {
    color: var(--primary);
    text-decoration: none;
}

.blog-content p {
    margin: 0 0 18px;
    color: var(--muted);
    line-height: 1.7;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--secondary-dark);
    font-weight: 700;
    text-decoration: none;
}

.blog-read-more span {
    transition: 0.2s ease;
}

.blog-read-more:hover span {
    transform: translateX(4px);
}

.blog-pagination {
    margin-top: 40px;
}

.blog-empty {
    max-width: 650px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
}

.blog-empty h2 {
    margin-bottom: 10px;
    color: var(--primary);
}

.blog-empty p {
    color: var(--muted);
}

@media (max-width: 991px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .blog-section {
        padding: var(--section-space-mobile) 0;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }
}
/* =====================================================
   BLOG DETAIL
===================================================== */

.blog-detail-section {
    padding: var(--section-space) 0;
    background: var(--white);
}

.blog-detail {
    max-width: 900px;
    margin: 0 auto;
}

.blog-detail-header {
    margin-bottom: 32px;
}

.blog-detail-header h1 {
    margin: 12px 0 14px;
    font-size: 42px;
    line-height: 1.25;
    color: var(--primary);
}

.blog-detail-date {
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary);
}

.blog-detail-image {
    margin-bottom: 36px;
    border-radius: 18px;
    overflow: hidden;
}

.blog-detail-image img {
    width: 100%;
    display: block;
}

.blog-detail-content {
    font-size: 17px;
    line-height: 1.8;
    color: var(--body-dark);
}

.blog-detail-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 28px auto;
    border-radius: 12px;
}

.blog-detail-content h2 {
    margin: 34px 0 14px;
    font-size: 28px;
    color: var(--primary);
}

.blog-detail-content h3 {
    margin: 28px 0 12px;
    font-size: 22px;
    color: var(--primary);
}

.blog-detail-content p {
    margin-bottom: 18px;
}

.blog-detail-content ul,
.blog-detail-content ol {
    margin: 0 0 20px 24px;
}

.blog-detail-content li {
    margin-bottom: 8px;
}

.blog-detail-back {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid var(--border);
}

@media (max-width: 767px) {
    .blog-detail-section {
        padding: var(--section-space-mobile) 0;
    }

    .blog-detail-header h1 {
        font-size: 32px;
    }

    .blog-detail-content {
        font-size: 16px;
    }
}
/* =====================================================
   HOME LATEST BLOG
===================================================== */

.home-blog-section {
    padding: var(--section-space) 0;
    background: var(--light-bg);
}

.home-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.home-blog-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: 0.25s ease;
}

.home-blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(7, 28, 70, 0.08);
}

.home-blog-image {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--white);
}

.home-blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s ease;
}

.home-blog-card:hover .home-blog-image img {
    transform: scale(1.04);
}

.home-blog-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: 700;
}

.home-blog-content {
    padding: 24px;
}

.home-blog-date {
    margin-bottom: 9px;
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary);
}

.home-blog-content h3 {
    margin: 0 0 12px;
    font-size: 21px;
    line-height: 1.4;
}

.home-blog-content h3 a {
    color: var(--primary);
    text-decoration: none;
}

.home-blog-content p {
    margin-bottom: 18px;
    color: var(--muted);
    line-height: 1.7;
}

.home-blog-button {
    margin-top: 36px;
    text-align: center;
}

@media (max-width: 991px) {
    .home-blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .home-blog-section {
        padding: var(--section-space-mobile) 0;
    }

    .home-blog-grid {
        grid-template-columns: 1fr;
    }
}