/* --- SECTION STYLING --- */
.ios-app-dev-section {
    padding: 100px 0;
    background-color: #ffffff;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    overflow-x: hidden;
}

.ios-app-dev-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

/* Header & Typography */
.ios-app-dev-title {
    font-size: 58px;
    font-weight: 800;
    color: #0b0c10;
    line-height: 1.1;
    margin-bottom: 25px;
}

.ios-app-dev-badge {
    background: #9d7cfd;
    color: white;
    padding: 2px 24px;
    border-radius: 40px;
    font-size: 34px;
    display: inline-block;
    transform: rotate(-3deg) translateY(-5px);
    box-shadow: 4px 4px 15px rgba(157, 124, 253, 0.4);
}

.ios-app-dev-subtitle {
    color: #6a6a6a;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.ios-app-dev-cta {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.ios-app-dev-main-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    line-height: 1;
}

.ios-app-dev-main-btn:hover {
    background: #333;
    transform: translateY(-2px);
}

.ios-app-dev-alt-btn {
    background: transparent;
    color: #000;
    border: 2px solid #000;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    line-height: 1;
}

.ios-app-dev-alt-btn:hover {
    background: #000;
    color: #fff;
    transform: translateY(-2px);
}

/* Card Grid Layout */
.ios-app-dev-card-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 16px;
    margin-top: 100px;
    margin-bottom: 80px;
    height: 480px; /* Space for staggering */
}

/* Individual Card Styles */
.ios-app-dev-card {
    width: 210px;
    border-radius: 24px;
    padding: 12px;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.ios-app-dev-tag {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(4px);
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #333;
}

.ios-app-dev-tag span {
    font-size: 8px;
    vertical-align: middle;
    margin-right: 4px;
}

.ios-app-dev-visual {
    width: 100%;
    height: 260px;
    border-radius: 18px;
    background-size: cover;
    background-position: center;
}

/* Colors & Staggering Effects */
.ios-app-dev-c-green { background-color: #97e172; transform: translateY(-50px); }
.ios-app-dev-c-white-blue { background-color: #f1f4f9; transform: translateY(20px); box-shadow: 0 15px 35px rgba(0,0,0,0.06); }
.ios-app-dev-c-yellow { background-color: #e9ff70; transform: translateY(-70px); }
.ios-app-dev-c-white-pink { background-color: #f9f1f6; transform: translateY(30px); box-shadow: 0 15px 35px rgba(0,0,0,0.06); }
.ios-app-dev-c-purple { background-color: #a886ff; transform: translateY(-30px); }

/* Placeholder Gradients for 3D Visuals */
.ios-app-dev-vis-1 { background: linear-gradient(45deg, #1abc9c, #2ecc71); }
.ios-app-dev-vis-2 { background: linear-gradient(135deg, #74ebd5 0%, #9face6 100%); }
.ios-app-dev-vis-3 { background: linear-gradient(45deg, #f1c40f, #f39c12); }
.ios-app-dev-vis-4 { background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%); }
.ios-app-dev-vis-5 { background: linear-gradient(45deg, #8e44ad, #c39bd3); }

/* Hover animations */
.ios-app-dev-card:hover {
    transform: scale(1.05) translateY(-20px);
    z-index: 10;
}

/* Trust Banner */
.ios-app-dev-trust-banner p {
    color: #999;
    font-size: 14px;
    letter-spacing: 0.5px;
    margin-bottom: 30px;
}

.ios-app-dev-logo-row {
    display: flex;
    justify-content: center;
    gap: 50px;
    filter: grayscale(1);
    opacity: 0.4;
    font-weight: 900;
    font-size: 20px;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .ios-app-dev-card-wrapper {
        flex-wrap: wrap;
        height: auto;
        gap: 20px;
        padding-top: 50px;
    }
    .ios-app-dev-card {
        width: 45%;
        transform: none !important; /* Remove staggering on mobile */
    }
    .ios-app-dev-title { font-size: 38px; }
    .ios-app-dev-badge { font-size: 24px; }
}

@media (max-width: 600px) {
    .ios-app-dev-card { width: 100%; }
    .ios-app-dev-logo-row { flex-wrap: wrap; gap: 20px; }
}

/* --- SECTION STYLING --- */
.ios-expert-section {
    padding: 120px 0 0 0;
    background-color: #fafafa;
    overflow: hidden;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.ios-expert-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px 80px 20px;
}

.ios-expert-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Visual Area / Card Stack */
.ios-expert-visual-area {
    position: relative;
    display: flex;
    justify-content: center;
}

.ios-expert-card-stack {
    position: relative;
    width: 320px;
    height: 420px;
}

.ios-expert-card-outline {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 1.5px solid #000;
    border-radius: 40px;
    z-index: 1;
}

.ios-expert-main-card {
    position: relative;
    width: 100%;
    height: 100%;
    background: #0a0b10;
    border-radius: 40px;
    overflow: visible; /* To let badge pop out */
    z-index: 2;
}

.ios-expert-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 40px;
}

/* Rotating Badge */
.ios-expert-rotating-badge {
    position: absolute;
    top: -40px;
    left: -40px;
    width: 110px;
    height: 110px;
    background: #9d7cfd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    box-shadow: 0 10px 25px rgba(157, 124, 253, 0.4);
}

.ios-expert-badge-svg {
    width: 100%;
    height: 100%;
    animation: ios-expert-rotate 10s linear infinite;
}

.ios-expert-badge-text {
    fill: white;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

.ios-expert-badge-arrow {
    position: absolute;
    color: white;
    font-size: 24px;
    font-weight: bold;
}

@keyframes ios-expert-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Content Area */
.ios-expert-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #111;
}

.ios-expert-description {
    font-size: 17px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
}

.ios-expert-link {
    display: inline-block;
    color: #9d7cfd;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    width: 100%;
}

.ios-expert-link span {
    margin-left: 5px;
    font-size: 20px;
    vertical-align: middle;
}

.ios-expert-sketch-arrow {
    margin-top: 20px;
    opacity: 0.6;
}

/* MARQUEE SCROLLING EFFECT */
.ios-expert-marquee-wrap {
    width: 100%;
    background: #fff;
    border-top: 1px solid #f0f0f0;
    padding: 30px 0;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
}

.ios-expert-marquee-content {
    display: inline-block;
    animation: ios-expert-scroll 30s linear infinite;
}

.ios-expert-marquee-content span {
    display: inline-block;
    font-size: 32px;
    font-weight: 800;
    color: #2b3a55; /* Dark bluish gray */
    padding-right: 50px;
    opacity: 0.9;
}

@keyframes ios-expert-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Responsive */
@media (max-width: 900px) {
    .ios-expert-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }
    .ios-expert-visual-area {
        margin-top: 40px;
    }
    .ios-expert-title { font-size: 36px; }
    .ios-expert-marquee-content span { font-size: 24px; }
}


/* --- SERVICES SECTION STYLING --- */
.ios-srv-section {
    padding: 100px 0;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.ios-srv-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.ios-srv-main-title {
    font-size: 80px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    color: #08090d;
}

/* Grid Layout */
.ios-srv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Card Styling */
.ios-srv-card {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 24px;
    padding: 40px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.ios-srv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.04);
}

/* Featured (Dark) Card Override */
.ios-srv-card-featured {
    background: #05070a;
    color: #ffffff;
    border: none;
}

.ios-srv-card-featured .ios-srv-card-title {
    color: #ffffff;
}

.ios-srv-card-featured .ios-srv-card-desc {
    color: #b0b0b0;
}

/* Icons */
.ios-srv-icon-box {
    width: 48px;
    height: 48px;
    background: #f8f6ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.ios-srv-icon-box.featured {
    background: rgba(255, 255, 255, 0.1);
}

/* Typography inside cards */
.ios-srv-card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #08090d;
}

.ios-srv-card-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1;
}

.ios-srv-card-link {
    color: #08090d;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    transition: gap 0.2s;
}

.ios-srv-card-featured .ios-srv-card-link {
    color: #ffffff;
}

.ios-srv-card-link span {
    margin-left: 5px;
    font-size: 18px;
    line-height: 1;
}

.ios-srv-card-link:hover {
    gap: 8px;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .ios-srv-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .ios-srv-main-title { font-size: 60px; }
}

@media (max-width: 768px) {
    .ios-srv-grid {
        grid-template-columns: 1fr;
    }
    .ios-srv-main-title { font-size: 48px; }
    .ios-srv-card { padding: 30px; }
}

/* --- FEEDBACK SECTION STYLING --- */
.ios-fb-section {
    padding: 100px 0;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
}

.ios-fb-outer-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    padding: 0 20px;
}

/* Big Headlines */
.ios-fb-main-title {
    font-size: 100px;
    font-weight: 800;
    color: #08090d;
    position: relative;
    z-index: 1;
    margin: 0;
}

.ios-fb-title-top {
    text-align: left;
    margin-bottom: -40px; /* Overlap effect */
}

.ios-fb-title-bottom {
    text-align: right;
    margin-top: -60px; /* Overlap effect */
}

/* Grid Wrapper for scattered look */
.ios-fb-grid-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 2;
    padding: 60px 0;
}

/* Card Base Styles */
.ios-fb-card {
    width: 280px;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.ios-fb-card:hover {
    transform: scale(1.05) !important;
    z-index: 10;
}

/* Card Positioning (Scattered Effect) */
.ios-fb-pos-1 { transform: translateY(30px); }
.ios-fb-pos-2 { transform: translateY(-20px); }
.ios-fb-pos-3 { transform: translateY(40px); }
.ios-fb-pos-4 { transform: translate(50px, -10px); }
.ios-fb-pos-5 { transform: translate(-40px, 20px); }

/* Card Colors */
.ios-fb-bg-dark { background-color: #0b0c12; color: #fff; }
.ios-fb-bg-purple { background-color: #a88bff; color: #fff; }
.ios-fb-bg-grey { background-color: #f1f1f1; color: #333; }
.ios-fb-bg-lime { background-color: #e2ff54; color: #333; }

/* Stars */
.ios-fb-stars {
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.ios-fb-bg-dark .ios-fb-stars, 
.ios-fb-bg-grey .ios-fb-stars,
.ios-fb-bg-lime .ios-fb-stars { color: #a88bff; }
.ios-fb-bg-purple .ios-fb-stars { color: #fff; }

/* Quote Text */
.ios-fb-quote {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 500;
}

/* User Info */
.ios-fb-user {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 15px;
}

.ios-fb-bg-dark .ios-fb-user,
.ios-fb-bg-purple .ios-fb-user {
    border-top-color: rgba(255,255,255,0.1);
}

.ios-fb-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.ios-fb-name {
    font-size: 13px;
    font-weight: 700;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .ios-fb-main-title { font-size: 60px; }
    .ios-fb-title-top { margin-bottom: 20px; }
    .ios-fb-title-bottom { margin-top: 20px; }
    .ios-fb-card {
        width: 100%;
        max-width: 350px;
        transform: none !important;
    }
    .ios-fb-grid-wrapper {
        padding: 20px 0;
    }
}

/* --- FAQ SECTION STYLING --- */
.ios-faq-section {
    padding: 120px 0;
    background-color: #ffffff;
    font-family: 'Inter', -apple-system, sans-serif;
}

.ios-faq-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: flex-start;
}

/* Left Column */
.ios-faq-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 25px;
}

.ios-faq-dot {
    width: 6px;
    height: 6px;
    background-color: #000;
    border-radius: 50%;
    margin-right: 8px;
}

.ios-faq-main-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    color: #0a0b10;
    margin-bottom: 20px;
}

.ios-faq-subtext {
    font-size: 15px;
    color: #888;
}

.ios-faq-subtext a {
    color: #a88bff;
    text-decoration: none;
    font-weight: 600;
}

/* Right Column (Accordion) */
.ios-faq-list-side {
    border-top: 1px solid #e0e0e0;
}

.ios-faq-item {
    border-bottom: 1px solid #e0e0e0;
    padding: 10px 0;
}

.ios-faq-summary {
    display: flex;
    align-items: center;
    padding: 25px 0;
    cursor: pointer;
    list-style: none; /* Removes default arrow */
    position: relative;
}

.ios-faq-summary::-webkit-details-marker {
    display: none; /* Hide Chrome arrow */
}

.ios-faq-number {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    width: 50px;
}

.ios-faq-question {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    flex-grow: 1;
}

/* The Triangle Icon */
.ios-faq-icon {
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 8px solid #000;
    transform: rotate(90deg);
    transition: transform 0.3s ease;
}

/* When accordion is open, rotate the triangle */
.ios-faq-item[open] .ios-faq-icon {
    transform: rotate(180deg);
}

.ios-faq-content {
    padding: 0 0 25px 50px;
    color: #666;
    line-height: 1.6;
    font-size: 16px;
    animation: ios-faq-slide 0.3s ease-out;
}

@keyframes ios-faq-slide {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .ios-faq-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .ios-faq-main-title {
        font-size: 40px;
    }
    .ios-faq-question {
        font-size: 18px;
    }
}

/* --- TECH MARQUEE STYLING --- */
.ios-tech-marquee-section {
    padding: 60px 0;
    background-color: #ffffff;
    overflow: hidden; /* Hide overflow to create the "window" effect */
    font-family: 'Inter', sans-serif;
}

.ios-tech-marquee-container {
    display: flex;
    width: 100%;
}

/* The track that actually moves */
.ios-tech-marquee-track {
    display: flex;
    gap: 20px;
    animation: ios-tech-scroll 25s linear infinite;
    width: max-content; /* Ensure track stays as long as the cards */
}

/* Card Styling */
.ios-tech-card {
    width: 280px;
    height: 280px;
    background: #ffffff;
    border: 1px solid #f2f2f2;
    border-radius: 20px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
    flex-shrink: 0; /* Prevent cards from getting squashed */
}

/* Top text row */
.ios-tech-card-top {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 600;
    color: #000;
}

.ios-tech-num {
    opacity: 0.3;
}

/* Central Graphic box */
.ios-tech-icon-box {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ios-tech-icon-box svg {
    width: 80px;
    height: 80px;
    opacity: 0.9;
}

/* Bottom text row */
.ios-tech-card-bottom {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 600;
}

.ios-tech-title {
    color: #000;
}

.ios-tech-year {
    opacity: 0.4;
}

/* ANIMATION KEYFRAMES */
@keyframes ios-tech-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        /* We move exactly half of the total track width 
           (since we duplicated the card group) */
        transform: translateX(calc(-50% - 10px)); 
    }
}

/* Pause on hover */
.ios-tech-marquee-track:hover {
    animation-play-state: paused;
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .ios-tech-card {
        width: 220px;
        height: 220px;
    }
    .ios-tech-icon-box svg {
        width: 60px;
        height: 60px;
    }
}
