:root {
    --primary: #087fe8;
    --primary-dark: #0656b8;
    --primary-light: #e8f4ff;
    --dark: #0b1425;
    --text: #172033;
    --muted: #687386;
    --light: #f5f8fc;
    --border: #e5eaf1;
    --white: #ffffff;
    --shadow-sm: 0 1px 3px rgba(11,20,37,.08);
    --shadow: 0 4px 20px rgba(11,20,37,.08);
    --shadow-lg: 0 20px 60px rgba(11,20,37,.12);
    --shadow-xl: 0 30px 80px rgba(11,20,37,.16);
    --radius: 16px;
    --radius-sm: 10px;
}


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

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color .3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.section-padding {
    padding: 100px 0;
}

.section-title {
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
}

.section-title .small-title {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 13px;
    display: inline-block;
    background: var(--primary-light);
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.section-title h2 {
    font-weight: 800;
    font-size: 42px;
    margin-top: 10px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.section-title p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
    margin-top: 15px;
}


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

.btn {
    border-radius: 10px;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 15px;
    transition: all .3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 4px 15px rgba(8,127,232,.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(8,127,232,.4);
    color: #fff;
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-primary:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

.btn-dark {
    background: var(--dark);
    border-color: var(--dark);
    color: #fff;
}

.btn-dark:hover {
    background: #0f1e38;
    border-color: #0f1e38;
    transform: translateY(-2px);
    color: #fff;
}

.btn-light {
    background: #fff;
    border-color: #fff;
    color: var(--primary);
}

.btn-light:hover {
    background: #f0f7ff;
    border-color: #f0f7ff;
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 14px 32px;
    font-size: 16px;
}


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

.site-header {
    background: rgba(255,255,255,.95);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.site-logo {
    max-height: 75px;
    width: auto;
    transition: transform .3s ease;
}

.site-logo:hover {
    transform: scale(1.02);
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
}

.nav-brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-toggler {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    border: none;
    background: transparent;
    cursor: pointer;
}

.toggler-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: all .3s ease;
}

.nav-toggler[aria-expanded="true"] .toggler-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggler[aria-expanded="true"] .toggler-line:nth-child(2) {
    opacity: 0;
}

.nav-toggler[aria-expanded="true"] .toggler-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 50px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-menu .nav-item {
    position: relative;
}

.nav-menu .nav-link {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    color: var(--text);
    font-weight: 600;
    font-size: 15px;
    border-radius: 8px;
    text-decoration: none;
    position: relative;
    transition: all .3s ease;
}

.nav-menu .nav-link:hover {
    color: var(--primary);
    background: var(--primary-light);
}

.nav-menu .current-menu-item > .nav-link,
.nav-menu .current-menu-ancestor > .nav-link,
.nav-menu .current-menu-parent > .nav-link,
.nav-menu .current_page_item > .nav-link,
.nav-menu .current_page_parent > .nav-link,
.nav-menu .nav-link.current-menu-item,
.nav-menu .nav-link.current-menu-ancestor,
.nav-menu .nav-link.current-menu-parent,
.nav-menu .nav-link.current_page_item,
.nav-menu .nav-link.current_page_parent {
    color: #fff;
    background: var(--primary);
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(8,127,232,.35);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    padding: 10px 22px;
    background: var(--primary);
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    border-radius: 8px;
    text-decoration: none;
    margin-left: 25px;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(8,127,232,.3);
    transition: all .3s ease;
}

.nav-cta:hover {
    background: var(--primary-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(8,127,232,.4);
}


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

@media (max-width: 991px) {
    .nav-toggler {
        display: flex;
    }

    .nav-collapse {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        border-bottom: 1px solid var(--border);
        padding: 16px 0;
        box-shadow: 0 20px 40px rgba(11,20,37,.08);
    }

    .nav-collapse.is-open {
        display: block;
    }

    .nav-menu {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        padding: 0 20px;
    }

    .nav-menu .nav-link {
        padding: 12px 16px;
        border-radius: 8px;
    }

    .nav-cta {
        margin: 12px 20px 0;
        text-align: center;
        justify-content: center;
    }
}

@media (min-width: 992px) {
    .nav-collapse {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .nav-menu {
        display: flex;
        align-items: center;
    }
}


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

.hero-section {
    background:
        radial-gradient(circle at 85% 20%, rgba(8,127,232,.12), transparent 40%),
        radial-gradient(circle at 10% 80%, rgba(8,127,232,.06), transparent 40%),
        linear-gradient(135deg, #f7fbff 0%, #ffffff 100%);
    padding: 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(8,127,232,.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.min-vh-75 {
    min-height: 75vh;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    background: var(--primary-light);
    border: 1px solid rgba(8,127,232,.15);
    border-radius: 50px;
    padding: 8px 18px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
}

.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .5; transform: scale(1.5); }
}

.hero-section h1 {
    font-size: clamp(30px, 5vw, 55px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -2px;
    color: var(--dark);
}

.hero-section h1 span {
    color: var(--primary);
    position: relative;
}

.hero-section h1 span::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 8px;
    background: rgba(8,127,232,.15);
    border-radius: 4px;
    z-index: -1;
}

.hero-section p {
    max-width: 620px;
    font-size: 18px;
    color: var(--muted);
    margin: 28px 0;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}


/* HERO VISUAL */

.hero-visual {
    min-height: 500px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-circle {
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: linear-gradient(135deg, #087fe8, #43c1ff);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 30px 80px rgba(8,127,232,.3);
    position: relative;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.hero-circle::before {
    content: '';
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    border: 2px dashed rgba(8,127,232,.2);
    animation: spin 20s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-circle i {
    color: #fff;
    font-size: 120px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,.15));
}

.floating-card {
    position: absolute;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(8px);
    padding: 16px 22px;
    border-radius: 14px;
    box-shadow: var(--shadow-lg);
    font-weight: 700;
    z-index: 2;
    border: 1px solid rgba(229,234,241,.5);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    transition: transform .3s ease;
}

.floating-card:hover {
    transform: translateY(-4px) scale(1.02);
}

.floating-card i {
    color: var(--primary);
    font-size: 20px;
}

.card-one {
    top: 80px;
    left: 0;
    animation: floatCard 4s ease-in-out infinite;
}

.card-two {
    bottom: 80px;
    right: 0;
    animation: floatCard 5s ease-in-out infinite 1s;
}

.card-three {
    top: 45%;
    right: -30px;
    animation: floatCard 4.5s ease-in-out infinite .5s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}


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

.service-card {
    height: 100%;
    padding: 40px 35px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all .4s cubic-bezier(.25,.8,.25,1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform .4s ease;
    border-radius: 0 0 4px 4px;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--shadow-xl);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius-sm);
    font-size: 28px;
    margin: 0 auto 25px;
    /* margin-bottom: 25px; */
    transition: all .3s ease;
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: #fff;
    transform: scale(1.05);
}

.service-card h3 {
    font-size: 22px;
    font-weight: 750;
    margin-bottom: 12px;
    color: var(--dark);
}

.service-card p {
    color: var(--muted);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-card a {
    color: var(--primary);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.service-card a:hover {
    gap: 12px;
    color: var(--primary-dark);
}


/* =========================
   ABOUT
========================= */

.about-home {
    background: var(--light);
    position: relative;
}

.about-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.about-image,
.about-large-box {
    min-height: 450px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, #0a3979, #087fe8);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image::before,
.about-large-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: .5;
}

.about-image > i,
.about-large-box > i {
    color: rgba(255,255,255,.15);
    font-size: 200px;
    position: relative;
    z-index: 1;
}

.about-image > h3,
.about-large-box > h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 800;
    position: absolute;
    z-index: 2;
}

.about-image > p,
.about-large-box > p {
    color: rgba(255,255,255,.8);
    font-size: 14px;
    position: absolute;
    z-index: 2;
    margin-top: 45px;
}

.experience-box {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: #fff;
    padding: 20px 28px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    z-index: 3;
}

.experience-box strong {
    display: block;
    font-size: 32px;
    color: var(--primary);
    line-height: 1;
}

.experience-box span {
    font-size: 13px;
    color: var(--muted);
    margin-top: 4px;
}

.about-home h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    letter-spacing: -1px;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.check-list li {
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
}

.check-list i {
    color: var(--primary);
    font-size: 20px;
}


/* =========================
   PORTFOLIO
========================= */

.portfolio-section {
    background: var(--white);
}

.portfolio-card {
    height: 100%;
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--white);
    transition: all .4s cubic-bezier(.25,.8,.25,1);
    display: flex;
    flex-direction: column;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.portfolio-image {
    height: 340px;
    overflow: hidden;
    background: var(--light);
    position: relative;
}

.portfolio-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(11,20,37,.3));
    opacity: 0;
    transition: opacity .4s ease;
}

.portfolio-card:hover .portfolio-image::after {
    opacity: 1;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.25,.8,.25,1);
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.08);
}

.portfolio-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.portfolio-content > span {
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.portfolio-content h2,
.portfolio-content h3 {
    font-weight: 800;
    margin-top: 10px;
    font-size: 24px;
    color: var(--dark);
}

.portfolio-content p {
    color: var(--muted);
    margin: 12px 0 20px;
    flex: 1;
}

.portfolio-content .btn {
    align-self: flex-start;
}


/* =========================
   CTA
========================= */

.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f7fbff, #ffffff);
}

.cta-box {
    padding: 60px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, #087fe8, #0656b8);
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(8,127,232,.35);
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-box > * {
    position: relative;
    z-index: 1;
}

.cta-box span {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    opacity: .9;
}

.cta-box h2 {
    font-size: 38px;
    font-weight: 800;
    margin: 10px 0 0;
    line-height: 1.2;
}


/* =========================
   INNER HERO
========================= */

.inner-hero {
    padding: 100px 0;
    /* background: linear-gradient(135deg, #f1f8ff, #ffffff); */
    background: #dbdbdb;
    position: relative;
    overflow: hidden;
}

.inner-hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(8,127,232,.08) 0%, transparent 70%);
    border-radius: 50%;
}

.inner-hero span {
    color: var(--primary);
    font-weight: 800;
    letter-spacing: 1.5px;
    font-size: 13px;
    display: inline-block;
    background: var(--primary-light);
    padding: 8px 18px;
    border-radius: 50px;
}

.inner-hero h1 {
    max-width: 850px;
    margin: 20px auto 0;
    font-size: 55px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--dark);
    letter-spacing: -1.5px;
}

.inner-hero p {
    color: var(--muted);
    font-size: 18px;
    max-width: 650px;
    margin: 20px auto 0;
}


/* =========================
   PROCESS
========================= */

.process-card {
    background: var(--white);
    padding: 40px 35px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all .3s ease;
    height: 100%;
}

.process-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}

.process-card span {
    color: var(--primary);
    font-size: 36px;
    font-weight: 800;
    display: block;
    margin-bottom: 15px;
    background: var(--primary-light);
    width: fit-content;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
}

.process-card h3 {
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
    font-size: 20px;
}


/* =========================
   SERVICE DETAIL
========================= */

.service-detail-card {
    height: 100%;
    padding: 40px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
}

.service-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary);
    border-radius: 0 0 4px 4px;
}

.service-detail-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}

.service-detail-card.featured {
    border: 2px solid var(--primary);
    box-shadow: 0 20px 60px rgba(8,127,232,.12);
    position: relative;
}

.service-detail-card.featured::before {
    content: 'POPULAR';
    position: absolute;
    top: -1px;
    right: 30px;
    background: var(--primary);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 0 0 8px 8px;
    letter-spacing: .5px;
}

.service-detail-card h3 {
    font-size: 25px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
}

.service-detail-card ul {
    padding-left: 18px;
    color: var(--muted);
    margin-top: 20px;
}

.service-detail-card li {
    margin-bottom: 10px;
    line-height: 1.6;
}


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

.contact-info > div {
    display: flex;
    gap: 18px;
    margin-bottom: 28px;
    align-items: flex-start;
    padding: 22px 24px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    border-top: 4px solid var(--primary);
    transition: all .3s ease;
}

.contact-info > div:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.contact-info i {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    transition: all .3s ease;
}

.contact-info > div:hover i {
    background: var(--primary);
    color: #fff;
    transform: scale(1.05);
}

.contact-info small {
    display: block;
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.contact-info strong {
    display: block;
    color: var(--dark);
    font-weight: 700;
    margin-top: 2px;
}

.contact-form-box {
    padding: 40px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
}

.contact-form-box label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark);
    font-size: 14px;
}

.form-control,
.form-select {
    padding: 12px 15px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    font-size: 15px;
    transition: all .3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(8,127,232,.1);
    outline: none;
}


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

.site-footer {
    background: var(--dark);
    color: #aeb9c9;
    padding: 80px 0 25px;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #43c1ff);
}

.footer-logo {
    color: #fff;
    font-weight: 800;
    font-size: 24px;
    margin-bottom: 15px;
    display: inline-block;
}

.site-footer h6 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 22px;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #aeb9c9;
    font-size: 15px;
    transition: all .3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links a::before {
    content: '';
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width .3s ease;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(4px);
}

.footer-links a:hover::before {
    width: 12px;
}

.footer-links a.active {
    color: var(--primary);
    font-weight: 700;
}

.footer-links a.active::before {
    width: 12px;
    background: var(--primary);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-links a {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.08);
    color: #fff;
    transition: all .3s ease;
    border: 1px solid rgba(255,255,255,.1);
}

.social-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(8,127,232,.4);
}

.footer-bottom {
    padding-top: 30px;
    margin-top: 50px;
    border-top: 1px solid rgba(255,255,255,.08);
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    color: #6b7a8f;
}


/* =========================
   ALERTS
========================= */

.alert {
    border-radius: var(--radius-sm);
    padding: 14px 20px;
    border: none;
    font-weight: 500;
}

.alert-success {
    background: #e6f7ed;
    color: #0d6e3e;
}

.alert-danger {
    background: #fde8e8;
    color: #c81e1e;
}


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

@media (max-width: 991px) {
    .section-padding {
        padding: 80px 0;
    }

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

    .hero-section p {
        margin: 24px auto;
    }

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

    .hero-visual {
        min-height: 380px;
        margin-top: 50px;
    }

    .hero-circle {
        width: 260px;
        height: 260px;
    }

    .hero-circle i {
        font-size: 90px;
    }

    .card-one { top: 40px; left: 0; }
    .card-two { bottom: 40px; right: 0; }
    .card-three { top: 45%; right: -20px; }

    .inner-hero {
        padding: 70px 0;
    }

    .inner-hero h1 {
        font-size: 40px;
    }

    .cta-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 40px;
    }

    .cta-box h2 {
        font-size: 28px;
    }

    .section-title h2 {
        font-size: 34px;
    }

    .about-home h2 {
        font-size: 34px;
    }
}

@media (max-width: 576px) {
    .section-padding {
        padding: 60px 0;
    }

    .hero-section h1 {
        font-size: 38px;
    }

    .hero-visual {
        transform: scale(.9);
        margin-left: -25px;
        margin-right: -25px;
    }

    .floating-card {
        font-size: 11px;
        padding: 10px 14px;
    }

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

    .inner-hero h1 {
        font-size: 32px;
    }

    .cta-box {
        padding: 30px 25px;
    }

    .cta-box h2 {
        font-size: 24px;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .about-home h2 {
        font-size: 28px;
    }

    .service-card,
    .service-detail-card,
    .contact-form-box {
        padding: 25px;
    }

    .portfolio-image {
        height: 220px;
    }
}


/* =========================
   BLOG / CONTENT PAGES
========================= */

article h2 a {
    color: var(--dark);
    font-weight: 800;
    transition: color .3s ease;
}

article h2 a:hover {
    color: var(--primary);
}

article p {
    color: var(--muted);
    font-size: 16px;
}

.text-center h1.display-1 {
    font-size: 120px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 10px;
}

.text-center h2 {
    font-weight: 800;
    color: var(--dark);
    font-size: 32px;
    margin-top: 10px;
}

.text-center p {
    color: var(--muted);
    font-size: 18px;
    max-width: 500px;
    margin: 15px auto 0;
}
