    /* ---------------- GLOBAL STYLE ---------------- */
    :root {
        --primary-gradient: linear-gradient(135deg, #4ce1ff, #7b4dff);
        --secondary-gradient: linear-gradient(135deg, #ff6b9d, #ffa36c);
        --dark-bg: #05060a;
        --card-bg: rgba(255, 255, 255, 0.05);
        --card-border: rgba(255, 255, 255, 0.1);
        --accent-blue: #4ce1ff;
        --accent-purple: #7b4dff;
        --text-light: #e0e0e0;
        --text-gray: #a0a0a0;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "Poppins", sans-serif;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        background: var(--dark-bg);
        color: white;
        overflow-x: hidden;
    }

    section {
        padding: 100px 8%;
    }

    .section-title {
        font-size: 2.8rem;
        margin-bottom: 20px;
        background: linear-gradient(90deg, #ffffff, var(--accent-blue));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        text-align: center;
    }

    .section-subtitle {
        text-align: center;
        color: var(--text-gray);
        font-size: 1.1rem;
        max-width: 700px;
        margin: 0 auto 60px;
    }

    /* ---------------- PREMIUM HEADER ---------------- */
    header {
        position: fixed;
        top: 0;
        width: 100%;
        padding: 18px 8%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: rgba(5, 6, 10, 0.95);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 1000;
        transition: all 0.3s ease;
    }

    header.scrolled {
        padding: 12px 8%;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    }

    .logo {
        font-size: 28px;
        font-weight: 800;
        background: var(--primary-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .logo img {
        width: 30px;
    height: auto;
    }

    nav {
        display: flex;
        gap: 35px;
    }

    nav a {
        text-decoration: none;
        color: var(--text-light);
        font-weight: 500;
        transition: all 0.3s;
        position: relative;
    }

    nav a:hover {
        color: var(--accent-blue);
    }

    nav a::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--primary-gradient);
        transition: width 0.3s;
    }

    nav a:hover::after {
        width: 100%;
    }

    .header-cta {
        padding: 12px 28px;
        background: var(--primary-gradient);
        border-radius: 10px;
        text-decoration: none;
        color: white;
        font-weight: 600;
        box-shadow: 0 5px 15px rgba(76, 225, 255, 0.3);
        transition: all 0.3s;
    }

    .header-cta:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(76, 225, 255, 0.4);
    }

    .menu-toggle {
        display: none;
        font-size: 24px;
        cursor: pointer;
    }

    /* ---------------- HERO SECTION ---------------- */
    .hero {
        margin-top: 120px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 60px;
        position: relative;
    }

    .hero-content {
        width: 55%;
    }

    .hero h1 {
        font-size: 3.5rem;
        line-height: 1.2;
        margin-bottom: 20px;
        background: linear-gradient(90deg, #ffffff, var(--accent-blue));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .hero p {
        font-size: 1.2rem;
        color: var(--text-light);
        margin-bottom: 30px;
        line-height: 1.6;
    }

    .hero-btns {
        display: flex;
        gap: 20px;
        margin-top: 40px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 16px 32px;
        border-radius: 10px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .btn-primary {
        background: var(--primary-gradient);
        color: white;
        box-shadow: 0 5px 15px rgba(76, 225, 255, 0.3);
    }

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(76, 225, 255, 0.4);
    }

    .btn-secondary {
        background: transparent;
        color: var(--accent-blue);
        border: 2px solid rgba(76, 225, 255, 0.5);
    }

    .btn-secondary:hover {
        background: rgba(76, 225, 255, 0.1);
        transform: translateY(-3px);
    }

    .hero-visual {
        width: 40%;
        position: relative;
    }

    .floating-elements {
        position: relative;
        width: 100%;
        height: 400px;
    }

    .floating-card {
        position: absolute;
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(10px);
        border-radius: 15px;
        border: 1px solid rgba(255, 255, 255, 0.15);
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .card-1 {
        top: 0;
        right: 0;
        width: 70%;
        animation: float 6s ease-in-out infinite;
    }

    .card-2 {
        bottom: 0;
        left: 0;
        width: 60%;
        animation: float 7s ease-in-out infinite 1s;
    }

    .card-3 {
        top: 50%;
        left: 20%;
        width: 50%;
        animation: float 5s ease-in-out infinite 0.5s;
    }

    @keyframes float {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-15px);
        }
    }

    /* ---------------- SOCIAL PROOF ---------------- */
    .social-proof {
        margin-top: 80px;
    }

    .stats-container {
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
        gap: 30px;
        margin-top: 40px;
    }

    .stat-card {
        background: var(--card-bg);
        border: 1px solid var(--card-border);
        border-radius: 15px;
        padding: 30px;
        text-align: center;
        flex: 1;
        min-width: 250px;
        transition: all 0.3s;
    }

    .stat-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(76, 225, 255, 0.15);
        border-color: rgba(76, 225, 255, 0.3);
    }

    .stat-card i {
        font-size: 2.5rem;
        margin-bottom: 15px;
        background: var(--primary-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .stat-number {
        font-size: 2.2rem;
        font-weight: 700;
        background: var(--primary-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 10px;
    }

    .stat-desc {
        color: var(--text-gray);
        font-size: 1rem;
    }

    /* ---------------- WHY US ---------------- */
    .why-us {
        background: rgba(0, 0, 0, 0.3);
        border-radius: 20px;
        padding: 80px 8%;
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .feature-card {
        background: var(--card-bg);
        border-radius: 15px;
        padding: 35px 25px;
        text-align: center;
        transition: all 0.3s;
        border: 1px solid var(--card-border);
    }

    .feature-card:hover {
        transform: translateY(-10px);
        background: rgba(76, 225, 255, 0.05);
        border-color: rgba(76, 225, 255, 0.3);
        box-shadow: 0 15px 30px rgba(76, 225, 255, 0.1);
    }

    .feature-icon {
        font-size: 2.5rem;
        margin-bottom: 20px;
        background: var(--primary-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .feature-title {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }

    .feature-desc {
        color: var(--text-gray);
        line-height: 1.6;
    }

    /* ---------------- SERVICES ---------------- */
    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 50px;
    }

    .service-card {
        background: var(--card-bg);
        border-radius: 15px;
        padding: 40px 30px;
        border: 1px solid var(--card-border);
        transition: all 0.3s;
        position: relative;
        overflow: hidden;
    }

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: var(--primary-gradient);
        transform: scaleX(0);
        transition: transform 0.3s;
    }

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(76, 225, 255, 0.15);
    }

    .service-card:hover::before {
        transform: scaleX(1);
    }

    .service-icon {
        font-size: 2.8rem;
        margin-bottom: 20px;
        background: var(--primary-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .service-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .service-desc {
        color: var(--text-gray);
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .service-link {
        color: var(--accent-blue);
        text-decoration: none;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: gap 0.3s;
    }

    .service-link:hover {
        gap: 15px;
    }

    /* ---------------- PROCESS ---------------- */
    .process-container {
        display: flex;
        flex-direction: column;
        gap: 25px;
        margin-top: 50px;
        position: relative;
    }

    .process-container::before {
        content: '';
        position: absolute;
        top: 0;
        left: 30px;
        width: 2px;
        height: 100%;
        background: var(--primary-gradient);
        z-index: 1;
    }

    .process-step {
        display: flex;
        align-items: center;
        gap: 30px;
        position: relative;
        z-index: 2;
    }

    .step-number {
        background: var(--primary-gradient);
        color: white;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        font-weight: 700;
        flex-shrink: 0;
    }

    .step-content {
        background: var(--card-bg);
        border: 1px solid var(--card-border);
        border-radius: 15px;
        padding: 30px;
        flex: 1;
        transition: all 0.3s;
    }

    .step-content:hover {
        transform: translateX(10px);
        border-color: rgba(76, 225, 255, 0.3);
    }

    .step-title {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }

    .step-desc {
        color: var(--text-gray);
        line-height: 1.6;
    }

    /* ---------------- CASE STUDIES ---------------- */
    .case-studies {
        background: rgba(0, 0, 0, 0.3);
        border-radius: 20px;
        padding: 80px 8%;
    }

    .cases-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 30px;
        margin-top: 50px;
    }

    .case-card {
        background: var(--card-bg);
        border-radius: 15px;
        padding: 35px;
        border: 1px solid var(--card-border);
        transition: all 0.3s;
        position: relative;
        overflow: hidden;
    }

    .case-card::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 100px;
        height: 100px;
        background: var(--primary-gradient);
        border-radius: 0 0 0 100%;
        opacity: 0.1;
    }

    .case-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(76, 225, 255, 0.15);
    }

    .case-result {
        font-size: 2rem;
        font-weight: 700;
        background: var(--primary-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 15px;
    }

    .case-client {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .case-desc {
        color: var(--text-gray);
        line-height: 1.6;
    }

    /* ---------------- TEAM ---------------- */
    .team-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-top: 50px;
    }

    .team-member {
        background: var(--card-bg);
        border-radius: 15px;
        padding: 30px;
        text-align: center;
        border: 1px solid var(--card-border);
        transition: all 0.3s;
    }

    .team-member:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(76, 225, 255, 0.1);
    }

    .member-avatar {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        margin: 0 auto 20px;
        background: var(--primary-gradient);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 3rem;
        color: white;
    }

    .member-name {
        font-size: 1.4rem;
        margin-bottom: 5px;
    }

    .member-role {
        color: var(--accent-blue);
        font-weight: 600;
        margin-bottom: 15px;
    }

    .member-desc {
        color: var(--text-gray);
        line-height: 1.6;
    }

    /* ---------------- FAQ ---------------- */
    .faq-container {
        max-width: 900px;
        margin: 50px auto 0;
    }

    .faq-item {
        background: var(--card-bg);
        border-radius: 15px;
        margin-bottom: 20px;
        border: 1px solid var(--card-border);
        overflow: hidden;
        transition: all 0.3s;
    }

    .faq-item:hover {
        border-color: rgba(76, 225, 255, 0.3);
    }

    .faq-question {
        padding: 25px 30px;
        font-size: 1.2rem;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .faq-answer {
        padding: 0 30px;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s;
        color: var(--text-gray);
        line-height: 1.6;
    }

    .faq-item.active .faq-answer {
        padding: 0 30px 25px 30px;
        max-height: 300px;
    }

    .faq-toggle {
        color: var(--accent-blue);
        font-size: 1.5rem;
        transition: transform 0.3s;
    }

    .faq-item.active .faq-toggle {
        transform: rotate(45deg);
    }

    /* ---------------- CTA ---------------- */
    .cta-section {
        text-align: center;
        background: var(--primary-gradient);
        padding: 100px 8%;
        border-radius: 20px;
        margin-top: 80px;
        position: relative;
        overflow: hidden;
    }

    .cta-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none"><path d="M0,0V100H1000V0C800,50 600,80 400,80C200,80 0,50 0,0Z" fill="rgba(255,255,255,0.1)"/></svg>');
        background-size: cover;
        background-position: bottom;
    }

    .cta-content {
        position: relative;
        z-index: 2;
    }

    .cta-title {
        font-size: 3rem;
        margin-bottom: 20px;
    }

    .cta-desc {
        font-size: 1.2rem;
        margin-bottom: 40px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .cta-btn {
        padding: 18px 40px;
        background: white;
        color: var(--dark-bg);
        border-radius: 10px;
        text-decoration: none;
        font-weight: 700;
        font-size: 1.1rem;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        transition: all 0.3s;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .cta-btn:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    }

    /* ---------------- FOOTER ---------------- */
    footer {
        background: #030308;
        padding: 80px 8% 40px;
        /* margin-top: 80px; */
    }

    .footer-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        margin-bottom: 30px;
    }

    .footer-brand h3 {
        font-size: 2rem;
        margin-bottom: 15px;
        background: var(--primary-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .footer-brand p {
        color: var(--text-gray);
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .footer-links {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-column h4 {
        font-size: 1.3rem;
        margin-bottom: 20px;
        color: white;
    }

    .footer-column a {
        display: block;
        color: var(--text-gray);
        text-decoration: none;
        margin-bottom: 12px;
        transition: all 0.3s;
    }

    .footer-column a:hover {
        color: var(--accent-blue);
        transform: translateX(5px);
    }

    .footer-contact h4 {
        font-size: 1.3rem;
        margin-bottom: 20px;
        color: white;
    }

    .contact-info {
        color: var(--text-gray);
        margin-bottom: 25px;
    }

    .contact-info p {
        margin-bottom: 8px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .social-links {
        display: flex;
        gap: 15px;
        margin-top: 20px;
    }

    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        background: var(--card-bg);
        border-radius: 50%;
        color: white;
        text-decoration: none;
        transition: all 0.3s;
    }

    .social-links a:hover {
        background: var(--primary-gradient);
        transform: translateY(-5px);
    }

    .footer-bottom {
        text-align: center;
        padding-top: 30px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        color: var(--text-gray);
    }

    /* ---------------- RESPONSIVE ---------------- */
    @media (max-width: 1024px) {
        section {
            padding: 80px 5%;
        }

        .hero {
            flex-direction: column;
            gap: 50px;
        }

        .hero-content,
        .hero-visual {
            width: 100%;
        }

        .hero h1 {
            font-size: 2.8rem;
        }

        .section-title {
            font-size: 2.4rem;
        }
    }

    @media (max-width: 768px) {
        nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: rgba(5, 6, 10, 0.98);
            flex-direction: column;
            padding: 20px;
            gap: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        nav.active {
            display: flex;
        }

        .menu-toggle {
            display: block;
        }

        .hero h1 {
            font-size: 2.2rem;
        }

        .hero-btns {
            flex-direction: column;
            gap: 15px;
        }

        .btn-primary,
        .btn-secondary {
            width: 100%;
            justify-content: center;
        }

        .section-title {
            font-size: 2rem;
        }

        .footer-links {
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .process-container::before {
            left: 25px;
        }
    }

    @media (max-width: 480px) {
        section {
            padding: 60px 5%;
        }

        .hero h1 {
            font-size: 1.8rem;
        }

        .section-title {
            font-size: 1.8rem;
        }

        .cta-title {
            font-size: 2.2rem;
        }

        .stat-card,
        .feature-card,
        .service-card {
            min-width: 100%;
        }
    }
/* start bottom 3 button */
#scrollTopBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  background: #000;
  color: #fff;
  border: none;
  padding: 12px 15px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: none;
}
/* ================ */
.call-btn {
  position: fixed;
  bottom: 80px;
  right: 20px;
  background: #28a745;
  color: #fff;
  padding: 15px;
  border-radius: 50%;
  text-decoration: none;
  font-size: 20px;
  z-index: 1000;
}
/* ================== */
.whatsapp-btn {
  position: fixed;
  bottom: 140px;
  right: 20px;
  background: #25d366;
  color: #fff;
  padding: 15px;
  border-radius: 50%;
  text-decoration: none;
  font-size: 20px;
  z-index: 1000;
}

/* end bottom 3 button */

/* start contact us page */
 /* ---------------- CONTACT HERO ---------------- */
    .contact-hero {
        margin-top: 120px;
        padding: 80px 8% 120px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .contact-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 30% 20%, rgba(76, 225, 255, 0.1) 0%, transparent 50%),
                    radial-gradient(circle at 70% 80%, rgba(123, 77, 255, 0.1) 0%, transparent 50%);
        z-index: -1;
    }

    .contact-hero-title {
        font-size: 4rem;
        line-height: 1.2;
        margin-bottom: 20px;
        background: linear-gradient(90deg, #ffffff, var(--accent-blue));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .contact-hero-subtitle {
        font-size: 1.3rem;
        color: var(--text-light);
        max-width: 700px;
        margin: 0 auto 40px;
        line-height: 1.6;
    }

    .contact-badges {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
        margin-top: 40px;
    }

    .contact-badge {
        background: rgba(76, 225, 255, 0.1);
        border: 1px solid rgba(76, 225, 255, 0.3);
        border-radius: 20px;
        padding: 10px 20px;
        font-size: 0.9rem;
        color: var(--accent-blue);
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .contact-badge i {
        font-size: 1rem;
    }

 /* ---------------- CONTACT CTA ---------------- */
    .contact-cta {
        text-align: center;
        background: var(--primary-gradient);
        padding: 100px 8%;
        border-radius: 20px;
        margin-top: 80px;
        position: relative;
        overflow: hidden;
    }

    .contact-cta::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none"><path d="M0,0V100H1000V0C800,50 600,80 400,80C200,80 0,50 0,0Z" fill="rgba(255,255,255,0.1)"/></svg>');
        background-size: cover;
        background-position: bottom;
    }

    .contact-cta-content {
        position: relative;
        z-index: 2;
    }

    .contact-cta-title {
        font-size: 3rem;
        margin-bottom: 20px;
    }

    .contact-cta-desc {
        font-size: 1.2rem;
        margin-bottom: 40px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        opacity: 0.9;
    }

    .contact-cta-btns {
        display: flex;
        gap: 20px;
        justify-content: center;
    }

       /* ---------------- TESTIMONIALS ---------------- */
    .contact-testimonials {
        background: rgba(0, 0, 0, 0.3);
        border-radius: 20px;
        padding: 80px 8%;
        margin-top: 60px;
    }

    .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 50px;
    }

    .testimonial-card {
        background: var(--card-bg);
        border-radius: 15px;
        padding: 30px;
        border: 1px solid var(--card-border);
        transition: all 0.3s;
    }

    .testimonial-card:hover {
        border-color: rgba(76, 225, 255, 0.3);
        transform: translateY(-5px);
    }

    .testimonial-text {
        color: var(--text-light);
        font-style: italic;
        line-height: 1.6;
        margin-bottom: 25px;
    }

    .testimonial-author {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .author-avatar {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: var(--primary-gradient);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        color: white;
    }

    .author-info h4 {
        color: white;
        margin-bottom: 5px;
    }

    .author-info p {
        color: var(--text-gray);
        font-size: 0.9rem;
    }

     /* ---------------- LOCATION MAP ---------------- */
    .location-section {
        background: rgba(0, 0, 0, 0.3);
        border-radius: 20px;
        padding: 80px 8%;
        margin-top: 60px;
    }

    .map-container {
        width: 100%;
        height: 400px;
        border-radius: 15px;
        overflow: hidden;
        border: 1px solid var(--card-border);
        margin-top: 40px;
    }

    .map-container iframe {
        width: 100%;
        height: 100%;
        border: none;
    }
 /* ---------------- QUICK CONTACT BAR ---------------- */
    .quick-contact-bar {
        background: rgba(0, 0, 0, 0.3);
        padding: 30px 8%;
        display: flex;
        justify-content: center;
        gap: 40px;
        flex-wrap: wrap;
        border-top: 1px solid var(--card-border);
        border-bottom: 1px solid var(--card-border);
    }

    .contact-method {
        display: flex;
        align-items: center;
        gap: 15px;
        color: var(--text-light);
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        background: var(--primary-gradient);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
    }

    .contact-details h3 {
        font-size: 1.1rem;
        margin-bottom: 5px;
        color: white;
    }

    .contact-details p {
        color: var(--accent-blue);
        font-weight: 600;
        font-size: 1rem;
    }

   
    /* ---------------- STICKY CONTACT WIDGET ---------------- */
    .sticky-contact-widget {
        position: fixed;
        right: 30px;
        top: 50%;
        transform: translateY(-50%);
        background: var(--card-bg);
        border: 1px solid var(--card-border);
        border-radius: 15px;
        padding: 20px;
        width: 300px;
        backdrop-filter: blur(10px);
        z-index: 999;
        /* display: none; */
    }

    .sticky-contact-widget.active {
        display: block;
    }

    .widget-header {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 20px;
        color: var(--accent-blue);
    }

    .widget-header i {
        font-size: 1.5rem;
    }

    .widget-contact-item {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 15px;
        color: var(--text-light);
    }

    .widget-contact-item i {
        color: var(--accent-blue);
        width: 20px;
    }
 /* ---------------- CONTACT FORM ---------------- */
    .contact-form-section {
        background: rgba(0, 0, 0, 0.3);
        border-radius: 20px;
        padding: 80px 8%;
    }

    .form-container {
        max-width: 800px;
        margin: 0 auto;
        background: var(--card-bg);
        border-radius: 20px;
        padding: 60px;
        border: 1px solid var(--card-border);
    }

    .form-header {
        text-align: center;
        margin-bottom: 40px;
    }

    .form-header h2 {
        font-size: 2.5rem;
        margin-bottom: 15px;
        color: white;
    }

    .form-header p {
        color: var(--text-gray);
        line-height: 1.6;
    }

    .contact-form {
        max-width: 600px;
        margin: 0 auto;
    }

    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-bottom: 20px;
    }

    .form-group {
        margin-bottom: 25px;
    }

    .form-group label {
        display: block;
        margin-bottom: 8px;
        color: var(--text-light);
        font-weight: 500;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 15px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        color: white;
        font-size: 1rem;
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
        color: rgba(255, 255, 255, 0.5);
    }

    .form-group select {
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 15px center;
        background-size: 12px;
    }

    .form-checkbox {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 25px;
    }

    .form-checkbox input {
        margin-top: 3px;
    }

    .form-checkbox label {
        color: var(--text-gray);
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .form-checkbox a {
        color: var(--accent-blue);
        text-decoration: none;
    }

    .form-checkbox a:hover {
        text-decoration: underline;
    }

    .btn-large {
        padding: 18px 40px;
        font-size: 1.1rem;
        width: 100%;
    }
  /* ---------------- CONTACT METHODS ---------------- */
    .contact-methods {
        padding: 100px 8%;
    }

    .methods-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 50px;
    }

    .method-card {
        background: var(--card-bg);
        border-radius: 15px;
        padding: 40px 30px;
        border: 1px solid var(--card-border);
        transition: all 0.3s;
        text-align: center;
    }

    .method-card:hover {
        transform: translateY(-10px);
        border-color: rgba(76, 225, 255, 0.3);
        box-shadow: 0 20px 40px rgba(76, 225, 255, 0.15);
    }

    .method-icon {
        font-size: 3rem;
        margin-bottom: 20px;
        background: var(--primary-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .method-card h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
        color: white;
    }

    .method-card p {
        color: var(--text-gray);
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .method-details {
        color: var(--accent-blue);
        font-weight: 600;
        font-size: 1.1rem;
    }

    .method-details a {
        color: inherit;
        text-decoration: none;
        transition: all 0.3s;
    }

    .method-details a:hover {
        color: white;
    }

     /* ---------------- GLOBAL PRESENCE ---------------- */
    .global-presence {
        padding: 100px 8%;
        text-align: center;
    }

    .countries-grid {
        display: flex;
        justify-content: center;
        gap: 30px;
        flex-wrap: wrap;
        margin-top: 40px;
    }

    .country-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding: 20px;
        background: var(--card-bg);
        border-radius: 15px;
        border: 1px solid var(--card-border);
        min-width: 120px;
        transition: all 0.3s;
    }

    .country-item:hover {
        transform: translateY(-5px);
        border-color: rgba(76, 225, 255, 0.3);
    }

    .country-flag {
        font-size: 2.5rem;
    }

    .country-name {
        color: var(--text-light);
        font-weight: 600;
    }

 
    
  
  
    /* ---------------- RESPONSIVE ---------------- */
    @media (max-width: 1024px) {
        section {
            padding: 80px 5%;
        }

        .contact-hero-title {
            font-size: 3rem;
        }

        .form-container {
            padding: 40px;
        }

        .quick-contact-bar {
            flex-direction: column;
            gap: 20px;
            align-items: center;
        }

        .sticky-contact-widget {
            display: none !important;
        }
    }

    @media (max-width: 768px) {
     
        .contact-hero-title {
            font-size: 2.5rem;
        }

        .contact-hero-subtitle {
            font-size: 1.1rem;
        }

        .form-row {
            grid-template-columns: 1fr;
        }

        .contact-cta-btns {
            flex-direction: column;
            align-items: center;
        }

        .footer-links {
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .form-container {
            padding: 30px 20px;
        }
    }

    @media (max-width: 480px) {
        section {
            padding: 60px 5%;
        }

        .contact-hero-title {
            font-size: 2rem;
        }

        .contact-hero {
            padding: 60px 5% 80px;
        }

        .contact-badges {
            flex-direction: column;
            align-items: center;
        }

        .contact-cta-title {
            font-size: 2.2rem;
        }

        .method-card {
            padding: 30px 20px;
        }
    }
/* end contact us page */

/* start PRICING page */

    /* ---------------- PRICING HERO ---------------- */
    .pricing-hero {
        margin-top: 120px;
        padding: 80px 8% 120px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .pricing-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 30% 20%, rgba(76, 225, 255, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 70% 80%, rgba(123, 77, 255, 0.1) 0%, transparent 50%);
        z-index: -1;
    }

    .pricing-hero-title {
        font-size: 4rem;
        line-height: 1.2;
        margin-bottom: 20px;
        background: linear-gradient(90deg, #ffffff, var(--accent-blue));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .pricing-hero-subtitle {
        font-size: 1.3rem;
        color: var(--text-light);
        max-width: 700px;
        margin: 0 auto 40px;
        line-height: 1.6;
    }

    .pricing-badges {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
        margin-top: 40px;
    }

    .pricing-badge {
        background: rgba(76, 225, 255, 0.1);
        border: 1px solid rgba(76, 225, 255, 0.3);
        border-radius: 20px;
        padding: 10px 20px;
        font-size: 0.9rem;
        color: var(--accent-blue);
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .pricing-badge i {
        font-size: 1rem;
    }

    
    /* ---------------- PRICING PLANS ---------------- */
    .pricing-plans {
        background: rgba(0, 0, 0, 0.3);
        border-radius: 20px;
        padding: 80px 8%;
    }

    .plans-switch {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-bottom: 60px;
        background: var(--card-bg);
        border: 1px solid var(--card-border);
        border-radius: 15px;
        padding: 5px;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .plan-switch-btn {
        padding: 12px 30px;
        border: none;
        background: transparent;
        color: var(--text-gray);
        border-radius: 10px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s;
        flex: 1;
    }

    .plan-switch-btn.active {
        background: var(--primary-gradient);
        color: white;
    }

    .plans-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 30px;
        margin-top: 30px;
    }

    .plan-card {
        background: var(--card-bg);
        border-radius: 20px;
        padding: 40px;
        border: 1px solid var(--card-border);
        transition: all 0.3s;
        position: relative;
        overflow: hidden;
    }

    .plan-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(76, 225, 255, 0.15);
        border-color: rgba(76, 225, 255, 0.3);
    }

    .plan-card.popular {
        border-color: var(--accent-blue);
        background: rgba(76, 225, 255, 0.05);
    }

    .popular-badge {
        position: absolute;
        top: 20px;
        right: 20px;
        background: var(--primary-gradient);
        color: white;
        padding: 6px 15px;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 600;
    }

    .plan-header {
        margin-bottom: 30px;
        padding-bottom: 30px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .plan-title {
        font-size: 1.8rem;
        margin-bottom: 10px;
        color: white;
    }

    .plan-description {
        color: var(--text-gray);
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .plan-price {
        display: flex;
        align-items: baseline;
        gap: 5px;
        margin-bottom: 10px;
    }

    .price-amount {
        font-size: 3rem;
        font-weight: 700;
        background: var(--primary-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .price-period {
        color: var(--text-gray);
        font-size: 0.9rem;
    }

    .price-note {
        color: var(--text-gray);
        font-size: 0.85rem;
    }

    .plan-features {
        margin-bottom: 40px;
    }

    .feature-item {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 15px;
        color: var(--text-light);
    }

    .feature-item i {
        color: var(--accent-blue);
        font-size: 1rem;
    }

    .feature-item.disabled {
        color: var(--text-gray);
        opacity: 0.5;
    }

    .feature-item.disabled i {
        color: var(--text-gray);
    }

    .plan-cta {
        display: block;
        text-align: center;
        padding: 15px;
        background: var(--primary-gradient);
        color: white;
        border-radius: 10px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s;
        border: none;
        cursor: pointer;
        font-size: 1rem;
    }

    .plan-cta:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(76, 225, 255, 0.3);
    }

    .plan-cta.secondary {
        background: transparent;
        border: 2px solid var(--accent-blue);
        color: var(--accent-blue);
    }

    .plan-cta.secondary:hover {
        background: rgba(76, 225, 255, 0.1);
    }

    
    /* ---------------- PRICING COMPARISON ---------------- */
    .pricing-comparison {
        padding: 100px 8%;
    }

    .comparison-table {
        overflow-x: auto;
        margin-top: 50px;
        background: var(--card-bg);
        border-radius: 15px;
        border: 1px solid var(--card-border);
    }

    .comparison-table table {
        width: 100%;
        border-collapse: collapse;
        min-width: 800px;
    }

    .comparison-table th {
        padding: 25px 20px;
        text-align: left;
        color: white;
        font-weight: 600;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .comparison-table td {
        padding: 20px;
        color: var(--text-light);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .comparison-table tr:hover {
        background: rgba(255, 255, 255, 0.03);
    }

    .comparison-table .feature-name {
        font-weight: 500;
        color: white;
    }

    .check-icon {
        color: var(--accent-blue);
        font-size: 1.2rem;
    }

    .x-icon {
        color: #ff4d4d;
        font-size: 1.2rem;
    }

    .limited {
        color: var(--text-gray);
        font-size: 0.9rem;
    }

    /* ---------------- ROI CALCULATOR ---------------- */
    .roi-calculator {
        background: rgba(0, 0, 0, 0.3);
        border-radius: 20px;
        padding: 80px 8%;
        margin-top: 60px;
    }

    .calculator-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
    }

    .calculator-inputs {
        background: var(--card-bg);
        border-radius: 15px;
        padding: 40px;
        border: 1px solid var(--card-border);
    }

    .calculator-result {
        background: var(--card-bg);
        border-radius: 15px;
        padding: 40px;
        border: 1px solid var(--card-border);
        text-align: center;
    }

    .calc-input-group {
        margin-bottom: 25px;
    }

    .calc-input-group label {
        display: block;
        margin-bottom: 8px;
        color: var(--text-light);
        font-weight: 500;
    }

    .calc-input-group input,
    .calc-input-group select {
        width: 100%;
        padding: 12px 15px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        color: white;
        font-size: 1rem;
    }

    .calc-input-group input::placeholder {
        color: rgba(255, 255, 255, 0.5);
    }

    .calc-result-value {
        font-size: 3.5rem;
        font-weight: 700;
        background: var(--primary-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin: 20px 0;
    }

    .calc-result-label {
        color: var(--text-gray);
        font-size: 1rem;
    }

    .author-plan {
        display: inline-block;
        padding: 3px 10px;
        background: rgba(76, 225, 255, 0.1);
        color: var(--accent-blue);
        border-radius: 12px;
        font-size: 0.8rem;
        margin-left: 10px;
    }

    /* ---------------- PRICING CTA ---------------- */
    .pricing-cta {
        text-align: center;
        background: var(--primary-gradient);
        padding: 100px 8%;
        border-radius: 20px;
        margin-top: 80px;
        position: relative;
        overflow: hidden;
    }

    .pricing-cta::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none"><path d="M0,0V100H1000V0C800,50 600,80 400,80C200,80 0,50 0,0Z" fill="rgba(255,255,255,0.1)"/></svg>');
        background-size: cover;
        background-position: bottom;
    }

    .pricing-cta-content {
        position: relative;
        z-index: 2;
    }

    .pricing-cta-title {
        font-size: 3rem;
        margin-bottom: 20px;
    }

    .pricing-cta-desc {
        font-size: 1.2rem;
        margin-bottom: 40px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        opacity: 0.9;
    }

    .pricing-cta-btns {
        display: flex;
        gap: 20px;
        justify-content: center;
    }

    
    /* ---------------- RESPONSIVE ---------------- */
    @media (max-width: 1024px) {
        section {
            padding: 80px 5%;
        }

        .pricing-hero-title {
            font-size: 3rem;
        }

        .plans-container {
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        }

        .calculator-container {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .form-row {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 768px) {
       
        .pricing-hero-title {
            font-size: 2.5rem;
        }

        .pricing-hero-subtitle {
            font-size: 1.1rem;
        }

        .plans-container {
            grid-template-columns: 1fr;
            max-width: 400px;
            margin-left: auto;
            margin-right: auto;
        }

        .pricing-cta-btns {
            flex-direction: column;
            align-items: center;
        }
    }

    @media (max-width: 480px) {
        section {
            padding: 60px 5%;
        }

        .pricing-hero-title {
            font-size: 2rem;
        }

        .pricing-hero {
            padding: 60px 5% 80px;
        }

        .price-amount {
            font-size: 2.5rem;
        }

        .pricing-cta-title {
            font-size: 2.2rem;
        }
    }
/* end PRICING page */
/* start services page */
/* SERVICE HERO */
.service-hero {
    margin-top: 120px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    position: relative;
    padding: 80px 8% 120px;
}

.service-hero-content {
    width: 55%;
}

.service-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #ffffff, var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.6;
}

.service-hero-btns {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.service-hero-visual {
    width: 40%;
    position: relative;
}

.service-floating-elements {
    position: relative;
    width: 100%;
    height: 400px;
}

.service-floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-card-1 {
    top: 0;
    right: 0;
    width: 70%;
    animation: float 6s ease-in-out infinite;
}

.service-card-2 {
    bottom: 0;
    left: 0;
    width: 60%;
    animation: float 7s ease-in-out infinite 1s;
}

.service-card-3 {
    top: 50%;
    left: 20%;
    width: 50%;
    animation: float 5s ease-in-out infinite 0.5s;
}


/* SERVICE STATS */
.service-stats {
    padding: 40px 8%;
    background: rgba(0, 0, 0, 0.3);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}


/* SERVICE CATEGORIES */
.service-categories {
    padding: 100px 8%;
    background: var(--dark-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-category-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 40px 30px;
    border: 1px solid var(--card-border);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.service-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.service-category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(76, 225, 255, 0.15);
}

.service-category-card:hover::before {
    transform: scaleX(1);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-category-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
}

.service-category-card p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 25px;
}

.category-link {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}

.category-link:hover {
    gap: 15px;
}

/* DETAILED SERVICE SECTIONS */
.detailed-service {
    padding: 100px 8%;
}

.detailed-service.alt {
    background: rgba(0, 0, 0, 0.3);
}

.service-detail-container {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-detail-container:nth-child(even) {
    flex-direction: row-reverse;
}

.service-detail-content {
    flex: 1;
}

.service-detail-visual {
    flex: 1;
}

.service-tag {
    display: inline-block;
    padding: 8px 20px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.service-detail-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.service-detail-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.6;
}

.service-detail-image {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}


/* Feature Grid */
.service-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}


.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: white;
}

.feature-card ul {
    list-style: none;
    padding: 0;
}

.feature-card li {
    color: var(--text-gray);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.feature-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-blue);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-item-icon {
    font-size: 1.5rem;
    color: var(--accent-blue);
    flex-shrink: 0;
}

.feature-item-content h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: white;
}

.feature-item-content p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Checklist */
.service-checklist {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    margin-bottom: 40px;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
}

.checklist-item i {
    color: var(--accent-blue);
}

/* Funnel Visual */
.funnel-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.funnel-stage {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 2px solid rgba(76, 225, 255, 0.2);
    min-width: 120px;
}

.stage-icon {
    font-size: 2rem;
    color: var(--accent-blue);
    margin-bottom: 10px;
}

.stage-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.funnel-arrow {
    color: var(--accent-blue);
    opacity: 0.5;
}

/* Content Features */
.content-features {
    margin-top: 30px;
}

.content-feature {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.content-feature h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
}

.content-feature h3 i {
    color: var(--accent-blue);
}

.content-feature p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* PROCESS TIMELINE */
.service-process {
    padding: 100px 8%;
    background: rgba(0, 0, 0, 0.3);
}

.process-timeline {
    max-width: 800px;
    margin: 50px auto 0;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-gradient);
}

.process-step {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.step-number {
    background: var(--primary-gradient);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    z-index: 2;
}

.step-content {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 15px;
    padding: 25px;
    flex: 1;
    transition: all 0.3s;
}

.step-content:hover {
    transform: translateX(10px);
    border-color: rgba(76, 225, 255, 0.3);
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: white;
}

.step-content p {
    color: var(--text-gray);
    line-height: 1.6;
}



/* PRICING TEASER */
.pricing-teaser {
    padding: 100px 8%;
    background: var(--primary-gradient);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-teaser::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none"><path d="M0,0V100H1000V0C800,50 600,80 400,80C200,80 0,50 0,0Z" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: cover;
    background-position: bottom;
}

.pricing-teaser-content {
    position: relative;
    z-index: 2;
}

.pricing-teaser h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
}

.pricing-teaser p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
}

.pricing-teaser-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .service-hero {
        flex-direction: column;
        gap: 50px;
    }

    .service-hero-content,
    .service-hero-visual {
        width: 100%;
    }

    .service-title {
        font-size: 2.8rem;
    }

    .service-detail-container {
        flex-direction: column;
        gap: 40px;
    }

    .service-detail-container:nth-child(even) {
        flex-direction: column;
    }

    .pricing-teaser-btns {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .service-title {
        font-size: 2.2rem;
    }

    .service-hero-btns {
        flex-direction: column;
        gap: 15px;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-title {
        font-size: 2rem;
    }

    .funnel-visual {
        flex-direction: column;
    }

    .funnel-arrow {
        transform: rotate(90deg);
    }

    .process-timeline::before {
        left: 25px;
    }

  
}

@media (max-width: 480px) {
    .service-title {
        font-size: 1.8rem;
    }

    .service-hero {
        padding: 60px 5% 80px;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .service-detail-title {
        font-size: 1.8rem;
    }

    .pricing-teaser h2 {
        font-size: 2.2rem;
    }
}
/* end services page */
/* start Work page */

    /* ---------------- WORK HERO ---------------- */
    .work-hero {
        margin-top: 120px;
        padding: 80px 8% 120px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .work-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 30% 20%, rgba(76, 225, 255, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 70% 80%, rgba(123, 77, 255, 0.1) 0%, transparent 50%);
        z-index: -1;
    }

    .work-hero-title {
        font-size: 4rem;
        line-height: 1.2;
        margin-bottom: 20px;
        background: linear-gradient(90deg, #ffffff, var(--accent-blue));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .work-hero-subtitle {
        font-size: 1.3rem;
        color: var(--text-light);
        max-width: 700px;
        margin: 0 auto 40px;
        line-height: 1.6;
    }

    .work-stats {
        display: flex;
        justify-content: center;
        gap: 60px;
        margin-top: 60px;
        flex-wrap: wrap;
    }

    .work-stat {
        text-align: center;
    }

    .work-stat-number {
        font-size: 3rem;
        font-weight: 700;
        background: var(--primary-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        line-height: 1;
        margin-bottom: 10px;
    }

    .work-stat-label {
        color: var(--text-gray);
        font-size: 1rem;
    }

    /* ---------------- PROJECTS GRID ---------------- */
    .work-projects {
        background: rgba(0, 0, 0, 0.3);
        border-radius: 20px;
        padding: 80px 8%;
    }

    .projects-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 40px;
        margin-top: 60px;
    }

    .project-card {
        background: var(--card-bg);
        border-radius: 20px;
        overflow: hidden;
        border: 1px solid var(--card-border);
        transition: all 0.3s;
        position: relative;
    }

    .project-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(76, 225, 255, 0.15);
        border-color: rgba(76, 225, 255, 0.3);
    }

    .project-image {
        width: 100%;
        height: 250px;
        object-fit: cover;
        border-bottom: 1px solid var(--card-border);
    }

    .project-content {
        padding: 30px;
    }

    .project-category {
        display: inline-block;
        padding: 6px 15px;
        background: rgba(76, 225, 255, 0.1);
        color: var(--accent-blue);
        border-radius: 20px;
        font-size: 0.9rem;
        font-weight: 600;
        margin-bottom: 15px;
    }

    .project-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
        color: white;
    }

    .project-description {
        color: var(--text-gray);
        line-height: 1.6;
        margin-bottom: 25px;
    }

    .project-results {
        background: rgba(255, 255, 255, 0.03);
        border-radius: 10px;
        padding: 20px;
        margin-bottom: 25px;
    }

    .result-item {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 10px;
    }

    .result-icon {
        color: #4ce1ff;
        font-size: 1.2rem;
    }

    .result-text {
        color: var(--text-light);
    }

    .project-link {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        color: var(--accent-blue);
        text-decoration: none;
        font-weight: 600;
        transition: gap 0.3s;
    }

    .project-link:hover {
        gap: 15px;
    }

    /* ---------------- DETAILED CASE STUDIES ---------------- */
    .case-studies {
        padding: 100px 8%;
    }

    .case-study {
        display: flex;
        align-items: center;
        gap: 60px;
        margin-bottom: 100px;
    }

    .case-study:nth-child(even) {
        flex-direction: row-reverse;
    }

    .case-visual {
        flex: 1;
        position: relative;
    }

    .case-image {
        width: 100%;
        border-radius: 20px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }

    .case-stats-overlay {
        position: absolute;
        bottom: 20px;
        left: 20px;
        right: 20px;
        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(10px);
        border-radius: 15px;
        padding: 20px;
        display: flex;
        justify-content: space-around;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .case-stat {
        text-align: center;
    }

    .case-stat-value {
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--accent-blue);
        line-height: 1;
    }

    .case-stat-label {
        font-size: 0.9rem;
        color: var(--text-gray);
        margin-top: 5px;
    }

    .case-content {
        flex: 1;
    }

    .case-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
        color: white;
    }

    .case-description {
        color: var(--text-light);
        line-height: 1.6;
        margin-bottom: 30px;
        font-size: 1.1rem;
    }

    .case-challenge {
        background: rgba(255, 0, 0, 0.05);
        border-left: 4px solid #ff4d4d;
        padding: 20px;
        border-radius: 0 10px 10px 0;
        margin-bottom: 25px;
    }

    .case-solution {
        background: rgba(76, 225, 255, 0.05);
        border-left: 4px solid var(--accent-blue);
        padding: 20px;
        border-radius: 0 10px 10px 0;
        margin-bottom: 25px;
    }

    .case-section-title {
        font-size: 1.2rem;
        margin-bottom: 10px;
        color: white;
    }

    .case-section-content {
        color: var(--text-gray);
        line-height: 1.6;
    }

    .case-features {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
        margin-bottom: 30px;
    }

    .case-feature {
        display: flex;
        align-items: center;
        gap: 10px;
        color: var(--text-light);
    }

    .case-feature i {
        color: var(--accent-blue);
    }

    /* ---------------- WORK CTA ---------------- */
    .work-cta {
        text-align: center;
        background: var(--primary-gradient);
        padding: 100px 8%;
        border-radius: 20px;
        margin-top: 80px;
        position: relative;
        overflow: hidden;
    }

    .work-cta::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none"><path d="M0,0V100H1000V0C800,50 600,80 400,80C200,80 0,50 0,0Z" fill="rgba(255,255,255,0.1)"/></svg>');
        background-size: cover;
        background-position: bottom;
    }

    .work-cta-content {
        position: relative;
        z-index: 2;
    }

    .work-cta-title {
        font-size: 3rem;
        margin-bottom: 20px;
    }

    .work-cta-desc {
        font-size: 1.2rem;
        margin-bottom: 40px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        opacity: 0.9;
    }

    .work-cta-btn {
        padding: 18px 40px;
        background: white;
        color: var(--dark-bg);
        border-radius: 10px;
        text-decoration: none;
        font-weight: 700;
        font-size: 1.1rem;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        transition: all 0.3s;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .work-cta-btn:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    }

    /* ---------------- RESPONSIVE ---------------- */
    @media (max-width: 1024px) {
        .work-hero-title {
            font-size: 3rem;
        }

        .case-study {
            flex-direction: column;
            gap: 40px;
        }

        .case-study:nth-child(even) {
            flex-direction: column;
        }

        .work-stats {
            gap: 40px;
        }
    }

    @media (max-width: 768px) {
     
        .work-hero-title {
            font-size: 2.5rem;
        }

        .work-hero-subtitle {
            font-size: 1.1rem;
        }

        .work-stats {
            gap: 30px;
        }

        .work-stat-number {
            font-size: 2.5rem;
        }

        .projects-grid {
            grid-template-columns: 1fr;
        }

    }

    @media (max-width: 480px) {
    
        .work-hero-title {
            font-size: 2rem;
        }

        .work-hero {
            padding: 60px 5% 80px;
        }

        .work-stats {
            flex-direction: column;
            gap: 30px;
        }

        .case-title {
            font-size: 2rem;
        }

        .work-cta-title {
            font-size: 2.2rem;
        }
    }
/* end Work page */