/* Lora Font */
@font-face {
    font-family: 'Lora';
    src: url('fonts/Lora-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}

@font-face {
    font-family: 'Lora';
    src: url('fonts/Lora-Italic-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: italic;
}

/* MyriadPro Font */
@font-face {
    font-family: 'MyriadPro';
    src: url('fonts/MyriadPro-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'MyriadPro';
    src: url('fonts/MYRIADPRO-REGULAR.OTF') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'MyriadPro';
    src: url('fonts/MYRIADPRO-SEMIBOLD.OTF') format('opentype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'MyriadPro';
    src: url('fonts/MYRIADPRO-BOLD.OTF') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'MyriadPro';
    src: url('fonts/MYRIADPRO-BOLDIT.OTF') format('opentype');
    font-weight: 700;
    font-style: italic;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Mobile nav toggle — hidden on desktop */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    flex-shrink: 0;
    z-index: 1003;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.nav-toggle:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}

.nav-toggle-bar {
    display: block;
    width: 20px;
    height: 2px;
    background: #061533;
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.active .nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-backdrop {
    display: none;
}

body.nav-open {
    overflow: hidden;
}

body.nav-open .navbar {
    z-index: 1002;
}

:root {
    --primary-color: #061533;
    --white: #ececec;
    --light-gray: #f8f9fa;
    --text-gray: #575757;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--white);
    color: var(--primary-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Keyframe Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

/* Navigation Bar */
.navbar {
    /* position: fixed; */
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 2px 20px rgba(6, 21, 51, 0.1);
    z-index: 1000;
    padding: 10px 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
    margin-left: 0;
}

.footer-logo img {
    height: 50px;
    scale: 4;
    width: auto;
    /* object-fit: contain; */
    transform-origin: left;
    /* Align scaling */
    margin-bottom: 20px;
    /* background-color: #00a4ef; */
    position: absolute;
    left: -70px;
    top: 30px;
}

/* Mobile responsive footer logo */
@media (max-width: 768px) {
    .footer-logo img {
        position: absolute;
        left: 1px;
        top: 0;
        scale: 2;
        margin-bottom: 30px;
        transform-origin: center;
    }

    .footer-fontA {
        margin-top: -25px;
        /* background-color: #0078d4; */
        padding-left: 0.4rem;
        width: 100%;
        text-align: left;
    }

    /* Align all footer elements to left on mobile */
    .footer-col,
    .footer-about,
    .footer-links,
    .footer-contact {
        text-align: left;
        align-items: flex-start;
    }

    .footer-contact-item {
        position: absolute;
    }

    .footer-contact-item2 {
        position: absolute;
        padding-top: 50px;
    }

    .footer-bottom {
        margin-top: 50px;
    }

    .footer-social {
        justify-content: flex-start !important;
    }

    .footer-col h4,
    .footer-links ul,
    .footer-links li,
    .footer-links a {
        text-align: left;
    }

    .footer-col h4::after {
        display: none;
    }

    .footer-links ul {
        padding-left: 0;
    }
}

.logo-text {
    font-family: 'Lora', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
}

.footer-fontA {
    padding-top: 70px;

}

.logo-accent {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: var(--white);
    opacity: 0.8;
}

/* Navigation Links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links li {
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: black;
    font-weight: 500;
    font-size: 17px;
    position: relative;
    transition: color 0.3s ease;
    cursor: pointer;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--white);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.nav-link:hover {
    color: #061533;
}

.nav-link.active {
    color: #061533;
}

.nav-link.nav-btn {
    background: linear-gradient(135deg, #061533 0%, #0a2555 100%);
    color: var(--white) !important;
    padding: 12px 28px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.nav-link.nav-btn::after {
    display: none;
}

.nav-link.nav-btn:hover {
    background: linear-gradient(135deg, #0a2555 0%, #102a5c 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(6, 21, 51, 0.4);
    color: var(--white) !important;
}

.nav-link.nav-btn.active {
    color: var(--white) !important;
}

/* Hero Section — compact, no video */
.hero {
    position: relative;
    padding: 100px 20px 56px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #040f28 0%, #061533 45%, #0c2d6b 100%);
    z-index: 0;
}

.hero-mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 55% at 10% 30%, rgba(59, 130, 246, 0.2) 0%, transparent 55%),
        radial-gradient(ellipse 60% 45% at 90% 70%, rgba(139, 92, 246, 0.15) 0%, transparent 55%);
    pointer-events: none;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
    opacity: 0.75;
}

.hero-glow-1 {
    width: 280px;
    height: 280px;
    top: -60px;
    right: 12%;
    background: rgba(59, 130, 246, 0.3);
}

.hero-glow-2 {
    width: 220px;
    height: 220px;
    bottom: -40px;
    left: 8%;
    background: rgba(99, 102, 241, 0.22);
}

.hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 15%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 15%, transparent 70%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(4, 15, 40, 0.2) 0%, rgba(6, 21, 51, 0.5) 100%);
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 1;
    max-width: 1180px;
    margin: 0 auto;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.hero-content {
    text-align: left;
    animation: pageHeroFade 0.8s ease both;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px 8px 14px;
    margin-bottom: 18px;
    border-left: 3px solid #3b82f6;
    background: rgba(59, 130, 246, 0.08);
    border-radius: 0 6px 6px 0;
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
}

.hero-badge i {
    color: #93c5fd;
    font-size: 0.72rem;
}

.hero-title {
    font-family: 'Playfair Display', 'Lora', serif;
    font-size: clamp(1.9rem, 3.8vw, 2.75rem);
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -0.015em;
    max-width: 560px;
    background: none;
    -webkit-text-fill-color: unset;
}

.hero-title-accent {
    background: linear-gradient(135deg, #93c5fd 0%, #a5b4fc 50%, #67e8f9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(0.95rem, 1.6vw, 1.05rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.65;
    margin-bottom: 22px;
    max-width: 480px;
    margin-left: 0;
    margin-right: 0;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 0;
    margin-bottom: 18px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 26px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    border-radius: 6px;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.hero-cta-primary {
    background: linear-gradient(135deg, #ffffff 0%, #e8eef8 100%);
    color: #061533;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.9);
}

.hero-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(59, 130, 246, 0.25);
    color: #061533;
}

.hero-cta-outline {
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: none;
}

.hero-cta-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(147, 197, 253, 0.45);
    transform: translateY(-2px);
    color: #fff;
}

.hero-pill {
    padding: 7px 14px;
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.62);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.04);
    transition: all 0.22s ease;
}

.hero-pill:hover {
    color: #fff;
    border-color: rgba(96, 165, 250, 0.4);
    background: rgba(59, 130, 246, 0.12);
}

.hero-service-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* Hero visual — orbit showcase */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-showcase {
    position: relative;
    width: 100%;
    max-width: 380px;
    height: 320px;
}

.hero-showcase-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.35) 0%, transparent 70%);
    filter: blur(20px);
    pointer-events: none;
}

.hero-showcase-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 1.5px dashed rgba(255, 255, 255, 0.12);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero-showcase-ring-1 {
    width: 220px;
    height: 220px;
    animation: heroRingSpin 25s linear infinite;
}

.hero-showcase-ring-2 {
    width: 280px;
    height: 280px;
    border-color: rgba(96, 165, 250, 0.15);
    animation: heroRingSpin 35s linear infinite reverse;
}

@keyframes heroRingSpin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero-showcase-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 88px;
    height: 88px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background: linear-gradient(145deg, #3b82f6, #6366f1);
    border-radius: 50%;
    color: #fff;
    font-size: 1.5rem;
    box-shadow: 0 0 50px rgba(59, 130, 246, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    z-index: 3;
    animation: heroCoreGlow 3s ease-in-out infinite;
}

.hero-showcase-core span {
    font-family: 'Poppins', sans-serif;
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    opacity: 0.9;
}

@keyframes heroCoreGlow {
    0%, 100% { box-shadow: 0 0 40px rgba(59, 130, 246, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2); }
    50% { box-shadow: 0 0 70px rgba(99, 102, 241, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.25); }
}

.hero-orbit-item {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 11px 15px;
    min-width: 76px;
    background: rgba(8, 20, 48, 0.65);
    border: 1px solid rgba(96, 165, 250, 0.2);
    border-radius: 10px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
    z-index: 2;
}

.hero-orbit-item i {
    font-size: 1.1rem;
    color: #60a5fa;
}

.hero-orbit-item-1 { top: 8%; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.hero-orbit-item-2 { top: 42%; right: 0; animation-delay: -1s; }
.hero-orbit-item-3 { bottom: 12%; left: 50%; transform: translateX(-50%); animation-delay: -2s; }
.hero-orbit-item-4 { top: 42%; left: 0; animation-delay: -3s; }

@keyframes heroOrbitFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.hero-orbit-item-1,
.hero-orbit-item-3 {
    animation-name: heroOrbitFloatCenter;
}

@keyframes heroOrbitFloatCenter {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-8px); }
}

.hero-showcase-panel {
    position: absolute;
    bottom: -8px;
    right: -12px;
    width: 168px;
    padding: 14px;
    background: rgba(8, 20, 48, 0.82);
    border: 1px solid rgba(96, 165, 250, 0.22);
    border-radius: 10px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    z-index: 4;
}

@keyframes heroPanelSlide {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-panel-header {
    display: flex;
    gap: 5px;
    padding: 8px 10px;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-panel-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
}

.hero-panel-dot:nth-child(1) { background: #f87171; }
.hero-panel-dot:nth-child(2) { background: #fbbf24; }
.hero-panel-dot:nth-child(3) { background: #4ade80; }

.hero-panel-body {
    padding: 12px;
}

.hero-panel-line {
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.12);
    margin-bottom: 8px;
}

.hero-panel-line-accent {
    width: 75%;
    background: linear-gradient(90deg, #3b82f6, #6366f1);
}

.hero-panel-line-short {
    width: 50%;
    margin-bottom: 10px;
}

.hero-panel-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.hero-panel-tags span {
    padding: 3px 8px;
    font-size: 0.62rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    background: rgba(59, 130, 246, 0.2);
    border-radius: 4px;
    border: 1px solid rgba(96, 165, 250, 0.25);
}

@media (prefers-reduced-motion: reduce) {
    .hero-showcase-ring,
    .hero-showcase-core,
    .hero-orbit-item,
    .hero-showcase-panel {
        animation: none;
    }
}

@media (max-width: 992px) {
    .hero {
        padding: 96px 20px 48px;
    }

    .hero-layout {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }

    .hero-content {
        text-align: center;
    }

    .hero-title,
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta-group,
    .hero-service-pills {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 88px 16px 40px;
    }

    .hero-cta {
        width: 100%;
        justify-content: center;
    }

    .hero-cta-group {
        flex-direction: column;
    }
}

.animated-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -50px;
    animation-delay: -5s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    animation-delay: -10s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(20px, -20px) rotate(5deg);
    }

    50% {
        transform: translate(-10px, 10px) rotate(-5deg);
    }

    75% {
        transform: translate(-20px, -10px) rotate(3deg);
    }
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    border-left: 4px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-30px);
    animation: slideIn 0.6s ease forwards;
}

.hero-feature:nth-child(1) { animation-delay: 0.2s; }
.hero-feature:nth-child(2) { animation-delay: 0.4s; }
.hero-feature:nth-child(3) { animation-delay: 0.6s; }
.hero-feature:nth-child(4) { animation-delay: 0.8s; }

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-feature:hover {
    background: rgba(255, 255, 255, 0.15);
    border-left-color: #ffffff;
    transform: translateX(10px);
}

.feature-icon {
    font-size: 1.5rem;
}

.feature-text {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    font-weight: 400;
}

.feature-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

.feature-cta-group .feature-btn {
    margin-top: 0;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--white);
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Sections */
.section {
    padding: 100px 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Lora', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

/* About Section */
.about {
    background-color: var(--white);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
}

/* Services Section */
.services {
    background-color: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(6, 21, 51, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(6, 21, 51, 0.15);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-card h3 {
    font-family: 'Lora', serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Career Section */
.career {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0a2555 100%);
    text-align: center;
}

.career .section-title {
    color: var(--white);
}

.career .section-title::after {
    background-color: var(--white);
}

.career-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Contact Section */
.contact {
    background-color: var(--white);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary-color);
}

.contact-form .cta-button {
    background-color: var(--primary-color);
    color: var(--white);
    align-self: center;
}

.contact-form .cta-button:hover {
    background-color: #0a2555;
}

/* Page Header */
.page-header {
    position: relative;
    padding: 150px 20px 80px;
    text-align: center;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0a2555 50%, #102a5c 100%);
    z-index: -1;
}

.page-title {
    font-family: 'Lora', serif;
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
}

/* About Page */
.about-page {
    background-color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.about-text h2 {
    font-family: 'Lora', serif;
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.image-placeholder {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0a2555 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder span {
    font-size: 5rem;
}

.values-section {
    padding-top: 40px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background-color: var(--light-gray);
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(6, 21, 51, 0.1);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.value-card h3 {
    font-family: 'Lora', serif;
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.value-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Services Page */
.services-page {
    background-color: var(--white);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0a2555 100%);
    text-align: center;
    padding: 80px 20px;
}

.cta-section h2 {
    font-family: 'Lora', serif;
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 15px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* Career Page */
.why-join {
    background-color: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    background-color: var(--light-gray);
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(6, 21, 51, 0.1);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.benefit-card h3 {
    font-family: 'Lora', serif;
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.benefit-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.positions-section {
    background-color: var(--light-gray);
}

.positions-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.position-card {
    background-color: var(--white);
    padding: 25px 30px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 5px 15px rgba(6, 21, 51, 0.05);
    transition: all 0.3s ease;
}

.position-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(6, 21, 51, 0.1);
}

.position-info h3 {
    font-family: 'Lora', serif;
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.position-meta {
    display: flex;
    gap: 20px;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.apply-btn {
    padding: 12px 25px;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.apply-btn:hover {
    background-color: #0a2555;
    transform: scale(1.05);
}

/* Mission Section */

.mission-section {
    padding: 80px 20px;
    background-color: var(--white);
}

/* CONTAINER */
.mission-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* LEFT CONTENT */
.mission-content {
    flex: 1;
}

.mission-tag {
    color: #7c3aed;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 16px;
    display: inline-block;
}

.mission-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 24px;
    font-family: 'Lora', serif;
}

.mission-text {
    font-size: 18px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 20px;
}

.mission-subtext {
    font-size: 16px;
    color: #64748b;
    line-height: 1.7;
}

/* RIGHT IMAGE */
.mission-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.mission-image img {
    width: 100%;
    max-width: 480px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

/* RESPONSIVE */
/* Extra small devices (phones, portrait) */
@media (max-width: 320px) {
    .mission-section {
        padding: 50px 14px;
    }

    .mission-content h1 {
        font-size: 24px;
    }

    .mission-text,
    .mission-subtext {
        font-size: 14px;
    }

    .mission-image img {
        max-width: 100%;
        border-radius: 16px;
    }
}

/* Small devices (phones) */
@media (max-width: 480px) {
    .mission-section {
        padding: 60px 16px;
    }

    .mission-container {
        gap: 30px;
    }

    .mission-content h1 {
        font-size: 26px;
    }

    .mission-text,
    .mission-subtext {
        font-size: 15px;
    }
}

/* Medium devices (phones) */
@media (max-width: 576px) {
    .mission-container {
        flex-direction: column;
        text-align: center;
    }

    .mission-content h1 {
        font-size: 30px;
    }

    .mission-text,
    .mission-subtext {
        font-size: 15px;
    }

    .mission-image img {
        max-width: 90%;
    }
}

/* Large phones (latest iPhones, Samsung, Realme) */
@media (max-width: 768px) {
    .mission-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .mission-content h1 {
        font-size: 34px;
    }

    .mission-image img {
        max-width: 420px;
    }
}

/* Tablets (portrait + landscape) */
@media (max-width: 992px) {
    .mission-container {
        flex-direction: column;
        text-align: center;
    }

    .mission-content h1 {
        font-size: 38px;
    }
}

/* Small laptops / tablets landscape */
@media screen and (max-width: 1152px) {
    .mission-container {
        gap: 40px;
    }

    .mission-content h1 {
        font-size: 30px;
    }
}

/* Large screens */
@media screen and (max-width: 1440px) {
    /* Desktop bilkul same — no changes */
}


/* Vision Sevtion */

/* SECTION */
.vision-section {
    padding: 80px 20px;
    background-color: var(--white);
}

/* CONTAINER */
.vision-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 70px;
}

/* IMAGE */
.vision-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.vision-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 26px;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.18);
    object-fit: cover;
}

/* CONTENT */
.vision-content {
    flex: 1;
}

.vision-tag {
    color: #7c3aed;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 18px;
    display: inline-block;
}

.vision-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 24px;
    font-family: 'Lora', serif;
}

.vision-text {
    font-size: 18px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 22px;
}

.vision-subtext {
    font-size: 16px;
    color: #64748b;
    line-height: 1.7;
}

/* RESPONSIVE */
/* Extra small devices (phones, portrait) */
@media (max-width: 320px) {
    .vision-section {
        padding: 50px 14px;
    }

    .vision-container {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .vision-content h1 {
        font-size: 24px;
    }

    .vision-text,
    .vision-subtext {
        font-size: 14px;
    }

    .vision-image img {
        max-width: 100%;
        border-radius: 18px;
    }
}

/* Small devices (phones) */
@media (max-width: 480px) {
    .vision-section {
        padding: 60px 16px;
    }

    .vision-container {
        flex-direction: column;
        gap: 35px;
        text-align: center;
    }

    .vision-content h1 {
        font-size: 26px;
    }

    .vision-text,
    .vision-subtext {
        font-size: 15px;
    }
}

/* Medium devices (phones) */
@media (max-width: 576px) {
    .vision-container {
        flex-direction: column;
        text-align: center;
    }

    .vision-content h1 {
        font-size: 30px;
    }

    .vision-text,
    .vision-subtext {
        font-size: 15px;
    }

    .vision-image img {
        max-width: 90%;
    }
}

/* Large phones (latest iPhones, Samsung, Realme) */
@media (max-width: 768px) {
    .vision-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .vision-content h1 {
        font-size: 34px;
    }

    .vision-image img {
        max-width: 420px;
    }
}

/* Tablets (portrait + landscape) */
@media (max-width: 992px) {
    .vision-container {
        flex-direction: column;
        text-align: center;
    }

    .vision-content h1 {
        font-size: 38px;
    }
}

/* Small laptops / tablets landscape */
@media screen and (max-width: 1152px) {
    .vision-container {
        gap: 50px;
    }

    .vision-content h1 {
        font-size: 30px;
    }
}

/* Large screens */
@media screen and (max-width: 1440px) {
    /* Desktop view unchanged */
}


/* Shaping Section - Base Styles */
.shaping-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.shaping-content {
    flex: 1;
}

.shaping-image {
    flex: 1;
}

/* Career Benefits Grid - Base CSS */
.career-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Shaping Future Section - Mobile Fix */
@media (max-width: 768px) {
    .shaping-future-section {
        padding: 60px 15px;
        overflow-x: hidden;
    }

    .shaping-layout {
        flex-direction: column;
        gap: 30px;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .shaping-content {
        width: 100%;
        max-width: 100%;
        padding: 0 10px;
        box-sizing: border-box;
    }

    .shaping-title {
        font-size: 1.75rem;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }

    .shaping-desc,
    .shaping-desc-secondary {
        font-size: 1rem;
        line-height: 1.6;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }

    .shaping-image {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .shaping-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .shaping-img {
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    .shaping-decorative-circle,
    .shaping-image-bg {
        display: none;
    }

    /* Career Benefits Grid - Mobile Fix */
    .career-why {
        overflow-x: hidden;
        padding: 60px 15px;
    }

    .career-why .container {
        width: 100%;
        max-width: 100%;
        padding: 0 10px;
        box-sizing: border-box;
        overflow: hidden;
    }

    .career-benefits-grid {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .career-benefit-card {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 20px 15px;
    }

    .career-benefit-card h3,
    .career-benefit-card p {
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }

    .career-section-title,
    .career-label {
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }
}

/* Contact Page */
.contact-page {
    background-color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-family: 'Lora', serif;
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-info>p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    font-size: 1.5rem;
}

.contact-item h4 {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.contact-item p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.contact-form-wrapper {
    background-color: var(--light-gray);
    padding: 40px;
    border-radius: 20px;
}

/* Feature Sections */
.feature-section {
    padding: 100px 20px;
    background-color: var(--white);
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.feature-row.reverse {
    direction: rtl;
}

.feature-row.reverse>* {
    direction: ltr;
}

.feature-text-content {
    max-width: 500px;
}

.feature-heading {
    font-family: 'Lora', serif;
    font-size: 2rem;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 25px;
    line-height: 1.3;
}

.feature-heading strong {
    font-weight: 700;
    display: block;
}


.feature-text-content p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.feature-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 8px;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.feature-btn:hover {
    background-color: #0a2555;
    transform: translateX(5px);
}

.feature-btn-primary {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
}

.feature-btn-primary:hover {
    background: linear-gradient(135deg, #6d28d9 0%, #9333ea 100%);
}

.feature-btn svg {
    transition: transform 0.3s ease;
}

.feature-btn:hover svg {
    transform: translateX(3px);
}

/* Feature Image Styles */
.feature-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 768px) {
    .feature-text-content {
        max-width: 500px;
        text-align: left;
    }

    .feature-heading {
        font-family: 'Lora', serif;
        font-size: 2rem;
        font-weight: 400;
        color: var(--primary-color);
        margin-bottom: 25px;
        line-height: 1.3;
        text-align: left;
    }

    .feature-image {
        position: relative;
        margin-top: 50px;
        background-color: #00a4ef;
    }

    .image-wrapper {
        margin-left: 0;
        padding-left: 0;
        position: absolute;
        left: -20px;
    }

    .feature-img-box {
        scale: 0.9;
    }



    .feature-text-content p {
        color: var(--text-gray);
        font-size: 1rem;
        line-height: 1.8;
        margin-bottom: 15px;
        text-align: left;
    }

    .feature-btn {
        display: inline-flex;
        align-items: left;
        gap: 8px;
        padding: 14px 28px;
        background-color: var(--primary-color);
        color: var(--white);
        text-decoration: none;
        font-weight: 500;
        font-size: 0.95rem;
        border-radius: 8px;
        margin-top: 15px;
        transition: all 0.3s ease;
        text-align: left;
        align-items: left;
        position: absolute;
    }

    .core-services-section {
        margin-top: 40px;
    }
}

/* ===============================
   EXTRA SMALL DEVICES (≤320px)
   =============================== */
@media (max-width: 320px) {

    .feature-section {
        padding: 50px 15px;
    }

    .feature-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .feature-heading {
        font-size: 1.4rem;
    }

    .feature-text-content {
        max-width: 100%;
    }

    .feature-btn {
        position: static;
        padding: 12px 20px;
        font-size: 0.85rem;
    }

    .feature-img-box {
        max-width: 280px;
    }

    .decorative-circle {
        display: none;
    }
}


/* ===============================
   SMALL DEVICES (≤480px)
   =============================== */
@media (max-width: 480px) {

    .feature-section {
        padding: 60px 16px;
    }

    .feature-row {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .feature-heading {
        font-size: 1.6rem;
    }

    .feature-text-content p {
        font-size: 0.95rem;
    }

    .feature-image {
        margin-top: 20px;
    }

    .image-wrapper {
        position: relative;
        left: 0;
    }

    .feature-img-box {
        max-width: 320px;
    }

    .feature-btn {
        position: static;
    }
}


/* ===============================
   MEDIUM DEVICES (≤576px)
   =============================== */
@media (max-width: 576px) {

    .feature-row {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .feature-heading {
        font-size: 1.75rem;
    }

    .feature-img-box {
        max-width: 350px;
    }

    .decorative-circle.circle-top {
        width: 120px;
        height: 120px;
        top: -15px;
        right: -15px;
    }

    .decorative-circle.circle-bottom {
        width: 100px;
        height: 100px;
        bottom: -10px;
        left: -10px;
    }
}


/* ===============================
   LARGE PHONES (≤768px)
   =============================== */
@media (max-width: 768px) {

    .feature-row {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .feature-text-content {
        max-width: 100%;
    }

    .feature-heading {
        font-size: 1.9rem;
    }

    .feature-image {
        margin-top: 0;
        background: none;
    }

    .image-wrapper {
        position: relative;
        left: 0;
    }

    .feature-btn {
        position: static;
    }
}


/* ===============================
   TABLETS (≤992px)
   =============================== */
@media (max-width: 992px) {

    .feature-row {
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .feature-heading {
        font-size: 2rem;
    }

    .feature-img-box {
        max-width: 400px;
    }
}


/* ===============================
   SMALL LAPTOPS (≤1152px)
   =============================== */
@media screen and (max-width: 1152px) {

    .feature-row {
        gap: 60px;
    }

    .feature-text-content {
        max-width: 480px;
    }
}


/* ===============================
   LARGE LAPTOPS (≤1440px)
   =============================== */
@media screen and (max-width: 1440px) {

    .feature-row {
        gap: 70px;
    }
}


.decorative-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2) 0%, rgba(168, 85, 247, 0.1) 100%);
}

.circle-top {
    width: 200px;
    height: 200px;
    top: -30px;
    right: -30px;
}

.circle-bottom {
    width: 150px;
    height: 150px;
    bottom: -20px;
    left: -20px;
}

.circle-left {
    width: 180px;
    height: 180px;
    top: 50%;
    left: -40px;
    transform: translateY(-50%);
}

.laptop-mockup {
    width: 350px;
    height: 230px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 25px 50px rgba(6, 21, 51, 0.25);
    position: relative;
    z-index: 1;
}

.laptop-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0a2555 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tab.laptop-mockup {
    width: 280px;
    height: 200px;
    background: linear-gradient(145deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.tab.laptop-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a3e 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.mockup-icon {
    font-size: 4rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.feature-img-box {
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.feature-img-box img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.feature-image:hover .feature-img-box img {
    transform: scale(1.05);
}

.tablet-mockup {
    width: 280px;
    height: 380px;
    background: linear-gradient(135deg, #d4a574 0%, #c9956c 100%);
    border-radius: 25px;
    padding: 15px;
    box-shadow: 0 25px 50px rgba(6, 21, 51, 0.25);
    position: relative;
    z-index: 1;
}

.tablet-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e3a5f 0%, #0a2555 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mockup-icon {
    font-size: 4rem;
}

/* Core Services Section */
.core-services-section {
    padding: 100px 20px;
    background-color: var(--white);
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.services-watermark {
    font-family: 'Lora', serif;
    font-size: 5rem;
    font-weight: 700;
    color: rgba(6, 21, 51, 0.05);
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    pointer-events: none;
}

.services-title {
    font-family: 'Lora', serif;
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
}

.services-title {
    font-family: 'Lora', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
}

.services-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
}

.core-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.core-service-card {
    background-color: #061533;
    padding: 35px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(6, 21, 51, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.core-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(6, 21, 51, 0.15);
}

.core-service-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.core-service-icon svg {
    width: 24px;
    height: 24px;
}

.icon-cloud {
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
    color: #4f46e5;
}

.icon-cloud svg {
    stroke: #4f46e5;
}

.icon-web {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    color: #2563eb;
}

.icon-web svg {
    stroke: #2563eb;
}

.icon-app {
    background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%);
    color: #db2777;
}

.icon-app svg {
    stroke: #db2777;
}

.icon-dev {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #d97706;
}

.icon-dev svg {
    stroke: #d97706;
}

.icon-cloud svg {
    stroke: #4f46e5;
}

.icon-data {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #059669;
}

.icon-data svg {
    stroke: #059669;
}

.icon-ai {
    background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
    color: #7c3aed;
}

.icon-ai svg {
    stroke: #7c3aed;
}

.core-service-card h3 {
    font-family: 'Lora', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0;
}

.core-service-card p {
    color: white;
    font-size: 0.95rem;
    line-height: 1.7;
    flex-grow: 1;
    margin-bottom: 20px;
}

.read-more-btn {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid white;
    border-radius: 25px;
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.read-more-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Industries Section */
.industries-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-gray) 100%);
    position: relative;
    overflow: hidden;
}

.industries-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(6, 21, 51, 0.03) 0%, transparent 70%);
    border-radius: 50%;
}

.industries-layout {
    text-align: center;
    margin-bottom: 50px;
}

.industries-text {
    max-width: 800px;
    margin: 0 auto;
}

.industries-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #061533;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
    opacity: 0.7;
}

.industries-subheading {
    font-family: 'Lora', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #061533;
    margin-bottom: 25px;
    line-height: 1.2;
}

.industries-desc {
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 35px;
}

.industries-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #061533 0%, #0a2555 100%);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(6, 21, 51, 0.25);
}

.industries-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(6, 21, 51, 0.35);
}

.industries-btn svg {
    transition: transform 0.3s ease;
}

.industries-btn:hover svg {
    transform: translateX(5px);
}

.industries-marquee {
    width: 100%;
    overflow: hidden;
    padding: 30px 0;
    position: relative;
    background: transparent;
}

.industries-grid {
    display: flex;
    gap: 30px;
    width: fit-content;
    animation: marquee-scroll 60s linear infinite;
    padding-left: 30px;
    /* Initial offset to prevent jump */
}

/* Pause animation on hover */
.industries-grid:hover {
    animation-play-state: paused;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.industry-card {
    flex: 0 0 300px;
    background-color: var(--primary-color);
    padding: 20px 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(6, 21, 51, 0.06);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    user-select: none;
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #061533 0%, #0a2555 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.industry-card:hover::before {
    transform: scaleX(1);
}

.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(6, 21, 51, 0.15);
}

.industry-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(6, 21, 51, 0.08) 0%, rgba(6, 21, 51, 0.03) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.industry-icon svg {
    stroke: #ffffff;
    transition: all 0.3s ease;
}

.industry-card:hover .industry-icon {
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
    transform: scale(1);
}

.industry-card:hover .industry-icon svg {
    stroke: var(--primary-color);
}

.industry-card span {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    display: block;
}

/* Partners Section */
.partners-section {
    padding: 60px 0;
    background-color: #061533;
    text-align: center;
    overflow: hidden;
}

.partners-title {
    font-family: 'Lora', serif;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 15px;
}

.partners-subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
    padding: 0 20px;
}

.partners-scroll-wrapper {
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.partners-scroll {
    display: flex;
    align-items: center;
    gap: 80px;
    animation: scroll-infinite 20s linear infinite;
    width: max-content;
}

@keyframes scroll-infinite {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.partners-scroll:hover {
    animation-play-state: paused;
}

.partner-logo {
    color: var(--white);
    opacity: 0.9;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.partner-logo:hover {
    opacity: 1;
    transform: scale(1.1);
}

.logo-text-simple {
    font-family: 'Segoe UI', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--white);
}

.logo-text-oracle {
    font-family: Arial, sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #f80000;
    letter-spacing: 2px;
}

.logo-text-aws {
    font-family: 'Amazon Ember', Arial, sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ff9900;
}

.logo-text-azure {
    font-family: 'Segoe UI', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #0078d4;
}

.logo-text-cisco {
    font-family: Arial, sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #049fd9;
    letter-spacing: 1px;
}

.microsoft-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ms-grid {
    display: grid;
    grid-template-columns: repeat(2, 12px);
    grid-template-rows: repeat(2, 12px);
    gap: 2px;
}

.ms-red {
    background-color: #f25022;
}

.ms-green {
    background-color: #7fba00;
}

.ms-blue {
    background-color: #00a4ef;
}

.ms-yellow {
    background-color: #ffb900;
}

.ms-text {
    font-family: 'Segoe UI', sans-serif;
    font-size: 1.2rem;
    color: var(--white);
}

@media (max-width: 320px) {

    .industries-section {
        padding: 60px 12px;
    }

    .industries-subheading {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .industries-desc {
        font-size: 0.9rem;
    }

    .industry-card {
        flex: 0 0 240px;
        padding: 16px;
    }

    .industry-icon {
        width: 48px;
        height: 48px;
    }

    .industry-card span {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {

    .industries-section {
        padding: 70px 15px;
    }

    .industries-subheading {
        font-size: 1.8rem;
    }

    .industries-desc {
        font-size: 0.95rem;
    }

    .industries-grid {
        gap: 20px;
    }

    .industry-card {
        flex: 0 0 260px;
    }
}

@media (max-width: 576px) {

    .industries-heading {
        font-size: 0.8rem;
        letter-spacing: 2px;
    }

    .industries-subheading {
        font-size: 2rem;
    }

    .industries-desc {
        font-size: 1rem;
    }

    .industry-card {
        flex: 0 0 280px;
    }
}

@media (max-width: 768px) {

    .industries-section {
        padding: 80px 20px;
    }

    .industries-layout {
        margin-bottom: 30px;
    }

    .industries-subheading {
        font-size: 2.2rem;
    }

    .industries-marquee {
        padding: 20px 0;
    }

    .industries-grid {
        animation-duration: 80s;
        /* slower scroll on mobile */
    }
}

@media (max-width: 992px) {

    .industries-text {
        max-width: 700px;
    }

    .industries-subheading {
        font-size: 2.4rem;
    }

    .industry-card {
        flex: 0 0 290px;
    }
}

@media screen and (max-width: 1152px) {

    .industries-subheading {
        font-size: 2.6rem;
    }

    .industries-grid {
        gap: 24px;
    }
}

@media screen and (max-width: 1440px) {

    .industries-section {
        padding: 100px 20px;
    }
}


/* Why Choose Section */
.why-choose-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, #f8f9fc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.why-choose-left {
    text-align: left;
}

.why-choose-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.why-choose-cards-grid .why-card {
    padding: 28px 22px;
    text-align: center;
}

.why-choose-cards-grid .why-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 16px;
}

.why-choose-cards-grid .why-card h4 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.why-choose-cards-grid .why-card p {
    font-size: 0.85rem;
}

.why-stats-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 32px 0;
}

.why-stat {
    padding: 20px;
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid rgba(6, 21, 51, 0.08);
    box-shadow: 0 4px 16px rgba(6, 21, 51, 0.05);
}

.why-stat-num {
    display: block;
    font-family: 'Lora', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #061533;
    line-height: 1.2;
    margin-bottom: 4px;
}

.why-stat-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    color: #5a6a82;
    font-weight: 500;
}

.why-choose-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #061533 0%, #0a2555 100%);
    color: #ffffff;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(6, 21, 51, 0.2);
}

.why-choose-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(6, 21, 51, 0.3);
}

.why-choose-more {
    max-width: 900px;
    margin: 50px auto 0;
    text-align: center;
}

.why-read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    border: 1px solid rgba(6, 21, 51, 0.15);
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #061533;
    cursor: pointer;
    transition: all 0.3s ease;
}

.why-read-more-btn:hover {
    background: rgba(6, 21, 51, 0.05);
    border-color: rgba(6, 21, 51, 0.3);
}

.why-read-more-btn svg {
    transition: transform 0.3s ease;
}

.why-read-more-btn.is-open svg {
    transform: rotate(180deg);
}

.why-choose-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.why-choose-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 50px;
}

.why-choose-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto 50px;
}

.why-choose-features-grid .why-feature:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 520px;
    justify-self: center;
    width: 100%;
}

.why-choose-content {
    max-width: 500px;
}

.why-choose-label {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(26, 26, 26, 0.6);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.why-choose-title {
    font-family: 'Lora', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #061533;
    margin-bottom: 25px;
    line-height: 1.2;
}

.why-choose-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    color: rgba(0, 0, 0, 0.8);
    line-height: 1.8;
}

.why-choose-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-feature {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 26px;
    background: #ffffff;
    border: 1px solid rgba(6, 21, 51, 0.1);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(6, 21, 51, 0.06);
    transition: all 0.3s ease;
}

.why-feature:hover {
    background: #ffffff;
    border-color: rgba(6, 21, 51, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(6, 21, 51, 0.1);
}

.why-feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, #061533 0%, #0a2555 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-feature-icon svg {
    stroke: var(--white);
    width: 24px;
    height: 24px;
}

.why-feature:hover .why-feature-icon {
    background: linear-gradient(135deg, #0a2555 0%, #061533 100%);
    transform: scale(1.1);
}

.why-feature span {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #061533;
    line-height: 1.5;
    text-align: left;
}

/* CTA Section */
.cta-section {
    padding: 120px 20px;
    background: linear-gradient(135deg, #061533 0%, #0a2555 50%, #061533 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;

    /* Background image + dark overlay */
    background:
        linear-gradient(90deg, transparent 0%, rgba(4, 21, 51, 0.75) 100%),
        url("/images/hero2.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


.cta-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
}

.cta-shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -100px;
    animation: float 20s ease-in-out infinite;
}

.cta-shape-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    right: -50px;
    animation: float 15s ease-in-out infinite reverse;
}

.cta-shape-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.3;
    }
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-label {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.cta-title {
    font-family: 'Lora', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 25px;
    line-height: 1.2;
}

.cta-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-buttons-optimized {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 720px;
    margin: 0 auto;
}

.cta-buttons-compact {
    gap: 14px;
}

.cta-buttons-optimized .cta-btn-primary,
.cta-buttons-optimized .cta-btn-secondary {
    justify-content: center;
    padding: 16px 24px;
    font-size: 0.95rem;
    width: 100%;
}

@media (max-width: 600px) {
    .cta-buttons-optimized {
        grid-template-columns: 1fr;
    }
}

.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: var(--white);
    color: #061533;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.cta-btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.cta-btn-primary svg {
    transition: transform 0.3s ease;
}

.cta-btn-primary:hover svg {
    transform: translateX(5px);
}

.cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: transparent;
    color: var(--white);
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* Shaping the Future Section */
.shaping-future-section {
    padding: 100px 20px;
    background-color: var(--white);
}

.shaping-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.shaping-content {
    max-width: 600px;
}

.shaping-title {
    font-family: 'Lora', serif;
    font-size: 2.8rem;
    font-weight: 400;
    color: #061533;
    margin-bottom: 30px;
    line-height: 1.3;
}

.text-accent {
    color: #7c3aed;
    font-style: italic;
}

.shaping-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.shaping-desc-secondary {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.shaping-stats-inline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px 10px;
    background: linear-gradient(135deg, #061533 0%, #0a2555 100%);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(6, 21, 51, 0.3);
}

.stat-num {
    font-family: 'Lora', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    display: block;
    margin-bottom: 5px;
}

.stat-text {
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    display: block;
}

.shaping-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: transparent;
    color: #061533;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    border: 2px solid #061533;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.shaping-btn:hover {
    background: #061533;
    color: var(--white);
    transform: translateY(-3px);
}

.shaping-btn svg {
    transition: transform 0.3s ease;
}

.shaping-btn:hover svg {
    transform: translate(3px, -3px);
}

.shaping-image {
    position: relative;
}

.shaping-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.shaping-image-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #061533 0%, #0a2555 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: 0;
}

.shaping-image-placeholder {
    position: relative;
    z-index: 1;
    width: 300px;
    height: 350px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    margin: 40px;
}

.shaping-img {
    position: relative;
    z-index: 1;
    width: 350px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    margin: 40px;
    box-shadow: 0 20px 50px rgba(6, 21, 51, 0.3);
}

.shaping-decorative-circle {
    position: absolute;
    bottom: -20px;
    right: 30px;
    width: 120px;
    height: 120px;
    border: 3px solid #7c3aed;
    border-radius: 50%;
    z-index: 2;
}

/* Our Story Section - Split Screen */
.our-story-section {
    background-color: #061533;
}

.story-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-height: 800px;
}

.story-image-side {
    position: relative;
    overflow: hidden;
}

.story-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(6, 21, 51, 0.3) 100%);
}

.story-content-side {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px 60px;
    background-color: #061533;
}

.story-slider {
    position: relative;
    min-height: 280px;
}

.story-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.story-slide.active {
    display: block;
    opacity: 1;
}

.story-nav {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.story-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.story-nav-btn:hover {
    border-color: #7c3aed;
    color: #7c3aed;
    background: rgba(124, 58, 237, 0.1);
}

@media (max-width: 320px) {

    .story-split {
        grid-template-columns: 1fr;
        max-height: none;
    }

    .story-image-side {
        height: 220px;
    }

    .story-title {
        font-size: 1.6rem;
    }

    .story-desc,
    .story-desc-secondary {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .story-nav-btn {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {

    .story-split {
        grid-template-columns: 1fr;
    }

    .story-image-side {
        height: 260px;
    }

    .story-title {
        font-size: 1.8rem;
    }

    .story-desc,
    .story-desc-secondary {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {

    .story-image-side {
        height: 300px;
    }

    .story-title {
        font-size: 2rem;
    }

    .story-desc,
    .story-desc-secondary {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {

    .story-split {
        grid-template-columns: 1fr;
    }

    .story-slider {
        min-height: auto;
        /* REMOVE extra blue space */
    }

    .story-split {
        height: auto;
        max-height: none;
    }

    .story-image-side {
        height: 340px;
    }

    .story-image-overlay {
        background: linear-gradient(180deg, transparent 0%, rgba(6, 21, 51, 0.45) 100%);
    }

    .story-nav {
        justify-content: center;
    }
}

@media (max-width: 992px) {

    .story-split {
        grid-template-columns: 1fr 1fr;
        max-height: none;
    }

    .story-title {
        font-size: 2.2rem;
    }
}

@media screen and (max-width: 1152px) {

    .story-content-side {
        padding: 50px;
    }

    .story-title {
        font-size: 2.4rem;
    }
}

@media screen and (max-width: 1440px) {

    .story-split {
        max-height: 750px;
    }
}


/* ===== FIX: Our Mission overlap issue (MOBILE ONLY) ===== */
@media (max-width: 768px) {

    .our-story-section {
        height: auto;
        min-height: auto;
        overflow: visible;
        padding-bottom: 40px;
        /* space before mission */
    }

    .story-split {
        max-height: none !important;
        height: auto !important;
    }

    .story-content-side {
        padding: 30px 20px;
        height: auto;
    }

    .story-slider {
        min-height: unset;
        height: auto;
    }

    .story-slide {
        position: static;
    }

    .mission-section {
        margin-top: 0;
    }
}


/* Core Values Section - Aesthetic Design */
.core-values-section {
    padding: 100px 20px;
    background-color: var(--white);
}

.core-values-header {
    text-align: center;
    margin-bottom: 80px;
}

.core-values-label {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: #7c3aed;
    letter-spacing: 2px;
    text-transform: capitalize;
    margin-bottom: 15px;
}

.core-values-title {
    font-family: 'Lora', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #061533;
}

.core-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    background: var(--primary-color);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(6, 21, 51, 0.05);
    border: 1px solid rgba(6, 21, 51, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgb(255, 255, 255);
    border-color: rgb(255, 255, 255);
}

.value-card .value-number {
    font-family: 'Lora', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1px #ffffff;
    opacity: 0.6;
    margin-bottom: 20px;
    line-height: 1;
    transition: all 0.4s ease;
}

.value-card:hover .value-number {
    opacity: 1;
    -webkit-text-stroke: 1px #ffffff;
    transform: scale(1.1);
}

.value-content {
    margin-bottom: 30px;
}

.value-card .value-name {
    font-family: 'Lora', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.value-card .value-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: rgb(170, 170, 170);
    line-height: 1.7;
}

.value-points {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
}

.value-point {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #ffffff;
    padding: 10px 15px;
    background: rgba(6, 21, 51, 0.02);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.value-point:hover {
    background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
    color: var(--white);
    transform: translateX(5px);
}

.point-icon {
    color: #7c3aed;
    font-size: 0.6rem;
}

.value-point:hover .point-icon {
    color: var(--white);
}

/* =========================
   TABLETS
   ========================= */
@media (max-width: 992px) {
    .core-values-section {
        padding: 140px 20px;
    }

    .core-values-title {
        font-size: 2.6rem;
    }

    .core-values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

/* =========================
   LARGE PHONES
   ========================= */
@media (max-width: 768px) {
    .core-values-section {
        padding: 20px 20px;
    }

    /* ✅ ONE CARD PER ROW */
    .core-values-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .value-card {
        padding: 35px;
    }

    .value-card .value-number {
        font-size: 3rem;
    }

    .value-card .value-name {
        font-size: 1.6rem;
    }
}

/* =========================
   MEDIUM PHONES
   ========================= */
@media (max-width: 576px) {
    .core-values-section {
        padding: 20px 16px;
    }

    .core-values-label {
        font-size: 1.1rem;
    }

    .core-values-title {
        font-size: 2.2rem;
    }

    .value-card {
        padding: 30px;
        border-radius: 20px;
    }

    .value-card .value-desc {
        font-size: 0.95rem;
    }
}

/* =========================
   SMALL PHONES
   ========================= */
@media (max-width: 480px) {
    .core-values-title {
        font-size: 2rem;
    }

    .value-card {
        padding: 26px;
    }

    .value-card .value-name {
        font-size: 1.4rem;
    }

    .value-point {
        font-size: 0.85rem;
        padding: 8px 12px;
    }
}

/* =========================
   EXTRA SMALL DEVICES
   ========================= */
@media (max-width: 320px) {
    .core-values-title {
        font-size: 1.8rem;
    }

    .value-card {
        padding: 22px;
    }

    .value-card .value-number {
        font-size: 2.6rem;
    }

    .value-card .value-name {
        font-size: 1.25rem;
    }

    .value-card .value-desc {
        font-size: 0.9rem;
    }
}


/* Global Presence Section */
.global-presence-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #061533 0%, #0a2555 100%);
}

.global-header {
    text-align: center;
    margin-bottom: 60px;
}

.global-label {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #7c3aed;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.global-title {
    font-family: 'Lora', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.global-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
}

.global-map-container {
    max-width: 1000px;
    margin: 0 auto;
}

.world-map {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-image {
    width: 100%;
    height: auto;
    opacity: 0.4;
    filter: invert(1) brightness(1.2);
}

.map-marker {
    position: absolute;
    cursor: pointer;
    z-index: 10;
}

.marker-pulse {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(124, 58, 237, 0.3);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: markerPulse 2s ease-out infinite;
}

@keyframes markerPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.marker-pin {
    position: relative;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.5);
    transition: all 0.3s ease;
    border: 3px solid var(--white);
}

.map-marker:hover .marker-pin {
    transform: scale(1.2);
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.7);
}

.marker-tooltip {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.marker-tooltip::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid var(--white);
}

.map-marker:hover .marker-tooltip {
    opacity: 1;
    visibility: visible;
    bottom: 80px;
}

.marker-tooltip h4 {
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #061533;
    margin-bottom: 5px;
}

.marker-tooltip p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    color: var(--text-gray);
    margin: 0;
}

.location-cards-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.location-mini-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 35px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.location-mini-card:hover {
    background: rgba(124, 58, 237, 0.15);
    border-color: rgba(124, 58, 237, 0.3);
    transform: translateY(-5px);
}

.mini-card-icon {
    font-size: 2.5rem;
}

.mini-card-content h4 {
    font-family: 'Lora', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.mini-cities {
    display: flex;
    gap: 15px;
}

.mini-city {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.city-dot {
    width: 6px;
    height: 6px;
    background: #7c3aed;
    border-radius: 50%;
}

/* Page Hero — aesthetic banner */
.page-hero {
    position: relative;
    padding: 96px 20px 56px;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(155deg, #030c1f 0%, #061533 42%, #0b2558 100%);
    z-index: 0;
}

.page-hero-mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 65% 50% at 0% 0%, rgba(37, 99, 235, 0.18) 0%, transparent 55%),
        radial-gradient(ellipse 55% 45% at 100% 100%, rgba(99, 102, 241, 0.14) 0%, transparent 55%);
    pointer-events: none;
}

.page-hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    opacity: 0.7;
}

.page-hero-glow-1 {
    width: 320px;
    height: 320px;
    top: -80px;
    right: 5%;
    background: rgba(59, 130, 246, 0.28);
}

.page-hero-glow-2 {
    width: 260px;
    height: 260px;
    bottom: -60px;
    left: 10%;
    background: rgba(79, 70, 229, 0.2);
}

.page-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 85% 75% at 50% 45%, black 10%, transparent 72%);
    -webkit-mask-image: radial-gradient(ellipse 85% 75% at 50% 45%, black 10%, transparent 72%);
    pointer-events: none;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(3, 12, 31, 0.88) 0%, rgba(6, 21, 51, 0.62) 48%, rgba(6, 21, 51, 0.45) 100%);
    pointer-events: none;
}

.page-hero-container {
    position: relative;
    z-index: 1;
    max-width: 1160px;
    margin: 0 auto;
}

.page-hero-layout {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 52px;
    align-items: center;
}

.page-hero-content {
    text-align: left;
    animation: pageHeroFade 0.8s ease both;
}

@keyframes pageHeroFade {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

.page-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 20px;
    padding: 8px 16px 8px 14px;
    border-left: 3px solid #3b82f6;
    background: rgba(59, 130, 246, 0.08);
    border-radius: 0 6px 6px 0;
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
}

.page-hero-title {
    font-family: 'Playfair Display', 'Lora', serif;
    font-size: clamp(1.95rem, 3.8vw, 2.75rem);
    font-weight: 600;
    color: #fff;
    margin-bottom: 18px;
    line-height: 1.2;
    letter-spacing: -0.015em;
    max-width: 560px;
}

.page-hero-accent {
    background: linear-gradient(135deg, #93c5fd 0%, #a5b4fc 50%, #67e8f9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero-desc {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(0.92rem, 1.5vw, 1.03rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 520px;
}

.page-hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 26px;
}

.page-hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.02em;
    border-radius: 6px;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.page-hero-cta-primary {
    background: linear-gradient(135deg, #ffffff 0%, #e8eef8 100%);
    color: #061533;
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.page-hero-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(59, 130, 246, 0.25);
    color: #061533;
}

.page-hero-cta-outline {
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.page-hero-cta-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(147, 197, 253, 0.45);
    transform: translateY(-2px);
    color: #fff;
}

.page-hero-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.page-hero-chip {
    padding: 7px 14px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.62);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.04);
    transition: all 0.22s ease;
}

.page-hero-chip:hover {
    color: #fff;
    border-color: rgba(96, 165, 250, 0.4);
    background: rgba(59, 130, 246, 0.12);
}

.page-hero-visual {
    display: flex;
    justify-content: flex-end;
    animation: pageHeroFade 0.8s ease 0.12s both;
}

.page-hero-panel {
    position: relative;
    width: 100%;
    max-width: 430px;
    padding: 26px;
    background: rgba(8, 20, 48, 0.78);
    border: 1px solid rgba(96, 165, 250, 0.22);
    border-radius: 10px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.35),
        0 0 60px rgba(59, 130, 246, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.page-hero-panel-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.page-hero-panel-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(147, 197, 253, 0.9);
    white-space: nowrap;
}

.page-hero-panel-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(96, 165, 250, 0.4), transparent);
}

.page-hero-panel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.page-hero-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.page-hero-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.page-hero-card-icon {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: transform 0.25s ease;
}

.page-hero-card:hover .page-hero-card-icon {
    transform: scale(1.05);
}

.page-hero-card--ai .page-hero-card-icon {
    background: rgba(59, 130, 246, 0.18);
    border: 1px solid rgba(96, 165, 250, 0.3);
    color: #93c5fd;
}

.page-hero-card--data .page-hero-card-icon {
    background: rgba(20, 184, 166, 0.15);
    border: 1px solid rgba(45, 212, 191, 0.28);
    color: #5eead4;
}

.page-hero-card--web .page-hero-card-icon {
    background: rgba(99, 102, 241, 0.18);
    border: 1px solid rgba(129, 140, 248, 0.3);
    color: #a5b4fc;
}

.page-hero-card--security .page-hero-card-icon {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(52, 211, 153, 0.28);
    color: #6ee7b7;
}

.page-hero-card-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.page-hero-card-text strong {
    font-family: 'Poppins', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
}

.page-hero-card-text span {
    font-family: 'Poppins', sans-serif;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.45;
}

@media (prefers-reduced-motion: reduce) {
    .page-hero-content,
    .page-hero-visual {
        animation: none;
    }
}

@media (max-width: 992px) {
    .page-hero {
        padding: 92px 20px 44px;
    }

    .page-hero-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .page-hero-content {
        text-align: center;
    }

    .page-hero-eyebrow {
        border-left: none;
        border-top: 2px solid #3b82f6;
        border-radius: 6px;
        padding: 14px 16px 8px;
    }

    .page-hero-title,
    .page-hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .page-hero-cta-group,
    .page-hero-nav {
        justify-content: center;
    }

    .page-hero-visual {
        justify-content: center;
    }

    .page-hero-panel {
        max-width: 480px;
    }
}

@media (max-width: 576px) {
    .page-hero {
        padding: 84px 16px 36px;
    }

    .page-hero-cta {
        width: 100%;
    }

    .page-hero-cta-group {
        flex-direction: column;
    }

    .page-hero-nav {
        flex-direction: column;
        gap: 10px;
    }

    .page-hero-nav-sep {
        display: none;
    }

    .page-hero-panel-grid {
        grid-template-columns: 1fr;
    }

    .page-hero-panel {
        padding: 20px;
    }
}

/* Legacy services-hero aliases (individual service pages) */
.services-hero {
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(160deg, #04102a 0%, #061533 55%, #0a1f45 100%);
    padding: 96px 20px 52px;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.services-hero-compact {
    padding: 92px 20px 48px;
}

.services-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 56px 56px;
}

.services-hero-content {
    text-align: left;
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0;
}

.services-hero-label {
    display: inline-block;
    margin: 0 0 18px;
    padding-left: 14px;
    border-left: 3px solid rgba(255, 255, 255, 0.45);
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
}

.services-hero-title {
    font-family: 'Playfair Display', 'Lora', serif;
    font-size: clamp(1.75rem, 3.2vw, 2.4rem);
    font-weight: 600;
    color: #fff;
    line-height: 1.22;
    margin-bottom: 16px;
    max-width: 640px;
}

.text-gradient {
    color: #fff;
    background: none;
    -webkit-text-fill-color: unset;
}

.services-hero-desc {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(0.92rem, 1.5vw, 1.02rem);
    text-align: left;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.75;
    max-width: 560px;
}

.services-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(4, 16, 42, 0.88) 0%, rgba(6, 21, 51, 0.65) 100%);
    z-index: 0;
    pointer-events: none;
}

@media (max-width: 768px) {
    .services-hero {
        padding: 88px 16px 40px;
    }

    .services-hero-content {
        text-align: center;
    }

    .services-hero-label {
        padding-left: 0;
        border-left: none;
        border-top: 2px solid rgba(255, 255, 255, 0.25);
        padding-top: 14px;
    }

    .services-hero-title,
    .services-hero-desc {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
}

/* Main Services Section */

.services-main {
    padding: 100px 20px;
    background-color: var(--white);
}

.services-intro {
    text-align: center;
    margin-bottom: 80px;
}

.services-label {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #0a2555;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.services-title {
    font-family: 'Lora', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #061533;
}

.service-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 60px 0;
    border-bottom: 1px solid rgba(6, 21, 51, 0.08);
}

.service-block:last-child {
    border-bottom: none;
}

.service-block.reverse {
    direction: rtl;
}

.service-block.reverse>* {
    direction: ltr;
}

.service-block-content {
    max-width: 500px;
}

.service-number {
    font-family: 'Lora', serif;
    font-size: 3rem;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(6, 21, 51, 0.2);
    margin-bottom: 20px;
    display: block;
}

.service-block-title {
    font-family: 'Lora', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #061533;
    margin-bottom: 20px;
}

.service-block-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #061533;
}

.feature-dot {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #0a2555 0%, #061533 100%);
    border-radius: 50%;
    min-width: 8px;
}

.service-block-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-icon-box {
    width: 200px;
    height: 200px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
}

.service-icon-box::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    background: inherit;
    filter: blur(30px);
    opacity: 0.5;
    z-index: -1;
}

.service-icon-box:hover {
    transform: scale(1.1) rotate(5deg);
}

.service-icon-box svg {
    stroke: var(--white);
}

.service-image-box {
    width: 100%;
    max-width: 450px;
    height: 320px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 50px rgba(6, 21, 51, 0.15);
    transition: all 0.4s ease;
}

.service-image-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(6, 21, 51, 0.2) 100%);
    z-index: 1;
    transition: all 0.4s ease;
}

.service-block:hover .service-image-box {
    transform: scale(1.03);
    box-shadow: 0 35px 60px rgba(6, 21, 51, 0.2);
}

.service-block:hover .service-image-box::before {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2) 0%, rgba(6, 21, 51, 0.1) 100%);
}

.service-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.service-block:hover .service-image-box img {
    transform: scale(1.1);
}

.service-icon-box.ai {
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
}

.service-icon-box.ml {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.service-icon-box.iot {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
}

.service-icon-box.crm {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.service-icon-box.software {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.service-icon-box.bpo {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.service-icon-box.web {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
}

.service-icon-box.app {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
}

.service-icon-box.cloud {
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
}

.service-icon-box.data {
    background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
}

.service-icon-box.security {
    background: linear-gradient(135deg, #64748b 0%, #475569 100%);
}

/* =========================
   TABLET & BELOW
   ========================= */
@media (max-width: 992px) {
    .services-main {
        padding: 80px 20px;
    }

    .services-title {
        font-size: 2.3rem;
    }

    .service-block {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 50px 0;
    }

    /* remove reverse issue on mobile */
    .service-block.reverse {
        direction: ltr;
    }

    .service-block-content {
        max-width: 100%;
        text-align: left;
    }

    .service-image-box {
        max-width: 100%;
        height: 300px;
    }
}

/* =========================
   LARGE PHONES
   ========================= */
@media (max-width: 768px) {
    .services-title {
        font-size: 2.1rem;
    }

    .service-number {
        font-size: 2.6rem;
    }

    .service-block-title {
        font-size: 1.8rem;
    }

    .service-features {
        grid-template-columns: 1fr;
    }

    .service-image-box {
        height: 280px;
    }
}

/* =========================
   MEDIUM PHONES
   ========================= */
@media (max-width: 576px) {
    .services-main {
        padding: 70px 16px;
    }

    .services-title {
        font-size: 1.9rem;
    }

    .service-number {
        font-size: 2.3rem;
    }

    .service-block-title {
        font-size: 1.6rem;
    }

    .service-block-desc {
        font-size: 0.95rem;
    }

    .service-image-box {
        height: 250px;
        border-radius: 18px;
    }
}

/* =========================
   SMALL PHONES
   ========================= */
@media (max-width: 480px) {
    .services-title {
        font-size: 1.7rem;
    }

    .service-number {
        font-size: 2.1rem;
    }

    .service-block-title {
        font-size: 1.45rem;
    }

    .service-features li {
        font-size: 0.85rem;
        margin-left: 20px;
    }

    .service-image-box {
        height: 220px;
    }
}

/* =========================
   EXTRA SMALL DEVICES
   ========================= */
@media (max-width: 320px) {
    .services-title {
        font-size: 1.5rem;
    }

    .service-block-title {
        font-size: 1.3rem;
    }

    .service-block-desc {
        font-size: 0.9rem;
    }

    .service-image-box {
        height: 200px;
    }
}


/* Career page — uses shared .page-hero banner */
.page-hero-card--static {
    cursor: default;
    pointer-events: none;
}

.page-hero-card--static:hover {
    transform: none;
    box-shadow: none;
}

.career-why {
    padding: 100px 20px;
    background-color: var(--white);
}

.career-why-header {
    text-align: center;
    margin-bottom: 60px;
}

.career-label {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #7c3aed;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.career-section-title {
    font-family: 'Lora', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #061533;
}

.career-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.career-benefit-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--primary-color);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(6, 21, 51, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(6, 21, 51, 0.05);
}

.career-benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(6, 21, 51, 0.15);
    border-color: rgba(124, 58, 237, 0.2);
}

.career-benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #bdd3ff 0%, #94bbff 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.career-benefit-icon svg {
    stroke: var(--primary-color);
}

.career-benefit-card h3 {
    font-family: 'Lora', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.career-benefit-card p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    color: rgb(194, 193, 193);
    line-height: 1.6;
}

/* Openings Section */

.career-opportunities {
    padding: 20px 20px;
    background: linear-gradient(180deg, var(--white) 0%, var(--white) 100%);
}

.career-opportunities-header {
    text-align: center;
    margin-bottom: 40px;
}

.career-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.career-tab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--white);
    border: 2px solid rgba(6, 21, 51, 0.1);
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #061533;
    cursor: pointer;
    transition: all 0.3s ease;
}

.career-tab:hover {
    border-color: #7c3aed;
    color: #7c3aed;
}

.career-tab.active {
    background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
    border-color: transparent;
    color: var(--white);
}

.career-tab.active svg {
    stroke: var(--white);
}

.career-tab svg {
    stroke: currentColor;
}

.career-tab-content {
    display: none;
}

.career-tab-content.active {
    display: block;
}

.positions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.position-card-new {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(6, 21, 51, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(6, 21, 51, 0.05);
    position: relative;
}

.position-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(6, 21, 51, 0.15);
    border-color: rgba(124, 58, 237, 0.3);
}

.position-card-new.internship:hover {
    border-color: rgba(16, 185, 129, 0.3);
}

.position-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(124, 58, 237, 0.1);
    color: #7c3aed;
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 15px;
}

.position-badge.internship-badge {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.position-title {
    font-family: 'Lora', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #061533;
    margin-bottom: 12px;
}

.position-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.position-details {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.position-location,
.position-exp,
.position-duration {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    color: var(--text-gray);
}

.position-location svg,
.position-exp svg,
.position-duration svg {
    stroke: #7c3aed;
}

.position-apply-btn {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(135deg, #061533 0%, #0a2555 100%);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.position-apply-btn:hover {
    background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
    transform: translateX(5px);
}

.career-cta {
    padding: 100px 20px;
    background: linear-gradient(135deg, #061533 0%, #0a2555 100%);
}

.career-cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.career-cta-content h2 {
    font-family: 'Lora', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.career-cta-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.career-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.career-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.4);
}

.career-cta-btn svg {
    transition: transform 0.3s ease;
}

.career-cta-btn:hover svg {
    transform: translateX(5px);
}

/* Modal Background */
.application-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 21, 51, 0.75);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 20px;
    box-sizing: border-box;
}

/* Modal Box */
.application-modal-content {
    background: #fff;
    width: 100%;
    max-width: 600px;
    max-height: min(92vh, 820px);
    border-radius: 12px;
    position: relative;
    animation: popupFade 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(6, 21, 51, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.application-modal-header {
    flex-shrink: 0;
    padding: 22px 52px 20px 24px;
    background: linear-gradient(135deg, #061533 0%, #0a2555 100%);
    color: #fff;
    position: relative;
}

.application-modal-label {
    display: inline-block;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(147, 197, 253, 0.95);
}

.application-modal-header h3 {
    margin: 0 0 6px;
    font-family: 'Playfair Display', serif;
    font-size: 1.45rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.25;
}

.application-modal-header p {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
}

.application-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 22px 24px 24px;
}

/* Animation */
@keyframes popupFade {
    from {
        transform: scale(0.92) translateY(12px);
        opacity: 0;
    }

    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

/* Close Button */
.close-modal {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    transition: background 0.2s ease;
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}

/* Form */
.application-form {
    margin-top: 0;
}

.form-section-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #64748b;
    margin: 18px 0 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e8edf5;
}

.form-section-label:first-child {
    margin-top: 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-group {
    margin-bottom: 14px;
}

.form-row .form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    margin-bottom: 6px;
    color: #334155;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-input,
.form-select {
    width: 100%;
    padding: 11px 14px;
    border-radius: 8px;
    border: 1px solid #d1dae8;
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif;
    color: #061533;
    background: #fff;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
}

.form-group input::placeholder {
    color: #94a3b8;
}

.form-input--readonly,
.form-group input[readonly] {
    background: #f4f7fb;
    color: #475569;
    cursor: default;
}

.form-hint {
    display: block;
    margin-top: 6px;
    font-size: 0.75rem;
    color: #94a3b8;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 14px 20px;
    border-radius: 8px;
    border: none;
    background: linear-gradient(135deg, #061533 0%, #0a2555 100%);
    color: #fff;
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 16px rgba(6, 21, 51, 0.25);
}

.submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(6, 21, 51, 0.35);
}

.application-success {
    text-align: center;
    padding: 32px 16px;
}

.application-success-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.12);
    color: #10b981;
    border-radius: 50%;
    font-size: 1.75rem;
}

.application-success h3 {
    margin: 0 0 10px;
    color: #061533;
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
}

.application-success p {
    color: #64748b;
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0 0 24px;
}

.modal-btn {
    padding: 12px 28px;
    border-radius: 8px;
    border: none;
    background: linear-gradient(135deg, #061533, #0a2555);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: box-shadow 0.2s ease;
}

.modal-btn:hover {
    box-shadow: 0 6px 20px rgba(6, 21, 51, 0.3);
}

/* Mobile */
@media (max-width: 320px) {
    .career-tabs {
        flex-direction: column;
        gap: 12px;
    }

    .career-tab {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 0.85rem;
    }

    .positions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .position-card-new {
        padding: 20px;
    }

    .position-title {
        font-size: 1.1rem;
    }

    .position-details {
        flex-direction: column;
        gap: 10px;
    }

    .career-cta-content h2 {
        font-size: 1.6rem;
    }

    .career-cta-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .career-tabs {
        flex-direction: column;
        gap: 14px;
    }

    .career-tab {
        width: 100%;
        justify-content: center;
    }

    .positions-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .position-details {
        flex-direction: column;
        gap: 12px;
    }

    .career-cta {
        padding: 60px 20px;
    }

    .career-cta-content h2 {
        font-size: 1.8rem;
    }

    .application-modal-content {
        max-height: 94vh;
    }

    .application-modal-body {
        padding: 18px 16px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .positions-grid {
        grid-template-columns: 1fr;
    }

    .career-tabs {
        flex-wrap: wrap;
        justify-content: center;
    }

    .career-tab {
        padding: 14px 24px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .positions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .career-cta-content h2 {
        font-size: 2rem;
    }

    .career-cta-content p {
        font-size: 1rem;
    }
}

@media (max-width: 992px) {
    .positions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .career-tabs {
        gap: 16px;
    }
}

@media screen and (max-width: 1152px) {
    .positions-grid {
        gap: 26px;
    }
}

@media screen and (max-width: 1440px) {
    .positions-grid {
        gap: 30px;
    }
}




/* Contact Page Styles */
.contact-page {
    background: #f4f6fa;
    color: #061533;
}

.contact-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #061533 0%, #0a2555 100%);
    padding: 140px 20px 80px;
    overflow: hidden;
}

.contact-hero-compact {
    min-height: auto;
    padding: 120px 20px 60px;
}

.contact-hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(6, 21, 51, 0.92) 0%, rgba(10, 37, 85, 0.85) 100%),
        url("/images/contatpage2.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.contact-hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
}

.contact-hero-label {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
}

.contact-hero-title {
    font-family: 'Lora', serif;
    font-size: 2.75rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
}

.contact-hero-title .text-gradient {
    background: linear-gradient(135deg, #7eb8ff 0%, #c4d9ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-hero-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.75;
}

.contact-main-section {
    padding: 0 20px 80px;
    margin-top: -48px;
    position: relative;
    z-index: 2;
}

.contact-main-section .container {
    max-width: 1140px;
}

.contact-quick-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.contact-quick-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(6, 21, 51, 0.08);
    border: 1px solid rgba(6, 21, 51, 0.06);
    text-decoration: none;
    color: #061533;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-quick-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(6, 21, 51, 0.12);
}

.contact-quick-card strong {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.contact-quick-card p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    color: #5a6b85;
    margin: 0;
}

.contact-quick-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #061533 0%, #0a2555 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-quick-card-whatsapp .contact-quick-icon {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.contact-card {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(6, 21, 51, 0.12);
    border: 1px solid rgba(6, 21, 51, 0.06);
}

.contact-left {
    padding: 44px 40px;
    color: #fff;
    background: linear-gradient(160deg, #061533 0%, #0a2555 55%, #102a5c 100%);
    position: relative;
    overflow: hidden;
}

.contact-left::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact-left-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.contact-left h2 {
    font-family: 'Lora', serif;
    font-size: 1.75rem;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.contact-left .subtitle {
    font-size: 0.92rem;
    margin-bottom: 28px;
    opacity: 0.88;
    line-height: 1.65;
    font-family: 'Poppins', sans-serif;
    position: relative;
    z-index: 1;
}

.contact-left .info-item {
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    position: relative;
    z-index: 1;
}

.contact-left .info-item strong {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.75;
    margin-bottom: 4px;
}

.contact-left .info-item p {
    font-size: 0.92rem;
    line-height: 1.55;
    margin: 0;
}

.contact-left .info-item a {
    color: #c4d9ff;
    text-decoration: none;
}

.contact-left .info-item a:hover {
    text-decoration: underline;
}

.contact-left .icon {
    background: rgba(255, 255, 255, 0.12);
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.95rem;
}

.contact-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 28px 0 24px;
    position: relative;
    z-index: 1;
}

.contact-trust-badges span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
}

.contact-left .social {
    display: flex;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.contact-left .social-link-item {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.25s ease;
}

.contact-left .social-link-item:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-2px);
}

.contact-right {
    padding: 44px 40px;
    background: #fff;
}

.contact-form-header {
    margin-bottom: 28px;
}

.contact-form-header h2 {
    font-family: 'Lora', serif;
    font-size: 1.65rem;
    color: #061533;
    margin-bottom: 6px;
}

.contact-form-header p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.92rem;
    color: #5a6b85;
    margin: 0;
}

.contact-form-fields .row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}

.contact-form-fields .field {
    display: flex;
    flex-direction: column;
}

.contact-form-fields label {
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: #061533;
    font-family: 'Poppins', sans-serif;
}

.contact-form-fields input,
.contact-form-fields select,
.contact-form-fields textarea {
    padding: 14px 16px;
    border-radius: 12px;
    border: 1.5px solid #e2e8f0;
    outline: none;
    font-size: 0.92rem;
    font-family: 'Poppins', sans-serif;
    color: #061533;
    background: #f8fafc;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-form-fields input:focus,
.contact-form-fields select:focus,
.contact-form-fields textarea:focus {
    border-color: #061533;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(6, 21, 51, 0.08);
}

.contact-form-fields textarea {
    resize: vertical;
    min-height: 130px;
}

.contact-form-fields .field:not(.row .field) {
    margin-bottom: 18px;
}

.contact-form-fields .submit-btn {
    margin-top: 8px;
    width: 100%;
    padding: 16px 24px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(135deg, #061533 0%, #0a2555 100%);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 8px 24px rgba(6, 21, 51, 0.25);
}

.contact-form-fields .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(6, 21, 51, 0.35);
}

.contact-form-fields .submit-btn i {
    font-size: 0.9rem;
    transition: transform 0.25s ease;
}

.contact-form-fields .submit-btn:hover i {
    transform: translateX(4px);
}

/* Legacy wrapper - keep for compatibility */
.contact-wrapper {
    max-width: 1140px;
    margin: auto;
    padding: 0 20px 80px;
}

/* RESPONSIVE - Contact */
@media (max-width: 992px) {
    .contact-quick-actions {
        grid-template-columns: 1fr;
    }

    .contact-card {
        grid-template-columns: 1fr;
    }

    .contact-left,
    .contact-right {
        padding: 32px 28px;
    }
}

@media (max-width: 768px) {
    .contact-hero-compact {
        padding: 100px 20px 50px;
    }

    .contact-hero-title {
        font-size: 2rem;
    }

    .contact-main-section {
        margin-top: -32px;
        padding-bottom: 60px;
    }

    .contact-form-fields .row {
        grid-template-columns: 1fr;
    }

    .contact-left,
    .contact-right {
        padding: 28px 22px;
    }
}

@media (max-width: 480px) {
    .contact-hero-title {
        font-size: 1.75rem;
    }

    .contact-quick-card {
        padding: 14px 16px;
    }

    .contact-quick-icon {
        width: 42px;
        height: 42px;
    }
}




/* WhatsApp Button Bounce Animation */
@keyframes whatsapp-bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    text-decoration: none;
    animation: whatsapp-bounce 2s infinite;
}

.whatsapp-button:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-button svg {
    width: 32px;
    height: 32px;
    fill: white;
}

.whatsapp-tooltip {
    position: absolute;
    right: 80px;
    background: #333;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-tooltip::before {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: #333;
}

.whatsapp-button:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 90px;
}

/* Responsive WhatsApp Button */
@media (max-width: 768px) {
    .whatsapp-button {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-button svg {
        width: 28px;
        height: 28px;
    }

    .whatsapp-tooltip {
        display: none;
    }
}

#subject option:hover,
#subject option:checked {
    background: #7c3aed;
    color: white;
}

/* Make dropdown appear as a grid */
#subject {
    appearance: none;
    background-image: none;
    padding: 10px;
    min-height: 120px;
    overflow-y: auto;
    max-height: 200px;
}

#subject::-webkit-scrollbar {
    width: 6px;
}

#subject::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

#subject::-webkit-scrollbar-thumb {
    background: #061533;
    border-radius: 3px;
}


.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #061533 0%, #0a2555 100%);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-submit-btn:hover {
    background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.3);
}

.contact-submit-btn svg {
    transition: transform 0.3s ease;
}

.contact-submit-btn:hover svg {
    transform: translateX(5px);
}

.contact-map-section {
    padding: 80px 20px 100px;
    background: #fff;
}

.contact-map-header {
    text-align: center;
    margin-bottom: 36px;
}

.contact-map-label {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #0a2555;
    margin-bottom: 12px;
}

.contact-map-header h2 {
    font-family: 'Lora', serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #061533;
    margin-bottom: 10px;
}

.contact-map-header p {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #5a6b85;
}

.contact-map-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(6, 21, 51, 0.12);
    border: 1px solid rgba(6, 21, 51, 0.08);
}

.contact-map-wrapper iframe {
    display: block;
    width: 100%;
    height: 420px;
    border: 0;
}

/* Leaders Section */
.leaders-section {
    padding: 100px 20px;
    /* background: linear-gradient(135deg, #061533 0%, #0a2555 100%); */
    overflow: hidden;
}

.leaders-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.leaders-cards {
    display: flex;
    gap: 30px;
    position: relative;
}

.leaders-cards::before {
    content: '';
    position: absolute;
    top: 20px;
    left: -40px;
    width: 80px;
    height: 80px;
    background-image: radial-gradient(circle, rgba(124, 58, 237, 0.5) 2px, transparent 2px);
    background-size: 12px 12px;
}

.leaders-cards::after {
    content: '';
    position: absolute;
    bottom: 20px;
    right: 40px;
    width: 80px;
    height: 80px;
    background-image: radial-gradient(circle, rgba(124, 58, 237, 0.5) 2px, transparent 2px);
    background-size: 12px 12px;
}

.leader-card {
    position: relative;
    width: 220px;
}

.leader-card.featured {
    margin-top: -40px;
}

.leader-card-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: #7c3aed;
    border-radius: 20px;
    z-index: 0;
}

.leader-image {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 280px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.leader-card:hover .leader-image img {
    filter: grayscale(0%);
}

.leader-linkedin {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: #7c3aed;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.3s ease;
    text-decoration: none;
}

.leader-linkedin svg {
    fill: var(--white);
}

.leader-linkedin:hover {
    background: #5b21b6;
    transform: translateX(-50%) scale(1.1);
}

.leader-linkedin-2 {
    position: absolute;
    bottom: 110px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: #7c3aed;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.3s ease;
    text-decoration: none;
}

.leader-linkedin-2 svg {
    fill: var(--white);
}

.leader-linkedin-2:hover {
    background: #5b21b6;
    transform: translateX(-50%) scale(1.1);
}

.leader-info {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 15px 10px;
}

.leader-info h3 {
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 5px;
}

.leader-info p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.leaders-text {
    padding-left: 40px;
}

.leaders-title {
    font-family: 'Lora', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: black;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.leaders-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #7c3aed;
}

.leaders-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: rgba(5, 5, 5, 0.8);
    line-height: 1.8;
}

/* Services Why Section */
.services-why {
    padding: 100px 20px;
    background: linear-gradient(180deg, #f8f9fc 0%, var(--white) 100%);
}

.services-why-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-why-title {
    font-family: 'Lora', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #061533;
}

.services-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(6, 21, 51, 0.08);
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(6, 21, 51, 0.15);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #061533 0%, #0a2555 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.why-icon svg {
    stroke: var(--white);
}

.why-card h4 {
    font-family: 'Lora', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #061533;
    margin-bottom: 10px;
}

.why-card p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.story-content-inner {
    max-width: 500px;
}

.story-label {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: #7c3aed;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.story-title {
    font-family: 'Lora', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 25px;
    line-height: 1.2;
}

.story-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-desc-secondary {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 35px;
}

.story-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 35px;
    background: transparent;
    color: var(--white);
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.story-btn:hover {
    background: var(--white);
    color: #061533;
    border-color: var(--white);
    transform: translateY(-3px);
}

.story-btn svg {
    transition: transform 0.3s ease;
}

.story-btn:hover svg {
    transform: translateX(5px);
}

/* =========================
   TABLET (iPad & Tabs)
   ========================= */
@media (max-width: 992px) {
    .services-why {
        padding: 80px 20px;
    }

    .services-why-title {
        font-size: 2.2rem;
    }

    .services-why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

/* =========================
   LARGE PHONES
   ========================= */
@media (max-width: 768px) {
    .services-why-title {
        font-size: 2rem;
    }

    /* ✅ ONE CARD PER ROW */
    .services-why-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .why-card {
        padding: 35px 25px;
    }
}

/* =========================
   MEDIUM PHONES
   ========================= */
@media (max-width: 576px) {
    .services-why {
        padding: 70px 16px;
    }

    .services-why-title {
        font-size: 1.85rem;
    }

    .why-icon {
        width: 65px;
        height: 65px;
    }

    .why-card h4 {
        font-size: 1.1rem;
    }
}

/* =========================
   SMALL PHONES
   ========================= */
@media (max-width: 480px) {
    .services-why-title {
        font-size: 1.7rem;
    }

    .why-card {
        padding: 30px 20px;
        border-radius: 18px;
    }

    .why-card p {
        font-size: 0.88rem;
    }
}

/* =========================
   EXTRA SMALL DEVICES
   ========================= */
@media (max-width: 320px) {
    .services-why-title {
        font-size: 1.5rem;
    }

    .why-icon {
        width: 58px;
        height: 58px;
    }

    .why-card h4 {
        font-size: 1rem;
    }

    .why-card p {
        font-size: 0.85rem;
    }
}


/* Footer */
.footer {
    background-color: #f3f4f6;
    color: #333333;
}

.footer-main {
    padding: 30px 20px 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 50px;
}

.footer-col h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #111111;
    margin-bottom: 25px;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #061533 0%, transparent 100%);
}

.footer-logo {
    font-family: 'Lora', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 20px;
}

.footer-logo span {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #333333;
    display: block;
}

.footer-about {
    position: relative;
}

.footer-about p {
    font-size: 0.95rem;
    color: #444444;
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333333;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #061533;
    color: white;
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #444444;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #061533;
    transform: translateX(5px);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
    color: #444444;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-contact li svg {
    min-width: 18px;
    margin-top: 3px;
    stroke: #061533;
}

.footer-contact a {
    color: #444444;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #061533;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.05);
    padding: 20px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #555555;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    color: #555555;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #061533;
}

.footer p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        position: sticky;
        top: 0;
        z-index: 1000;
        padding: 8px 0;
    }

    .nav-container {
        flex-wrap: nowrap;
        justify-content: space-between;
        gap: 12px;
        padding: 0 16px;
    }

    .logo img {
        height: 40px;
    }

    .nav-toggle {
        display: flex;
        margin-left: auto;
    }

    .nav-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(6, 21, 51, 0.55);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 1001;
    }

    .nav-backdrop.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(300px, 85vw);
        height: 100vh;
        height: 100dvh;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        padding: 88px 24px 32px;
        margin: 0;
        background: #fff;
        box-shadow: -8px 0 32px rgba(6, 21, 51, 0.12);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        transition: right 0.3s ease;
        z-index: 1003;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        flex-shrink: 0;
        border-bottom: 1px solid #eef2f7;
    }

    .nav-links li:last-child {
        border-bottom: none;
        margin-top: 8px;
    }

    .nav-link {
        color: #061533;
        font-size: 1rem;
        font-weight: 500;
        padding: 16px 4px;
        display: block;
        width: 100%;
        white-space: normal;
    }

    .nav-link::after {
        display: none;
    }

    .nav-link.nav-btn {
        background: linear-gradient(135deg, #061533 0%, #0a2555 100%);
        color: white !important;
        padding: 14px 20px;
        border-radius: 10px;
        margin: 0;
        width: 100%;
        font-size: 1rem;
        text-align: center;
    }

    .hero-feature {
        padding: 12px 15px;
    }

    .feature-text {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .logo-accent {
        font-size: 0.8rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .position-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .position-meta {
        justify-content: center;
    }

    .contact-form-wrapper {
        padding: 25px;
    }

    .feature-row {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .feature-row.reverse {
        direction: ltr;
    }

    .feature-text-content {
        max-width: 100%;
        text-align: center;
    }

    .feature-heading {
        font-size: 1.6rem;
    }

    .feature-btn {
        display: flex;
        justify-content: center;
        width: fit-content;
        margin: 15px auto 0;
    }

    .laptop-mockup {
        width: 280px;
        height: 180px;
    }

    .tablet-mockup {
        width: 220px;
        height: 300px;
    }

    .mockup-icon {
        font-size: 3rem;
    }

    .decorative-circle {
        display: none;
    }

    .core-services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .services-watermark {
        font-size: 2.5rem;
        top: -20px;
    }

    .services-title {
        font-size: 2rem;
    }

    .core-service-card {
        padding: 25px 20px;
    }

    .industries-layout {
        gap: 30px;
    }

    .industries-text {
        position: static;
        text-align: center;
    }

    .industries-heading {
        font-size: 0.8rem;
    }

    .industries-subheading {
        font-size: 2rem;
    }

    .industries-btn {
        display: inline-flex;
        justify-content: center;
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .industry-card {
        padding: 25px 15px;
    }

    .industry-icon {
        width: 50px;
        height: 50px;
    }

    .industry-card span {
        font-size: 0.85rem;
    }

    .why-choose-features-grid {
        grid-template-columns: 1fr;
    }

    .why-choose-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-choose-left {
        text-align: center;
    }

    .why-choose-cta {
        margin: 0 auto;
    }

    .why-stats-row {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .why-choose-cards-grid {
        grid-template-columns: 1fr;
    }

    .why-choose-title {
        font-size: 2.2rem;
    }

    .why-choose-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .why-choose-content {
        text-align: center;
        max-width: 100%;
    }

    .why-choose-title {
        font-size: 2.2rem;
    }

    .why-feature {
        padding: 20px;
    }

    .why-feature-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
    }

    .why-feature span {
        font-size: 0.9rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-desc {
        font-size: 1rem;
    }

    .cta-btn-primary,
    .cta-btn-secondary {
        padding: 15px 30px;
        font-size: 0.95rem;
    }

    .shaping-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .shaping-content {
        text-align: center;
        max-width: 100%;
    }

    .shaping-title {
        font-size: 2rem;
    }

    .shaping-btn {
        display: inline-flex;
    }

    .shaping-image-placeholder {
        width: 250px;
        height: 300px;
        font-size: 4rem;
    }

    .shaping-decorative-circle {
        position: absolute;
        bottom: -20px;
        right: -20px;
        width: 50px;
        height: 50px;
        border: 3px solid #7c3aed;
        border-radius: 50%;
        z-index: 2;
    }

    .story-split {
        grid-template-columns: 1fr;
    }

    .story-image-side {
        height: 300px;
    }

    /* .story-content-side {
        padding: 50px 20px;
    } */

    .story-title {
        font-size: 2rem;
    }

    .core-values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .value-card {
        padding: 30px 25px;
    }

    .value-card:hover {
        transform: translateY(-5px);
    }

    .value-number {
        font-size: 2.5rem;
    }

    .value-card .value-name {
        font-size: 1.4rem;
        color: #ffffff;
    }

    .global-title {
        font-size: 2rem;
    }

    .world-map {
        padding: 20px;
    }

    .marker-pin {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .location-cards-row {
        flex-direction: column;
        align-items: center;
    }

    .location-mini-card {
        width: 100%;
        max-width: 300px;
    }

    .services-title {
        font-size: 2rem;
    }

    .service-block {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 0;
    }

    .service-block.reverse {
        direction: ltr;
    }

    .service-icon-box {
        width: 150px;
        height: 150px;
    }

    .service-image-box {
        height: 250px;
        max-width: 100%;
    }

    .service-features {
        grid-template-columns: 1fr;
    }

    .services-why-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .why-card {
        padding: 30px 20px;
    }

    .career-benefits-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .career-benefit-card {
        padding: 30px 20px;
    }

    .career-tabs {
        flex-direction: column;
        align-items: center;
    }

    .career-tab {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }

    .positions-grid {
        grid-template-columns: 1fr;
    }

    .career-cta-content h2 {
        font-size: 2rem;
    }

    .contact-hero-title {
        font-size: 2.2rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-info-side {
        padding: 40px 30px;
    }

    .contact-form-side {
        padding: 40px 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-map-wrapper iframe {
        height: 300px;
    }

    .leaders-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .leaders-cards {
        justify-content: center;
    }

    .leader-card {
        width: 180px;
    }

    .leader-image {
        height: 220px;
    }

    .leaders-text {
        padding-left: 0;
        text-align: center;
    }

    .leaders-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-social {
        justify-content: center;
    }

    .footer-contact li {
        justify-content: center;
        text-align: left;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-bottom-links {
        gap: 20px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .core-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .industries-marquee {
        padding: 10px 0;
    }

    .industries-grid {
        gap: 20px;
        animation: scroll-left-to-right 40s linear infinite;
    }

    .industry-card {
        flex: 0 0 260px;
        padding: 30px 20px;
    }
}

/* ===== GLOBAL MAP UPGRADE ===== */

.world-map {
    position: relative;
    padding: 50px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.35),
        inset 0 0 80px rgba(124, 58, 237, 0.08);
    overflow: hidden;
}

/* World Map */
.map-image {
    width: 100%;
    opacity: 0.35;
    filter: invert(1) brightness(1.4) contrast(0.9);
}

/* Connection Lines */
.map-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.map-lines path {
    fill: none;
    stroke: rgba(124, 58, 237, 0.45);
    stroke-width: 2;
    stroke-dasharray: 6;
    animation: dashMove 6s linear infinite;
}

@keyframes dashMove {
    to {
        stroke-dashoffset: -60;
    }
}

/* Marker Base */
.map-marker {
    position: absolute;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 5;
}

/* Region Glow */
.region-glow {
    position: absolute;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.15), transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: glowFloat 6s ease-in-out infinite;
}

@keyframes glowFloat {

    0%,
    100% {
        transform: translate(-50%, -50%) translateY(0);
    }

    50% {
        transform: translate(-50%, -50%) translateY(-12px);
    }
}

/* Pulse */
.marker-pulse {
    position: absolute;
    width: 90px;
    height: 90px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.35), transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulseGlow 2.5s infinite ease-out;
}

@keyframes pulseGlow {
    0% {
        transform: translate(-50%, -50%) scale(0.6);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* Marker Pin */
.marker-pin {
    position: relative;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    border: 3px solid #fff;
    box-shadow:
        0 0 0 6px rgba(124, 58, 237, 0.15),
        0 20px 50px rgba(124, 58, 237, 0.6);
    z-index: 2;
    transition: transform 0.3s ease;
}

.map-marker:hover .marker-pin {
    transform: scale(1.15);
}

/* Tooltip */
.marker-tooltip {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 18px 24px;
    border-radius: 14px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.marker-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid rgba(255, 255, 255, 0.95);
}

.map-marker:hover .marker-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Tooltip Text */
.marker-tooltip h4 {
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    font-weight: 700;
    background: linear-gradient(135deg, #7c3aed, #061533);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.marker-tooltip p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    color: #555;
}


/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-button svg {
    width: 35px;
    height: 35px;
    fill: currentColor;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.whatsapp-button:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Custom Application Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(6, 21, 51, 0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 50px 40px;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 35px;
    font-weight: 300;
    color: #999;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
}

.modal-close:hover {
    color: #061533;
    transform: rotate(90deg);
}

.modal-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
}

.modal-icon svg {
    stroke: white;
}

.modal-title {
    font-family: 'Lora', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #061533;
    margin-bottom: 15px;
}

.modal-message {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.modal-email {
    background: rgba(124, 58, 237, 0.1);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.email-link {
    font-family: 'Lora', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #7c3aed;
    text-decoration: none;
    transition: all 0.3s ease;
}

.email-link:hover {
    color: #5b21b6;
    text-decoration: underline;
}

.modal-btn {
    background: linear-gradient(135deg, #061533 0%, #0a2555 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(6, 21, 51, 0.3);
}

.modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(6, 21, 51, 0.4);
}

/* ===================================
   SERVICES PAGE ANIMATIONS
   =================================== */

/* Services Hero Section Animations */
.page-hero-eyebrow,
.services-hero-label {
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.page-hero-title,
.services-hero-title {
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.page-hero-desc,
.services-hero-desc {
    animation: fadeInUp 0.8s ease-out 0.7s both;
}

.page-hero-bg,
.services-hero-bg {
    animation: none;
}

/* Service Block Base Styles */
.service-block {
    opacity: 1;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.service-block.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Alternate animations for service blocks */
.service-block:nth-child(odd).animate .service-block-content {
    animation: fadeInLeft 0.8s ease-out;
}

.service-block:nth-child(even).animate .service-block-content {
    animation: fadeInRight 0.8s ease-out;
}

.service-block.animate .service-block-visual {
    animation: scaleIn 0.8s ease-out 0.2s both;
}

/* Service Number Animation */
.service-number {
    display: inline-block;
    transition: all 0.3s ease;
}







/* Service Features Animation */
.service-features li {
    opacity: 1;
    transform: translateX(-20px);
    transition: all 0.4s ease;
}

.service-block.animate .service-features li:nth-child(1) {
    animation: fadeInLeft 0.5s ease-out 0.4s both;
}

.service-block.animate .service-features li:nth-child(2) {
    animation: fadeInLeft 0.5s ease-out 0.5s both;
}

.service-block.animate .service-features li:nth-child(3) {
    animation: fadeInLeft 0.5s ease-out 0.6s both;
}

.service-block.animate .service-features li:nth-child(4) {
    animation: fadeInLeft 0.5s ease-out 0.7s both;
}

/* Feature Dot Pulse on Hover */
.feature-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #7c3aed;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}



/* Service Features List Hover */
.service-features li {
    transition: all 0.3s ease;
    cursor: pointer;
}



/* Services Intro Animation */
.services-intro {
    opacity: 1;
    transform: translateY(30px);
}

.services-intro.animate {
    animation: fadeInUp 0.8s ease-out both;
}

/* Reduce animations on mobile for performance */
@media (max-width: 768px) {
    .services-hero-bg {
        animation: none;
    }

    .service-block:hover {
        transform: none;
    }

    .service-block:hover .service-image-box img {
        transform: scale(1.05);
    }
}




/* =========================
   SCROLL REVEAL ANIMATION
   ========================= */

.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

/* Active state */
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Reverse block animation (left → right) */
.service-block.reverse.reveal {
    transform: translateX(60px);
}

.service-block.reverse.reveal.active {
    transform: translateX(0);
}

/* Slight delay for better feel */
.service-block.reveal {
    transition-delay: 0.15s;
}

/* Faster animation on mobile */
@media (max-width: 768px) {
    .reveal {
        transition-duration: 0.6s;
    }
}


/* Home AI ML Animation */


.hero-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px 40px;
    width: 100%;
    background: radial-gradient(circle at top, #233a7d, #050b24);
    color: #fff;
}

.header-animation {
    text-align: center;
    margin-bottom: 30px;
}

.badge-animation {
    background: linear-gradient(90deg, #ff416c, #ff4b2b);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    color: white;
    box-shadow: 0 0 15px rgba(255, 75, 43, 0.4);
}

.ai-animation {
    font-size: clamp(2rem, 5vw, 4rem);
    margin: 20px 0;
    color: white;
    letter-spacing: -1px;
    font-family: 'Lora', serif;
}

.subtext-animation {
    color: #cbd5e1;
    max-width: 600px;
    line-height: 1.6;
    margin: 0 auto;
}

.visual {
    width: 100%;
    max-width: 800px;
    display: flex;
    justify-content: center;
}

/* svg {
            width: 100%;
            height: auto;
        } */

.node-text {
    font-size: 14px;
    fill: white;
    font-weight: 500;
}

/* Standard Pulse Animation */
@keyframes pulse {
    0% {
        opacity: 0.6;
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.pulsing {
    animation: pulse 2s ease-in-out infinite alternate;
    transform-origin: center;
}

/* ================= RESPONSIVE BREAKPOINTS ================= */

/* Extra small devices */
@media (max-width: 320px) {
    .hero-wrapper {
        padding: 100px 10px 0px 10px;
    }

    .ai-animation {
        font-size: 1.7rem;
    }

    .subtext-animation {
        font-size: 0.8rem;
    }

    .visual {
        max-width: 320px;
    }

    .node-text {
        font-size: 10px;
    }
}

/* Small devices */
@media (max-width: 480px) {
    .ai-animation {
        font-size: 2rem;
    }

    .subtext-animation {
        font-size: 0.85rem;
    }

    .visual {
        max-width: 360px;
    }

    .node-text {
        font-size: 11px;
    }
}

/* Medium devices */
@media (max-width: 576px) {
    .ai-animation {
        font-size: 2.2rem;
    }

    .subtext-animation {
        font-size: 0.9rem;
    }

    .visual {
        max-width: 420px;
    }

    .node-text {
        font-size: 12px;
    }
}

/* Large phones */
@media (max-width: 768px) {
    .ai-animation {
        font-size: 2.5rem;
    }

    .subtext-animation {
        max-width: 90%;
    }

    .visual {
        max-width: 520px;
    }

    .node-text {
        font-size: 13px;
    }
}

/* Tablets */
@media (max-width: 992px) {
    .visual {
        max-width: 650px;
    }

    .ai-animation {
        font-size: 2.2rem;
        margin-top: 20px;
    }
}

@media screen and (max-width: 1152px) {
    .visual {
        max-width: 720px;
    }
}

@media screen and (max-width: 1440px) {
    .visual {
        max-width: 780px;
    }
}

@media (max-width: 576px) {
    .hero-visual-svg {
        transform: scale(1.15);
        transform-origin: center;
    }
}

@media (max-width: 360px) {
    .hero-visual-svg {
        transform: scale(1.25);
    }
}

@media (min-width: 1200px) {
    .visual {
        margin-top: -70px;
    }
}


/* AI ML Section */

.topics {
    min-height: auto;
    padding: 80px 20px;
    text-align: center;
    background: radial-gradient(circle at top, #1a2d5c, #050b24);
    color: #fff;
}

.topics h2 {
    font-size: 32px;
    margin-bottom: 50px;
    color: #b7c9ff;
    font-family: 'Lora', serif;
}

/* Grid */
.cards {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card */
.card {
    position: relative;
    background: #2f3b63;
    border-radius: 18px;
    padding: 30px;
    text-align: left;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transition: 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
}

/* Icon */
.icon {
    width: 50px;
    height: 50px;
    background: #3c4a75;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 25px;
}

/* Title */
.card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-family: 'Lora', serif;
}

.card p {
    font-size: 14px;
    line-height: 1.6;
    color: #cbd6ff;
}

/* Tags */
.tag {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 12px;
    letter-spacing: 0.5px;
}

.hot {
    background: #ff4d6d;
}

.trending {
    background: #4da6ff;
}

.growing {
    background: #ffb84d;
}

.essential {
    background: #7cff4d;
    color: #000;
}

.rising {
    background: #9f7cff;
}

/* Responsive */
@media (max-width: 900px) {
    .cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .cards {
        grid-template-columns: 1fr;
    }

    .topics h2 {
        font-size: 24px;
    }
}



/* Director Section */

.team-section {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(135deg, #061533 0%, #0a2555 100%);
    color: #ffffff;
}

.team-title {
    font-size: 3rem;
    margin-bottom: 60px;
    font-family: 'Lora', serif;
    color: #ffffff;
}

.team-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    max-width: 1200px;
    margin: auto;
}

.team-card {
    text-align: center;
}

.team-card img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top;
    margin-bottom: 20px;
    border: 4px solid rgba(255, 255, 255, 0.15);
}

.team-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #ffffff;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.team-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    font-weight: 500;
}

.read-btn {
    padding: 10px 26px;
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.read-btn:hover {
    background: #fff;
    color: #132a3a;
}

/* RESPONSIVE */
/* ============================= */
/* Extra small devices (phones, portrait) */
/* iPhone SE, Galaxy Fold */
@media (max-width: 320px) {
    .team-section {
        padding: 40px 12px;
    }

    .team-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .team-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .team-card img {
        width: 120px;
        height: 120px;
    }

    .team-card h3 {
        font-size: 1.2rem;
    }

    .team-card p {
        font-size: 0.85rem;
    }

    .read-btn {
        padding: 8px 20px;
        font-size: 0.85rem;
    }
}

/* ============================= */
/* Small devices (phones) */
/* iPhone 5/SE, small Android */
@media (max-width: 480px) {
    .team-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .team-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .team-card img {
        width: 140px;
        height: 140px;
    }
}

/* ============================= */
/* Medium devices (phones) */
/* Samsung, Oppo, Realme */
@media (max-width: 576px) {
    .team-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .team-card img {
        width: 150px;
        height: 150px;
    }
}

/* ============================= */
/* Large phones */
/* iPhone XR, 12, 13, 14 */
@media (max-width: 768px) {
    .team-container {
        grid-template-columns: repeat(1, 1fr);
        gap: 40px;
    }

    .team-title {
        font-size: 2.3rem;
    }
}

/* ============================= */
/* Tablets (portrait + landscape) */
/* iPad, Samsung Tab */
@media (max-width: 992px) {
    .team-container {
        grid-template-columns: repeat(1, 1fr);
        gap: 45px;
    }

    .team-title {
        font-size: 2.6rem;
    }
}

/* ============================= */
/* Small laptops */
@media screen and (max-width: 1152px) {
    .team-container {
        gap: 40px;
    }
}

/* ============================= */
/* Large laptops */
@media screen and (max-width: 1440px) {
    .team-container {
        max-width: 1100px;
    }
}

/* SEO Content Sections */
.why-choose-expanded {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    text-align: left;
    transition: max-height 0.5s ease, opacity 0.4s ease, margin 0.4s ease;
    margin-top: 0;
}

.why-choose-expanded.is-open {
    max-height: 1200px;
    opacity: 1;
    margin-top: 28px;
    padding: 32px;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(6, 21, 51, 0.08);
    box-shadow: 0 8px 30px rgba(6, 21, 51, 0.06);
}

.why-choose-expanded p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: #4a5a73;
    line-height: 1.8;
    margin-bottom: 14px;
}

.why-choose-expanded p:last-child {
    margin-bottom: 0;
}

.why-choose-expanded a {
    color: #061533;
    font-weight: 600;
}

.why-choose-expanded strong {
    color: #061533;
}

.internal-links-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.internal-link-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(6, 21, 51, 0.06);
    border: 1px solid rgba(6, 21, 51, 0.12);
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #061533;
    text-decoration: none;
    transition: all 0.3s ease;
}

.internal-link-pill:hover {
    background: #061533;
    color: #fff;
    transform: translateY(-2px);
}

.tech-stack-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, #f8f9fc 0%, #fff 100%);
}

.tech-stack-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 50px;
}

.tech-stack-header h2 {
    font-family: 'Lora', serif;
    font-size: 2.5rem;
    color: #061533;
    margin-bottom: 16px;
}

.tech-stack-header p {
    font-family: 'Poppins', sans-serif;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.7;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
}

.tech-item {
    padding: 18px 12px;
    text-align: center;
    background: #fff;
    border: 1px solid rgba(6, 21, 51, 0.1);
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #061533;
    transition: all 0.3s ease;
}

.tech-item:hover {
    border-color: #061533;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(6, 21, 51, 0.1);
}

.case-studies-section {
    padding: 100px 20px;
    background: #061533;
    color: #fff;
}

.case-studies-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.case-studies-header h2 {
    font-family: 'Lora', serif;
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.case-studies-header p {
    font-family: 'Poppins', sans-serif;
    opacity: 0.85;
    line-height: 1.7;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto 40px;
}

.case-study-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.case-study-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-6px);
}

.case-study-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 16px;
}

.case-study-card h3 {
    font-family: 'Lora', serif;
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.case-study-card p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    opacity: 0.85;
    line-height: 1.7;
    margin-bottom: 16px;
}

.case-study-metric {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #7eb8ff;
}

.case-studies-cta {
    text-align: center;
}

.faq-section {
    padding: 100px 20px;
    background: #f8f9fc;
}

.faq-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.faq-header h2 {
    font-family: 'Lora', serif;
    font-size: 2.5rem;
    color: #061533;
    margin-bottom: 16px;
}

.faq-header p {
    font-family: 'Poppins', sans-serif;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.7;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border: 1px solid rgba(6, 21, 51, 0.1);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 22px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #061533;
    text-align: left;
}

.faq-question svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 22px;
}

.faq-answer p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: rgba(0, 0, 0, 0.75);
    line-height: 1.75;
}

.local-presence-section {
    padding: 80px 20px;
    background: #f8f9fc;
}

.local-presence-card {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px;
    background: linear-gradient(135deg, #061533 0%, #0a2555 100%);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(6, 21, 51, 0.2);
    position: relative;
    overflow: hidden;
}

.local-presence-card::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.local-presence-content {
    position: relative;
    z-index: 1;
}

.local-presence-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 20px;
}

.local-presence-badge svg {
    stroke: #7eb8ff;
}

.local-presence-content h2 {
    font-family: 'Lora', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 16px;
}

.local-presence-content > p {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.75;
    margin-bottom: 24px;
}

.local-presence-meta {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.local-presence-meta li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.local-presence-meta svg {
    flex-shrink: 0;
    stroke: #7eb8ff;
}

.local-presence-meta a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.2s ease;
}

.local-presence-meta a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.local-presence-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    z-index: 1;
}

.local-presence-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 28px;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
}

.local-presence-btn.primary {
    background: #ffffff;
    color: #061533;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.local-presence-btn.primary:hover {
    background: #f0f4fa;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

.local-presence-btn.secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.35);
}

.local-presence-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 900px) {
    .local-presence-card {
        grid-template-columns: 1fr;
        padding: 36px 28px;
        gap: 28px;
    }

    .local-presence-content h2 {
        font-size: 1.6rem;
    }
}

.service-breadcrumb {
    max-width: 960px;
    margin: 0 auto;
    padding: 16px 20px 0;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.service-breadcrumb li {
    display: inline-flex;
    align-items: center;
}

.service-breadcrumb li:not(:last-child)::after {
    content: '/';
    margin: 0 10px;
    opacity: 0.6;
    color: rgba(255, 255, 255, 0.6);
}

.service-breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.service-breadcrumb a:hover {
    text-decoration: underline;
}

.service-breadcrumb li[aria-current="page"] {
    color: rgba(255, 255, 255, 0.95);
}

.service-page-content {
    padding: 80px 20px 100px;
    background: #ffffff;
    position: relative;
    z-index: 2;
}

.service-page-intro {
    max-width: 820px;
    margin: 0 auto 56px;
    text-align: center;
}

.service-page-intro h2 {
    font-family: 'Lora', serif;
    font-size: 2.25rem;
    color: #061533;
    margin-bottom: 24px;
    line-height: 1.3;
}

.service-page-intro p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    color: #3d4f6f;
    line-height: 1.85;
    margin-bottom: 18px;
}

.service-page-intro a {
    color: #0a2555;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}

.service-page-intro a:hover {
    color: #061533;
}

.service-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 960px;
    margin: 0 auto 56px;
}

.service-benefit-card {
    padding: 32px 28px;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(6, 21, 51, 0.08);
    box-shadow: 0 4px 24px rgba(6, 21, 51, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(6, 21, 51, 0.12);
}

.service-benefit-card h3 {
    font-family: 'Lora', serif;
    font-size: 1.25rem;
    color: #061533;
    margin-bottom: 12px;
}

.service-benefit-card p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: #4a5a73;
    line-height: 1.7;
    margin: 0;
}

.related-services {
    max-width: 960px;
    margin: 0 auto;
    padding-top: 48px;
    border-top: 1px solid rgba(6, 21, 51, 0.1);
    text-align: center;
}

.related-services h3 {
    font-family: 'Lora', serif;
    font-size: 1.5rem;
    color: #061533;
    margin-bottom: 24px;
}

.related-services-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.service-page-content .internal-link-pill {
    background: #f0f4fa;
    border-color: rgba(6, 21, 51, 0.12);
    color: #061533;
}

.service-page-content .internal-link-pill:hover {
    background: #061533;
    color: #fff;
    border-color: #061533;
}

@media (max-width: 768px) {
    .tech-stack-header h2,
    .case-studies-header h2,
    .faq-header h2 {
        font-size: 2rem;
    }

    .internal-links-bar {
        flex-direction: column;
    }

    .service-benefits-grid {
        grid-template-columns: 1fr;
    }

    .service-page-intro h2 {
        font-size: 1.75rem;
    }

    .services-hero-compact {
        padding: 90px 20px 60px;
    }
}