body {
    background: radial-gradient(circle at 20% 30%, #111827, #030712);
    font-family: "Segoe UI", sans-serif;
    color: #e5e7eb;
}

.about-hero {
    display: flex;
    align-items: center;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.2;
}

.tag {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 13px;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    color: #93c5fd;
}

.hero-title {
    font-size: 60px;
    font-weight: 800;
    line-height: 1.1;
}

.gradient-text {
    background: linear-gradient(90deg, #22d3ee, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    margin-top: 25px;
    color: #9ca3af;
    font-size: 17px;
    max-width: 600px;
}

.hero-btns {
    margin-top: 35px;
}

.btn-main {
    background: linear-gradient(90deg, #22d3ee, #6366f1);
    border: none;
    padding: 14px 28px;
    border-radius: 40px;
    color: white;
    font-weight: 600;
    margin-right: 15px;
    transition: 0.3s;
}

.btn-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.4);
}

.btn-outline-darkglass {
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 14px 28px;
    border-radius: 40px;
    color: #e5e7eb;
    background: rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.btn-outline-darkglass:hover {
    background: rgba(255, 255, 255, 0.1);
}

.glass-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.quote {
    font-size: 40px;
    color: #22d3ee;
}

.card-text-main {
    font-size: 22px;
    font-weight: 600;
    margin-top: 10px;
}

.card-text-sub {
    margin-top: 15px;
    color: #9ca3af;
    font-size: 16px;
}

.chip {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin: 6px;
    font-size: 14px;
    color: #67e8f9;
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 40px;
    }

    .glass-card {
        margin-top: 40px;
    }
}

.story-section {
    padding: 50px 0;
    background: radial-gradient(circle at 10% 20%, #0b1325, #020617);
    color: #cbd5e1;
    position: relative;
    overflow: hidden;
}

.story-title-small {
    letter-spacing: 3px;
    color: #22d3ee;
    font-size: 13px;
    margin-bottom: 20px;
}

.story-main-title {
    font-size: 54px;
    font-weight: 800;
    line-height: 1.1;
    color: white;
}

.story-gradient {
    background: linear-gradient(90deg, #38bdf8, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.story-text {
    margin-top: 25px;
    font-size: 17px;
    color: #94a3b8;
    line-height: 1.8;
}

.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(#22d3ee, #8b5cf6);
    opacity: 0.4;
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
}

.timeline-dot {
    position: absolute;
    left: -40px;
    top: 5px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.timeline-heading {
    color: #22d3ee;
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 6px;
}

.timeline-title {
    color: white;
    font-size: 20px;
    font-weight: 600;
}

.timeline-desc {
    color: #94a3b8;
    margin-top: 8px;
    line-height: 1.7;
}

@media (max-width: 991px) {
    .story-main-title {
        font-size: 36px;
    }

    .timeline {
        margin-top: 60px;
    }
}

.principles-section {
    padding: 50px 0;
    background: radial-gradient(circle at 20% 30%, #0b1325, #020617);
    color: #e2e8f0;
}

.principles-tag {
    letter-spacing: 3px;
    color: #22d3ee;
    font-size: 13px;
    margin-bottom: 20px;
}

.principles-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    color: white;
    margin-bottom: 60px;
}

.principles-gradient {
    background: linear-gradient(90deg, #38bdf8, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.principle-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 22px;
    padding: 35px;
    height: 100%;
    transition: 0.4s;
    backdrop-filter: blur(20px);
}

.principle-card:hover {
    transform: translateY(-8px);
    border-color: #38bdf8;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.principle-icon {
    width: 55px;
    height: 55px;
    border-radius: 14px;
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.principle-title {
    font-size: 20px;
    color: white;
    font-weight: 600;
}

.principle-desc {
    margin-top: 10px;
    color: #94a3b8;
    line-height: 1.7;
    font-size: 15px;
}

@media (max-width: 991px) {
    .principles-title {
        font-size: 34px;
    }
}

.team-section {
    padding: 50px 0;
    background: radial-gradient(circle at 20% 30%, #0b1325, #020617);
    color: #e2e8f0;
}

.team-tag {
    letter-spacing: 3px;
    color: #22d3ee;
    font-size: 13px;
    margin-bottom: 20px;
}

.team-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    color: white;
    margin-bottom: 60px;
}

.team-gradient {
    background: linear-gradient(90deg, #38bdf8, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.team-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 22px;
    overflow: hidden;
    height: 100%;
    transition: 0.4s;
    backdrop-filter: blur(20px);
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: #38bdf8;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.team-top {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.15);
    background: linear-gradient(90deg, #1e293b, #312e81);
}

.team-body {
    padding: 30px;
}

.team-name {
    font-size: 20px;
    font-weight: 600;
    color: white;
}

.team-role {
    color: #22d3ee;
    font-size: 12px;
    letter-spacing: 1px;
    margin-top: 4px;
    margin-bottom: 12px;
}

.team-desc {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.7;
}

.team-skill {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 12px;
    margin: 5px 5px 0 0;
    color: #cbd5f5;
}

@media (max-width: 991px) {
    .team-title {
        font-size: 34px;
    }
}
.global-section {
    padding: 50px 0;
    background: radial-gradient(circle at 30% 20%, #0b1325, #020617);
    color: #e2e8f0;
}

.global-tag {
    letter-spacing: 3px;
    color: #22d3ee;
    font-size: 13px;
    margin-bottom: 20px;
}

.global-title {
    font-size: 50px;
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 50px;
}

.global-gradient {
    background: linear-gradient(90deg, #38bdf8, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.region-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 35px;
    height: 100%;
    backdrop-filter: blur(20px);
    transition: 0.4s;
    text-align: center;
}

.region-card:hover {
    transform: translateY(-8px);
    border-color: #38bdf8;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.region-icon {
    font-size: 28px;
    margin-bottom: 10px;
}

.region-name {
    font-size: 26px;
    font-weight: 700;
    color: white;
}

.region-sub {
    font-size: 13px;
    color: #94a3b8;
    margin-bottom: 10px;
}

.region-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid rgba(56, 189, 248, 0.5);
    color: #38bdf8;
    font-size: 11px;
    margin-bottom: 12px;
}

.region-desc {
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.6;
}

.cta-box {
    margin-top: 80px;
    background: linear-gradient(90deg, #021422, #2a1f44);
    border-radius: 30px;
    padding: 70px 40px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.cta-title {
    font-size: 42px;
    font-weight: 800;
    color: white;
}

.cta-sub {
    margin-top: 10px;
    font-size: 16px;
    color: #94a3b8;
}

.cta-btn {
    margin-top: 30px;
}

.btn-primary-glow {
    background: linear-gradient(90deg, #22d3ee, #6366f1);
    padding: 14px 28px;
    border-radius: 40px;
    border: none;
    color: white;
    font-weight: 600;
    margin-right: 10px;
}

.btn-dark-glass {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 14px 28px;
    border-radius: 40px;
    color: white;
}

@media (max-width: 991px) {
    .global-title {
        font-size: 34px;
    }

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

/* ----------------services-section------------ */

body {
    background: #050816;
    color: #e2e8f0;
    font-family: "Segoe UI", sans-serif;
}

/* HERO */
.services-hero {
    padding: 30px 0 40px;
    background: radial-gradient(circle at 10% 20%, #121a3a, #020617);
    color: white;
    position: relative;
    overflow: hidden;
}

.services-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.3;
}

.services-tag {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 25px;
    color: #93c5fd;
}

.services-title {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.05;
}

.services-gradient {
    background: linear-gradient(90deg, #38bdf8, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services-desc {
    margin-top: 25px;
    font-size: 18px;
    color: #94a3b8;
    max-width: 650px;
    line-height: 1.8;
}

/* DEVOPS SECTION */
.service-detail {
    padding: 50px 0;
}

.service-head {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.service-title-lg {
    font-size: 40px;
    font-weight: 800;
}

.service-sub {
    color: #94a3b8;
    max-width: 700px;
    margin-top: 10px;
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.service-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 18px;
    padding: 25px;
    transition: 0.3s;
}

.service-card:hover {
    border-color: #38bdf8;
    transform: translateY(-5px);
}

.tag {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 20px;
    border: 1px solid rgba(56, 189, 248, 0.4);
    color: #38bdf8;
    font-size: 12px;
    margin: 5px 5px 0 0;
}

@media (max-width: 991px) {
    .services-title {
        font-size: 40px;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }
}

.cloud-section {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.cloud-head {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.cloud-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.cloud-title {
    font-size: 40px;
    font-weight: 800;
}

.cloud-desc {
    color: #94a3b8;
    max-width: 700px;
    margin-top: 10px;
}

.cloud-stats {
    margin-top: 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
}

.cloud-stat {
    padding: 25px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.cloud-stat:last-child {
    border-right: none;
}

.cloud-stat h3 {
    font-size: 26px;
    font-weight: 700;
    color: #38bdf8;
}

.cloud-grid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.cloud-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 18px;
    padding: 25px;
    transition: 0.3s;
}

.cloud-card:hover {
    border-color: #8b5cf6;
    transform: translateY(-5px);
}

.tool-tags {
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 20px;
}

@media (max-width: 991px) {
    .cloud-grid {
        grid-template-columns: 1fr;
    }

    .cloud-stats {
        grid-template-columns: 1fr 1fr;
    }
}

.cloud-card-new {
    background: linear-gradient(145deg, #111827, #0b1020);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    padding: 28px;
    transition: 0.35s;
}

.cloud-card-new:hover {
    border-color: #22d3ee;
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.cloud-card-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.cloud-mini-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(56, 189, 248, 0.12);
    border: 1px solid rgba(56, 189, 248, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.cloud-list {
    margin-top: 15px;
    padding-left: 18px;
}

.cloud-list li {
    margin-bottom: 8px;
    color: #9ca3af;
}

.services-page ul {
    list-style: none;
    padding-left: 0;
}

.services-page ul li {
    position: relative;
    padding-left: 18px;
}

.services-page ul li::before {
    content: "";
    width: 6px;
    height: 6px;
    background: #22d3ee;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 10px;
}

.agile-section {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.agile-head {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 30px;
}

.agile-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.agile-title {
    font-size: 40px;
    font-weight: 800;
}

.agile-desc {
    color: #94a3b8;
    max-width: 720px;
    margin-top: 10px;
}

.agile-layout {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 25px;
}

.agile-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 18px;
    padding: 25px;
    margin-bottom: 20px;
    transition: 0.3s;
}

.agile-card:hover {
    border-color: #22d3ee;
    transform: translateY(-4px);
}

.lifecycle {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 18px;
    padding: 25px;
}

.step {
    display: flex;
    gap: 15px;
    margin-bottom: 18px;
}

.step-num {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid #22d3ee;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #22d3ee;
    font-size: 14px;
}

@media (max-width: 991px) {
    .agile-layout {
        grid-template-columns: 1fr;
    }
}

.offshore-section {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.offshore-head {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 30px;
}

.offshore-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(34, 211, 238, 0.1);
    border: 1px solid rgba(34, 211, 238, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.offshore-title {
    font-size: 40px;
    font-weight: 800;
}

.offshore-desc {
    color: #94a3b8;
    max-width: 720px;
    margin-top: 10px;
}

/* stats */
.offshore-stats {
    margin-top: 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
}

.offshore-stat {
    padding: 25px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.offshore-stat:last-child {
    border-right: none;
}

.offshore-stat h3 {
    font-size: 26px;
    color: #22d3ee;
}

/* layout */
.offshore-layout {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 25px;
}

.offshore-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 18px;
    padding: 25px;
    margin-bottom: 20px;
    transition: 0.3s;
}

.offshore-card:hover {
    border-color: #22d3ee;
    transform: translateY(-4px);
}

@media (max-width: 991px) {
    .offshore-layout {
        grid-template-columns: 1fr;
    }
    .offshore-stats {
        grid-template-columns: 1fr 1fr;
    }
}

.saas-section {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.saas-head {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 30px;
}

.saas-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(139, 92, 246, 0.12);
    border: 1px solid rgba(139, 92, 246, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.saas-title {
    font-size: 40px;
    font-weight: 800;
}

.saas-desc {
    color: #94a3b8;
    max-width: 720px;
    margin-top: 10px;
}

.saas-grid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.saas-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 18px;
    padding: 25px;
    transition: 0.3s;
}

.saas-card:hover {
    border-color: #8b5cf6;
    transform: translateY(-4px);
}

.fullstack-box {
    margin-top: 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 25px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 991px) {
    .saas-grid {
        grid-template-columns: 1fr;
    }

    .fullstack-box {
        grid-template-columns: 1fr;
    }
}

.marketing-section {
    padding: 0px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.marketing-head {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 30px;
}

.marketing-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(56, 189, 248, 0.12);
    border: 1px solid rgba(56, 189, 248, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.marketing-title {
    font-size: 40px;
    font-weight: 800;
}

.marketing-desc {
    color: #94a3b8;
    max-width: 720px;
    margin-top: 10px;
}

.marketing-grid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.marketing-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 18px;
    padding: 25px;
    transition: 0.3s;
}

.marketing-card:hover {
    border-color: #22d3ee;
    transform: translateY(-4px);
}

.monitor-box {
    margin-top: 25px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 20px;
}

@media (max-width: 991px) {
    .marketing-grid {
        grid-template-columns: 1fr;
    }
}
.service-cta {
    padding: 0px 0 50px 0;
}

.cta-box {
    background: radial-gradient(circle at 20% 20%, #1e293b, #0b1020);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.3;
}

.cta-title {
    font-size: 54px;
    font-weight: 800;
    line-height: 1.1;
}

.cta-gradient {
    background: linear-gradient(90deg, #38bdf8, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-desc {
    color: #94a3b8;
    margin-top: 20px;
    font-size: 18px;
}

.cta-buttons {
    margin-top: 35px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary-cta {
    padding: 16px 32px;
    border-radius: 40px;
    background: linear-gradient(90deg, #22d3ee, #6366f1);
    border: none;
    color: white;
    font-weight: 600;
    font-size: 16px;
    transition: 0.3s;
}

.btn-primary-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(56, 189, 248, 0.4);
}

.btn-outline-cta {
    padding: 16px 32px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.05);
    color: #e2e8f0;
    font-weight: 600;
    font-size: 16px;
}

@media (max-width: 991px) {
    .cta-title {
        font-size: 34px;
    }
}

/* -----------contact section ---------------- */

.contact-hero {
    margin-top: 120px;
    padding: 50px 20px;
    text-align: center;
    position: relative;
    background: radial-gradient(circle at center, #0b1a33, #020617);
    overflow: hidden;
}

/* vertical lines effect */
.contact-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(
        rgba(255, 255, 255, 0.05) 1px,
        transparent 1px
    );
    background-size: 60px 60px;
    opacity: 0.15;
}

.contact-mini {
    letter-spacing: 4px;
    font-size: 13px;
    color: #38bdf8;
    margin-bottom: 20px;
    position: relative;
}

.contact-title {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    color: #e2e8f0;
    position: relative;
}

.contact-title span {
    background: linear-gradient(90deg, #3b82f6, #38bdf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-desc {
    margin-top: 30px;
    color: #94a3b8;
    font-size: 18px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

@media (max-width: 768px) {
    .contact-title {
        font-size: 40px;
    }

    .contact-hero {
        padding: 80px 20px;
    }
}

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

.glass-card {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    border-radius: 26px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    height: 100%;
}

.form-title-small {
    color: #60a5fa;
    letter-spacing: 3px;
    font-size: 12px;
    margin-bottom: 10px;
}

.form-title {
    color: #e2e8f0;
    font-size: 32px;
    font-weight: 700;
}

.form-desc {
    color: #94a3b8;
    margin-bottom: 30px;
}

.form-label {
    color: #94a3b8;
    font-size: 13px;
    margin-bottom: 8px;
}

.form-control,
.form-select {
    background: #020617;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 14px;
    color: #e2e8f0;
}

.form-control:focus,
.form-select:focus {
    background: #020617;
    color: #fff;
    border-color: #22d3ee;
    box-shadow: none;
}

textarea.form-control {
    height: 150px;
}

.send-btn {
    margin-top: 25px;
    width: 100%;
    border: none;
    padding: 16px;
    border-radius: 40px;
    font-weight: 600;
    background: linear-gradient(90deg, #3b82f6, #38bdf8);
    color: white;
    transition: 0.3s;
}

.send-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(56, 189, 248, 0.4);
}

/* right cards */

.info-card {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    border-radius: 22px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 20px;
}

.info-title {
    color: #e2e8f0;
    font-weight: 600;
    margin-bottom: 15px;
}

.info-text {
    color: #38bdf8;
    font-size: 14px;
}

.office-title {
    color: #e2e8f0;
    font-weight: 600;
}

.office-desc {
    color: #94a3b8;
    font-size: 14px;
}

.business {
    background: linear-gradient(135deg, #0f172a, #020617);
    border: 1px solid rgba(56, 189, 248, 0.2);
}

.green-badge {
    margin-top: 10px;
    display: inline-block;
    background: #022c22;
    color: #4ade80;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
}

.global-section {
    padding: 50px 0;
    text-align: center;
}

.global-title {
    font-size: 36px;
    font-weight: 700;
    color: #e2e8f0;
    margin-bottom: 50px;
}

.global-title span {
    background: linear-gradient(90deg, #3b82f6, #38bdf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.global-card {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    border-radius: 24px;
    padding: 50px 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: 0.3s;
}

.global-card:hover {
    transform: translateY(-6px);
    border-color: #38bdf8;
}

.global-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.global-code {
    font-size: 28px;
    font-weight: 700;
    color: #e2e8f0;
}

.global-region {
    color: #94a3b8;
    margin-top: 5px;
    margin-bottom: 15px;
}

.badge-active {
    display: inline-block;
    background: #022c22;
    color: #4ade80;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 12px;
}

.badge-expand {
    display: inline-block;
    background: #0b1f3a;
    color: #60a5fa;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 12px;
}

.badge-coming {
    display: inline-block;
    background: #1e293b;
    color: #64748b;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 12px;
}

.global-card {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    border-radius: 24px;
    padding: 40px 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: 0.3s;

    height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.global-icon {
    font-size: 42px;
    margin-bottom: 12px;
}

.global-code {
    font-size: 30px;
    font-weight: 700;
    color: #e2e8f0;
    margin-bottom: 5px;
}

.global-region {
    color: #94a3b8;
    margin-bottom: 14px;
}
