:root {
    --bg-dark: #111111;
    --bg-light: #ffffff;
    --primary: #00d2d3;
    /* Cyan/Turquoise */
    --accent: #54a0ff;
    --text-dark: #222222;
    --text-white: #ffffff;
    --text-muted: #666666;
    --border-color: #eee;

    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

body,
html {
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-weight: 700;
    margin-top: 0;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center {
    text-align: center;
}

.text-white {
    color: #fff !important;
}

.text-primary {
    color: var(--primary) !important;
}

.d-none {
    display: none;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.py-5 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.btn-primary:hover {
    background: #00b8b9;
    border-color: #00b8b9;
}

.service-btn {
    border: 2px solid #fff;
    color: #fff;
    padding: 15px 40px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.service-btn:hover {
    color: #54a0ff;
    border-color: #54a0ff;
    background: rgba(0, 198, 198, 0.1);
}

.service-btn:active,
.service-btn:focus {
    color: #54a0ff;
    border-color: #54a0ff;
}

.btn-outline {
    background: transparent;
    border-color: #fff;
    color: #fff;
}

.btn-outline:hover {
    background: #fff;
    color: #000;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: #000;
    letter-spacing: -1px;
}

nav ul {
    display: flex;
    gap: 30px;
    align-items: center;
}

nav a {
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
    text-transform: uppercase;
}

nav a:hover {
    color: var(--primary);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -15px;
    background: #fff;
    border-top: 3px solid var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    padding: 10px 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #555;
    text-transform: none;
    font-weight: 500;
}

.dropdown-menu a:hover {
    background: #f8f9fa;
    color: var(--primary);
}

/* Hero Section */
.hero-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Footer (Dark) */
footer {
    background: #000;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.footer-col ul li {
    margin-bottom: 10px;
    color: #ccc;
}

.footer-col ul li a {
    color: #ccc;
    font-size: 1rem;
}

.footer-col ul li a:hover {
    color: #fff;
}


.footer-bottom {
    font-size: 1rem;
    color: #ccc;
}

.footer-bottom .footer-bottom-links a:hover{
    color: #fff;
}

.contact-info li {
    display: flex;
    gap: 10px;
    color: #888;
    margin-bottom: 10px;
}

.contact-info i {
    color: var(--primary);
}

/* Form Control */
.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 15px;
}

/* Responsive */

.hero-title {
    font-size: 2.5rem !important;
}


.mb-5 {
    margin-bottom: 3rem;
}

.py-5 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.btn-primary:hover {
    background: #00b8b9;
    border-color: #00b8b9;
}

.btn-outline {
    background: transparent;
    border-color: #fff;
    color: #fff;
}

.btn-outline:hover {
    background: #fff;
    color: #000;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: #000;
    letter-spacing: -1px;
}

nav ul {
    display: flex;
    gap: 30px;
    align-items: center;
}

nav a {
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
    text-transform: uppercase;
}

nav a:hover {
    color: var(--primary);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -15px;
    background: #fff;
    border-top: 3px solid var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    padding: 10px 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #555;
    text-transform: none;
    font-weight: 500;
}

.dropdown-menu a:hover {
    background: #f8f9fa;
    color: var(--primary);
}

/* Hero Section */
.hero-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Service: Web Development */
.service-hero {
    position: relative;
    padding: 120px 0 80px;
    background: radial-gradient(circle at top left, #e0f7ff 0, #ffffff 35%, #f5f5ff 100%);
    overflow: hidden;
}

.service-hero::before {
    content: "";
    position: absolute;
    right: -120px;
    top: -80px;
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(0, 210, 211, 0.25), transparent 65%);
    opacity: 0.8;
}

.service-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 2.3fr) minmax(0, 1.3fr);
    gap: 48px;
    align-items: center;
}

.service-hero-copy {
    max-width: 640px;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(0, 210, 211, 0.08);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 16px;
}

.service-hero-title {
    font-size: 2.7rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
    color: #0f172a;
}

.service-hero-subtitle {
    font-size: 1.02rem;
    color: #4b5563;
    max-width: 560px;
    margin-bottom: 26px;
}

.service-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.service-hero-secondary {
    border-color: #e5e7eb !important;
    color: #111827 !important;
    background: #ffffff !important;
}

.service-hero-highlight {
    background: #0f172a;
    color: #e5e7eb;
    border-radius: 18px;
    padding: 22px 22px 18px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.35);
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 16px;
    max-width: 320px;
    justify-self: end;
}

.service-hero-metric {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.service-hero-metric:not(:last-child) {
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.5);
}

.metric-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #9ca3af;
}

.metric-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: #e5e7eb;
}

.contact-info li {
    display: flex;
    gap: 10px;
    color: #888;
    margin-bottom: 10px;
}

.contact-info i {
    color: var(--primary);
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
    margin-top: 10px;
}

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.social-icon:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

/* Form Control */
.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 15px;
}

/* Responsive */
/* Toggle Button */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem !important;
    }

    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 20px 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        display: none;
        flex-direction: column;
        z-index: 999;
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        width: 100%;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Sections / Utilities */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.section-kicker {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-muted);
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    margin-bottom: 0;
}

.section-subtitle {
    max-width: 720px;
    margin: 1rem auto 0;
    color: var(--text-muted);
    font-size: 0.98rem;
}

.text-white-70 {
    color: rgba(255, 255, 255, 0.7);
}

.service-section {
    background: #ffffff;
}

.section-header {
    max-width: 720px;
    margin: 0 auto;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.service-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px 22px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card h3 {
    margin-top: 12px;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.service-card p {
    font-size: 0.95rem;
    color: #4b5563;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 55px rgba(15, 23, 42, 0.12);
    border-color: rgba(0, 210, 211, 0.5);
}

.icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: rgba(0, 210, 211, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

/* Technologies */
.tech-section {
    background: #0f172a;
    color: #e5e7eb;
}

.tech-section .section-title {
    color: #ffffff;
}

.tech-section .section-subtitle {
    color: #9ca3af;
}

.tech-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.tech-pill {
    padding: 8px 18px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.6);
    background: rgba(15, 23, 42, 0.7);
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* Process */
.process-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 26px;
}

.process-step {
    flex: 1 1 280px;
    max-width: 350px;
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    padding: 24px 22px 22px 22px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 35px rgba(15, 23, 42, 0.05);
    text-align: start;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: rgba(0, 210, 211, 0.07);
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    margin-bottom: 10px;
}

.process-step h3 {
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.process-step p {
    font-size: 0.95rem;
    color: #4b5563;
}

/* Benefits */
.benefits-section {
    background: #f9fafb;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px;
}

.benefit-card {
    flex: 1 1 300px;
    max-width: 380px;
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 24px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    text-align: center;
}

.benefit-card h3 {
    margin-top: 12px;
    margin-bottom: 10px;
    font-size: 1.15rem;
}

.benefit-card p {
    font-size: 0.95rem;
    color: #4b5563;
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 55px rgba(15, 23, 42, 0.12);
    border-color: rgba(0, 210, 211, 0.5);
}



/* Final CTA */
.final-cta-section {
    background: #0f172a;
    color: #e5e7eb;
}

.final-cta-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.final-cta-inner h2 {
    color: #ffffff;
    margin-bottom: 6px;
    font-size: 1.9rem;
}

.final-cta-inner p {
    color: #9ca3af;
    margin: 0;
}

.final-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

@media (max-width: 992px) {
    .service-hero-inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .service-hero-highlight {
        justify-self: start;
        max-width: none;
        width: 100%;
    }

    .service-hero-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 640px) {
    .final-cta-inner h2 {
        font-size: 1.6rem;
    }

    .service-hero {
        padding-top: 100px;
    }
}

/* Graphic Design Page */
.gd-hero {
    position: relative;
    padding: 120px 0 80px;
    background: radial-gradient(circle at top left, #fef3c7 0, #f5d0fe 35%, #eff6ff 80%);
    overflow: hidden;
}

.gd-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.55) 0, transparent 55%),
        radial-gradient(circle at 80% 90%, rgba(255, 255, 255, 0.8) 0, transparent 60%);
    opacity: 0.6;
    pointer-events: none;
}

.gd-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 2.1fr) minmax(0, 1.4fr);
    gap: 48px;
    align-items: center;
}

.gd-hero-copy {
    max-width: 640px;
}

.gd-badge {
    background: rgba(168, 85, 247, 0.12);
    color: #7e22ce;
}

.gd-hero-title {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
    color: #111827;
}

.gd-hero-subtitle {
    font-size: 1.02rem;
    color: #4b5563;
    max-width: 560px;
    margin-bottom: 26px;
}

.gd-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.gd-hero-art {
    position: relative;
    justify-self: end;
    max-width: 320px;
}

.gd-orbit {
    position: relative;
    width: 320px;
    height: 320px;
    border-radius: 999px;
    border: 1px dashed rgba(15, 23, 42, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.65);
    box-shadow: 0 20px 55px rgba(15, 23, 42, 0.16);
}

.gd-pill {
    position: absolute;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #111827;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
}

.gd-pill:nth-child(1) {
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
}

.gd-pill:nth-child(2) {
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
}

.gd-pill:nth-child(3) {
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
}

.gd-pill:nth-child(4) {
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
}

.gd-card-grid .gd-service-card {
    border-top: 3px solid rgba(168, 85, 247, 0.4);
}

.gd-icon {
    background: rgba(168, 85, 247, 0.12);
    color: #7e22ce;
}

.gd-approach {
    background: #0f172a;
    color: #e5e7eb;
}

.gd-approach .section-title {
    color: #ffffff;
}

.gd-approach .section-subtitle {
    color: #9ca3af;
}

.gd-approach-step {
    background: rgba(15, 23, 42, 0.9);
    border-color: rgba(148, 163, 184, 0.5);
}

.gd-tools {
    background: #020617;
}

.gd-tools .section-title {
    color: #ffffff;
}

.gd-tools .section-subtitle {
    color: #9ca3af;
}

.gd-portfolio {
    background: #ffffff;
}

.gd-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.gd-portfolio-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.18);
}

.gd-portfolio-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gd-portfolio-card:hover img {
    transform: scale(1.03);
}

.gd-final-cta {
    background: linear-gradient(to right, #4f46e5, #a855f7);
}

.gd-final-cta .final-cta-inner h2 {
    font-size: 1.9rem;
}

.gd-final-cta .final-cta-inner p {
    color: #e5e7eb;
}

@media (max-width: 992px) {
    .gd-hero-inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .gd-hero-art {
        justify-self: start;
        max-width: none;
    }

    .gd-hero-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 640px) {
    .gd-hero {
        padding-top: 100px;
    }

    .gd-orbit {
        width: 260px;
        height: 260px;
    }
}

/* Digital Marketing Page */
.dm-hero {
    position: relative;
    padding: 120px 0 80px;
    background: radial-gradient(circle at top left, #cffafe 0, #e0f2fe 35%, #020617 100%);
    color: #0b1120;
    overflow: hidden;
}

.dm-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 0% 0%, rgba(56, 189, 248, 0.25) 0, transparent 55%),
        radial-gradient(circle at 100% 100%, rgba(52, 211, 153, 0.25) 0, transparent 55%);
    opacity: 0.8;
    pointer-events: none;
}

.dm-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 2.1fr) minmax(0, 1.4fr);
    gap: 48px;
    align-items: center;
}

.dm-hero-copy {
    max-width: 640px;
}

.dm-badge {
    background: rgba(56, 189, 248, 0.16);
    color: #0369a1;
}

.dm-hero-title {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
    color: #020617;
}

.dm-hero-subtitle {
    font-size: 1.02rem;
    color: #0f172a;
    max-width: 560px;
    margin-bottom: 26px;
}

.dm-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.dm-hero-metrics {
    background: #020617;
    color: #e5e7eb;
    border-radius: 18px;
    padding: 20px 22px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.45);
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 14px;
    max-width: 320px;
    justify-self: end;
}

.dm-metric {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.dm-metric:not(:last-child) {
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.5);
}

.dm-metric-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #9ca3af;
}

.dm-metric-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: #e5e7eb;
}

.dm-service-card {
    border-top: 3px solid rgba(56, 189, 248, 0.55);
}

.dm-icon {
    background: rgba(56, 189, 248, 0.16);
    color: #0369a1;
}

.dm-strategy {
    background: #020617;
    color: #e5e7eb;
}

.dm-strategy .section-title {
    color: #ffffff;
}

.dm-strategy .section-subtitle {
    color: #9ca3af;
}

.dm-step {
    background: rgba(15, 23, 42, 0.98);
    border-color: rgba(30, 64, 175, 0.7);
}

.dm-tools {
    background: #020617;
}

.dm-tools .section-title {
    color: #ffffff;
}

.dm-tools .section-subtitle {
    color: #9ca3af;
}

.dm-why .dm-benefit {
    border-top: 3px solid rgba(56, 189, 248, 0.55);
}

.dm-final-cta {
    background: linear-gradient(to right, #0f172a, #0369a1);
}

.dm-final-cta .final-cta-inner p {
    color: #e5e7eb;
}

@media (max-width: 992px) {
    .dm-hero-inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .dm-hero-metrics {
        justify-self: start;
        max-width: none;
        width: 100%;
    }

    .dm-hero-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 640px) {
    .dm-hero {
        padding-top: 100px;
    }
}

/* MS Office Page */
.office-hero {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(to right, #f9fafb, #e5f0ff);
    overflow: hidden;
}

.office-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 2.1fr) minmax(0, 1.4fr);
    gap: 48px;
    align-items: center;
}

.office-hero-copy {
    max-width: 640px;
}

.office-badge {
    background: rgba(37, 99, 235, 0.1);
    color: #1d4ed8;
}

.office-hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.18;
    margin-bottom: 16px;
    color: #0f172a;
}

.office-hero-subtitle {
    font-size: 1.02rem;
    color: #4b5563;
    max-width: 560px;
    margin-bottom: 26px;
}

.office-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.office-hero-summary {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px 22px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
    border: 1px solid #e5e7eb;
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 14px;
    max-width: 340px;
    justify-self: end;
}

.office-summary-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.office-summary-item:not(:last-child) {
    padding-bottom: 8px;
    border-bottom: 1px solid #e5e7eb;
}

.office-summary-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #6b7280;
}

.office-summary-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: #111827;
}

.office-services {
    background: #ffffff;
}

.office-card {
    border-top: 3px solid rgba(37, 99, 235, 0.4);
}

.office-icon {
    background: rgba(37, 99, 235, 0.12);
    color: #1d4ed8;
}

.office-usecases {
    background: #f9fafb;
}

.office-step {
    background: #ffffff;
    border-color: #e5e7eb;
}

.office-tools {
    background: #0f172a;
}

.office-tools .section-title {
    color: #ffffff;
}

.office-tools .section-subtitle {
    color: #9ca3af;
}

.office-benefits .office-benefit {
    border-top: 3px solid rgba(37, 99, 235, 0.4);
}

.office-final-cta {
    background: #0f172a;
}

.office-final-cta .final-cta-inner p {
    color: #e5e7eb;
}

@media (max-width: 992px) {
    .office-hero-inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .office-hero-summary {
        justify-self: start;
        max-width: none;
        width: 100%;
    }

    .office-hero-title {
        font-size: 2.1rem;
    }
}

@media (max-width: 640px) {
    .office-hero {
        padding-top: 100px;
    }
}

/* Facts Section */
.facts-section {
    background: #f9fafb;
    color: #111827;
}

.facts-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}

.facts-title {
    letter-spacing: 0.08em;
}

.fact-card {
    text-align: center;
    padding: 10px 0;
    flex: 1 1 180px;
    max-width: 220px;
}

.stat-item h2,
.fact-value {
    font-size: 3rem;
    font-weight: 800;
    margin: 0 0 0.25rem;
}

.stat-item p,
.fact-label {
    letter-spacing: 0.02em;
    font-weight: 500;
    font-size: 0.95rem;
    color: #4b5563;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }

    .facts-grid {
        justify-content: center;
        gap: 24px;
    }

    .fact-card {
        max-width: none;
        flex-basis: 45%;
    }

    .fact-value {
        font-size: 2.4rem;
    }
}

/* Industries Section */
.industries-section {
    background: #ffffff;
}

.industries-title {
    font-size: 2.4rem;
    letter-spacing: 0.08em;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px 60px;
    justify-items: center;
}

.industry-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.industry-card:hover img {
    transform: none;
}

.industry-image-wrapper {
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.industry-image-wrapper.square img {
    width: 220px;
    height: 220px;
    object-fit: cover;
}

.industry-name {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 1.05rem;
    font-weight: 800;
    color: #111827;
    margin: 6px 0 0;
}

/* FAQ */
.faq-item {
    border-bottom: 1px solid #eee;
}

.faq-btn {
    width: 100%;
    text-align: left;
    padding: 20px;
    background: #fff;
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    color: #333;
}

.faq-answer {
    padding: 0 20px 20px;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* S-Curve Process Section */
.process-s-section {
    padding: 120px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.process-s-container {
    max-width: 1140px;
    margin: 0 auto;
    position: relative;
}

.process-s-path {
    position: relative;
    z-index: 2;
}

.process-s-row {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.row-1 .process-s-item {
    margin-top: 40px;
}

.row-1 {
    margin-bottom: 220px;
    /* controls distance between rows */
}

.row-2 {
    margin-top: 300px;
    /* pulls second row UP to align with SVG */
}

.process-s-row:last-child {
    margin-bottom: 0;
}

.process-s-item {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 3;
}

.process-s-icon-box {
    width: 110px;
    height: 110px;
    background: #fff;
    border: 2px solid #f1f5f9;
    border-radius: 50%;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.process-s-item:hover .process-s-icon-box {
    transform: translateY(-12px) scale(1.08);
    border-color: #2563eb;
    box-shadow: 0 30px 60px rgba(37, 99, 235, 0.15);
}

.process-s-icon-box i {
    font-size: 2.2rem;
    color: #334155;
    transition: all 0.4s;
}

.process-s-item:hover .process-s-icon-box i {
    color: #2563eb;
    transform: scale(1.1);
}

.process-s-item h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.process-s-item p {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.8;
    max-width: 280px;
    margin: 0 auto;
}

/* Connecting Lines */
.process-s-line-svg {
    position: absolute;
    top: 55px;
    /* Half of icon box height */
    left: 0;
    width: 1200px;
    height: 650px;
    z-index: 1;
    pointer-events: none;
    overflow: visible;
}

.process-s-line-svg path {
    fill: none;
    stroke: url(#s-curve-grad);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 12 12;
    animation: flowLine 30s linear infinite;
    filter: drop-shadow(0 0 8px rgba(37, 99, 235, 0.2));
}

@keyframes flowLine {
    from {
        stroke-dashoffset: 1000;
    }

    to {
        stroke-dashoffset: 0;
    }
}

/* Active State Badge */
.process-s-item.active .process-s-icon-box {
    border-color: #2563eb;
    border-width: 3px;
    background: linear-gradient(135deg, #fff 0%, #f0f7ff 100%);
}

.process-s-item.active .process-s-icon-box i {
    color: #2563eb;
}

@media (max-width: 991px) {
    .process-s-row {
        flex-direction: row;
        /* Ensures that it remains in a row even on smaller screens */
        align-items: center;
        gap: 80px;
        margin-bottom: 80px;
    }

    .process-s-line-svg {
        display: none;
    }

    .process-s-item::after {
        content: '';
        position: absolute;
        bottom: -50px;
        left: 50%;
        width: 2px;
        height: 50px;
        background: #e2e8f0;
    }

    .process-s-row:last-child .process-s-item:last-child::after {
        display: none;
    }
}

/* Vertical Timeline Process Section (Refined: Text-Only Alternating) */
.v-process-section {
    padding: 120px 0;
    background-color: #0b0f19;
    background-image: 
        radial-gradient(circle at 0% 0%, rgba(0, 210, 211, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(84, 160, 255, 0.05) 0%, transparent 50%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.v-timeline-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    padding: 40px 0;
}

.v-timeline-container::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: linear-gradient(to bottom, 
        transparent, 
        rgba(0, 210, 211, 0.2) 10%, 
        var(--primary) 50%, 
        rgba(0, 210, 211, 0.2) 90%, 
        transparent
    );
    transform: translateX(-50%);
    z-index: 1;
}

.v-timeline-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.v-timeline-item.in-view {
    opacity: 1;
    transform: translateY(0);
}

.v-timeline-item:nth-child(even) {
    justify-content: flex-end;
}

.v-timeline-item:last-child {
    margin-bottom: 0;
}

.v-timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    border: 4px solid #0b0f19;
    box-shadow: 0 0 20px var(--primary);
    z-index: 3;
    transition: all 0.3s ease;
}

.v-timeline-item:hover .v-timeline-dot {
    transform: translate(-50%, -50%) scale(1.3);
    box-shadow: 0 0 30px var(--primary);
}

.v-timeline-content {
    width: 44%;
    padding: 35px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.v-timeline-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(0, 210, 211, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.v-timeline-item:hover .v-timeline-content {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(0, 210, 211, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.v-timeline-item:hover .v-timeline-content::before {
    opacity: 1;
}

.v-timeline-item:nth-child(odd) .v-timeline-content {
    text-align: right;
    margin-right: 20px;
}

.v-timeline-item:nth-child(even) .v-timeline-content {
    text-align: left;
    margin-left: 20px;
}

.v-icon-box {
    width: 70px;
    height: 70px;
    background: rgba(0, 210, 211, 0.1);
    border: 1px solid rgba(0, 210, 211, 0.2);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: var(--primary);
    transition: all 0.5s ease;
    position: relative;
    z-index: 2;
}

.v-timeline-item:nth-child(odd) .v-icon-box {
    margin-left: auto;
}

.v-timeline-item:nth-child(even) .v-icon-box {
    margin-right: auto;
}

.v-timeline-item:hover .v-icon-box {
    background: var(--primary);
    color: #fff;
    transform: rotateY(360deg);
}

.v-timeline-item h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff; /* Fixed: was too dark */
    letter-spacing: -0.02em;
}

.v-timeline-item p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
}

@media (max-width: 768px) {
    .v-timeline-container::before {
        left: 30px;
        transform: none;
    }

    .v-timeline-dot {
        left: 30px;
        transform: translate(-50%, -50%);
    }

    .v-timeline-item {
        justify-content: flex-start !important;
        padding-left: 60px;
        margin-bottom: 50px;
    }

    .v-timeline-content {
        width: 100%;
        text-align: left !important;
        margin: 0 !important;
        padding: 25px;
    }

    .v-icon-box {
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}
.review-card-minimal {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding-bottom: 30px;
}

.review-top-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.client-name-minimal {
    font-size: 1.2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0;
}

.review-date-minimal {
    font-size: 0.85rem;
    color: #999;
    font-weight: 500;
}

.review-rating-minimal {
    display: flex;
    gap: 2px;
}

.review-content-minimal p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
    font-weight: 400;
}

@media (max-width: 991px) {
    .review-card-minimal {
        border-bottom: 1px solid #eee;
        margin-bottom: 30px;
    }
}

.sitemap-group {
    margin-bottom: 30px;
}

.sitemap-group-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 15px;
    width: fit-content;
}

.sitemap-group-title i {
    color: var(--primary);
    font-size: 1.1rem;
}

.sitemap-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sitemap-list li {
    margin-bottom: 12px;
    padding-left: 0;
    position: relative;
}

.sitemap-list li a {
    color: #555;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.sitemap-list li a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.whatsapp-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 58px;
    height: 58px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    z-index: 999;
    transition: all 0.2s ease;
    text-decoration: none;
}

.whatsapp-btn:hover {
    background: #1ebe5d;
    transform: translateY(-3px) scale(1.05);
    color: #fff;
}

.whatsapp-btn::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.35);
    animation: whatsapp-pulse 2s infinite;
    z-index: -1;
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    70% {
        transform: scale(1.6);
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@media (max-width: 576px) {
    .whatsapp-btn {
        width: 52px;
        height: 52px;
        font-size: 24px;
        bottom: 18px;
        right: 18px;
    }
}