/* ==========================================================================
   Digiature Technology - Services Section Styles
   ========================================================================== */

/* first section styling */
/* ==========================================
   PREMIUM MOBILE HERO SECTION
========================================== */

.services-hero {
    position: relative;
    overflow: hidden;
    padding: 130px 0 120px;
    background: linear-gradient(135deg, #f8fbff 0%, #ffffff 50%, #f4f8ff 100%);
}

/* ==========================================
   BACKGROUND BLUR EFFECTS
========================================== */

.services-hero-blur {
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
    z-index: 1;
}

.services-hero-blur.one {
    width: 420px;
    height: 420px;
    background: radial-gradient(rgba(30, 64, 175, 0.1), transparent 70%);
    top: -140px;
    left: -120px;
}

.services-hero-blur.two {
    width: 360px;
    height: 360px;
    background: radial-gradient(rgba(14, 165, 233, 0.1), transparent 70%);
    bottom: -120px;
    right: -100px;
}

/* ==========================================
   IMAGE SIDE
========================================== */

.services-hero-image-wrapper {
    position: relative;
    z-index: 2;
}

.services-hero-image {
    width: 100%;
    border-radius: 34px;
    object-fit: cover;
    box-shadow: 0 35px 80px rgba(15, 23, 42, 0.1);
    border: 1px solid rgba(15, 23, 42, 0.05);
}

/* ==========================================
   FLOATING CARD
========================================== */

.services-floating-card {
    position: absolute;
    bottom: -60px;
    left: -20px;
    padding: 18px 22px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    animation: floatCard 4s ease-in-out infinite;
}

.services-floating-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 18px;
    background: linear-gradient(135deg, #2563eb, #0ea5e9);
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-floating-icon i {
    color: #ffffff;
    font-size: 22px;
}

.services-floating-card h6 {
    font-size: 15px;
    color: #132b57;
    font-weight: 600;
    margin-bottom: 4px;
}

.services-floating-card span {
    font-size: 13px;
    color: rgba(19, 43, 87, 0.75);
}

/* ==========================================
   CONTENT SIDE
========================================== */

.services-content-wrapper {
    position: relative;
    z-index: 2;
}

.services-mini-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border-radius: 50px;
    background: rgba(37, 99, 235, 0.06);
    border: 1px solid rgba(37, 99, 235, 0.08);
    color: #2563eb;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 26px;
}

.service-title {
    font-size: 60px;
    line-height: 1.15;
    color: #132b57;
    font-weight: 500;
    letter-spacing: -1.8px;
    margin-bottom: 28px;
}

.service-title span {
    color: #0ea5e9;
}

.service-description {
    font-size: 18px;
    line-height: 1.95;
    color: rgba(19, 43, 87, 0.82);
    margin-bottom: 36px;
}

/* ==========================================
   HIGHLIGHT BOX
========================================== */

.highlight-box {
    position: relative;
    overflow: hidden;
    padding: 28px 32px;
    border-radius: 26px;
    background: linear-gradient(135deg, #ffffff, #f4f9ff);
    border: 1px solid rgba(37, 99, 235, 0.08);
    color: #132b57;
    font-size: 16px;
    line-height: 1.9;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.05);
}

.highlight-box::before {
    content: "";
    position: absolute;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #2563eb, #0ea5e9);
    left: 0;
    top: 0;
}

/* ==========================================
   FLOAT ANIMATION
========================================== */

@keyframes floatCard {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 1199px) {
    .service-title {
        font-size: 52px;
    }
}

@media (max-width: 991px) {
    .services-hero {
        padding: 100px 0 95px;
    }

    .service-title {
        font-size: 44px;
    }

    .service-description {
        font-size: 17px;
    }

    .services-floating-card {
        left: 10px;
    }
}

@media (max-width: 767px) {
    .services-hero {
        padding: 75px 0;
    }

    .services-content-wrapper {
        text-align: center !important;
    }

    .service-title {
        font-size: 34px;
        line-height: 1.3;
        letter-spacing: -1px;
    }

    .service-description {
        font-size: 15px;
        line-height: 1.85;
        margin-bottom: 26px;
    }

    .highlight-box {
        padding: 22px 20px;
        border-radius: 22px;
        font-size: 14px;
        line-height: 1.8;
    }

    .services-hero-image {
        border-radius: 26px;
    }

    .services-floating-card {
        position: relative;
        bottom: 0;
        left: 0;
        margin-top: 18px;
        width: fit-content;
    }

    .services-floating-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        border-radius: 14px;
    }

    .services-floating-icon i {
        font-size: 18px;
    }

    .services-floating-card h6 {
        font-size: 14px;
    }

    .services-floating-card span {
        font-size: 12px;
    }
}

/* 1. General & Common Utility Styles */
.services-hero,
.performance-section,
.services-cards-section {
    overflow-x: hidden;
}

/* 2. Hero Section Styles */
.services-hero {
    padding: 80px 0;
    background-color: #ffffff;
    color: #333;
}

.service-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a2a6c;
    margin-bottom: 24px;
    line-height: 1.2;
}

.service-description {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.highlight-box {
    background-color: #f8f9fa;
    border-left: 5px solid #007bff;
    padding: 25px;
    font-weight: 600;
    color: #2c3e50;
    border-radius: 0 8px 8px 0;
    text-align: left;
}

/* 3. Performance Section Styles (With Moving Patterns) */
.performance-section {
    padding: 80px 0;
    background-color: #fff0be;
    color: #333;
    position: relative;
}

/* Moving Pattern Background */
.performance-section::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    animation: floatCircle 8s infinite alternate ease-in-out;
    z-index: 0;
}

@keyframes floatCircle {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(-20px, 40px) scale(1.1);
    }
}

.perf-title,
.perf-subtitle,
.perf-footer {
    position: relative;
    z-index: 1;
}

.perf-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.perf-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.perf-grid {
    background-color: #ffb399;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.perf-grid:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.perf-list {
    list-style: none;
    padding: 0;
}

.perf-list li {
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
    transition: transform 0.2s;
}

.perf-list li:hover {
    transform: translateX(5px);
    font-weight: bold;
}

.perf-list li::before {
    content: "➤";
    position: absolute;
    left: 0;
    color: #a04000;
}

.perf-footer {
    font-weight: 600;
    font-size: 1.1rem;
    color: #333;
    border-top: 2px solid #ffb399;
    padding-top: 20px;
}

/* 4. Service Cards Section Styles */
.services-cards-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a2a6c;
    margin-bottom: 15px;
}

.section-subtitle {
    color: #666;
    margin-bottom: 40px;
}

.service-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #ffb399;
}

.icon-box {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1a2a6c;
    transition: transform 0.3s ease;
}

.service-card:hover .icon-box {
    transform: scale(1.1);
    color: #ff8c00;
}

.service-card h4 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: #333;
}

.service-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}
/* Tech stack */
/* ================= TECHNOLOGIES SECTION ================= */
.app-tech-section {
    padding: 100px 8%;
    background: linear-gradient(180deg, #ffffff, #f1f5f9);
    position: relative;
}

/* container */
.app-tech-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: start;
}

/* heading */
.app-tech-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
}

.app-tech-text p {
    font-size: 16px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 10px;
}

.app-tech-subtitle {
    margin-top: 25px;
    font-weight: 600;
    color: #1e293b;
}

/* tech grid */
.app-tech-grid {
    margin-top: 15px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.app-tech-grid span {
    background: #ffffff;
    padding: 12px 14px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
    font-size: 14px;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s ease;
    cursor: pointer;
}

.app-tech-grid span i {
    color: #6366f1;
}

.app-tech-grid span:hover {
    transform: translateY(-5px);
    background: #6366f1;
    color: #fff;
}

.app-tech-grid span:hover i {
    color: #fff;
}

/* DARK SIDE BOX (middle contrast section) */
.app-tech-dark {
    background: #0f172a;
    color: #fff;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

/* glow effect */
.app-tech-dark::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(99, 102, 241, 0.25);
    filter: blur(40px);
    border-radius: 50%;
}

.app-tech-dark h3 {
    font-size: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.app-tech-dark ul {
    list-style: none;
    padding: 0;
}

.app-tech-dark ul li {
    font-size: 15px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #cbd5e1;
    transition: 0.3s ease;
}

.app-tech-dark ul li i {
    color: #60a5fa;
}

.app-tech-dark ul li:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.app-tech-note {
    margin-top: 20px;
    font-size: 13px;
    color: #94a3b8;
    line-height: 1.6;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
}

/* responsive */
@media (max-width: 900px) {
    .app-tech-container {
        grid-template-columns: 1fr;
    }

    .app-tech-grid {
        grid-template-columns: 1fr;
    }
}

/* Features */
/* ================= FEATURES SECTION ================= */
.app-features-section {
    padding: 110px 8%;
    background: linear-gradient(135deg, #e9f5db, #ffffff);
    position: relative;
    overflow: hidden;
}

/* subtle blue glow accent */
.app-features-section::before {
    content: "";
    position: absolute;
    top: -120px;
    left: -120px;
    width: 300px;
    height: 300px;
    background: rgba(0, 97, 255, 0.12);
    filter: blur(60px);
    border-radius: 50%;
}

.app-features-container {
    max-width: 1200px;
    margin: auto;
}

/* header */
.app-features-header {
    text-align: center;
    margin-bottom: 60px;
}

.app-features-header h2 {
    font-size: 38px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.app-features-header p {
    font-size: 16px;
    color: #475569;
    max-width: 700px;
    margin: auto;
    line-height: 1.7;
}

/* grid */
.app-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* feature card */
.feature-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 97, 255, 0.08);
    position: relative;
    overflow: hidden;
}

/* hover gradient effect */
.feature-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 97, 255, 0.08),
        rgba(233, 245, 219, 0.4)
    );
    opacity: 0;
    transition: 0.4s ease;
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-card i {
    font-size: 26px;
    color: #0061ff;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 14px;
    color: #1e293b;
    line-height: 1.5;
    position: relative;
    z-index: 2;
}

/* footer note */
.app-features-footer {
    margin-top: 50px;
    text-align: center;
    padding: 20px;
}

.app-features-footer p {
    font-size: 15px;
    color: #475569;
    max-width: 800px;
    margin: auto;
    line-height: 1.7;
}

/* responsive */
@media (max-width: 1024px) {
    .app-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .app-features-grid {
        grid-template-columns: 1fr;
    }

    .app-features-header h2 {
        font-size: 28px;
    }
}

/* AI & Automation */
/* ================= AI SECTION ================= */
.ai-mobile-section {
    padding: 120px 8%;
    background: linear-gradient(135deg, #ebebd3, #ffffff);
    position: relative;
    overflow: hidden;
}

/* subtle tech glow */
.ai-mobile-section::before {
    content: "";
    position: absolute;
    top: -150px;
    right: -150px;
    width: 350px;
    height: 350px;
    background: rgba(8, 61, 119, 0.15);
    filter: blur(70px);
    border-radius: 50%;
}

/* container */
.ai-mobile-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

/* text */
.ai-mobile-text h2 {
    font-size: 38px;
    font-weight: 700;
    color: #083d77;
    margin-bottom: 15px;
}

.ai-mobile-text p {
    font-size: 16px;
    color: #334155;
    line-height: 1.7;
    margin-bottom: 10px;
}

.ai-subtext {
    margin-top: 20px;
    font-weight: 600;
    color: #1e293b;
}

/* feature list */
.ai-feature-list {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.ai-feature-list li {
    background: #ffffff;
    padding: 14px 16px;
    margin-bottom: 12px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #1e293b;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #083d77;
    transition: 0.3s ease;
}

.ai-feature-list li i {
    color: #083d77;
    font-size: 16px;
}

.ai-feature-list li:hover {
    transform: translateX(6px);
    background: #083d77;
    color: #ffffff;
}

.ai-feature-list li:hover i {
    color: #ffffff;
}

/* footer text */
.ai-footer-text {
    margin-top: 25px;
    font-size: 15px;
    color: #475569;
}

/* RIGHT PANEL (DARK TECH BOX) */
.ai-mobile-panel {
    background: #083d77;
    color: #ffffff;
    padding: 35px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

/* animated glow */
.ai-glow-box::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 200px;
    height: 200px;
    background: rgba(235, 235, 211, 0.2);
    filter: blur(60px);
    border-radius: 50%;
}

.ai-glow-box i {
    font-size: 40px;
    margin-bottom: 15px;
    color: #ebebd3;
}

.ai-glow-box h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.ai-glow-box p {
    font-size: 14px;
    color: #dbeafe;
    line-height: 1.6;
}

/* responsive */
@media (max-width: 900px) {
    .ai-mobile-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .ai-feature-list li {
        justify-content: center;
    }
}

/* Industries */
/* ================= ORBIT INDUSTRIES SECTION ================= */
.industries-orbit-section {
    padding: 130px 8%;
    background: radial-gradient(circle at top, #ffffff, #f1f5f9);
    position: relative;
    overflow: hidden;
}

/* soft animated glow background */
.industries-orbit-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(0, 97, 255, 0.08);
    filter: blur(90px);
    top: -150px;
    left: -150px;
    border-radius: 50%;
}

.industries-orbit-container {
    max-width: 1200px;
    margin: auto;
    position: relative;
    height: 600px;
}

/* CENTER HUB */
.orbit-center {
    position: absolute;
    top: 20%;
    left: 40%;
    transform: translate(-50%, -50%);
    text-align: center;
    background: #ffffff;
    padding: 40px;
    border-radius: 50%;
    width: 260px;
    height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 2px dashed rgba(0, 97, 255, 0.3);
}

.orbit-center h2 {
    font-size: 18px;
    color: #0f172a;
    margin-bottom: 10px;
}

.orbit-center p {
    font-size: 13px;
    color: #64748b;
}

/* ORBIT ITEMS BASE */
.orbit-item {
    position: absolute;
    width: 220px;
    background: #ffffff;
    padding: 18px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
    border-left: 4px solid #0061ff;
}

.orbit-item:hover {
    transform: scale(1.05);
}

/* icon */
.orbit-item span {
    font-size: 24px;
}

/* title */
.orbit-item h3 {
    font-size: 16px;
    margin: 5px 0;
    color: #0f172a;
}

/* text */
.orbit-item p {
    font-size: 13px;
    color: #475569;
}

/* POSITIONING (ORBIT LAYOUT) */
.item-1 {
    top: 10%;
    left: 5%;
}
.item-2 {
    top: 10%;
    right: 5%;
}
.item-3 {
    bottom: 10%;
    left: 5%;
}
.item-4 {
    bottom: 10%;
    right: 5%;
}
.item-5 {
    bottom: -5%;
    left: 50%;
    transform: translateX(-50%);
}

/* responsive fallback */
/* ================= RESPONSIVE FIX (SAFE ORBIT -> STACK) ================= */
@media (max-width: 900px) {
    .industries-orbit-container {
        height: auto;
        padding: 40px 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* center becomes normal block */
    .orbit-center {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 100%;
        max-width: 320px;
        height: auto;
        border-radius: 20px;
        padding: 25px;
        margin-bottom: 25px;
    }

    /* disable absolute positioning */
    .orbit-item {
        position: relative;
        width: 100%;
        max-width: 340px;
        margin-bottom: 15px;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        transform: none !important;
    }

    /* clean spacing for last item */
    .item-5 {
        transform: none !important;
    }

    /* optional improvement */
    .orbit-item:hover {
        transform: translateY(-5px) !important;
    }
}

/* Benefits */
/* ================= GLASS BENEFITS SECTION ================= */
.benefits-glass-section {
    padding: 120px 8%;
    position: relative;
    overflow: hidden;
    background: linear-gradient(120deg, #0f172a, #1e293b);
}

/* animated gradient blobs */
.benefits-glass-section::before,
.benefits-glass-section::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(99, 102, 241, 0.3);
    filter: blur(120px);
    border-radius: 50%;
    animation: floatGlow 6s ease-in-out infinite;
}

.benefits-glass-section::after {
    right: -120px;
    bottom: -120px;
    background: rgba(0, 97, 255, 0.25);
}

@keyframes floatGlow {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(30px);
    }
}

/* container */
.benefits-glass-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* LEFT SIDE */
.benefits-impact h2 {
    font-size: 40px;
    color: #ffffff;
    margin-bottom: 15px;
}

.benefits-impact p {
    font-size: 15px;
    color: #cbd5e1;
    line-height: 1.7;
}

/* badges */
.impact-badges {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.impact-badges span {
    background: rgba(255, 255, 255, 0.08);
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 13px;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

/* footer */
.impact-footer {
    margin-top: 25px;
    font-size: 14px;
    color: #94a3b8;
}

/* RIGHT GRID */
.benefits-glass-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* glass card */
.glass-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    padding: 22px;
    border-radius: 18px;
    color: #ffffff;
    transition: 0.3s ease;
}

/* hover */
.glass-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.12);
}

/* icon */
.glass-card i {
    font-size: 22px;
    margin-bottom: 10px;
    color: #60a5fa;
}

/* text */
.glass-card h3 {
    font-size: 16px;
    margin-bottom: 6px;
}

.glass-card p {
    font-size: 13px;
    color: #cbd5e1;
    line-height: 1.5;
}

/* responsive */
@media (max-width: 900px) {
    .benefits-glass-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .benefits-glass-grid {
        grid-template-columns: 1fr;
    }

    .impact-badges {
        justify-content: center;
    }
}

/* Approach */
/* ================= UI/UX DIAGONAL SECTION (FIXED + CLEAN) ================= */
.uiux-diagonal-section {
    padding: 120px 8%;
    position: relative;
    overflow: hidden;
    background: #f8fafc;
}

/* LEFT DIAGONAL BACKGROUND (SAFE VERSION) */
.uiux-diagonal-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;

    width: 55%;
    height: 100%;

    background: linear-gradient(135deg, #d7dce1, #083d77);

    /* FIXED: safer diagonal effect */
    transform: skewX(-12deg);
    transform-origin: top left;

    z-index: 0;
}

/* container */
.uiux-diagonal-container {
    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;

    align-items: center;
    position: relative;
    z-index: 2;
}

/* ================= LEFT SIDE ================= */
.uiux-left {
    color: #ffffff;
    padding-right: 20px;
}

.uiux-left h2 {
    font-size: 38px;
    margin-bottom: 15px;
    line-height: 1.2;
}

.uiux-left p {
    font-size: 15px;
    color: #dbeafe;
    line-height: 1.7;
}

/* ================= RIGHT SIDE ================= */
.uiux-right {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* STEP BOX */
.uiux-step {
    display: flex;
    gap: 15px;
    align-items: flex-start;

    background: #ffffff;
    padding: 16px 18px;
    border-radius: 14px;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    border-left: 4px solid #083d77;

    transition: 0.3s ease;
    position: relative;
    z-index: 2;
}

.uiux-step:hover {
    transform: translateX(6px);
}

/* number */
.uiux-step span {
    font-size: 14px;
    font-weight: 700;
    color: #083d77;
    min-width: 32px;
}

/* text */
.uiux-step h3 {
    font-size: 15px;
    margin-bottom: 4px;
    color: #0f172a;
}

.uiux-step p {
    font-size: 13px;
    color: #475569;
}

/* bottom text */
.uiux-bottom {
    margin-top: 40px;
    text-align: center;
    font-size: 15px;
    color: #334155;
    position: relative;
    z-index: 2;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
    .uiux-diagonal-section {
        padding: 80px 6%;
    }

    /* background becomes top block */
    .uiux-diagonal-section::before {
        width: 100%;
        height: 280px;
        transform: skewX(0deg);
    }

    .uiux-diagonal-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .uiux-left {
        padding-right: 0;
    }

    .uiux-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .uiux-step span {
        margin-bottom: 6px;
    }
}

/* Why Choose */
/* ================= WHY DIGIATURE SECTION ================= */
.why-digiature-section {
    padding: 120px 8%;
    position: relative;
    overflow: hidden;

    /* gradient using given colors */
    background: linear-gradient(135deg, #f3e1e3, #c78283);
}

/* soft glow */
.why-digiature-section::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    background: rgba(199, 130, 131, 0.25);
    filter: blur(90px);
    top: -120px;
    right: -120px;
    border-radius: 50%;
}

/* container */
.why-digiature-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
}

/* LEFT */
.why-left h2 {
    font-size: 38px;
    color: #2e4057;
    margin-bottom: 15px;
    line-height: 1.2;
}

.why-left p {
    font-size: 15px;
    color: #3b3b3b;
    line-height: 1.7;
}

.why-highlight {
    margin-top: 18px;
    font-weight: 600;
    color: #2e4057;
}

/* RIGHT FLOATING BADGES */
.why-right {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

/* badge */
.why-badge {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);

    padding: 10px 14px;
    border-radius: 30px;

    font-size: 13px;
    color: #2e4057;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
    cursor: default;
}

/* hover */
.why-badge:hover {
    transform: translateY(-5px) scale(1.05);
    background: #ffffff;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
    .why-digiature-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .why-right {
        justify-content: center;
    }
}

/* Why Choose */
/* ================= FUTURE MOBILE SECTION ================= */
.future-mobile-section {
    padding: 120px 8%;
    position: relative;
    overflow: hidden;

    /* soft futuristic background */
    background: linear-gradient(135deg, #fbf5f3, #8daa9d);
}

/* glow effect */
.future-mobile-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(141, 170, 157, 0.25);
    filter: blur(90px);
    top: -120px;
    right: -120px;
    border-radius: 50%;
}

/* container */
.future-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
}

/* LEFT */
.future-left h2 {
    font-size: 38px;
    color: #2e4057;
    margin-bottom: 15px;
    line-height: 1.2;
}

.future-left p {
    font-size: 15px;
    color: #3b3b3b;
    line-height: 1.7;
}

.future-highlight {
    margin-top: 18px;
    font-weight: 600;
    color: #2e4057;
}

/* RIGHT TIMELINE */
.future-right {
    position: relative;
    padding-left: 30px;
}

/* vertical line */
.future-line {
    position: absolute;
    left: 8px;
    top: 0;
    width: 2px;
    height: 100%;
    background: rgba(46, 64, 87, 0.3);
}

/* item */
.future-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 22px;
    position: relative;
}

/* dot */
.future-item span {
    width: 14px;
    height: 14px;
    background: #2e4057;
    border-radius: 50%;
    margin-top: 4px;
    position: relative;
    z-index: 2;
}

/* text */
.future-item h3 {
    font-size: 15px;
    color: #2e4057;
    font-weight: 600;
}

/* hover effect */
.future-item:hover h3 {
    transform: translateX(5px);
    transition: 0.3s ease;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
    .future-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .future-right {
        padding-left: 0;
    }

    .future-line {
        display: none;
    }

    .future-item {
        justify-content: center;
    }
}

/* CTA */
/* ================= CTA LAUNCH SECTION ================= */
.cta-launch-section {
    padding: 140px 8%;
    position: relative;
    overflow: hidden;

    /* main gradient */
    background: linear-gradient(135deg, #210cae, #4dc9e6);
}

/* ================= FLOATING BACKGROUND WAVES ================= */
.cta-bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.5;
    animation: floatWave 8s ease-in-out infinite;
}

.shape1 {
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.25);
    top: -100px;
    left: -100px;
}

.shape2 {
    width: 350px;
    height: 350px;
    background: rgba(0, 0, 0, 0.15);
    bottom: -120px;
    right: -120px;
    animation-delay: 2s;
}

/* wave animation */
@keyframes floatWave {
    0%,
    100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(30px) scale(1.05);
    }
}

/* ================= FLOATING CUBES ================= */
.cta-cubes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.cta-cubes span {
    position: absolute;
    width: 18px;
    height: 18px;
    background: rgba(255, 255, 255, 0.3);
    animation: cubeFloat 6s infinite ease-in-out;
}

/* cube positions */
.cta-cubes span:nth-child(1) {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.cta-cubes span:nth-child(2) {
    top: 60%;
    left: 70%;
    animation-delay: 2s;
}

.cta-cubes span:nth-child(3) {
    top: 40%;
    left: 85%;
    animation-delay: 4s;
}

/* cube animation */
@keyframes cubeFloat {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-25px) rotate(45deg);
    }
}

/* ================= CTA CONTENT ================= */
.cta-container {
    max-width: 900px;
    margin: auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-container h2 {
    font-size: 40px;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.2;
}

.cta-container p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

.cta-highlight {
    margin-top: 18px;
    font-weight: 600;
    color: #ffffff;
}

/* ================= BUTTON ================= */
.cta-button {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 28px;
    background: #ffffff;
    color: #210cae;
    font-weight: 600;
    border-radius: 40px;
    text-decoration: none;
    transition: 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    background: #4dc9e6;
    color: #ffffff;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .cta-container h2 {
        font-size: 28px;
    }

    .cta-container p {
        font-size: 14px;
    }

    .cta-button {
        padding: 12px 22px;
    }
}

/* FAQ */
/* ================= FAQ SECTION ================= */
.faq-section {
    padding: 120px 8%;
    background: linear-gradient(135deg, #ffffff, #f3e8ff);
    position: relative;
    overflow: hidden;
}

/* purple glow blobs */
.faq-section::before,
.faq-section::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(128, 0, 255, 0.15);
    filter: blur(100px);
    border-radius: 50%;
}

.faq-section::before {
    top: -120px;
    left: -120px;
}

.faq-section::after {
    bottom: -120px;
    right: -120px;
}

/* container */
.faq-container {
    max-width: 900px;
    margin: auto;
    position: relative;
    z-index: 2;
    text-align: center;
}

.faq-container h2 {
    font-size: 36px;
    color: #4c1d95;
    margin-bottom: 40px;
}

/* FAQ list */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* item */
.faq-item {
    background: #ffffff;
    border: 1px solid rgba(76, 29, 149, 0.2);
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: 0.3s ease;
}

/* question */
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 18px;
    cursor: pointer;
    font-weight: 600;
    color: #4c1d95;
}

.faq-question i {
    transition: 0.3s ease;
    color: #7c3aed;
}

/* answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 18px;
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
    transition: all 0.3s ease;
}

/* ACTIVE STATE */
.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 18px 16px;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

/* hover */
.faq-item:hover {
    transform: translateY(-3px);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .faq-container h2 {
        font-size: 26px;
    }

    .faq-question {
        font-size: 14px;
    }
}
