/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FF6B35;
    --secondary-color: #1E3A5F;
    --text-dark: #2C3E50;
    --text-light: #7F8C8D;
    --bg-light: #F8F9FA;
    --white: #FFFFFF;
    --border-color: #E0E0E0;
}

html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    /* Soft base that matches the themed backdrop so no seams ever show. */
    background-color: #f5f8fd;
}

img,
picture,
video,
svg {
    max-width: 100%;
    height: auto;
}

iframe,
embed,
object {
    max-width: 100%;
}

p,
li,
td,
th,
dd,
dt,
figcaption,
cite,
blockquote {
    overflow-wrap: anywhere;
    word-wrap: break-word;
}

/* Prevent thin seam lines between stacked sections on mobile. */
@media (max-width: 768px) {
    body {
        background-color: var(--white);
    }

    section {
        position: relative;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    section + section {
        margin-top: 0 !important;
    }
}

@media (max-width: 768px) {
    /* In mobile, show a single clean social image. */
    .smm-dual-images-container {
        position: relative;
        display: block !important;
        width: 100%;
        max-width: 320px;
        height: auto !important;
        min-height: 0 !important;
        margin: 0 auto;
        padding: 0 !important;
        overflow: visible;
    }

    .smm-image-1 {
        display: block !important;
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        width: min(100%, 300px) !important;
        height: auto !important;
        margin: 0 auto !important;
        transform: none !important;
        z-index: 1;
    }

    .smm-image-2 {
        display: none !important;
    }
}

@media (min-width: 769px) {
    /* Tablet + desktop: keep the same overlapping two-image design. */
    .smm-dual-images-container {
        position: relative;
        width: 100%;
        max-width: 600px;
        height: 550px;
        min-height: 550px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: visible;
    }

    .smm-dual-image {
        display: block !important;
        position: absolute;
        width: 300px;
        height: 380px;
        object-fit: cover;
    }

    .smm-image-1 {
        top: 20px;
        left: 0;
        transform: rotate(-6deg);
        z-index: 2;
    }

    .smm-image-2 {
        top: 210px;
        right: 0;
        transform: rotate(8deg);
        display: block !important;
        z-index: 1;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(14px, 4vw, 24px);
    width: 100%;
}

/* Header Styles */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary-color);
}

.logo a {
    display: inline-block;
    text-decoration: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.logo a:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

.logo-img {
    height: 45px;
    width: auto;
    display: block;
}

.logo-text{
    letter-spacing: 2px;
} 

.nav-list {
    display: flex;
    list-style: none;
    gap: 24px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    list-style: none;
    min-width: 250px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-left: 3px solid var(--primary-color);
    border-right: 3px solid var(--primary-color);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    margin-top: 10px;
    padding: 10px 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown:hover .services-dropdown-toggle i,
.dropdown.active .services-dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown .services-dropdown-toggle i {
    transition: transform 0.3s ease;
    display: inline-block;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    border-left-color: var(--primary-color);
    padding-left: 25px;
}

.social-icons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.social-link {
    color: var(--text-dark);
    font-size: 20px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: transparent;
    text-decoration: none;
    line-height: 1;
}

.social-link:hover {
    color: var(--primary-color);
    background: rgba(255, 107, 53, 0.1);
    transform: translateY(-2px);
    text-decoration: none;
}

.social-link i {
    display: inline-block;
    line-height: 1;
    vertical-align: middle;
}

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-dark);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 600px;
    overflow: hidden;
    padding: 80px 0;
    color: #ffffff;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        /* Teal overlay */
        linear-gradient(rgba(0, 120, 140, 0.7), rgba(0, 120, 140, 0.7)),
        /* Cloudinary hero image */
        url('https://res.cloudinary.com/dmkufygnc/image/upload/v1767778118/istockphoto-1443560890-612x612_mgpvmv.jpg') center/cover no-repeat,
        /* Local fallback */
        url('../images/hero-bg.jpg') center/cover no-repeat;
    z-index: 0;
    transform: scale(1.02);
    animation: heroBackdropMotion 14s ease-in-out infinite alternate;
}

.hero::after {
    display: none;
}

.hero .container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hero-ray {
    display: none;
}

.hero-ray::before {
    content: '';
    position: absolute;
    inset: 22%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.65) 0%, rgba(255, 245, 214, 0.18) 45%, rgba(255, 245, 214, 0) 72%);
}

@keyframes heroGlassySweep {
    0% {
        transform: translateX(-6%) translateY(4%) rotate(-4deg) scale(1);
    }
    45% {
        transform: translateX(20%) translateY(-8%) rotate(1deg) scale(1.04);
    }
    100% {
        transform: translateX(44%) translateY(4%) rotate(4deg) scale(1);
    }
}

@keyframes heroBackdropMotion {
    0% {
        transform: scale(1.02) translate3d(0, 0, 0);
        filter: saturate(1) brightness(1);
    }
    50% {
        transform: scale(1.06) translate3d(-1.2%, -0.8%, 0);
        filter: saturate(1.08) brightness(1.05);
    }
    100% {
        transform: scale(1.08) translate3d(1.4%, -1%, 0);
        filter: saturate(1.12) brightness(1.08);
    }
}

@keyframes heroRayArc {
    0% {
        transform: translate3d(0, 0, 0) scale(0.82);
        opacity: 0.18;
    }
    25% {
        transform: translate3d(190px, -95px, 0) scale(0.96);
    }
    50% {
        transform: translate3d(430px, -145px, 0) scale(1.08);
        opacity: 0.82;
    }
    75% {
        transform: translate3d(680px, -95px, 0) scale(0.96);
    }
    100% {
        transform: translate3d(860px, 0, 0) scale(0.82);
        opacity: 0.18;
    }
}

@keyframes heroSquaresTwinkle {
    0% {
        opacity: 0.62;
        filter: drop-shadow(0 0 0 rgba(255, 255, 255, 0));
    }
    50% {
        opacity: 0.95;
        filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.45));
    }
    100% {
        opacity: 0.72;
        filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.2));
    }
}

.hero-background,
.hero-illustration {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 650px;
    animation: heroContentReveal 1s ease-out both;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--primary-color);
    color: #ffffff;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
    animation: heroBadgeGlow 2.8s ease-in-out infinite;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-title .highlight {
    color: #FFD28A;
    text-shadow: 0 0 18px rgba(255, 210, 138, 0.45);
}

@keyframes heroContentReveal {
    0% {
        opacity: 0;
        transform: translate3d(-10px, 28px, 0);
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes heroBadgeGlow {
    0%, 100% {
        transform: translateY(0);
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: translateY(-2px);
        box-shadow: 0 14px 30px rgba(255, 255, 255, 0.28);
    }
}

.hero-subtitle {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 600;
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin: 40px 0;
    padding: 30px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

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

/* About Intro (Home) */
.about-intro {
    padding: 90px 0;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 20%, rgba(0, 148, 178, 0.24), transparent 42%),
        radial-gradient(circle at 85% 80%, rgba(255, 107, 53, 0.2), transparent 44%),
        linear-gradient(125deg, #f7f9fc 0%, #eef4fb 45%, #f5f8fd 100%);
}

.about-intro::before,
.about-intro::after {
    content: "";
    position: absolute;
    inset: -20% -12%;
    z-index: 0;
    pointer-events: none;
}

.about-intro::before {
    background:
        radial-gradient(circle at 25% 30%, rgba(0, 148, 178, 0.28) 0%, rgba(0, 148, 178, 0) 45%),
        radial-gradient(circle at 80% 65%, rgba(30, 58, 95, 0.24) 0%, rgba(30, 58, 95, 0) 48%);
    filter: blur(20px);
    opacity: 0.95;
    animation: aboutIntroAmbientFlow 16s ease-in-out infinite alternate;
}

.about-intro::after {
    background-image:
        linear-gradient(rgba(30, 58, 95, 0.1) 2px, transparent 2px),
        linear-gradient(90deg, rgba(30, 58, 95, 0.1) 2px, transparent 2px);
    background-size: 56px 56px;
    opacity: 0.4;
    mix-blend-mode: soft-light;
    animation: aboutIntroGridDrift 20s linear infinite;
}

.about-intro .container {
    position: relative;
    z-index: 1;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: start;
}

.about-intro-text {
    display: flex;
    flex-direction: column;
}

.about-intro-text .section-badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.about-intro-text .section-title {
    text-align: left;
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-intro-lead {
    font-size: 18px;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 18px;
    font-weight: 500;
}

.about-intro-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 16px;
}

.about-intro-highlights {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.highlight-item {
    padding: 14px 18px;
    border-radius: 8px;
    background: var(--white);
    border-left: 3px solid var(--primary-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.highlight-label {
    display: block;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 6px;
    font-size: 15px;
}

.highlight-text {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
}

.about-intro-visual {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 20px;
}

.about-intro-image-wrapper {
    position: relative;
    width: 100%;
    display: block;
    margin: 0;
    padding: 0;
    line-height: 0;
}

.about-intro-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
    display: block;
    margin: 0;
    padding: 0;
    transform-origin: center center;
    animation: aboutIntroOuterCircleRotate 18s linear infinite;
}

.about-intro-logo-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 135px;
    height: 135px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    overflow: hidden;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.about-intro-logo {
    width: 88%;
    height: 88%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    margin: 0;
    padding: 0;
    align-self: center;
}

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

@keyframes aboutIntroAmbientFlow {
    0% {
        transform: translate3d(-2%, -1%, 0) scale(1);
    }
    50% {
        transform: translate3d(2%, 3%, 0) scale(1.03);
    }
    100% {
        transform: translate3d(4%, -2%, 0) scale(1.06);
    }
}

@keyframes aboutIntroGridDrift {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-48px, -36px, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .about-intro-image {
        animation: none;
    }

    .about-intro::before,
    .about-intro::after {
        animation: none;
    }
}

.about-intro-card {
    width: 100%;
    max-width: 380px;
    padding: 36px 32px;
    border-radius: 16px;
    background: linear-gradient(135deg, #1E3A5F, #264872);
    color: var(--white);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.about-intro-card i {
    font-size: 40px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.about-intro-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.about-intro-card p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

/* Buttons */
.btn {
    padding: 14px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: #E55A2B;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background: #152A47;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 58, 95, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Services Preview */
.services-preview {
    padding: 90px 0;
    background: var(--white);
}

.services-heading {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    color: var(--secondary-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 14px;
}

.services-heading::after {
    content: "";
    width: 130px;
    height: 4px;
    background: #f28a64;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    border-radius: 2px;
}

.services-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 50px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 100%;
    max-width: 170px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-card h3 {
    font-size: 22px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
    font-size: 15px;
}

.service-link:hover {
    gap: 12px;
}

.text-center {
    text-align: center;
}

/* Why Choose Us */
.why-choose-us {
    padding: 90px 0;
    background: linear-gradient(rgba(0, 120, 140, 0.7), rgba(0, 120, 140, 0.7)),
                url('https://res.cloudinary.com/dmkufygnc/image/upload/v1767958355/d47086ac-9be0-41f4-9e81-605cae0e7c02_nm1np7.png') center/cover no-repeat,
                url('../images/why-choose-us-bg.png') center/cover no-repeat;
    overflow: hidden;
    position: relative;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 120, 140, 0.6);
    z-index: 0;
}

.why-choose-us::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    /* Extra highlight layer to make the background image pop */
    background:
        radial-gradient(circle at 18% 26%, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 42%),
        radial-gradient(circle at 78% 68%, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0) 46%);
    mix-blend-mode: screen;
    opacity: 0.75;
    z-index: 0;
}

.why-choose-us .container {
    max-width: 1200px;
    position: relative;
    z-index: 1;
}

.why-choose-content {
    color: var(--white);
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    max-width: 900px;
}

.why-choose-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: rgba(255, 255, 255, 1);
    margin-bottom: 20px;
    padding: 0;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

.why-choose-title {
    font-size: 42px;
    font-weight: 700;
    color: rgba(255, 255, 255, 1);
    margin-bottom: 24px;
    line-height: 1.3;
    letter-spacing: -0.5px;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.7);
}

.why-choose-description {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.98);
    margin-bottom: 50px;
    max-width: 100%;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

.why-choose-features {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.why-feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 0;
    transition: transform 0.2s ease;
}

.why-feature-item:hover {
    transform: translateX(5px);
}

.why-feature-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.why-feature-item:hover .why-feature-icon {
    background: rgba(255, 255, 255, 0.22);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.why-feature-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: rgba(255, 255, 255, 1);
    margin-bottom: 10px;
    line-height: 1.4;
    letter-spacing: -0.2px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.why-feature-content p {
    font-size: 15px;
    line-height: 1.75;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

/* Legacy feature styles for other sections */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 30px;
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #FF8C5A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: var(--white);
    transition: transform 0.3s;
}

.feature-item:hover .feature-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.feature-item h3 {
    font-size: 22px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.feature-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Process Section */
.process-section {
    padding: 90px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 16px;
    line-height: 1.2;
}

.process-section .section-title {
    position: relative;
    display: block;
    width: fit-content;
    margin: 0 auto 16px;
    padding-bottom: 14px;
}

.process-section .section-title::after {
    content: "";
    width: 130px;
    height: 4px;
    background: #f28a64;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    border-radius: 2px;
}

.section-description {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.process-steps {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    flex: 1;
    min-width: 0;
    max-width: 280px;
    text-align: center;
    padding: 50px 25px 40px;
    background: var(--white);
    border-radius: 12px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin: 0 8px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 44px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    z-index: 2;
}

.step-icon {
    width: 80px;
    height: 80px;
    min-height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--white);
    margin: 0 auto 24px;
    margin-top: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.25);
    flex-shrink: 0;
}

.process-step:hover .step-icon {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.35);
}

.process-step h3 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 14px;
    margin-top: 0;
    font-weight: 700;
    line-height: 1.4;
    min-height: 56px;
    text-align: center;
    flex-shrink: 0;
}

.process-step p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 15px;
    margin: 0;
    flex-grow: 1;
    text-align: center;
}

.process-arrow {
    color: var(--primary-color);
    font-size: 28px;
    margin: 0 5px;
    align-self: center;
    flex-shrink: 0;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.process-arrow:hover {
    opacity: 1;
    transform: translateX(3px);
}

@media (max-width: 968px) {
    .process-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 90px 0;
    background: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-rating {
    color: #FFD700;
    font-size: 18px;
    margin-bottom: 20px;
}

.testimonial-text {
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 16px;
    font-style: italic;
    margin-bottom: 25px;
    position: relative;
    padding-left: 20px;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 60px;
    color: var(--primary-color);
    opacity: 0.2;
    font-family: Georgia, serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #FF8C5A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
}

.author-info h4 {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.author-info p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

/* CTA Section Home */
.cta-section-home {
    padding: 90px 0;
    background: linear-gradient(135deg, var(--secondary-color), #2A4A6F);
    color: var(--white);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--white);
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.6;
}

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

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--secondary-color), #2A4A6F);
    color: var(--white);
    padding: 100px 0;
    min-height: 450px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.legal-page-header {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 120, 140, 0.7), rgba(0, 120, 140, 0.7)),
                url('https://res.cloudinary.com/dmkufygnc/image/upload/v1768037758/5824d39d-cfb8-48b4-9549-d5c8a67951af_gei4h6.png') center/cover no-repeat,
                url('../images/legal-banner.png') center/cover no-repeat;
}

.legal-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 120, 140, 0.6);
    z-index: 0;
}

.legal-page-header .container {
    position: relative;
    z-index: 1;
}

.contact-page-header {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 120, 140, 0.7), rgba(0, 120, 140, 0.7)),
                url('https://res.cloudinary.com/dmkufygnc/image/upload/v1768037980/9022b382-18b9-4ff3-bbc1-29c0670c27c2_srxaal.jpg') center/cover no-repeat,
                url('../images/contact-banner.jpg') center/cover no-repeat;
}

.contact-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 120, 140, 0.6);
    z-index: 0;
}

.contact-page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 20px;
    opacity: 0.9;
}

/* Legal Content Section */
.legal-content-section {
    padding: 90px 0;
    background: linear-gradient(to bottom, #F8F9FA, #FFFFFF);
    position: relative;
}

.legal-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.legal-section {
    margin-bottom: 50px;
    background: var(--white);
    padding: 40px 45px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--primary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.legal-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.legal-section h2 {
    font-size: 30px;
    color: var(--secondary-color);
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.4;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255, 107, 53, 0.15);
    position: relative;
}

.legal-section h2::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 60px;
    height: 2px;
    background: var(--primary-color);
}

.legal-section h3 {
    font-size: 22px;
    color: var(--secondary-color);
    margin-top: 30px;
    margin-bottom: 18px;
    font-weight: 600;
    line-height: 1.4;
}

.legal-section p {
    color: var(--text-dark);
    line-height: 1.9;
    font-size: 16px;
    margin-bottom: 18px;
    text-align: justify;
}

.legal-section ul {
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
}

.legal-section li {
    color: var(--text-dark);
    line-height: 1.9;
    font-size: 16px;
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}

.legal-section ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 600;
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 14px;
}

.legal-section li ul {
    margin-top: 12px;
    margin-bottom: 12px;
}

.legal-section li ul li::before {
    content: '\f105';
    color: var(--text-light);
}

.legal-section strong {
    color: var(--secondary-color);
    font-weight: 600;
}

.legal-section a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.legal-section a:hover {
    color: #E55A2B;
    text-decoration: underline;
}

/* Contact Information Box */
.contact-info-box {
    background: rgba(255, 107, 53, 0.03);
    padding: 25px 30px;
    border-radius: 8px;
    margin-top: 20px;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.contact-info-box p {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.contact-info-box p:last-child {
    margin-bottom: 0;
}

.contact-info-box strong {
    display: inline-block;
    min-width: 90px;
    color: var(--secondary-color);
    font-weight: 600;
    flex-shrink: 0;
}

.legal-section:last-child {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(30, 58, 95, 0.05));
    border-left: 4px solid var(--primary-color);
}

@media (max-width: 768px) {
    .contact-info-box {
        padding: 20px 25px;
    }
    
    .contact-info-box p {
        flex-direction: column;
        gap: 5px;
    }
    
    .contact-info-box strong {
        min-width: auto;
        display: block;
    }
}

@media (max-width: 968px) {
    .legal-content-section {
        padding: 80px 0;
    }
    
    .legal-content {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .legal-section {
        padding: 35px 30px;
        margin-bottom: 40px;
    }
    
    .legal-section h2 {
        font-size: 26px;
    }
    
    .legal-section h3 {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .legal-content-section {
        padding: 60px 0;
    }
    
    .legal-section {
        padding: 30px 25px;
        margin-bottom: 35px;
        border-left-width: 3px;
    }

    .legal-section p {
        text-align: left;
    }
    
    .legal-section h2 {
        font-size: 24px;
        margin-bottom: 20px;
        padding-bottom: 12px;
    }
    
    .legal-section h2::before {
        width: 50px;
    }
    
    .legal-section h3 {
        font-size: 20px;
        margin-top: 25px;
        margin-bottom: 15px;
    }
    
    .legal-section p,
    .legal-section li {
        font-size: 15px;
        line-height: 1.8;
    }
    
    .legal-section ul {
        margin: 18px 0;
    }
    
    .legal-section li {
        padding-left: 28px;
        margin-bottom: 10px;
    }
    
    .legal-section:last-child strong {
        display: block;
        min-width: auto;
        margin-bottom: 5px;
    }
}

@media (max-width: 480px) {
    .legal-content-section {
        padding: 50px 0;
    }
    
    .legal-section {
        padding: 25px 20px;
        margin-bottom: 30px;
    }
    
    .legal-section h2 {
        font-size: 22px;
    }
    
    .legal-section h3 {
        font-size: 18px;
    }
    
    .legal-section p,
    .legal-section li {
        font-size: 14px;
    }
}

/* About hero background (CSS only, like index hero) */
.about-hero {
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        /* teal overlay same as index hero */
        linear-gradient(rgba(0, 120, 140, 0.78), rgba(0, 120, 140, 0.78)),
        /* Cloudinary image (primary) */
        url('https://res.cloudinary.com/dmkufygnc/image/upload/v1767779696/7_digital_skills600x387.png_ch01hj.webp') center/cover no-repeat,
        /* local fallback image */
        url('../images/about-hero-skills.webp') center/cover no-repeat;
    z-index: 0;
    transform: scale(1.04);
    animation: aboutHeroBackdropFloat 16s ease-in-out infinite alternate;
}

.about-hero::after {
    content: none;
}

.about-hero .container {
    position: relative;
    z-index: 1;
}

.about-hero h1 {
    position: relative;
    display: inline-block;
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.24);
    overflow: hidden;
}

.about-hero h1::after {
    content: '';
    position: absolute;
    top: -8%;
    left: -130%;
    width: 72%;
    height: 120%;
    background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.1) 36%, rgba(255, 255, 255, 0.72) 50%, rgba(255, 255, 255, 0.1) 64%, transparent 100%);
    transform: skewX(-18deg);
    filter: blur(1px);
    animation: aboutHeroTextShine 4.5s ease-in-out infinite;
}

/* About Content */
.about-content {
    position: relative;
    padding: 90px 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 107, 53, 0.14), transparent 42%),
        radial-gradient(circle at 88% 82%, rgba(0, 120, 140, 0.16), transparent 46%),
        linear-gradient(130deg, #f5f9ff 0%, #eef6ff 52%, #f8fbff 100%);
    overflow: hidden;
    isolation: isolate;
}

.about-content::before,
.about-content::after {
    content: '';
    position: absolute;
    inset: -12%;
    pointer-events: none;
    z-index: 0;
}

.about-content::before {
    background:
        radial-gradient(circle, rgba(255, 107, 53, 0.16) 0 5px, transparent 6px) 0 0 / 120px 120px,
        radial-gradient(circle, rgba(0, 120, 140, 0.14) 0 4px, transparent 5px) 60px 60px / 120px 120px;
    opacity: 0.55;
    animation: dmPulseGrid 16s ease-in-out infinite alternate;
}

.about-content::after {
    background:
        radial-gradient(520px 320px at 22% 28%, rgba(255, 107, 53, 0.2), transparent 70%),
        radial-gradient(560px 340px at 78% 72%, rgba(41, 98, 255, 0.16), transparent 72%);
    mix-blend-mode: multiply;
    animation: dmOrbitGlow 13s linear infinite;
}

.about-content .container {
    position: relative;
    z-index: 1;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    align-items: center;
    position: relative;
}

@keyframes dmPulseGrid {
    0% {
        transform: translate3d(-1.5%, -1%, 0) scale(1);
        opacity: 0.45;
    }
    50% {
        opacity: 0.68;
    }
    100% {
        transform: translate3d(1.2%, 1.6%, 0) scale(1.06);
        opacity: 0.5;
    }
}

@keyframes dmOrbitGlow {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.04);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

@keyframes aboutHeroBackdropFloat {
    0% {
        transform: scale(1.03) translate3d(-0.8%, -0.5%, 0);
    }
    100% {
        transform: scale(1.1) translate3d(1.2%, 1.1%, 0);
    }
}

@keyframes aboutHeroAuroraShift {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.06);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

@keyframes aboutHeroTextShine {
    0%,
    72% {
        left: -130%;
        opacity: 0;
    }
    78% {
        opacity: 1;
    }
    100% {
        left: 160%;
        opacity: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .about-hero::before,
    .about-hero::after,
    .about-hero h1::after,
    .about-content::before,
    .about-content::after {
        animation: none;
    }
}

.about-text h2 {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.about-text h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.about-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-services-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 30px;
}

.about-services-list li {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 12px;
    padding-left: 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.about-services-list li i {
    color: var(--primary-color);
    font-size: 18px;
    margin-top: 4px;
    flex-shrink: 0;
}

.about-services-list li strong {
    color: var(--secondary-color);
    font-weight: 600;
}

.about-image {
    text-align: center;
}

.about-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-color), #FF8C5A);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
    color: var(--white);
    opacity: 0.8;
}

.about-image-content {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 90px 0;
    background: var(--bg-light);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.mission-card,
.vision-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.4s ease,
        border-color 0.35s ease;
    border: 1px solid transparent;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12),
        0 8px 16px rgba(255, 107, 53, 0.12);
    border-color: rgba(255, 107, 53, 0.15);
}

.mission-icon,
.vision-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #FF8C5A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 36px;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.25);
    transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.35s ease;
}

.mission-card:hover .mission-icon {
    transform: scale(1.08) rotate(-6deg);
    box-shadow: 0 8px 22px rgba(255, 107, 53, 0.4);
}

.vision-card:hover .vision-icon {
    transform: scale(1.08) rotate(6deg);
    box-shadow: 0 8px 22px rgba(255, 107, 53, 0.4);
}

.mission-icon i,
.vision-icon i {
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mission-card:hover .mission-icon i,
.vision-card:hover .vision-icon i {
    transform: scale(1.06);
}

/* Stagger scroll-in: vision follows mission slightly */
.vision-card.scroll-reveal-slide-right.revealed {
    animation-delay: 0.15s;
}

.mission-card h3,
.vision-card h3 {
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 18px;
    font-weight: 700;
}

.mission-card p,
.vision-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 16px;
    margin: 0;
}

/* Values Section */
.values-section {
    padding: 90px 0;
    background: var(--bg-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: 30px;
}

.value-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.value-card i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 22px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 90px 0;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: 50px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: 30px;
}

.team-member {
    text-align: center;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 10px;
}

.team-avatar {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--primary-color), #FF8C5A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 60px;
    color: var(--white);
}

.team-member h3 {
    font-size: 22px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.team-member p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Team Leadership Section */
.team-leadership-section {
    padding: 90px 0;
    background: #f5f5f5;
}

.team-leadership-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-leadership-member {
    text-align: center;
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.team-leadership-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.14);
}

.team-member-image-wrapper {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 10px;
}

.team-member-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border: 4px solid var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    display: block;
    margin: 0 auto;
    transition: transform 0.55s ease, filter 0.55s ease;
}

.team-leadership-member:hover .team-member-image {
    transform: scale(1.04);
    filter: brightness(1.05);
}

.team-member-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -25px auto 15px;
    font-size: 20px;
    color: var(--white);
    box-shadow: 0 3px 10px rgba(255, 107, 53, 0.3);
    position: relative;
    z-index: 1;
    transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.team-leadership-member:hover .team-member-icon {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 18px rgba(255, 107, 53, 0.35);
}

.team-member-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.team-member-description {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 16px;
    text-align: left;
    margin: 0;
}

@media (max-width: 968px) {
    .team-leadership-section {
        padding: 70px 0;
    }

    .team-leadership-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }
    
    .team-leadership-member {
        padding: 30px 20px;
    }

    .team-member-image {
        max-width: 100%;
    }
    
    .team-member-name {
        font-size: 22px;
    }
    
    .team-member-description {
        font-size: 15px;
        text-align: center;
    }
}

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

    .team-leadership-grid {
        gap: 30px;
        padding: 0 15px;
    }
    
    .team-leadership-member {
        padding: 25px 20px;
    }

    .team-member-image-wrapper {
        margin-bottom: 15px;
    }

    .team-member-image {
        max-width: 100%;
        border-width: 3px;
    }

    .team-member-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
        margin: -22px auto 12px;
    }
    
    .team-member-name {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .team-member-description {
        font-size: 14px;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .team-leadership-section {
        padding: 50px 0;
    }

    .team-leadership-grid {
        gap: 25px;
        padding: 0 15px;
    }
    
    .team-leadership-member {
        padding: 20px 15px;
    }

    .team-member-image {
        max-width: 100%;
        border-width: 2px;
    }

    .team-member-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
        margin: -20px auto 10px;
    }
    
    .team-member-name {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .team-member-description {
        font-size: 13px;
        line-height: 1.6;
    }
}

/* Services Detail */
.services-detail {
    padding: 90px 0;
}

.service-detail-card {
    background: var(--white);
    padding: 60px 40px;
    margin-bottom: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.service-detail-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-detail-content {
    max-width: 900px;
    margin: 0 auto;
}

.service-icon-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), #FF8C5A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 48px;
    color: var(--white);
}

.service-detail-card h2 {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    text-align: center;
}

.service-detail-card p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: center;
}

.service-features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: 15px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
    font-size: 16px;
}

.service-features i {
    color: var(--primary-color);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), #FF8C5A);
    color: var(--white);
    padding: 90px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-section .btn-primary {
    background: var(--white);
    color: var(--primary-color);
}

.cta-section .btn-primary:hover {
    background: var(--bg-light);
}

/* Blogs Section */
.blogs-section {
    padding: 90px 0;
}

.blogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 30px;
}

.blog-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.blog-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color), #FF8C5A);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: var(--white);
}

.blog-content {
    padding: 30px;
}

.blog-date {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}

.blog-content h3 {
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s;
}

.blog-read-more:hover {
    gap: 10px;
}

/* Contact Section */
/* Map Section */
.map-section {
    padding: 90px 0;
    background: var(--bg-light);
}

.map-wrapper {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.google-map {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
}

@media (max-width: 768px) {
    .google-map {
        height: 350px;
    }
}

.contact-section {
    padding: 90px 0;
    background: var(--bg-light);
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

.contact-info {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact-form-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 100%;
}

.contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact-info {
    padding-right: 20px;
}

.contact-info h2 {
    font-size: 38px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.contact-info > p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 45px;
    font-size: 18px;
}

.contact-details {
    margin-bottom: 45px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
    padding: 20px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-color), #FF8C5A);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 22px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.contact-text h3 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-text p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.contact-text p a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.contact-text p a:hover {
    color: #E55A2B;
    text-decoration: underline;
}

.contact-social {
    margin-top: 30px;
}

.contact-social h3 {
    font-size: 22px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
    line-height: 1;
}

.social-links a i {
    display: inline-block;
    line-height: 1;
    vertical-align: middle;
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--primary-color), #FF8C5A);
    color: var(--white);
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
    text-decoration: none;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #FF8C5A);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 15px;
    display: block;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--bg-light);
    width: 100%;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
    transform: translateY(-1px);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: rgba(255, 107, 53, 0.5);
}

.form-group textarea {
    resize: vertical;
}

/* Form Validation Styles */
.error-message {
    color: #e74c3c;
    font-size: 13px;
    margin-top: 5px;
    display: block;
    min-height: 18px;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #e74c3c;
    background-color: #fff5f5;
}

.form-group input.error:focus,
.form-group select.error:focus,
.form-group textarea.error:focus {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

/* Footer */
.footer {
    background: linear-gradient(rgba(0, 120, 140, 0.7), rgba(0, 120, 140, 0.7)),
                url('https://res.cloudinary.com/dmkufygnc/image/upload/v1768037189/5e21be9c-98a1-4e61-8250-a558fc0dd5e3_wilp3h.png') center/cover no-repeat,
                url('../images/footer-banner.png') center/cover no-repeat;
    color: var(--white);
    padding: 60px 0 20px;
    position: relative;
    overflow: visible;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 120, 140, 0.6);
    z-index: 0;
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: var(--white);
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 52px;
    width: auto;
    max-width: 320px;
    display: block;
    transition: opacity 0.3s ease, transform 0.3s ease;
    filter: brightness(0) invert(1);
}

.footer-logo-img:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-section ul li i {
    margin-right: 10px;
    color: var(--primary-color);
}

/* Contact Info: keep wrapped lines aligned with text after icon, not under icon */
.footer-section ul li:has(> i.fas:first-child) {
    position: relative;
    padding-left: 1.75em;
}

.footer-section ul li:has(> i.fas:first-child) > i {
    position: absolute;
    left: 0;
    top: 0.2em;
    margin-right: 0;
    width: 1.15em;
    text-align: center;
}

.footer-social {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s;
    text-decoration: none;
    line-height: 1;
    font-size: 18px;
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    text-decoration: none;
}

.footer-social a i {
    display: inline-block;
    line-height: 1;
    vertical-align: middle;
}

.footer-bottom {
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    flex: 1;
    min-width: 200px;
}

.footer-copyright p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.footer-links-powered {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-legal-links a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.footer-legal-links .separator {
    color: rgba(255, 255, 255, 0.5);
    margin: 0 5px;
}

.footer-powered {
    flex-shrink: 0;
}

.footer-powered p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Footer Dropdown */
.footer-dropdown {
    position: relative;
}

.footer-services-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 0;
    padding: 0;
    line-height: 1.5;
}

.footer-services-toggle i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.footer-dropdown.active .footer-services-toggle i {
    transform: rotate(180deg);
}

.footer-dropdown-menu {
    list-style: none;
    position: static;               /* let it push footer height */
    background: rgba(30, 58, 95, 0.95);
    backdrop-filter: blur(10px);
    width: 100%;
    padding: 0;
    margin: 8px 0 0 0;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    display: none;                  /* hidden by default */
}

.footer-dropdown.active .footer-dropdown-menu {
    display: block;                 /* show on click, footer enlarges naturally */
}

.footer-dropdown.active .footer-services-toggle i {
    transform: rotate(180deg);
}

.footer-dropdown-menu li {
    margin: 0;
    padding: 0;
}

.footer-dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: normal;
    word-wrap: break-word;
    line-height: 1.5;
}

.footer-dropdown-menu li a:hover {
    background: rgba(255, 107, 53, 0.2);
    color: var(--primary-color);
    padding-left: 25px;
}

/* Small laptops / tablets landscape: keep horizontal nav from crowding or wrapping */
@media (max-width: 1100px) and (min-width: 769px) {
    .nav-list {
        gap: clamp(8px, 1.4vw, 16px);
    }

    .nav-link {
        font-size: clamp(13px, 1.05vw, 15px);
    }

    .header .social-icons {
        gap: 8px;
    }

    .header .social-link {
        width: 32px;
        height: 32px;
        font-size: 17px;
    }

    .logo-img {
        height: 40px;
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-list {
        gap: 20px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-number {
        font-size: 28px;
    }

    .about-grid,
    .about-intro-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-text {
        text-align: center;
    }

    .about-text h2 {
        text-align: center;
    }

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

    .contact-info {
        padding-right: 0;
    }

    .contact-info h2 {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .contact-info > p {
        font-size: 16px;
        margin-bottom: 35px;
    }

    .contact-details {
        margin-bottom: 35px;
    }

    .contact-item {
        padding: 18px;
        gap: 18px;
        margin-bottom: 20px;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .contact-text h3 {
        font-size: 18px;
    }

    .contact-text p {
        font-size: 15px;
    }

    .contact-social {
        margin-top: 25px;
    }

    .contact-social h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .social-links {
        gap: 12px;
    }

    .social-links a {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .contact-form-wrapper {
        padding: 40px 30px;
    }

    .page-header {
        padding: 70px 0;
        min-height: 350px;
    }

    .page-header h1 {
        font-size: 36px;
    }

    .page-header p {
        font-size: 18px;
    }

    .map-section {
        padding: 60px 0;
    }

    .service-detail-card {
        padding: 40px 30px;
    }

    .process-steps {
        flex-direction: column;
    }

    .process-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }

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

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablets (including iPad) – stack How We Work steps vertically and center them */
@media (max-width: 1024px) {
    .process-steps {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .process-step {
        flex: 1 1 100%;
        max-width: 360px;
        min-width: 0;
        margin: 0 auto;
    }

    .process-arrow {
        transform: rotate(90deg);
        margin: 6px 0 14px;
        order: initial;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 44px;
        min-height: 44px;
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
    }

    .nav.mobile-active {
        max-height: min(85vh, 760px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding: 12px 0 20px;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
    }

    .nav-list li {
        width: 100%;
    }

    .nav-link {
        padding: 15px 20px;
        display: block;
        border-bottom: 1px solid var(--border-color);
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        margin: 0;
        padding: 0;
    }

    .dropdown.mobile-dropdown-active .dropdown-menu {
        max-height: min(55vh, 420px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding: 10px 0;
    }

    .dropdown-menu a {
        padding-left: 40px;
    }

    .social-icons {
        display: none;
    }

    /* Hero: center text on small screens, keep image hidden */
    .hero .container {
        justify-content: center;
        text-align: center;
    }

    .hero-content {
        text-align: center;
    }

    .hero-illustration {
        display: none;
    }

    /* Stack service cards in a single column on small screens for better alignment */
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

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

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

    .section-description {
        font-size: 16px;
    }

    /* Process Section Responsive */
    .process-section {
        padding: 70px 0;
    }

    .section-header {
        margin-bottom: 50px;
    }

    .section-title {
        font-size: 32px;
    }

    /* Stack steps vertically and center them on tablets & mobiles */
    .process-steps {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .process-step {
        flex: 1 1 100%;
        max-width: 360px;
        min-width: 0;
        margin: 0 auto;
    }

    .process-arrow {
        transform: rotate(90deg);
        margin: 6px 0 14px;
        order: initial;
    }

    /* About Intro Responsive */
    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-intro-text .section-title {
        font-size: 28px;
        text-align: center;
    }

    .about-intro-text {
        text-align: center;
    }

    .about-intro-highlights {
        grid-template-columns: 1fr;
    }

    .about-intro-visual {
        justify-content: center;
        padding-top: 0;
    }

    .about-intro-image-wrapper {
        width: 100%;
    }

    .about-intro-image {
        max-width: 100%;
        border-radius: 12px;
    }

    .about-intro-logo-circle {
        width: 105px;
        height: 105px;
        top: 50%;
        left: 50%;
    }

    .about-intro-logo {
        width: 88%;
        height: 88%;
    }

    .about-intro-card {
        max-width: 100%;
    }

    /* About Page Responsive */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-text {
        text-align: center;
    }

    .about-text h2 {
        text-align: center;
    }

    .about-services-list li {
        font-size: 14px;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .mission-card,
    .vision-card {
        padding: 40px 30px;
    }

    .mission-icon,
    .vision-icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }

    /* Why Choose Us Responsive */
    .why-choose-us {
        padding: 70px 0;
    }

    .why-choose-content {
        max-width: 100%;
    }

    .why-choose-title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .why-choose-description {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .why-choose-features {
        gap: 28px;
    }

    .why-feature-item {
        gap: 18px;
    }

    .why-feature-icon {
        width: 56px;
        height: 56px;
        min-width: 56px;
        font-size: 22px;
    }

    .why-feature-content h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .why-feature-content p {
        font-size: 14px;
    }

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

    .cta-content p {
        font-size: 18px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .features-grid,
    .values-grid,
    .team-grid,
    .blogs-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

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

    .contact-section .container {
        padding: 0 15px;
    }

    .contact-grid {
        gap: 30px;
    }

    .contact-info h2 {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .contact-info > p {
        font-size: 15px;
        margin-bottom: 30px;
        line-height: 1.7;
    }

    .contact-details {
        margin-bottom: 30px;
    }

    .contact-item {
        padding: 15px;
        gap: 15px;
        margin-bottom: 18px;
        flex-direction: row;
        align-items: flex-start;
    }

    .contact-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        font-size: 18px;
        border-radius: 10px;
    }

    .contact-text h3 {
        font-size: 17px;
        margin-bottom: 6px;
    }

    .contact-text p {
        font-size: 14px;
        line-height: 1.5;
    }

    .contact-social {
        margin-top: 20px;
    }

    .contact-social h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .social-links {
        gap: 10px;
        flex-wrap: wrap;
    }

    .social-links a {
        width: 44px;
        height: 44px;
        font-size: 17px;
        border-radius: 10px;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

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

    .form-group label {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 15px;
    }

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

    .page-header {
        padding: 60px 0;
        min-height: 300px;
    }

    .page-header h1 {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .page-header p {
        font-size: 16px;
    }

    .map-section {
        padding: 40px 0;
    }

    .map-wrapper {
        border-radius: 8px;
    }

    /* Footer Bottom Responsive */
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-copyright {
        width: 100%;
    }

    .footer-links-powered {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .footer-legal-links {
        justify-content: center;
    }

    .footer-powered {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 18px;
    }

    .hero {
        min-height: 500px;
        padding: 60px 0;
    }

    .hero::after {
        left: -42%;
        bottom: -30%;
        width: 195%;
        height: 112%;
        opacity: 0.82;
    }

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

    .page-header {
        padding: 50px 0;
        min-height: 250px;
    }

    .page-header h1 {
        font-size: 26px;
        margin-bottom: 10px;
    }

    .page-header p {
        font-size: 14px;
    }

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

    .contact-section .container {
        padding: 0 15px;
    }

    .map-section .container {
        padding: 0 15px;
    }

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

    .contact-info > p {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .contact-item {
        padding: 12px;
        gap: 12px;
        margin-bottom: 15px;
    }

    .contact-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
        font-size: 16px;
    }

    .contact-text h3 {
        font-size: 16px;
    }

    .contact-text p {
        font-size: 13px;
    }

    .contact-form-wrapper {
        padding: 25px 18px;
    }

    .form-group label {
        font-size: 13px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 14px;
    }

    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .map-section {
        padding: 30px 0;
    }

    .google-map {
        height: 300px;
    }

    .service-detail-card {
        padding: 30px 20px;
    }

    .service-modal-content {
        padding: 30px 25px;
        width: 95%;
    }

    .service-modal-content h2 {
        font-size: 26px;
    }

    /* Service Detail Page Responsive */
    .service-hero-content {
        max-width: 100%;
        padding: 0 20px;
    }

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

    .service-hero-description {
        font-size: 16px;
    }

    .service-hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .service-hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-detail-reverse {
        direction: ltr;
    }

    .service-illustration-placeholder,
    .service-illustration-box {
        max-width: 100%;
        height: 300px;
        font-size: 80px;
    }

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

    .benefit-item {
        gap: 15px;
    }

    .benefit-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* Service Modal */
.service-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s;
}

.service-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-modal-content {
    background-color: var(--white);
    margin: auto;
    padding: 40px;
    border-radius: 12px;
    width: 90%;
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.3s;
}

.service-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: var(--text-light);
    font-size: 32px;
    font-weight: 300;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s;
}

.service-modal-close:hover {
    color: var(--primary-color);
}

.service-modal-content h2 {
    color: var(--secondary-color);
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-modal-content h3 {
    color: var(--primary-color);
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-modal-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 16px;
}

.service-modal-content ul {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
    padding-left: 25px;
}

.service-modal-content ul li {
    margin-bottom: 10px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Service Detail Page Styles */
.service-hero {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #F5F7FA 0%, #E8ECF1 100%);
}

.ppc-service-hero {
    position: relative;
    overflow: hidden;
}

.ppc-service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        /* Teal overlay same as index hero */
        linear-gradient(rgba(0, 120, 140, 0.78), rgba(0, 120, 140, 0.78)),
        /* Cloudinary image (primary) */
        url('https://res.cloudinary.com/dmkufygnc/image/upload/v1767856125/e8120fac9135bd5ebda23e719ebe2917_wvj3k9.jpg') center/cover no-repeat,
        /* Local fallback image */
        url('../images/ppc-hero-banner.jpg') center/cover no-repeat;
    z-index: 0;
}

.ppc-service-hero .container {
    position: relative;
    z-index: 1;
}

.ppc-service-hero .service-hero-text h1,
.ppc-service-hero .service-hero-description,
.ppc-service-hero .service-badge {
    color: var(--white);
}

.ppc-service-hero .service-badge {
    background: var(--primary-color);
}

.seo-service-hero {
    position: relative;
    overflow: hidden;
}

.seo-service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        /* Teal overlay same as index hero */
        linear-gradient(rgba(0, 120, 140, 0.78), rgba(0, 120, 140, 0.78)),
        /* Cloudinary image (primary) */
        url('https://res.cloudinary.com/dmkufygnc/image/upload/v1767857260/385029fb24de917d06d6757a13f60781_ka80de.jpg') center/cover no-repeat,
        /* Local fallback image */
        url('../images/seo-hero-banner.jpg') center/cover no-repeat;
    z-index: 0;
}

.seo-service-hero .container {
    position: relative;
    z-index: 1;
}

.seo-service-hero .service-hero-text h1,
.seo-service-hero .service-hero-description,
.seo-service-hero .service-badge {
    color: var(--white);
}

.seo-service-hero .service-badge {
    background: var(--primary-color);
}

.email-service-hero {
    position: relative;
    overflow: hidden;
}

.email-service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        /* Teal overlay same as index hero */
        linear-gradient(rgba(0, 120, 140, 0.78), rgba(0, 120, 140, 0.78)),
        /* Cloudinary image (primary) */
        url('https://res.cloudinary.com/dmkufygnc/image/upload/v1767858513/a4820400-0577-4a5d-990c-48c057782a26_fgbyly.png') center/cover no-repeat,
        /* Local fallback image */
        url('../images/email-hero-banner.png') center/cover no-repeat;
    z-index: 0;
}

.email-service-hero .container {
    position: relative;
    z-index: 1;
}

.email-service-hero .service-hero-text h1,
.email-service-hero .service-hero-description,
.email-service-hero .service-badge {
    color: var(--white);
}

.email-service-hero .service-badge {
    background: var(--primary-color);
}

/* Keep transparent email illustration without card-like box styling */
#what-is-email .service-detail-grid {
    align-items: stretch;
}

#what-is-email .service-detail-illustration {
    align-items: flex-start;
}

#what-is-email .service-detail-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    transform: translateY(-14px);
}

.content-service-hero {
    position: relative;
    overflow: hidden;
}

.content-service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        /* Teal overlay same as index hero */
        linear-gradient(rgba(0, 120, 140, 0.78), rgba(0, 120, 140, 0.78)),
        /* Cloudinary image (primary) */
        url('https://res.cloudinary.com/dmkufygnc/image/upload/v1767863723/f952aefb-5a1b-491c-8a68-a30787250278_bwfrcs.png') center/cover no-repeat,
        /* Local fallback image */
        url('../images/content-hero-banner.png') center/cover no-repeat;
    z-index: 0;
}

.content-service-hero .container {
    position: relative;
    z-index: 1;
}

.content-service-hero .service-hero-text h1,
.content-service-hero .service-hero-description,
.content-service-hero .service-badge {
    color: var(--white);
}

.content-service-hero .service-badge {
    background: var(--primary-color);
}

.smm-service-hero {
    position: relative;
    overflow: hidden;
}

.smm-service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        /* Teal overlay same as index hero */
        linear-gradient(rgba(0, 120, 140, 0.78), rgba(0, 120, 140, 0.78)),
        /* Cloudinary image (primary) */
        url('https://res.cloudinary.com/dmkufygnc/image/upload/v1767864547/c20ea4cd-0475-4326-af22-b0b8350130fd_yonmu2.png') center 20%/cover no-repeat,
        /* Local fallback image */
        url('../images/smm-hero-banner.png') center 20%/cover no-repeat;
    z-index: 0;
}

.smm-service-hero .container {
    position: relative;
    z-index: 1;
}

.smm-service-hero .service-hero-text h1,
.smm-service-hero .service-hero-description,
.smm-service-hero .service-badge {
    color: var(--white);
}

.smm-service-hero .service-badge {
    background: var(--primary-color);
}

.webdev-service-hero {
    position: relative;
    overflow: hidden;
}

.webdev-service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        /* Teal overlay same as index hero */
        linear-gradient(rgba(0, 120, 140, 0.78), rgba(0, 120, 140, 0.78)),
        /* Cloudinary image (primary) */
        url('https://res.cloudinary.com/dmkufygnc/image/upload/v1768020384/a2403b6f-5aaa-4108-b6c0-3e9f68870b02_h6fa6y.png') center/cover no-repeat,
        /* Local fallback image */
        url('../images/webdev-hero-banner.png') center/cover no-repeat;
    z-index: 0;
}

.webdev-service-hero .container {
    position: relative;
    z-index: 1;
}

.webdev-service-hero .service-hero-text h1,
.webdev-service-hero .service-hero-description,
.webdev-service-hero .service-badge {
    color: var(--white);
}

.webdev-service-hero .service-badge {
    background: var(--primary-color);
}

.service-hero-content {
    display: block;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.service-hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.service-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary-color);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.service-hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
    line-height: 1.2;
    text-align: center;
}

.service-hero-description {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.service-hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.service-hero-illustration {
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-illustration-placeholder {
    width: 100%;
    max-width: 500px;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-color), #FF8C5A);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 120px;
    color: var(--white);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
}

.service-detail-section {
    padding: 90px 0;
    background: var(--white);
}

.service-detail-section.service-detail-alt {
    background: var(--bg-light);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

.service-detail-grid > * {
    min-width: 0;
}

/* Grid layouts: span full column width (do not shrink like card-style max-width:center) */
.service-detail-grid > .service-detail-content,
.service-detail-grid > .service-detail-illustration {
    width: 100%;
    max-width: none;
    margin: 0;
    box-sizing: border-box;
}

/* Service sections: centered header above the grid */
.service-detail-section-header {
    text-align: center;
    margin: 0 auto 34px;
    max-width: 900px;
}

.service-detail-section-header .section-badge {
    display: inline-flex;
    justify-content: center;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.service-detail-section-header .section-title {
    margin-top: 14px;
}

#what-is-webdev .service-detail-section-header .section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 16px;
}

#what-is-webdev .service-detail-section-header .section-title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 130px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(
        90deg,
        rgba(255, 107, 53, 0.2) 0%,
        var(--primary-color) 45%,
        rgba(255, 107, 53, 0.2) 100%
    );
}

#what-is-social .service-detail-section-header .section-badge {
    display: block;
}

#what-is-social .service-detail-section-header .section-title {
    position: relative;
    display: block;
    width: fit-content;
    margin: 14px auto 0;
    padding-bottom: 16px;
}

#what-is-social .service-detail-section-header .section-title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 130px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(
        90deg,
        rgba(255, 107, 53, 0.2) 0%,
        var(--primary-color) 45%,
        rgba(255, 107, 53, 0.2) 100%
    );
}

.service-detail-reverse {
    direction: rtl;
}

.service-detail-reverse > * {
    direction: ltr;
}

.service-detail-illustration {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    min-width: 0;
    height: 100%;
}

.service-illustration-box {
    width: 100%;
    max-width: 450px;
    height: 350px;
    background: linear-gradient(135deg, var(--primary-color), #FF8C5A);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.15);
}

.service-detail-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    object-fit: contain;
    display: block;
}

#what-is-content .service-detail-image {
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    filter: none;
}

#what-is-social .service-detail-image {
    background: transparent;
    mix-blend-mode: multiply;
}

/* Content service benefits video crop adjustment */
.content-benefits-video {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    object-position: top center;
}

/* Comprehensive Responsive Styles for Service Pages */
@media (max-width: 1200px) {
    .service-hero {
        padding: 80px 0 60px;
    }
    
    .service-detail-section {
        padding: 70px 0;
    }
    
    .service-detail-grid {
        gap: 50px;
    }
}

@media (max-width: 968px) {
    /* Service Hero Responsive */
    .service-hero {
        padding: 70px 0 50px;
    }
    
    .service-hero-content {
        padding: 0 20px;
    }
    
    .service-hero-text h1 {
        font-size: 36px;
    }
    
    .service-hero-description {
        font-size: 17px;
    }
    
    .service-hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .service-hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    /* Service Detail Grid Responsive */
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-detail-reverse {
        direction: ltr;
    }
    
    .service-detail-section {
        padding: 60px 0;
    }
    
    .service-detail-content {
        text-align: center;
    }
    
    .service-detail-illustration {
        height: auto;
        min-height: 0;
    }
    
    .service-detail-image {
        max-width: 100%;
        height: auto;
    }
    
    .service-illustration-box {
        max-width: 100%;
        height: 300px;
        font-size: 80px;
    }
    
    /* Service Benefits Responsive */
    .service-benefits-list {
        gap: 20px;
        align-items: stretch;
        width: 100%;
    }
    
    .benefit-item {
        gap: 15px;
        flex-direction: column;
        text-align: center;
        width: 100%;
        max-width: none;
        box-sizing: border-box;
    }
    
    .benefit-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 20px;
        margin: 0 auto;
    }
    
    .benefit-content h3 {
        font-size: 18px;
    }
    
    .benefit-content p {
        font-size: 14px;
    }
    
    /* Service Process Responsive */
    .seo-process-steps {
        gap: 18px;
        margin-top: 35px;
        width: 100%;
    }
    
    .seo-process-step {
        padding: 20px;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }
    
    .process-step-number {
        margin: 0 auto 12px;
    }
    
    .process-step-content h3 {
        font-size: 17px;
    }
    
    .process-step-content p {
        font-size: 14px;
    }
    
    /* SEO Types Responsive */
    .seo-types-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .seo-type-item {
        padding: 25px;
    }
    
    .seo-type-image {
        max-height: 350px;
    }
    
    .seo-type-title {
        font-size: 22px;
    }
    
    .seo-type-elements {
        grid-template-columns: 1fr;
    }
    
    /* SEO Business Growth Responsive */
    .seo-business-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .seo-illustration-box {
        height: 300px;
        font-size: 100px;
    }
    
    /* Content Creation Responsive */
    .content-creation-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Why Choose Section Responsive */
    .why-choose-seo-content,
    .why-choose-content {
        text-align: center;
    }
    
    .seo-services-checklist {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    /* Service Hero Mobile */
    .service-hero {
        padding: 60px 0 40px;
    }
    
    .service-hero-text h1 {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .service-hero-description {
        font-size: 15px;
    }
    
    .service-badge {
        font-size: 13px;
        padding: 8px 16px;
    }
    
    /* Service Detail Mobile */
    .service-detail-section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .section-badge {
        font-size: 12px;
        padding: 6px 14px;
    }
    
    .service-detail-text p {
        font-size: 15px;
        margin-bottom: 15px;
    }
    
    .service-detail-image {
        min-height: 0;
        max-height: none;
    }
    
    .service-illustration-box {
        height: auto;
        font-size: 60px;
    }
    
    /* Service Benefits Mobile */
    .service-benefits-list {
        gap: 18px;
        margin-top: 25px;
    }
    
    .benefit-item {
        padding: 15px;
        background: var(--bg-light);
        border-radius: 8px;
    }
    
    .benefit-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
        font-size: 18px;
    }
    
    .benefit-content h3 {
        font-size: 16px;
        margin-bottom: 6px;
    }
    
    .benefit-content p {
        font-size: 13px;
    }
    
    /* Service Process Mobile */
    .seo-process-content {
        padding: 0 15px;
    }
    
    .seo-process-steps {
        gap: 18px;
        margin-top: 30px;
        width: 100%;
    }
    
    .seo-process-step {
        padding: 18px;
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }
    
    .process-step-number {
        width: 45px;
        height: 45px;
        min-width: 45px;
        font-size: 20px;
    }
    
    .process-step-content h3 {
        font-size: 16px;
    }
    
    .process-step-content p {
        font-size: 13px;
    }
    
    /* SEO Types Mobile */
    .seo-type-card {
        padding: 20px;
    }
    
    .seo-type-header h3 {
        font-size: 20px;
    }
    
    .seo-element {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    /* SEO Business Growth Mobile */
    .seo-business-growth-section {
        padding: 60px 0;
    }
    
    .seo-illustration-box {
        height: 250px;
        font-size: 80px;
    }
    
    .seo-business-content p {
        font-size: 15px;
    }
    
    .seo-cta-box {
        padding: 15px 20px;
    }
    
    .seo-cta-box p {
        font-size: 16px;
    }
    
    /* Content Strategy Mobile */
    .content-strategy-item {
        padding: 12px 15px;
        gap: 12px;
    }
    
    .content-strategy-item i {
        font-size: 16px;
    }
    
    .content-strategy-item span {
        font-size: 14px;
    }
    
    /* Content Creation Mobile */
    .content-creation-section {
        padding: 60px 0;
    }
    
    .content-creation-item {
        padding-bottom: 20px;
    }
    
    .content-item-circle {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .content-item-line {
        height: 25px;
    }
    
    .content-creation-item h3 {
        font-size: 14px;
    }
    
    /* Team Leadership Mobile - already handled in main responsive section above */
    
    /* SMM Dual Images Mobile */
    .smm-dual-images-container {
        max-width: 100%;
        height: 500px;
        min-height: 500px;
        padding: 20px;
        overflow: visible;
    }
    
    .smm-dual-image {
        width: 240px;
        height: 300px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }
    
    .smm-image-1 {
        top: 10px;
        left: 50%;
        transform: translateX(-60%) rotate(-6deg);
    }
    
    .smm-image-2 {
        top: 180px;
        right: 50%;
        transform: translateX(60%) rotate(8deg);
    }
    
    .smm-dual-images-container:hover .smm-image-1 {
        transform: translateX(-60%) rotate(-5deg) translateY(-10px) scale(1.05);
    }
    
    .smm-dual-images-container:hover .smm-image-2 {
        transform: translateX(60%) rotate(7deg) translateY(-10px) scale(1.05);
    }
}

/* Tablet (iPad Mini and smaller tablets) - vertical layout */
@media (max-width: 1200px) and (min-width: 768px) and (max-width: 834px) {
    .service-benefits-list {
        align-items: stretch;
        width: 100%;
    }

    .benefit-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        max-width: none;
        width: 100%;
        min-height: 160px;
        justify-content: center;
        box-sizing: border-box;
    }

    .benefit-content {
        text-align: center;
        width: 100%;
        max-width: none;
    }
}

/* iPad Pro (835px - 1024px) - maintain horizontal layout like laptop */
@media (min-width: 835px) and (max-width: 1024px) {
    .team-leadership-section {
        padding: 80px 0;
    }

    .team-leadership-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
        padding: 0 30px;
    }

    .team-leadership-member {
        padding: 35px 25px;
    }

    .team-member-image {
        max-width: 100%;
    }

    .service-benefits-list {
        align-items: flex-start;
        gap: 25px;
    }

    .benefit-item {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: 20px;
        max-width: 100%;
        width: 100%;
        min-height: 140px;
        box-sizing: border-box;
    }

    .benefit-icon {
        width: 60px;
        height: 60px;
        min-width: 60px;
        flex-shrink: 0;
    }

    .benefit-content {
        text-align: left;
        flex: 1;
    }

    .benefit-content h3 {
        color: var(--secondary-color);
        font-size: 20px;
        margin-bottom: 8px;
    }
}

/* iPad Pro 12.9" and larger tablets (1025px - 1366px) - maintain horizontal layout */
@media (min-width: 1025px) and (max-width: 1366px) {
    .team-leadership-grid {
        gap: 50px;
        padding: 0 40px;
    }

    .service-benefits-list {
        align-items: flex-start;
        gap: 25px;
    }

    .benefit-item {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: 20px;
    }

    .benefit-content {
        text-align: left;
    }
}

@media (max-width: 480px) {
    /* Extra Small Devices */
    .service-hero {
        padding: 50px 0 30px;
    }
    
    .service-hero-text h1 {
        font-size: 24px;
    }
    
    .service-hero-description {
        font-size: 14px;
    }
    
    .service-detail-section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .service-detail-text p {
        font-size: 14px;
    }
    
    .service-detail-image {
        min-height: 0;
        max-height: none;
    }
    
    /* SMM Dual Images Extra Small Mobile */
    .smm-dual-images-container {
        height: 450px;
        min-height: 450px;
        padding: 15px;
    }
    
    .smm-dual-image {
        width: 200px;
        height: 250px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
        border-width: 3px;
    }
    
    .smm-image-1 {
        top: 5px;
        left: 50%;
        transform: translateX(-65%) rotate(-5deg);
    }
    
    .smm-image-2 {
        top: 150px;
        right: 50%;
        transform: translateX(65%) rotate(7deg);
    }
    
    .smm-dual-images-container:hover .smm-image-1 {
        transform: translateX(-65%) rotate(-4deg) translateY(-8px) scale(1.03);
    }
    
    .smm-dual-images-container:hover .smm-image-2 {
        transform: translateX(65%) rotate(6deg) translateY(-8px) scale(1.03);
    }
    
    .benefit-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 16px;
    }
    
    .process-step-number {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 18px;
    }
}

/* SMM Dual Images Container - Unique Overlapping Style */
.service-detail-illustration {
    overflow: visible;
}

.smm-dual-images-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 550px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.smm-dual-image {
    position: absolute;
    width: 300px;
    height: 380px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease, z-index 0.4s ease, box-shadow 0.4s ease;
}

.smm-image-1 {
    top: 20px;
    left: 0;
    z-index: 2;
    border: 4px solid var(--white);
    transform: rotate(-6deg);
}

.smm-image-2 {
    top: 210px;
    right: 0;
    z-index: 1;
    border: 4px solid var(--primary-color);
    transform: rotate(8deg);
}

.smm-dual-images-container:hover .smm-image-1 {
    transform: rotate(-5deg) translateY(-10px) scale(1.05);
    z-index: 3;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.smm-dual-images-container:hover .smm-image-2 {
    transform: rotate(7deg) translateY(-10px) scale(1.05);
    z-index: 2;
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.4);
}

.service-detail-content {
    padding: 20px 0;
}

.service-detail-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

.service-detail-text p strong {
    color: var(--secondary-color);
    font-weight: 600;
}

.service-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
    width: 100%;
    max-width: 100%;
    align-items: stretch;
    box-sizing: border-box;
}

.benefit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.benefit-content {
    flex: 1;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, var(--primary-color), #FF8C5A);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.2);
}

.benefit-content h3 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 8px;
    font-weight: 700;
}

.benefit-content p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 15px;
    margin: 0;
}

.service-features-section {
    padding: 90px 0;
    background: var(--white);
}

.service-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-feature-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.service-feature-card .feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #FF8C5A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.25);
    transition: all 0.3s ease;
}

.service-feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.35);
}

.service-feature-card h3 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 12px;
    font-weight: 700;
}

.service-feature-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 15px;
    margin: 0;
}

/* FAQ Section */
.faq-section {
    padding: 90px 0;
    background: var(--white);
}

.faq-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.faq-main-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0 0 20px 0;
    line-height: 1.3;
    position: relative;
    display: inline-block;
}

.faq-main-title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -12px;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 107, 53, 0.25) 0%, var(--primary-color) 40%, rgba(255, 107, 53, 0.25) 100%);
}

.faq-title-highlight {
    color: var(--secondary-color);
    position: relative;
}

.faq-title-highlight::after {
    content: none;
}

.faq-list-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.12);
    margin-bottom: 15px;
}

.faq-item:hover {
    border-color: rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.faq-item.active {
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 3px 12px rgba(255, 107, 53, 0.15);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--white);
}

.faq-question:hover {
    background: rgba(0, 0, 0, 0.02);
}

.faq-item.active .faq-question {
    background: rgba(255, 107, 53, 0.04);
}

.faq-question h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 0;
    flex: 1;
    padding-right: 25px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.faq-q {
    color: var(--secondary-color);
    font-weight: 600;
    flex-shrink: 0;
}

.faq-question i {
    color: var(--text-light);
    font-size: 12px;
    transition: transform 0.4s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.faq-answer {
    padding: 0 25px;
    color: var(--text-light);
    line-height: 1.7;
    font-size: 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: var(--white);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-top: 15px;
    padding-bottom: 20px;
}

.faq-answer p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.75;
}


@media (max-width: 768px) {
    .faq-section {
        padding: 80px 0;
    }
    
    .faq-main-title {
        font-size: 32px;
    }
    
    .faq-list-wrapper {
        max-width: 100%;
    }
    
    .faq-question {
        padding: 18px 20px;
    }
    
    .faq-question h3 {
        font-size: 15px;
    }
    
    .faq-answer {
        padding: 0 20px;
        font-size: 14px;
    }
    
    .faq-item.active .faq-answer {
        padding-top: 15px;
        padding-bottom: 18px;
    }
}

/* Why Digital Marketing Section */
.why-digital-marketing {
    padding: 90px 0;
    background: var(--bg-light);
}

.why-dm-header {
    text-align: center;
    margin-bottom: 40px;
}

.why-dm-header .section-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.why-dm-header .section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0;
    line-height: 1.2;
    position: relative;
    padding-bottom: 14px;
}

.why-dm-header .section-title::after {
    content: "";
    width: 130px;
    height: 4px;
    background: #f28a64;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    border-radius: 2px;
}

.why-dm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: start;
}

.why-dm-content {
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.why-dm-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.why-dm-benefit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.why-dm-benefit-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, var(--primary-color), #FF8C5A);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.2);
    flex-shrink: 0;
}

.why-dm-benefit-text h3 {
    font-size: 22px;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.why-dm-benefit-text p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 16px;
    margin: 0;
}

.why-dm-image {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: sticky;
    top: 100px;
    margin-top: 20px;
}

.why-dm-image-placeholder {
    width: 100%;
    max-width: 500px;
    height: 500px;
    background: linear-gradient(135deg, var(--primary-color), #FF8C5A);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 120px;
    color: var(--white);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
}

.why-dm-image-content {
    width: 100%;
    max-width: 500px;
    height: auto;
    max-height: none;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.88);
    box-shadow:
        inset 1px 1px 0 rgba(255, 255, 255, 0.9),
        inset -1px -1px 0 rgba(12, 38, 74, 0.14),
        0 10px 24px rgba(12, 38, 74, 0.14);
    object-fit: cover;
    object-position: center center;
    filter: contrast(1.02) saturate(1.01);
    display: block;
}

@media (max-width: 968px) {
    .why-dm-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .why-dm-image-placeholder {
        max-width: 100%;
        height: 400px;
    }
    
    .why-dm-image-content {
        max-width: 100%;
    }

    .why-dm-image {
        margin-top: 0;
        position: static;
        top: auto;
    }
}

@media (max-width: 768px) {
    .why-digital-marketing {
        padding: 80px 0;
    }
    
    .why-dm-header .section-title {
        font-size: 32px;
    }
    
    .why-dm-benefits-list {
        gap: 25px;
    }
    
    .why-dm-benefit-item {
        gap: 18px;
    }
    
    .why-dm-benefit-icon {
        width: 56px;
        height: 56px;
        font-size: 22px;
    }
    
    .why-dm-benefit-text h3 {
        font-size: 20px;
    }
    
    .why-dm-benefit-text p {
        font-size: 15px;
    }
    
    .why-dm-image-placeholder {
        height: 350px;
        font-size: 100px;
    }
}

/* Why Choose Srivedha for SEO Section */
.why-choose-seo-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.why-choose-seo-content .section-title,
.seo-process-content .section-title {
    position: relative;
    display: block;
    width: fit-content;
    margin: 0 auto 16px;
    padding-bottom: 14px;
}

.why-choose-seo-content .section-title::after,
.seo-process-content .section-title::after {
    content: "";
    width: 130px;
    height: 4px;
    background: #f28a64;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    border-radius: 2px;
}

.why-choose-seo-text {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 17px;
    margin-bottom: 40px;
}

.seo-services-checklist {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: 20px;
    margin-top: 40px;
}

.seo-service-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: var(--bg-light);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.seo-service-item:hover {
    background: rgba(255, 107, 53, 0.05);
    transform: translateX(5px);
}

.seo-service-item i {
    color: var(--primary-color);
    font-size: 20px;
    flex-shrink: 0;
}

.seo-service-item span {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 15px;
}

/* SEO Process Section */
.seo-process-content {
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 0;
}

.seo-process-content .section-title {
    text-align: center;
}

.seo-process-steps {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 20px;
    width: 100%;
}

/* iPad Mini / small tablets – refine SEO process alignment */
@media (min-width: 768px) and (max-width: 834px) {
    .seo-process-content {
        max-width: 800px;
        margin: 0 auto;
        padding: 0 30px;
        text-align: center;
    }

    .seo-process-steps {
        gap: 18px;
    }

    .seo-process-step {
        width: 100%;
        max-width: none;
        margin: 0;
        flex-direction: column;
        text-align: center;
    }

    .process-step-number {
        margin: 0 auto 12px;
    }
}

.seo-process-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    background: var(--bg-light);
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.seo-process-step:hover {
    border-color: rgba(255, 107, 53, 0.2);
    background: var(--white);
}

.process-step-number {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    flex-shrink: 0;
}

.process-step-content {
    flex: 1;
    min-width: 0;
}

.process-step-content h3 {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 6px;
    font-weight: 600;
}

.process-step-content p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 15px;
    margin: 0;
}

/* SEO Types Section */
.seo-types-section {
    padding: 0 0 90px 0;
    background: var(--bg-light);
    margin-top: -70px;
}

.seo-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.seo-type-item {
    text-align: center;
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.seo-type-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.seo-type-image {
    width: 100%;
    height: auto;
    max-height: 400px;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: contain;
    display: block;
}

.seo-type-title {
    font-size: 24px;
    color: var(--secondary-color);
    font-weight: 700;
    margin: 0;
    padding-top: 15px;
    border-top: 2px solid var(--primary-color);
}

.seo-type-card {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.seo-type-card:hover {
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.seo-type-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
}

.seo-type-header h3 {
    font-size: 24px;
    color: var(--secondary-color);
    font-weight: 700;
    margin: 0;
}

.seo-type-elements {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.seo-element {
    padding: 12px 15px;
    background: var(--bg-light);
    border-radius: 6px;
    text-align: center;
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.seo-element:hover {
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary-color);
    transform: scale(1.05);
}

/* SEO Growth Section */
.seo-growth-section {
    padding: 60px 0;
    background: var(--white);
    text-align: center;
}

.seo-growth-text {
    max-width: 900px;
    margin: 0 auto;
    color: var(--secondary-color);
    font-size: 18px;
    line-height: 1.8;
    font-weight: 500;
}

/* SEO Business Growth Section */
.seo-business-growth-section {
    padding: 90px 0;
    background: var(--bg-light);
}

.seo-business-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.seo-business-illustration {
    display: flex;
    align-items: center;
    justify-content: center;
}

.seo-illustration-box {
    width: 100%;
    max-width: 450px;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-color), #FF8C5A);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 120px;
    color: var(--white);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
}

.seo-business-content p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 20px;
}

.seo-cta-box {
    margin-top: 30px;
    padding: 20px 30px;
    background: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    text-align: center;
}

.seo-cta-box p {
    color: var(--secondary-color);
    font-size: 18px;
    font-weight: 600;
    font-style: italic;
    margin: 0;
}

@media (max-width: 968px) {
    .seo-business-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .seo-types-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .seo-type-item {
        padding: 20px;
    }
    
    .seo-type-image {
        max-height: 300px;
    }
    
    .seo-type-title {
        font-size: 20px;
        padding-top: 12px;
    }
    
    .seo-process-steps {
        width: 100%;
    }

    .seo-process-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }
    
    .process-step-number {
        margin: 0 auto 12px;
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    .seo-process-step .process-step-content {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .seo-services-checklist {
        grid-template-columns: 1fr;
    }
    
    .seo-type-elements {
        grid-template-columns: 1fr;
    }
    
    .seo-illustration-box {
        height: 300px;
        font-size: 100px;
    }
}

/* What We Do in Content Marketing Section */
.content-what-we-do {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.content-what-we-do .section-title,
.content-creation-section .section-title {
    position: relative;
    display: block;
    width: fit-content;
    margin: 0 auto 16px;
    padding-bottom: 14px;
}

.content-what-we-do .section-title::after,
.content-creation-section .section-title::after {
    content: "";
    width: 130px;
    height: 4px;
    background: #f28a64;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    border-radius: 2px;
}

.content-intro-text {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 17px;
    margin-bottom: 40px;
}

.content-strategy-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.content-strategy-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 25px;
    background: var(--bg-light);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.content-strategy-item:hover {
    background: rgba(255, 107, 53, 0.05);
    transform: translateX(5px);
}

.content-strategy-item i {
    color: var(--primary-color);
    font-size: 18px;
    flex-shrink: 0;
}

.content-strategy-item span {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 16px;
}

/* Content Creation Section */
.content-creation-section {
    padding: 90px 0;
    background: var(--bg-light);
}

.content-creation-section .container {
    text-align: center;
}

.content-creation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-top: 50px;
}

.content-creation-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.content-creation-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 100%;
    padding-bottom: 30px;
}

.content-creation-item:last-child {
    padding-bottom: 0;
}

.content-item-circle {
    width: 50px;
    height: 50px;
    background: rgba(255, 107, 53, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 20px;
    position: relative;
    z-index: 2;
    border: 2px solid var(--primary-color);
}

.content-item-line {
    width: 2px;
    height: 40px;
    background: repeating-linear-gradient(
        to bottom,
        var(--primary-color) 0,
        var(--primary-color) 5px,
        transparent 5px,
        transparent 10px
    );
    margin: 10px 0;
    opacity: 0.4;
}

.content-creation-item h3 {
    font-size: 16px;
    color: var(--secondary-color);
    font-weight: 600;
    margin: 10px 0 0 0;
    text-align: center;
}

@media (max-width: 968px) {
    .content-creation-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .content-creation-item {
        padding-bottom: 25px;
    }
    
    .content-item-line {
        height: 30px;
    }
}

@media (max-width: 768px) {
    .content-strategy-item {
        padding: 15px 20px;
    }
    
    .content-strategy-item span {
        font-size: 15px;
    }
}

/* ============================================
   PROFESSIONAL ANIMATIONS & EFFECTS
   ============================================ */

/* Smooth Animation Keyframes - Different Effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-5deg) scale(0.95);
    }
    to {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Image Animation Enhancements - Different Effects for Each */
/* About Image - Slide in from right with zoom */
.about-image-content {
    opacity: 0;
    transform: translateX(40px) scale(0.95);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
                filter 0.5s ease, 
                box-shadow 0.5s ease,
                opacity 0.8s ease;
    will-change: transform, opacity;
}

.about-image-content.revealed {
    opacity: 1;
    transform: translateX(0) scale(1);
    animation: slideInRight 0.8s ease forwards;
}

.about-image-content:hover {
    transform: translateX(0) scale(1.05);
    filter: brightness(1.08);
    box-shadow: none;
}

/* Service Detail Images - Zoom in effect */
.service-detail-image {
    opacity: 0;
    transform: scale(0.9);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
                filter 0.5s ease, 
                box-shadow 0.5s ease,
                opacity 0.6s ease;
    will-change: transform, opacity;
}

.service-detail-image.revealed {
    opacity: 1;
    transform: scale(1);
    animation: zoomIn 0.6s ease forwards;
}

.service-detail-image:hover {
    transform: scale(1.04);
    filter: brightness(1.06);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Why DM Image - Slide in from left */
.why-dm-image-content {
    opacity: 0;
    transform: translateX(-40px) scale(0.96);
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1), 
                filter 0.5s ease, 
                box-shadow 0.5s ease,
                opacity 0.7s ease;
    will-change: transform, opacity;
}

.why-dm-image-content.revealed {
    opacity: 1;
    transform: translateX(0) scale(1);
    animation: slideInLeft 0.7s ease forwards;
}

.why-dm-image-content:hover {
    transform: translateX(0) scale(1.03);
    filter: contrast(1.03) saturate(1.03);
    box-shadow:
        inset 1px 1px 0 rgba(255, 255, 255, 0.94),
        inset -1px -1px 0 rgba(12, 38, 74, 0.18),
        0 14px 30px rgba(12, 38, 74, 0.2);
}

/* Image Container Animations - Different Effects */
.about-intro-image-wrapper {
    opacity: 0;
    transform: translateX(30px);
    transition: transform 0.6s ease, opacity 0.6s ease;
    will-change: transform, opacity;
}

.about-intro-image-wrapper.revealed {
    opacity: 1;
    transform: translateX(0);
    animation: slideInRight 0.6s ease forwards;
}

.service-detail-illustration {
    opacity: 0;
    transform: scale(0.95);
    transition: transform 0.6s ease, opacity 0.6s ease;
    will-change: transform, opacity;
}

.service-detail-illustration.revealed {
    opacity: 1;
    transform: scale(1);
    animation: zoomIn 0.6s ease forwards;
}

.why-dm-image {
    opacity: 0;
    transform: translateX(-30px);
    transition: transform 0.6s ease, opacity 0.6s ease;
    will-change: transform, opacity;
}

.why-dm-image.revealed {
    opacity: 1;
    transform: translateX(0);
    animation: slideInLeft 0.6s ease forwards;
}

/* Service Card Animation Enhancements */
.service-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(12, 36, 65, 0.08);
    border-radius: 10px;
    opacity: 0;
    animation: fadeInUp 0.7s ease forwards;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                box-shadow 0.4s ease,
                border-color 0.4s ease;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -60%;
    width: 45%;
    height: 180%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transform: rotate(15deg);
    transition: left 0.6s ease;
    pointer-events: none;
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 10px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.65), rgba(0, 120, 140, 0.35));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0.35;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service-card:nth-child(1) { animation-delay: 0.05s; }
.service-card:nth-child(2) { animation-delay: 0.15s; }
.service-card:nth-child(3) { animation-delay: 0.25s; }
.service-card:nth-child(4) { animation-delay: 0.35s; }
.service-card:nth-child(5) { animation-delay: 0.45s; }
.service-card:nth-child(6) { animation-delay: 0.55s; }

.service-card:hover {
    transform: translateY(-10px) scale(1.01);
    border-color: rgba(255, 107, 53, 0.35);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.14), 0 0 0 3px rgba(255, 107, 53, 0.09);
}

.service-card:hover::before {
    left: 125%;
}

.service-card:hover::after {
    opacity: 0.95;
}

.service-icon {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-icon img {
    transition: transform 0.4s ease, filter 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card:hover .service-icon img {
    transform: translateY(-3px);
    filter: drop-shadow(0 10px 14px rgba(0, 0, 0, 0.18));
}

/* Flat card: no outer box — artwork often already includes its own panel */
.service-card.service-card-flat {
    background: transparent;
    border: none;
    box-shadow: none;
}

.service-card.service-card-flat::before,
.service-card.service-card-flat::after {
    display: none;
}

.service-card.service-card-flat:hover {
    transform: translateY(-8px);
    box-shadow: none;
    border-color: transparent;
}

.service-card.service-card-flat:hover .service-icon {
    transform: none;
}

.service-card.service-card-flat:hover .service-icon img {
    transform: translateY(-2px);
    filter: none;
}

/* Text Animation Classes */
.section-title,
.section-badge,
.hero-title,
.hero-subtitle,
.hero-description {
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Staggered List Animations */
.why-dm-benefit-item,
.benefit-item,
.why-feature-item,
.process-step {
    transition: transform 0.4s ease, 
                box-shadow 0.4s ease,
                opacity 0.6s ease;
}

.why-dm-benefit-item:hover,
.benefit-item:hover,
.why-feature-item:hover,
.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Keep Why Digital Marketing list clean: no hover card box */
.why-dm-benefit-item:hover {
    transform: none;
    box-shadow: none;
}

/* Keep service benefits list static: no hover box effect */
.service-benefits-list .benefit-item:hover {
    transform: none;
    box-shadow: none;
}

@media (prefers-reduced-motion: reduce) {
    .service-card {
        opacity: 1;
        animation: none;
    }

    .service-card::before,
    .service-card::after,
    .service-icon,
    .service-icon img {
        transition: none;
    }
}

/* Button Enhancement */
.btn {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, 
                box-shadow 0.3s ease;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    pointer-events: none;
}

.btn:hover::after {
    width: 300px;
    height: 300px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

/* Scroll Reveal Classes - Different Effects */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    will-change: transform, opacity;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Different reveal effects for variety */
.scroll-reveal-fade {
    opacity: 0;
    transition: opacity 0.8s ease;
    will-change: opacity;
}

.scroll-reveal-fade.revealed {
    opacity: 1;
    animation: fadeIn 0.8s ease forwards;
}

.scroll-reveal-slide-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    will-change: transform, opacity;
}

.scroll-reveal-slide-left.revealed {
    opacity: 1;
    transform: translateX(0);
    animation: slideInLeft 0.7s ease forwards;
}

.scroll-reveal-slide-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    will-change: transform, opacity;
}

.scroll-reveal-slide-right.revealed {
    opacity: 1;
    transform: translateX(0);
    animation: slideInRight 0.7s ease forwards;
}

.scroll-reveal-zoom {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
    will-change: transform, opacity;
}

.scroll-reveal-zoom.revealed {
    opacity: 1;
    transform: scale(1);
    animation: zoomIn 0.6s ease forwards;
}

.scroll-reveal-text {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    will-change: transform, opacity;
}

.scroll-reveal-text.revealed {
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.6s ease forwards;
}

/* Staggered Animation Delays */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* Responsive Adjustments */
@media (max-width: 768px) {
    .about-intro-image:hover,
    .service-detail-image:hover,
    .why-dm-image-content:hover {
        transform: scale(1.01);
    }
    
    .service-card:hover {
        transform: translateY(-5px) scale(1);
    }
    
    .scroll-reveal,
    .scroll-reveal-image,
    .scroll-reveal-text {
        animation-duration: 0.5s;
    }
}

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .scroll-reveal,
    .scroll-reveal-image,
    .scroll-reveal-text {
        animation: none;
        opacity: 1;
        transform: none;
        transition: none;
    }

    .mission-card.scroll-reveal-slide-left,
    .vision-card.scroll-reveal-slide-right {
        animation: none;
        opacity: 1;
        transform: none;
        transition: none;
    }

    .mission-card:hover,
    .vision-card:hover {
        transform: none;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    }

    .mission-card:hover .mission-icon,
    .vision-card:hover .vision-icon,
    .mission-card:hover .mission-icon i,
    .vision-card:hover .vision-icon i {
        transform: none;
        transition: none;
    }
}

/* Portfolio Page — uses the shared continuous backdrop (no per-section gradient) */
.portfolio-page-header {
    background: transparent;
    min-height: 310px;
    padding: 90px 0 70px;
}

.portfolio-page-header .container {
    max-width: 1100px;
}

.portfolio-page-header h1 {
    margin: 0 auto;
    color: #13243f;
    font-size: 3.05rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.2px;
    position: relative;
    display: block;
    width: fit-content;
    padding-bottom: 14px;
}

.portfolio-page-header h1::after {
    content: "";
    width: 130px;
    height: 4px;
    background: #f28a64;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    border-radius: 2px;
}

.portfolio-showcase {
    padding: 80px 0;
    background: transparent;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.portfolio-card {
    background: #fff;
    border: 1px solid rgba(13, 13, 99, 0.12);
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.portfolio-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
}

.portfolio-card-image {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.portfolio-preview-image {
    width: 100%;
    height: auto;
    display: block;
    background: #f0f2ff;
}

.portfolio-card-footer {
    margin-top: auto;
    padding: 18px 20px;
    background: linear-gradient(90deg, #392bdb 0%, #24a4e7 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.portfolio-site-name {
    color: #ffffff;
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: lowercase;
}

.portfolio-site-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 116px;
    padding: 8px 18px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 999px;
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

.portfolio-site-button:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: #ffffff;
    color: #ffffff;
}

.portfolio-cta {
    margin-top: 40px;
    text-align: center;
    background: #ffffff;
    border: 1px solid rgba(13, 13, 99, 0.1);
    border-radius: 16px;
    padding: 34px 20px;
}

.portfolio-cta h2 {
    color: #101236;
    margin-bottom: 8px;
}

.portfolio-cta p {
    margin-bottom: 16px;
}

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

    .portfolio-site-name {
        font-size: 1.35rem;
    }

    .portfolio-page-header {
        min-height: 240px;
        padding: 74px 0 52px;
    }

    .portfolio-page-header h1 {
        font-size: 2rem;
        line-height: 1.25;
    }
}

@media (max-width: 480px) {
    .portfolio-card-footer {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .portfolio-site-button {
        width: 100%;
        min-width: 0;
    }
}

/* Single continuous themed backdrop painted once behind the whole page.
   Using a fixed pseudo-element on body avoids per-section seams and works
   reliably across phones, tablets, and desktops (no fixed-attachment bugs). */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(circle at 15% 20%, rgba(0, 148, 178, 0.24), transparent 42%),
        radial-gradient(circle at 85% 80%, rgba(255, 107, 53, 0.2), transparent 44%),
        linear-gradient(125deg, #f7f9fc 0%, #eef4fb 45%, #f5f8fd 100%),
        linear-gradient(rgba(30, 58, 95, 0.1) 2px, transparent 2px),
        linear-gradient(90deg, rgba(30, 58, 95, 0.1) 2px, transparent 2px);
    background-size: 190% 190%, 190% 190%, 100% 100%, 56px 56px, 56px 56px;
    background-position: 15% 20%, 85% 80%, 0 0, 0 0, 0 0;
}

/* Themed sections share the same continuous backdrop, no per-section gradient
   so there are no visible "lines" between sections on any device. */
.about-intro,
.services-preview,
.why-digital-marketing,
.process-section,
.about-content,
.mission-vision-section,
.team-leadership-section,
.service-detail-section,
.service-detail-section.service-detail-alt,
.content-creation-section,
.seo-types-section,
.seo-growth-section,
.faq-section,
.contact-section,
.map-section,
.legal-content-section {
    position: relative;
    overflow: hidden;
    padding: clamp(48px, 7vw, 72px) 0;
    background: transparent;
    animation: none;
}

/* SEO page: show intro image without card-style background */
#what-is-seo .service-detail-illustration,
#what-is-seo .service-detail-image {
    background: transparent;
}

#what-is-seo .service-detail-image {
    border-radius: 0;
    box-shadow: none;
}

/* SEO benefits image: remove card look and fill column width */
#why-seo-important .service-detail-illustration {
    align-items: center;
    justify-content: center;
    padding: 0;
    box-sizing: border-box;
}

#why-seo-important .service-detail-image {
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
    object-fit: cover;
    object-position: center center;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.88);
    box-shadow:
        inset 1px 1px 0 rgba(255, 255, 255, 0.9),
        inset -1px -1px 0 rgba(12, 38, 74, 0.14),
        0 10px 24px rgba(12, 38, 74, 0.14);
    filter: contrast(1.02) saturate(1.01);
}

@media (max-width: 968px) {
    #why-seo-important .service-detail-image {
        max-height: min(520px, 78vh);
    }

    #why-seo-important .benefit-item {
        width: 100%;
        max-width: none;
        min-height: 140px;
        justify-content: center;
        align-items: center;
        text-align: center;
        box-sizing: border-box;
    }

    #why-seo-important .benefit-content {
        width: 100%;
        max-width: none;
        text-align: center;
    }
}

/* Email benefits media: match SEO section — uncropped frame, padded card */
#why-use-email-marketing .service-detail-illustration {
    align-items: center;
    justify-content: center;
    padding: clamp(14px, 3vw, 26px);
    box-sizing: border-box;
}

#why-use-email-marketing .service-detail-image {
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: min(640px, 90vh);
    object-fit: contain;
    object-position: center center;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.88);
    box-shadow:
        inset 1px 1px 0 rgba(255, 255, 255, 0.9),
        inset -1px -1px 0 rgba(12, 38, 74, 0.14),
        0 10px 24px rgba(12, 38, 74, 0.14);
    filter: contrast(1.02) saturate(1.01);
}

@media (max-width: 968px) {
    #why-use-email-marketing .service-detail-image {
        max-height: min(520px, 78vh);
    }
}

/* PPC intro media: keep height aligned with text block */
#what-is-ppc .service-detail-illustration {
    align-items: stretch;
}

#what-is-ppc .service-detail-image {
    width: 100%;
    height: 100%;
    max-height: 560px;
    object-fit: cover;
    object-position: center center;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.88);
    box-shadow:
        inset 1px 1px 0 rgba(255, 255, 255, 0.9),
        inset -1px -1px 0 rgba(12, 38, 74, 0.14),
        0 10px 24px rgba(12, 38, 74, 0.14);
    filter: contrast(1.02) saturate(1.01);
}

#why-use-ppc .service-detail-image {
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
    object-fit: cover;
    object-position: center center;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.88);
    box-shadow:
        inset 1px 1px 0 rgba(255, 255, 255, 0.9),
        inset -1px -1px 0 rgba(12, 38, 74, 0.14),
        0 10px 24px rgba(12, 38, 74, 0.14);
    filter: contrast(1.02) saturate(1.01);
}

@media (max-width: 968px) {
    #what-is-ppc .service-detail-illustration {
        align-items: flex-start;
    }

    #what-is-ppc .service-detail-image {
        height: auto;
        max-height: 360px;
        object-fit: contain;
    }

    #why-use-ppc .service-detail-image {
        max-height: min(520px, 78vh);
    }
}

@media (max-width: 968px) {
    /* PPC benefits: keep icon/title/description perfectly centered */
    #what-is-ppc .benefit-item {
        width: 100%;
        min-height: 145px;
        justify-content: center;
        align-items: center;
        text-align: center;
        box-sizing: border-box;
    }

    #what-is-ppc .benefit-content,
    #what-is-ppc .benefit-content h3,
    #what-is-ppc .benefit-content p {
        width: 100%;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    #what-is-ppc .benefit-content p {
        max-width: 92%;
    }
}

/* Tablet / iPad: show full GIFs & tall images without cropping (768px widths included) */
@media (min-width: 768px) and (max-width: 1024px) {
    #why-seo-important .service-detail-image,
    #why-use-email-marketing .service-detail-image,
    #what-is-ppc .service-detail-image,
    #why-use-ppc .service-detail-image,
    #what-is-webdev .service-detail-image,
    #why-invest-webdev .service-detail-image {
        width: 100%;
        height: auto;
        min-height: 0;
        max-height: none;
        object-fit: contain;
        object-position: center center;
    }

    #why-seo-important .service-detail-illustration,
    #why-use-email-marketing .service-detail-illustration {
        padding: clamp(18px, 4vw, 28px);
    }
}

/* Web dev: intro image aligns with grid column */
#what-is-webdev .service-detail-illustration {
    align-items: center;
}

#what-is-webdev .service-detail-image {
    width: 100%;
    height: auto;
    max-height: min(560px, 85vh);
    object-fit: contain;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.75);
    box-shadow:
        inset 1px 1px 0 rgba(255, 255, 255, 0.8),
        inset -1px -1px 0 rgba(12, 38, 74, 0.2),
        0 12px 28px rgba(12, 38, 74, 0.22);
    filter: contrast(1.03) saturate(1.02);
}

@media (max-width: 968px) {
    #what-is-webdev .service-detail-illustration {
        align-items: flex-start;
    }

    #what-is-webdev .service-detail-image {
        max-height: min(420px, 70vh);
    }
}

/* Web dev: video in “Why invest” column — full frame visible, no cropping */
#why-invest-webdev .service-detail-illustration {
    align-items: stretch;
}

#why-invest-webdev .service-detail-image {
    width: auto;
    max-width: 100%;
    height: 100%;
    max-height: none;
    object-fit: contain;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.75);
    box-shadow:
        inset 1px 1px 0 rgba(255, 255, 255, 0.8),
        inset -1px -1px 0 rgba(12, 38, 74, 0.2),
        0 12px 28px rgba(12, 38, 74, 0.22);
    filter: contrast(1.03) saturate(1.02);
}

#what-is-webdev .service-detail-image:hover,
#why-invest-webdev .service-detail-image:hover {
    box-shadow:
        inset 1px 1px 0 rgba(255, 255, 255, 0.86),
        inset -1px -1px 0 rgba(12, 38, 74, 0.24),
        0 16px 34px rgba(12, 38, 74, 0.26);
    filter: contrast(1.04) saturate(1.03);
}

@media (max-width: 968px) {
    #why-invest-webdev .service-detail-illustration {
        align-items: flex-start;
    }

    #why-invest-webdev .service-detail-image {
        height: auto;
        max-height: min(420px, 70vh);
    }
}

/* Remove old About intro pseudo background layers */
.about-intro::before,
.about-intro::after,
.about-content::before,
.about-content::after {
    content: none;
}

@keyframes sharedSectionBgFlow {
    0% {
        background-position: 15% 20%, 85% 80%, 0 0, 0 0, 0 0;
    }
    50% {
        background-position: 22% 27%, 78% 68%, 0 0, -24px -18px, -24px -18px;
    }
    100% {
        background-position: 28% 16%, 72% 72%, 0 0, -48px -36px, -48px -36px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .about-intro,
    .services-preview,
    .why-digital-marketing,
    .process-section,
    .about-content,
    .mission-vision-section,
    .team-leadership-section,
    .service-detail-section,
    .service-detail-section.service-detail-alt,
    .content-creation-section,
    .seo-types-section,
    .seo-growth-section,
    .faq-section,
    .contact-section,
    .map-section,
    .legal-content-section,
    .portfolio-showcase {
        animation: none;
    }
}
