.approach-paragraph {
    color: #C9CEDA;
    font-size: 1.13rem;
    margin: 0 auto 2.2rem auto;
    max-width: 700px;
    text-align: center;
    line-height: 1.7;
    font-weight: 400;
    letter-spacing: 0.01em;
}
.approach-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}
.approach-intro {
    max-width: 700px;
    margin: 0 auto 2.5rem auto;
    text-align: center;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
}
.approach-intro p {
    color: #C9CEDA;
    font-size: 1.13rem;
    margin-bottom: 1.1rem;
    text-align: center;
}
.approach-process-inline {
    justify-content: center;
    align-items: stretch;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 1100px;
}
.approach-process-inline .process-step {
    margin-left: 0.2rem;
    margin-right: 0.2rem;
}
.approach-process-inline .process-arrow {
    margin-left: 0.1rem;
    margin-right: 0.1rem;
}
/* --- Strategic Technology Approach Blocked & Inline Flow --- */
.approach-block {
    background: linear-gradient(120deg, rgba(47,128,237,0.10) 0%, rgba(86,204,242,0.08) 100%);
    border: 2.5px solid rgba(47,128,237,0.13);
    border-radius: 1.5rem;
    box-shadow: 0 4px 32px 0 rgba(47,128,237,0.07);
    padding: 2.5rem 1.5rem 2.2rem 1.5rem;
    margin: 2.5rem 0 2.5rem 0;
}
.approach-process-inline {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: #2F80ED #10131F;
    padding-bottom: 0.5rem;
    margin-top: 2.2rem;
}
.approach-process-inline .process-step {
    min-width: 160px;
    max-width: 180px;
    flex: 0 0 auto;
    margin-bottom: 0;
}
.approach-process-inline .process-arrow {
    min-width: 36px;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    display: flex;
    font-size: 2.1rem;
    color: #56CCF2;
    opacity: 0.7;
}
@media (max-width: 900px) {
    .approach-block {
        padding: 1.2rem 0.5rem 1.2rem 0.5rem;
    }
    .approach-process-inline .process-step {
        min-width: 120px;
        max-width: 140px;
        font-size: 0.95rem;
    }
    .approach-process-inline .process-arrow {
        font-size: 1.3rem;
        min-width: 18px;
        min-height: 24px;
    }
}
@media (max-width: 600px) {
    .approach-process-inline {
        gap: 0.2rem;
        padding-bottom: 0.2rem;
    }
    .approach-block {
        border-radius: 1rem;
    }
}
/* --- Strategic Technology Approach (About Page) --- */
.attractive-approach {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
}
.approach-intro {
    max-width: 700px;
    margin: 0 auto 2.5rem auto;
    text-align: center;
}
.approach-intro p {
    color: #C9CEDA;
    font-size: 1.13rem;
    margin-bottom: 1.1rem;
}
.approach-highlight {
    color: #2F80ED;
    font-weight: 700;
    font-size: 1.18rem;
    margin-top: 1.2rem;
}
.approach-process-visual {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}
.process-step {
    background: rgba(47,128,237,0.07);
    border: 1.5px solid rgba(47,128,237,0.13);
    border-radius: 1.1rem;
    padding: 1.5rem 1.1rem 1.2rem 1.1rem;
    min-width: 180px;
    max-width: 210px;
    text-align: center;
    box-shadow: 0 2px 16px 0 rgba(47,128,237,0.04);
    transition: transform 0.22s cubic-bezier(.4,1.3,.6,1);
}
.process-step:hover {
    transform: translateY(-6px) scale(1.04);
    border-color: #2F80ED;
}
.process-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin: 0 auto 0.7rem auto;
    border-radius: 50%;
    background: linear-gradient(135deg, #2F80ED 0%, #56CCF2 100%);
    color: #fff;
    font-size: 1.7rem;
    box-shadow: 0 2px 8px 0 rgba(47,128,237,0.13);
}
.process-step h3 {
    font-size: 1.08rem;
    font-weight: 700;
    color: #2F80ED;
    margin-bottom: 0.5rem;
    margin-top: 0.2rem;
}
.process-step p {
    color: #DCE5F4;
    font-size: 0.97rem;
    margin: 0;
    line-height: 1.5;
}
.process-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.1rem;
    color: #56CCF2;
    margin: 0 0.2rem;
    min-width: 36px;
    min-height: 48px;
    opacity: 0.7;
    transition: color 0.2s;
}
.process-arrow i {
    pointer-events: none;
}
@media (max-width: 900px) {
    .approach-process-visual {
        flex-wrap: wrap;
        gap: 0.7rem;
    }
    .process-step {
        min-width: 150px;
        max-width: 180px;
        padding: 1.1rem 0.7rem 1rem 0.7rem;
    }
    .process-arrow {
        font-size: 1.5rem;
        min-width: 24px;
        min-height: 32px;
    }
}
@media (max-width: 600px) {
    .approach-process-visual {
        flex-direction: column;
        align-items: stretch;
    }
    .process-arrow {
        transform: rotate(90deg);
        margin: 0.2rem 0;
    }
}
/**
 * Main Stylesheet — Stratezic Theme
 *
 * Additional styles beyond style.css. Contains:
 *   - Hero section enhancements
 *   - Particle canvas background (full-page)
 *   - Globe canvas styling
 *   - Section backgrounds & glass-morphism cards
 *   - YouTube / media testimonials section
 *   - WhatsApp floating widget styles
 *   - Siv AI Chatbot: royal robot icon, animations, chat window,
 *     message bubbles, quick actions, input area, WhatsApp transfer
 *   - Animation keyframes (robot hover, eye glow, core pulse, arm wave)
 *
 * @package Stratezic_Theme
 * @since   1.0.0
 */

/* Hero Section Enhancements */
.hero {
    position: relative;
    overflow: hidden;
}

/* Particle Network Canvas — full page */
.particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero::after {\n    display: none;\n}

/* Animated floating orbs for hero */
@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.15; }
    25% { transform: translate(30px, -20px) scale(1.1); opacity: 0.2; }
    50% { transform: translate(-20px, -40px) scale(0.95); opacity: 0.12; }
    75% { transform: translate(15px, -10px) scale(1.05); opacity: 0.18; }
}

@keyframes floatOrb2 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.1; }
    33% { transform: translate(-40px, 20px) scale(1.15); opacity: 0.15; }
    66% { transform: translate(25px, -30px) scale(0.9); opacity: 0.08; }
}

/* Hero floating orbs */
.hero-orbs {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(47, 128, 237, 0.15);
    top: 10%;
    left: 5%;
    animation: floatOrb 12s ease-in-out infinite;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: rgba(79, 172, 254, 0.1);
    top: 30%;
    right: 10%;
    animation: floatOrb2 15s ease-in-out infinite;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: rgba(56, 97, 251, 0.12);
    bottom: 15%;
    left: 40%;
    animation: floatOrb 18s ease-in-out infinite reverse;
}

/* Section backgrounds — transparent so particles show */
.section {
    position: relative;
    background: transparent;
}
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: rgba(26, 31, 54, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(47, 128, 237, 0.15);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.service-card:hover {
    border-color: rgba(47, 128, 237, 0.4);
    box-shadow: 0 20px 60px rgba(47, 128, 237, 0.15);
    transform: translateY(-5px);
}

/* Home Promises */
.home-promises-section {
    background: rgba(26, 31, 54, 0.2);
}

.home-promises-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.home-promise-card {
    background: linear-gradient(160deg, rgba(24, 31, 56, 0.88), rgba(14, 20, 38, 0.9));
    border: 1px solid rgba(47, 128, 237, 0.24);
    border-radius: 1rem;
    padding: 1.4rem 1.3rem;
    box-shadow: 0 12px 28px rgba(5, 10, 25, 0.3);
}

.home-promise-number {
    width: 2rem;
    height: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(47, 128, 237, 0.2);
    border: 1px solid rgba(123, 192, 255, 0.45);
    color: #D7E8FF;
    font-weight: 700;
    margin-bottom: 0.7rem;
}

.home-promise-card h3 {
    color: #FFFFFF;
    margin: 0 0 0.55rem;
    font-size: 1.16rem;
}

.home-promise-card p {
    margin: 0;
    color: #DCE5F4;
    line-height: 1.65;
}

/* Our Leaders page */
.leaders-hero {
    background: rgba(26, 31, 54, 0.25);
}

.leaders-section {
    padding-top: 1rem;
}

.leaders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.leader-card {
    background: linear-gradient(160deg, rgba(26, 31, 54, 0.82), rgba(12, 18, 35, 0.85));
    border: 1px solid rgba(47, 128, 237, 0.2);
    border-radius: 1rem;
    overflow: hidden;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    box-shadow: 0 14px 32px rgba(4, 9, 24, 0.35);
}

.leader-card:hover {
    transform: translateY(-6px);
    border-color: rgba(47, 128, 237, 0.45);
    box-shadow: 0 24px 45px rgba(5, 10, 28, 0.45);
}

.leader-photo-wrap {
    position: relative;
    height: 210px;
    overflow: hidden;
}

.leader-photo-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 12, 24, 0.35), rgba(8, 12, 24, 0));
}

.leader-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 0.45s ease;
}

.leader-card:hover .leader-photo {
    transform: scale(1.08);
}

.leader-content {
    padding: 1.2rem 1.15rem 1.35rem;
}

.leader-role {
    margin: 0 0 0.5rem;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6CB2FF;
    font-weight: 700;
}

.leader-name {
    margin: 0;
    color: #FFFFFF;
    font-size: 1.25rem;
}

.inspirations-section {
    padding-top: 0.5rem;
}

.inspirations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.inspiration-card {
    background: linear-gradient(160deg, rgba(24, 31, 56, 0.88), rgba(14, 20, 38, 0.9));
    border: 1px solid rgba(47, 128, 237, 0.2);
    border-radius: 1rem;
    padding: 1.4rem 1.25rem;
    box-shadow: 0 12px 28px rgba(5, 10, 25, 0.34);
}

.inspiration-photo-wrap {
    position: relative;
    height: 230px;
    border-radius: 0.85rem;
    overflow: hidden;
    margin-bottom: 1rem;
    border: 1px solid rgba(47, 128, 237, 0.25);
}

.inspiration-photo-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6, 10, 20, 0.35), rgba(6, 10, 20, 0));
}

.inspiration-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transform: scale(1.01);
}

.inspiration-photo-ratan {
    object-fit: contain;
    object-position: center center;
    background: rgba(12, 18, 34, 0.95);
    transform: none;
}

.inspiration-photo-kalam {
    object-position: 56% 22%;
}

.inspiration-photo-kamaraj {
    object-fit: contain;
    object-position: center center;
    background: #7a6738;
    transform: none;
}

.inspiration-name {
    margin: 0;
    color: #FFFFFF;
    font-size: 1.2rem;
    line-height: 1.35;
}

.inspiration-designation {
    margin: 0.6rem 0 0.35rem;
    color: #7BC0FF;
    font-size: 0.92rem;
    font-weight: 600;
}

.inspiration-life {
    margin: 0 0 0.8rem;
    color: rgba(200, 206, 218, 0.82);
    font-size: 0.88rem;
}

.inspiration-highlights {
    margin: 0;
    padding-left: 1.1rem;
    color: #D9E0EC;
}

.inspiration-highlights li {
    margin-bottom: 0.48rem;
    line-height: 1.5;
    font-size: 0.92rem;
}

/* Technology Grid */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tech-item {
    padding: 2rem;
    background: rgba(26, 31, 54, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 1rem;
    border: 1px solid rgba(201, 205, 218, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}

.tech-item:hover {
    border-color: rgba(47, 128, 237, 0.3);
    box-shadow: 0 15px 50px rgba(47, 128, 237, 0.1);
    transform: translateY(-3px);
}

.tech-item h3 {
    color: #2F80ED;
    margin-bottom: 1rem;
}

/* Case Studies */
.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.case-study-card {
    padding: 2rem;
    background: rgba(26, 31, 54, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 1rem;
    border: 1px solid rgba(47, 128, 237, 0.15);
    transition: all 0.4s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.case-study-card:hover {
    transform: translateY(-5px);
    border-color: rgba(47, 128, 237, 0.4);
    box-shadow: 0 20px 60px rgba(47, 128, 237, 0.15);
}

/* Innovation Grid */
.innovation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.innovation-item {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(26, 31, 54, 0.6), rgba(11, 15, 26, 0.6));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 1rem;
    border: 1px solid rgba(47, 128, 237, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}

.innovation-item:hover {
    border-color: rgba(47, 128, 237, 0.4);
    box-shadow: 0 15px 50px rgba(47, 128, 237, 0.1);
    transform: translateY(-3px);
}

/* Call to Action */
.cta {
    background: transparent;
    text-align: center;
    position: relative;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* About Page Styles */
.about-hero {
    padding: 8rem 0 4rem;
    text-align: center;
}

.about-intro-copy {
    max-width: 980px;
    margin: 1.1rem auto 0;
    text-align: left;
}

.about-intro-copy p {
    color: #DDE5F2;
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0 0 1rem;
}

.about-lead {
    max-width: 74ch;
}

.about-lead-tagline {
    color: #FFFFFF;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.25rem;
    margin: 1.1rem 0 1.2rem;
}

.leadership-card {
    background: linear-gradient(160deg, rgba(24, 31, 56, 0.9), rgba(12, 18, 35, 0.92));
    border: 1px solid rgba(47, 128, 237, 0.28);
    border-radius: 1rem;
    padding: 1.3rem;
    box-shadow: 0 14px 28px rgba(5, 9, 22, 0.34);
}

.leadership-label {
    margin: 0 0 0.5rem;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #76B8FF;
    font-weight: 700;
}

.leadership-card h3 {
    margin: 0 0 0.7rem;
    color: #FFFFFF;
    font-size: 1.3rem;
}

.leadership-card p {
    margin: 0 0 0.7rem;
}

.leadership-card p:last-child {
    margin-bottom: 0;
}

.about-closing {
    max-width: 80ch;
    margin-top: 0.25rem;
}

.about-intro-copy p:last-child {
    margin-bottom: 0;
}

.about-mission {
    padding: 4rem 0;
}

.about-purpose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.about-purpose-card {
    background: linear-gradient(160deg, rgba(26, 31, 54, 0.82), rgba(12, 18, 35, 0.85));
    border: 1px solid rgba(47, 128, 237, 0.24);
    border-radius: 1rem;
    padding: 1.6rem;
    box-shadow: 0 14px 30px rgba(6, 11, 25, 0.3);
}

.about-purpose-card h2 {
    color: #FFFFFF;
    margin: 0 0 0.9rem;
}

.about-purpose-card p {
    color: #DDE5F2;
    margin: 0 0 0.9rem;
    line-height: 1.75;
}

.about-purpose-list {
    margin: 0 0 1rem;
    padding-left: 1.2rem;
    color: #E6ECF8;
}

.about-purpose-list li {
    margin-bottom: 0.55rem;
    line-height: 1.6;
}

.social-impact-section {
    background: rgba(26, 31, 54, 0.2);
}

.impact-intro-card {
    background: linear-gradient(160deg, rgba(24, 31, 56, 0.88), rgba(13, 19, 36, 0.9));
    border: 1px solid rgba(47, 128, 237, 0.24);
    border-radius: 1rem;
    padding: 1.3rem;
    box-shadow: 0 12px 28px rgba(5, 10, 22, 0.28);
    margin-top: 1.2rem;
}

.impact-vision-list {
    margin: 0 0 0.9rem;
    padding-left: 1.2rem;
    color: #E4ECF8;
}

.impact-vision-list li {
    margin-bottom: 0.55rem;
    line-height: 1.65;
}

.impact-intro-card p {
    color: #DCE5F4;
    margin: 0.7rem 0 0;
    line-height: 1.72;
}

.impact-tomorrow-card h3,
.impact-closing-note h3,
.impact-initiative-card h3 {
    color: #FFFFFF;
    margin: 0 0 0.6rem;
}

.impact-initiative-card h3 {
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.initiative-icon {
    width: 1.8rem;
    height: 1.8rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(47, 128, 237, 0.2);
    border: 1px solid rgba(123, 192, 255, 0.4);
    color: #8cc5ff;
    font-size: 0.86rem;
    flex: 0 0 auto;
}

.social-initiatives-title {
    margin-top: 2rem;
}

.impact-initiatives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-top: 1rem;
}

.impact-initiative-card {
    background: linear-gradient(160deg, rgba(24, 31, 56, 0.88), rgba(13, 19, 36, 0.9));
    border: 1px solid rgba(47, 128, 237, 0.24);
    border-radius: 1rem;
    padding: 1.3rem;
    box-shadow: 0 12px 28px rgba(5, 10, 22, 0.28);
}

.impact-initiative-card p {
    color: #DCE5F4;
    margin: 0 0 0.8rem;
    line-height: 1.68;
}

.impact-initiative-card ul {
    margin: 0 0 0.9rem;
    padding-left: 1.2rem;
    color: #E4ECF8;
}

.impact-initiative-card li {
    margin-bottom: 0.5rem;
    line-height: 1.62;
}

.impact-initiative-card .initiative-goal {
    color: #B8D9FF;
    font-weight: 700;
    margin-bottom: 0;
}

.impact-closing-note {
    margin-top: 1.5rem;
    background: rgba(24, 31, 56, 0.55);
    border: 1px solid rgba(47, 128, 237, 0.2);
    border-radius: 1rem;
    padding: 1.2rem;
}

.impact-closing-note p {
    color: #DCE5F4;
    margin: 0;
    line-height: 1.72;
}

/* How We Work Flowchart */
.how-we-work-section {
    background: rgba(26, 31, 54, 0.22);
}

.workflow-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.workflow-step {
    position: relative;
    background: linear-gradient(160deg, rgba(24, 31, 56, 0.9), rgba(12, 18, 35, 0.92));
    border: 1px solid rgba(47, 128, 237, 0.25);
    border-radius: 0.95rem;
    padding: 1.15rem 1.1rem 1.05rem;
    box-shadow: 0 12px 26px rgba(5, 10, 22, 0.3);
    min-height: 182px;
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.workflow-step:hover {
    transform: translateY(-4px);
    border-color: rgba(123, 192, 255, 0.45);
    box-shadow: 0 18px 34px rgba(7, 14, 30, 0.36);
}

.workflow-step::after {
    content: '→';
    position: absolute;
    right: -0.65rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(123, 192, 255, 0.9);
    font-size: 1.3rem;
    font-weight: 700;
    z-index: 2;
    animation: workflow-arrow-shift 1.5s ease-in-out infinite;
}

.workflow-step:nth-child(3n + 2)::after {
    animation-delay: 0.2s;
}

.workflow-step:nth-child(3n)::after {
    animation-delay: 0.4s;
}

.workflow-step:nth-child(3n)::after,
.workflow-step:last-child::after {
    display: none;
}

.workflow-step-number {
    width: 2rem;
    height: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(47, 128, 237, 0.2);
    border: 1px solid rgba(123, 192, 255, 0.45);
    color: #D7E8FF;
    font-weight: 700;
    margin-bottom: 0.7rem;
}

.workflow-step h3 {
    color: #FFFFFF;
    margin: 0 0 0.55rem;
    font-size: 1.05rem;
    line-height: 1.35;
}

.workflow-step p {
    color: #DCE5F4;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

@keyframes workflow-arrow-shift {
    0%,
    100% {
        transform: translateY(-50%) translateX(0);
        opacity: 0.55;
    }
    50% {
        transform: translateY(-50%) translateX(4px);
        opacity: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .workflow-step,
    .workflow-step::after {
        animation: none !important;
        transition: none !important;
    }

    .workflow-step:hover {
        transform: none;
    }
}

@media (max-width: 1000px) {
    .workflow-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .workflow-step::after {
        display: none;
    }
}

@media (max-width: 640px) {
    .workflow-grid {
        grid-template-columns: 1fr;
    }

    .workflow-step {
        min-height: unset;
    }
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    padding: 2rem;
    background: rgba(26, 31, 54, 0.8);
    border-radius: 1rem;
    text-align: center;
}

.value-card h3 {
    color: #2F80ED;
    margin-bottom: 1rem;
}

/* Careers Page Styles */
.careers-culture {
    background: rgba(26, 31, 54, 0.3);
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.culture-item {
    text-align: center;
    padding: 2rem 1.6rem;
    background: linear-gradient(160deg, rgba(26, 31, 54, 0.82), rgba(13, 18, 34, 0.78));
    border: 1px solid rgba(47, 128, 237, 0.22);
    border-radius: 1rem;
    box-shadow: 0 14px 28px rgba(5, 8, 20, 0.28);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.culture-item:hover {
    transform: translateY(-6px);
    border-color: rgba(47, 128, 237, 0.45);
    box-shadow: 0 18px 36px rgba(8, 13, 30, 0.38);
}

.culture-icon {
    width: 3.4rem;
    height: 3.4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    margin-bottom: 1rem;
    color: #5EA6FF;
    font-size: 1.2rem;
    background: rgba(47, 128, 237, 0.15);
    border: 1px solid rgba(94, 166, 255, 0.35);
}

.culture-item h3 {
    color: #FFFFFF;
    margin-bottom: 0.85rem;
    font-size: 2rem;
    line-height: 1.2;
}

.culture-item p {
    color: #C9CEDA;
    max-width: 30ch;
    margin: 0 auto;
    font-size: 1.06rem;
    line-height: 1.5;
}

.positions-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.careers-internship-note {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: rgba(26, 31, 54, 0.55);
    border: 1px solid rgba(47, 128, 237, 0.2);
    border-radius: 0.75rem;
}

.careers-internship-note h3 {
    color: #FFFFFF;
    margin-bottom: 0.7rem;
    font-size: 1.35rem;
}

.careers-internship-note p {
    margin-bottom: 0.6rem;
}

.careers-internship-note p:last-child {
    margin-bottom: 0;
}

.careers-internship-note a {
    color: #2F80ED;
    font-weight: 600;
}

.position-card {
    padding: 2rem;
    background: rgba(26, 31, 54, 0.8);
    border-radius: 1rem;
    border: 1px solid rgba(47, 128, 237, 0.1);
}

.position-card h3 {
    color: #FFFFFF;
    margin-bottom: 1rem;
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    margin-bottom: 2rem;
    color: #FFFFFF;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    color: #2F80ED;
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.contact-item h4 {
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

.contact-form-container {
    background: rgba(26, 31, 54, 0.8);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(47, 128, 237, 0.1);
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #C9CEDA;
    font-weight: 500;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    background: rgba(11, 15, 26, 0.5);
    border: 1px solid rgba(201, 205, 218, 0.2);
    border-radius: 0.5rem;
    color: #FFFFFF;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #2F80ED;
}

/* New Contact Layout - Minimal with Offices Grid */
.contact-grid-minimal {
    display: block;
    width: 100%;
}

.contact-info-full {
    width: 100%;
}

.contact-details-inline {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-item-horizontal {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.contact-item-horizontal i {
    color: #2F80ED;
    font-size: 1.8rem;
    margin-top: 0.25rem;
    min-width: 2rem;
}

.contact-item-horizontal h4 {
    color: #FFFFFF;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.contact-item-horizontal p {
    color: #C9CEDA;
    line-height: 1.6;
}

/* Offices Section */
.offices-section {
    margin-top: 3rem;
}

.offices-section h2 {
    color: #FFFFFF;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.office-card {
    background: rgba(26, 31, 54, 0.5);
    padding: 2rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(47, 128, 237, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.office-card:hover {
    border-color: rgba(47, 128, 237, 0.3);
    background: rgba(26, 31, 54, 0.7);
}

.office-card i {
    color: #2F80ED;
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.office-card h4 {
    color: #FFFFFF;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.office-card p {
    color: #C9CEDA;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 900px) {
    .offices-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .contact-details-inline {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .offices-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Media & Testimonials Section */
.media-testimonials-section {
    background: rgba(11, 15, 26, 0.6);
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}

.media-testimonials-section::before {
    display: none;
}
}

.media-testimonials-section .section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* YouTube Container */
.youtube-container {
    margin-bottom: 5rem;
}

/* YouTube Carousel */
.youtube-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 0;
    margin-top: 2rem;
}

.youtube-carousel::-webkit-scrollbar {
    height: 8px;
}

.youtube-carousel::-webkit-scrollbar-track {
    background: rgba(47, 128, 237, 0.1);
    border-radius: 10px;
}

.youtube-carousel::-webkit-scrollbar-thumb {
    background: rgba(47, 128, 237, 0.4);
    border-radius: 10px;
}

.youtube-carousel::-webkit-scrollbar-thumb:hover {
    background: rgba(47, 128, 237, 0.6);
}

.youtube-video-card {
    flex: 0 0 calc(33.333% - 1.34rem);
    background: rgba(26, 31, 54, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(47, 128, 237, 0.25);
    border-radius: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(47, 128, 237, 0.1);
}

.youtube-video-card:hover {
    border-color: rgba(47, 128, 237, 0.5);
    box-shadow: 0 20px 40px rgba(47, 128, 237, 0.15);
    transform: translateY(-5px);
}

.video-thumbnail {
    position: relative;
    display: block;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #000;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.youtube-video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.video-overlay i {
    font-size: 3rem;
    color: #FF0000;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.youtube-video-card:hover .video-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.youtube-video-card:hover .video-overlay i {
    transform: scale(1.2);
}

.youtube-video-card h4 {
    padding: 1rem;
    color: #2F80ED;
    font-size: 1rem;
    margin: 0;
    text-align: center;
    border-top: 1px solid rgba(47, 128, 237, 0.2);
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* YouTube CTA */
.youtube-cta {
    background: rgba(47, 128, 237, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1.5px solid rgba(47, 128, 237, 0.25);
    padding: 2rem;
    border-radius: 1.5rem;
    text-align: center;
    margin-top: 2rem;
    box-shadow: 0 8px 32px rgba(47, 128, 237, 0.1);
}

.youtube-cta h3 {
    color: #2F80ED;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.youtube-cta p {
    color: #C9CEDA;
    margin-bottom: 1.5rem;
}

/* Minimal Subscribe Button */
.youtube-cta-minimal {
    background: transparent;
    border: none;
    padding: 1rem 0;
    margin-top: 1rem;
}

.btn-sm {
    padding: 0.5rem 1.5rem !important;
    font-size: 0.9rem !important;
}

.youtube-nav {
    margin-top: 1.5rem;
}

/* Transform CTA Section */
.transform-cta-section {
    background: 
        radial-gradient(circle at 50% 0%, rgba(47, 128, 237, 0.15) 0%, transparent 70%),
        rgba(47, 128, 237, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1.5px solid rgba(47, 128, 237, 0.3);
    border-radius: 2rem;
    padding: 3rem 2rem;
    text-align: center;
    margin: 3rem 0;
    box-shadow: 0 8px 32px rgba(47, 128, 237, 0.12);
}

.transform-cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.transform-cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #C9CEDA;
}

.btn-large {
    padding: 1rem 3rem;
    font-size: 1.1rem;
}

/* Testimonials Section */
.testimonials-container {
    margin: 5rem 0;
}

.testimonials-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 0;
    margin-top: 2rem;
}

.testimonials-carousel::-webkit-scrollbar {
    height: 8px;
}

.testimonials-carousel::-webkit-scrollbar-track {
    background: rgba(47, 128, 237, 0.1);
    border-radius: 10px;
}

.testimonials-carousel::-webkit-scrollbar-thumb {
    background: rgba(47, 128, 237, 0.4);
    border-radius: 10px;
}

.testimonials-carousel::-webkit-scrollbar-thumb:hover {
    background: rgba(47, 128, 237, 0.6);
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 1.34rem);
    background: rgba(26, 31, 54, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(47, 128, 237, 0.25);
    padding: 2rem;
    border-radius: 1.5rem;
    transition: all 0.3s ease;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 32px rgba(47, 128, 237, 0.1);
}

.testimonial-card:hover {
    border-color: rgba(47, 128, 237, 0.5);
    box-shadow: 0 20px 40px rgba(47, 128, 237, 0.15);
    transform: translateY(-5px);
}

.testimonial-header {
    color: #F4A261;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.testimonial-card h3 {
    color: #2F80ED;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.testimonial-card p {
    color: #C9CEDA;
    flex-grow: 1;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    border-top: 1px solid rgba(47, 128, 237, 0.2);
    padding-top: 1rem;
}

.testimonial-author strong {
    color: #FFFFFF;
}

.testimonial-author span {
    color: #2F80ED;
    font-size: 0.9rem;
}

/* Carousel Navigation */
.carousel-nav {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    align-items: center;
}

.carousel-prev,
.carousel-next {
    background: rgba(47, 128, 237, 0.2);
    border: 1px solid rgba(47, 128, 237, 0.4);
    color: #2F80ED;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: rgba(47, 128, 237, 0.4);
    border-color: rgba(47, 128, 237, 0.6);
    transform: scale(1.1);
}

.btn-subscribe {
    margin-left: 1rem;
    padding: 0.6rem 1.2rem !important;
    font-size: 0.9rem !important;
}

/* Social Media Section */
.social-media-section {
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(47, 128, 237, 0.2);
}

.social-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.social-link {
    background: rgba(26, 31, 54, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1.5px solid rgba(47, 128, 237, 0.25);
    padding: 2rem;
    border-radius: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 8px 32px rgba(47, 128, 237, 0.1);
}

.social-link:hover {
    border-color: rgba(47, 128, 237, 0.6);
    box-shadow: 0 15px 30px rgba(47, 128, 237, 0.2);
    transform: translateY(-5px);
}

.social-link i {
    font-size: 3rem;
    transition: all 0.3s ease;
}

.social-link.youtube i {
    color: #FF0000;
}

.social-link.instagram i {
    color: #E1306C;
}

.social-link.linkedin i {
    color: #0077B5;
}

.social-link.twitter .x-logo {
    background: #000000;
    color: #FFFFFF;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
}

.social-link span {
    font-weight: 600;
    font-size: 1.1rem;
}

.social-link p {
    color: #C9CEDA;
    margin: 0;
    font-size: 0.9rem;
}

/* WhatsApp Floating Widget */
#whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

#whatsapp-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

#whatsapp-form {
    position: absolute;
    bottom: 75px;
    right: 0;
    width: 320px;
    background: #1A1F36;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease;
    border: 1px solid rgba(79, 172, 254, 0.15);
}

#whatsapp-form.whatsapp-form-hidden {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}

#whatsapp-form.whatsapp-form-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.whatsapp-form-header {
    background: #25D366;
    padding: 14px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.whatsapp-form-header span {
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
}

#whatsapp-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
    padding: 0;
}

#whatsapp-contact-form {
    padding: 18px;
}

.whatsapp-field {
    margin-bottom: 14px;
}

.whatsapp-field label {
    display: block;
    color: #C9CEDA;
    font-size: 0.85rem;
    margin-bottom: 5px;
    font-weight: 500;
}

.whatsapp-field input,
.whatsapp-field textarea {
    width: 100%;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(79, 172, 254, 0.2);
    border-radius: 8px;
    color: #fff;
    font-size: 0.9rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.whatsapp-field input:focus,
.whatsapp-field textarea:focus {
    border-color: #25D366;
}

.whatsapp-field input::placeholder,
.whatsapp-field textarea::placeholder {
    color: rgba(201, 206, 218, 0.4);
}

.whatsapp-submit {
    width: 100%;
    padding: 12px;
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.whatsapp-submit:hover {
    background: #20bd5a;
}

@media (max-width: 480px) {
    #whatsapp-widget {
        bottom: 20px;
        right: 20px;
    }

    #whatsapp-form {
        width: 280px;
        right: -10px;
    }
}
}

/* Siva AI Chatbot */
#floating-home-btn {
    position: fixed;
    bottom: 128px;
    left: 30px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(145deg, #2F80ED, #1f63c5);
    color: #FFFFFF;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(16, 53, 108, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 100000 !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 1 !important;
    visibility: visible !important;
}

#floating-home-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 14px 30px rgba(23, 74, 148, 0.55);
}

#siva-chatbot {
    position: fixed;
    bottom: 128px;
    right: 30px;
    left: auto;
    z-index: 9999;
}

#siva-chat-btn {
    width: 110px;
    height: 115px;
    border-radius: 50%;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, filter 0.3s ease;
    position: relative;
    filter: drop-shadow(0 4px 15px rgba(79, 172, 254, 0.35));
}

#siva-chat-btn:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 6px 25px rgba(79, 172, 254, 0.55));
}

/* Royal Robot — elegant hover animation */
.siv-robot-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: sivRoyalHover 3s ease-in-out infinite;
}

@keyframes sivRoyalHover {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* Glowing eyes — steady pulse */
.siv-royal-eye {
    animation: sivEyeGlow 2s ease-in-out infinite;
}

@keyframes sivEyeGlow {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

/* Pupil scan */
.siv-royal-pupil {
    animation: sivPupilScan 4s ease-in-out infinite;
}

@keyframes sivPupilScan {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(2px, 0); }
    50% { transform: translate(0, 0); }
    75% { transform: translate(-2px, 0); }
}

/* Chest core reactor pulse */
.siv-core-pulse {
    animation: sivCorePulse 2s ease-in-out infinite;
}

@keyframes sivCorePulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Core ring expand */
.siv-core-ring {
    animation: sivCoreRing 2.5s ease-in-out infinite;
}

@keyframes sivCoreRing {
    0%, 100% { r: 11; opacity: 0.4; }
    50% { r: 14; opacity: 0.15; }
}

/* Hover shadow underneath */
.siv-hover-shadow {
    animation: sivHoverShadow 3s ease-in-out infinite;
}

@keyframes sivHoverShadow {
    0%, 100% { rx: 28; opacity: 0.15; }
    50% { rx: 22; opacity: 0.25; }
}

/* Waving arm — regal wave */
.siv-waving-arm {
    animation: sivRoyalWave 2.2s ease-in-out infinite;
}

@keyframes sivRoyalWave {
    0%, 100% { transform: rotate(0deg); }
    20%  { transform: rotate(-10deg); }
    40%  { transform: rotate(4deg); }
    60%  { transform: rotate(-8deg); }
    80%  { transform: rotate(2deg); }
}

/* ============================================================
   SERVICE & CASE STUDY DETAIL PAGES
   ============================================================ */

/* Back bar */
.detail-back-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 2rem;
    background: rgba(11,15,26,0.9);
    border-bottom: 1px solid rgba(47,128,237,0.2);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(8px);
}
.detail-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2F80ED;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    padding: 6px 14px;
    border: 1px solid rgba(47,128,237,0.4);
    border-radius: 6px;
    transition: all 0.25s ease;
}
.detail-back-btn:hover {
    background: rgba(47,128,237,0.15);
    color: #4FACFE;
    border-color: #4FACFE;
}
.detail-breadcrumb {
    color: rgba(200,206,218,0.5);
    font-size: 0.82rem;
}

/* Hero section */
.detail-hero {
    padding: 5rem 0 4rem;
    text-align: center;
    background: radial-gradient(ellipse at center top, rgba(47,128,237,0.1) 0%, transparent 65%);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.detail-hero-inner {
    max-width: 760px;
    margin: 0 auto;
}
.detail-hero-icon {
    font-size: 3.5rem;
    color: var(--detail-color, #2F80ED);
    margin-bottom: 1.2rem;
    filter: drop-shadow(0 0 20px currentColor);
}
.detail-hero h1 {
    font-size: 2.6rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.8rem;
    line-height: 1.2;
}
.detail-tagline {
    color: rgba(200,206,218,0.8);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}
.detail-hero-cta {
    margin-top: 0.5rem;
}
.detail-hero-meta {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}
.detail-meta-tag {
    background: rgba(47,128,237,0.15);
    border: 1px solid rgba(47,128,237,0.3);
    color: #4FACFE;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Generic detail sections */
.detail-section {
    padding: 4rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.detail-section-title {
    text-align: center;
    font-size: 1.7rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 2.5rem;
}
.detail-section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: #2F80ED;
    margin: 0.6rem auto 0;
    border-radius: 2px;
}

/* Two-column overview */
.detail-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}
.detail-two-col h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1rem;
}
.detail-two-col p {
    color: rgba(200,206,218,0.85);
    line-height: 1.8;
    font-size: 0.97rem;
}

/* Features list */
.detail-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.detail-features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(200,206,218,0.9);
    font-size: 0.93rem;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.detail-features-list li i {
    flex-shrink: 0;
    font-size: 0.85rem;
}

/* Tech badges */
.detail-tech-section {
    background: rgba(255,255,255,0.016);
}
.detail-tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
}
.detail-tech-badge {
    padding: 8px 18px;
    border: 1px solid rgba(47,128,237,0.3);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    background: rgba(47,128,237,0.07);
    transition: all 0.2s ease;
}
.detail-tech-badge:hover {
    background: rgba(47,128,237,0.15);
    transform: translateY(-2px);
}

/* Process steps */
.detail-process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    position: relative;
}
.detail-process-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(47,128,237,0.3), transparent);
}
.detail-process-step {
    text-align: center;
    padding: 1.5rem 1rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px;
    transition: transform 0.25s ease;
}
.detail-process-step:hover {
    transform: translateY(-4px);
    border-color: rgba(47,128,237,0.3);
}
.detail-step-number {
    width: 52px;
    height: 52px;
    border: 2px solid #2F80ED;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 800;
    margin: 0 auto 1rem;
    background: rgba(47,128,237,0.1);
}
.detail-process-step h3 {
    font-size: 0.88rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}
.detail-process-step p {
    font-size: 0.78rem;
    color: rgba(200,206,218,0.7);
    line-height: 1.5;
}

/* Benefits grid */
.detail-benefits-section {
    background: rgba(255,255,255,0.016);
}
.detail-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.detail-benefit-card {
    background: rgba(255,255,255,0.04);
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid rgba(255,255,255,0.06);
    transition: transform 0.2s ease;
}
.detail-benefit-card:hover {
    transform: translateY(-3px);
}
.detail-benefit-num {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.6rem;
    opacity: 0.7;
}
.detail-benefit-card p {
    color: rgba(200,206,218,0.85);
    font-size: 0.93rem;
    line-height: 1.6;
    margin: 0;
}

/* CTA section */
.detail-cta-section {
    border-bottom: none;
}
.detail-cta-box {
    background: rgba(47,128,237,0.07);
    border: 1px solid rgba(47,128,237,0.2);
    border-radius: 16px;
    padding: 3.5rem;
    text-align: center;
}
.detail-cta-box h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.8rem;
}
.detail-cta-box p {
    color: rgba(200,206,218,0.8);
    font-size: 1rem;
    margin-bottom: 2rem;
}
.detail-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.detail-cta-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.consultation-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
}

.consultation-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 10, 22, 0.72);
    backdrop-filter: blur(3px);
}

.consultation-modal-dialog {
    position: relative;
    width: min(92vw, 520px);
    margin: 7vh auto;
    background: rgba(19, 26, 47, 0.96);
    border: 1px solid rgba(47, 128, 237, 0.35);
    border-radius: 14px;
    padding: 1.4rem 1.4rem 1.2rem;
    box-shadow: 0 22px 45px rgba(4, 8, 20, 0.5);
}

.consultation-modal-dialog h3 {
    margin: 0 0 1rem;
    color: #FFFFFF;
}

.consultation-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    color: #D6DEEB;
    font-size: 1.6rem;
    cursor: pointer;
    line-height: 1;
}

.consultation-form .form-group {
    margin-bottom: 0.95rem;
}

.consultation-form label {
    display: block;
    margin-bottom: 0.45rem;
    color: #C9CEDA;
    font-weight: 600;
}

.consultation-form input,
.consultation-form textarea {
    width: 100%;
    background: rgba(9, 13, 26, 0.82);
    border: 1px solid rgba(201, 205, 218, 0.27);
    border-radius: 8px;
    color: #FFFFFF;
    padding: 0.72rem;
}

.consultation-form input:focus,
.consultation-form textarea:focus {
    outline: none;
    border-color: #2F80ED;
}

.modal-open {
    overflow: hidden;
}

/* Case study specific */
.cs-block {
    padding: 0;
}
.cs-block-icon {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
}
.cs-block h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1rem;
}
.cs-block p {
    color: rgba(200,206,218,0.85);
    line-height: 1.8;
    font-size: 0.97rem;
}

/* Results metrics */
.detail-results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    text-align: center;
}
.detail-result-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px;
    padding: 2rem 1rem;
    transition: transform 0.2s ease;
}
.detail-result-card:hover {
    transform: translateY(-4px);
}
.detail-result-metric {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
}
.detail-result-label {
    color: rgba(200,206,218,0.7);
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Testimonial */
.detail-testimonial-section {
    background: rgba(255,255,255,0.016);
}
.detail-testimonial-box {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(47,128,237,0.06);
    border: 1px solid rgba(47,128,237,0.15);
    border-radius: 12px;
    padding: 2.5rem 3rem;
    position: relative;
}
.detail-quote-icon {
    font-size: 2rem;
    opacity: 0.4;
    margin-bottom: 1rem;
    display: block;
}
.detail-testimonial-box blockquote {
    margin: 0;
}
.detail-testimonial-box blockquote p {
    color: rgba(200,206,218,0.9);
    font-size: 1.05rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.2rem;
}
.detail-testimonial-box blockquote footer {
    color: rgba(200,206,218,0.6);
    font-size: 0.9rem;
}
.detail-testimonial-box blockquote footer strong {
    color: #FFFFFF;
}

/* Learn More button on service cards */
.service-learn-more {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.82rem;
    padding: 7px 18px;
    white-space: nowrap;
}

/* ---- RESPONSIVE — detail pages ---- */
@media (max-width: 900px) {
    .detail-process-steps {
        grid-template-columns: repeat(3, 1fr);
    }
    .detail-results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .detail-two-col {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .detail-process-steps {
        grid-template-columns: 1fr 1fr;
    }
    .detail-process-steps::before {
        display: none;
    }
    .detail-hero h1 {
        font-size: 1.9rem;
    }
    .detail-benefits-grid {
        grid-template-columns: 1fr;
    }
    .detail-cta-box {
        padding: 2rem 1.5rem;
    }
    .detail-testimonial-box {
        padding: 1.8rem;
    }
    .consultation-modal-dialog {
        margin: 5vh auto;
        padding: 1.1rem 1rem 1rem;
    }
}
@media (max-width: 480px) {
    .detail-process-steps {
        grid-template-columns: 1fr;
    }
    .detail-results-grid {
        grid-template-columns: 1fr 1fr;
    }
    .detail-back-bar {
        padding: 0.7rem 1rem;
    }
    .detail-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Greeting bubble */
.siva-greeting-bubble {
    position: absolute;
    bottom: 115px;
    right: 0;
    background: #1A1F36;
    color: #e0e6f0;
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 0.82rem;
    line-height: 1.4;
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    border: 1px solid rgba(79, 172, 254, 0.2);
    animation: sivaGreetingIn 0.5s ease forwards;
    opacity: 0;
    animation-delay: 2s;
}

.siva-greeting-bubble::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 22px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #1A1F36;
}

.siva-greeting-hidden {
    opacity: 0 !important;
    pointer-events: none;
}

@keyframes sivaGreetingIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.siva-btn-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #25D366;
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 2px 5px;
    border-radius: 8px;
    line-height: 1;
}

#siva-chat-window {
    position: absolute;
    bottom: 75px;
    right: 0;
    width: 370px;
    height: 500px;
    background: #111528;
    border-radius: 16px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(79, 172, 254, 0.15);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

#siva-chat-window.siva-chat-hidden {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}

#siva-chat-window.siva-chat-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.siva-chat-header {
    background: linear-gradient(135deg, #2F80ED, #4FACFE);
    padding: 14px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.siva-chat-header-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.siva-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
}

.siva-chat-header strong {
    color: #fff;
    font-size: 0.95rem;
    display: block;
}

.siva-status {
    color: rgba(255,255,255,0.8);
    font-size: 0.7rem;
}

#siva-chat-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.siva-chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.siva-msg {
    max-width: 85%;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 0.88rem;
    line-height: 1.4;
    word-wrap: break-word;
}

.siva-msg-bot {
    background: rgba(47, 128, 237, 0.15);
    color: #e0e6f0;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.siva-msg-user {
    background: #2F80ED;
    color: #fff;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.siva-msg-typing {
    align-self: flex-start;
    background: rgba(47, 128, 237, 0.15);
    color: #8899b0;
    padding: 10px 18px;
    border-radius: 12px;
    border-bottom-left-radius: 4px;
    font-size: 0.88rem;
}

.siva-typing-dots span {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #4FACFE;
    border-radius: 50%;
    margin: 0 2px;
    animation: sivaDotBounce 1.4s infinite ease-in-out both;
}

.siva-typing-dots span:nth-child(1) { animation-delay: 0s; }
.siva-typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.siva-typing-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes sivaDotBounce {
    0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
    40% { transform: scale(1); opacity: 1; }
}

.siva-quick-actions {
    padding: 8px 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    flex-shrink: 0;
    border-top: 1px solid rgba(79, 172, 254, 0.1);
}

.siva-quick-btn {
    padding: 6px 12px;
    background: rgba(47, 128, 237, 0.12);
    border: 1px solid rgba(79, 172, 254, 0.25);
    color: #4FACFE;
    border-radius: 16px;
    font-size: 0.78rem;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
}

.siva-quick-btn:hover {
    background: #2F80ED;
    color: #fff;
}

.siva-chat-input-area {
    display: flex;
    padding: 10px 12px;
    gap: 8px;
    border-top: 1px solid rgba(79, 172, 254, 0.1);
    flex-shrink: 0;
}

#siva-chat-input {
    flex: 1;
    padding: 10px 14px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(79, 172, 254, 0.2);
    border-radius: 20px;
    color: #fff;
    font-size: 0.88rem;
    outline: none;
    font-family: inherit;
}

#siva-chat-input:focus {
    border-color: #4FACFE;
}

#siva-chat-input::placeholder {
    color: rgba(201, 206, 218, 0.4);
}

#siva-chat-send {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #2F80ED;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    flex-shrink: 0;
}

#siva-chat-send:hover {
    background: #4FACFE;
}

.siva-chat-footer {
    padding: 8px 12px;
    border-top: 1px solid rgba(79, 172, 254, 0.1);
    text-align: center;
    flex-shrink: 0;
}

.siva-wa-transfer {
    background: none;
    border: 1px solid rgba(37, 211, 102, 0.3);
    color: #25D366;
    padding: 6px 14px;
    border-radius: 16px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
}

.siva-wa-transfer:hover {
    background: #25D366;
    color: #fff;
}

.siva-wa-transfer:hover svg {
    fill: #fff;
}

@media (max-width: 480px) {
    #floating-home-btn {
        bottom: 120px;
        left: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.05rem;
    }

    #siva-chatbot {
        bottom: 120px;
        right: 20px;
    }

    #siva-chat-window {
        width: 300px;
        height: 440px;
        right: -10px;
    }
}