/* General Styles */
:root {
    --primary-color: #6D2D9D;
    --secondary-color: #6c757d;
    --dark-color: #212529;
    --light-color: #f8f9fa;
    --white: #ffffff;
    --text-gray: #6c757d;
    --gradient-1: linear-gradient(135deg, #6D2D9D 0%, #9B59B6 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.05);
    --shadow-md: 0 5px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark-color);
    overflow-x: hidden;
}

/* Preloader Styles */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #6D2D9D 0%, #9B59B6 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

#preloader.fade-out {
    opacity: 0;
    pointer-events: none;
}

.preloader-content {
    text-align: center;
    color: white;
}

.preloader-content p {
    margin-top: 1rem;
    font-size: 1.1rem;
    font-weight: 500;
}

body.loaded #preloader {
    opacity: 0;
    pointer-events: none;
}

html {
    scroll-behavior: smooth;
}

/* Navigation */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
}

.nav-link {
    color: var(--dark-color) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    margin: 0 0.2rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.btn-demo {
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-demo:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    background: var(--gradient-1);
    overflow: hidden;
    padding-top: 80px;
    padding-bottom: 40px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-buttons .btn {
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Stats Counter */
.stats-counter-section {
    position: relative;
}

.visitor-counter-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    padding: 2.5rem 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.visitor-counter-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.visitor-counter-card .counter-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(109, 45, 157, 0.12);
    color: var(--primary-color);
    font-size: 2rem;
}

.visitor-counter-card .counter-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.visitor-counter-card .counter-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
}

.visitor-counter-card .counter-note {
    font-size: 0.85rem;
}

.services-hero {
    background: radial-gradient(circle at 20% 20%, rgba(109, 45, 157, 0.45), transparent 55%),
                radial-gradient(circle at 85% 25%, rgba(46, 204, 113, 0.32), transparent 60%),
                linear-gradient(135deg, #0f1c4d 0%, #130b3c 45%, #1f0c51 100%);
}

.services-hero .hero-overlay {
    background: linear-gradient(160deg, rgba(7, 11, 32, 0.8) 0%, rgba(23, 12, 55, 0.85) 60%, rgba(10, 13, 40, 0.92) 100%);
}

.services-hero-animation {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.service-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.25);
    transform: translate(-50%, -50%);
    animation: orbitSpin 18s linear infinite;
    mix-blend-mode: screen;
}

.orbit-one {
    width: clamp(340px, 38vw, 420px);
    height: clamp(340px, 38vw, 420px);
    animation-duration: 22s;
}

.orbit-two {
    width: clamp(420px, 45vw, 520px);
    height: clamp(420px, 45vw, 520px);
    animation-duration: 28s;
    border-style: solid;
    border-color: rgba(46, 204, 113, 0.2);
}

.orbit-three {
    width: clamp(500px, 52vw, 600px);
    height: clamp(500px, 52vw, 600px);
    animation-duration: 34s;
    border-style: solid;
    border-color: rgba(87, 140, 255, 0.18);
}

.service-glints {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
    animation: glintWander 12s ease-in-out infinite;
}

.service-glints .glint {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.9), rgba(109, 45, 157, 0.4));
    filter: blur(1px);
    animation: glintPulse 6s ease-in-out infinite;
}

.service-glints .glint:nth-child(1) {
    top: 18%;
    left: 34%;
    animation-delay: 0s;
}

.service-glints .glint:nth-child(2) {
    top: 62%;
    right: 18%;
    animation-delay: 1.6s;
}

.service-glints .glint:nth-child(3) {
    bottom: 22%;
    left: 28%;
    animation-delay: 3.2s;
}

.service-glints .glint:nth-child(4) {
    top: 40%;
    right: 42%;
    animation-delay: 4.5s;
}

.service-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(220px, 26vw, 280px);
    height: clamp(220px, 26vw, 280px);
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.85), rgba(109, 45, 157, 0.65) 45%, rgba(31, 18, 88, 0.75) 75%, rgba(11, 6, 36, 0.9) 100%);
    box-shadow: 0 35px 70px rgba(6, 5, 25, 0.6);
    display: grid;
    place-items: center;
    animation: corePulse 8s ease-in-out infinite;
}

.service-core .core-label {
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: clamp(0.75rem, 1vw + 0.6rem, 1rem);
    text-align: center;
    z-index: 2;
}

.service-core .core-glow {
    position: absolute;
    inset: -25%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(109, 45, 157, 0.45), rgba(12, 7, 34, 0));
    filter: blur(22px);
    animation: glowRotate 18s linear infinite;
}

.service-node {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    padding: 0.85rem 1.1rem;
    border-radius: 16px;
    color: #ffffff;
    font-size: 0.85rem;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 40px rgba(7, 5, 24, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    animation: nodeFloat 6s ease-in-out infinite;
}

.service-node i {
    font-size: 1.35rem;
}

.service-node span {
    font-weight: 600;
    white-space: nowrap;
}

.service-node::after {
    content: '';
    position: absolute;
    inset: -18px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    opacity: 0.35;
}

.node-ngo {
    top: 16%;
    left: 18%;
    background: linear-gradient(135deg, rgba(109, 45, 157, 0.78), rgba(155, 89, 182, 0.7));
    animation-delay: 0s;
}

.node-hr {
    top: 20%;
    right: 16%;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.78), rgba(41, 128, 185, 0.72));
    animation-delay: 1.2s;
}

.node-builder {
    bottom: 18%;
    left: 22%;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.78), rgba(255, 99, 71, 0.72));
    animation-delay: 2.4s;
}

.node-showroom {
    bottom: 16%;
    right: 14%;
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.78), rgba(39, 174, 96, 0.72));
    animation-delay: 3.6s;
}

.node-microfinance {
    top: 55%;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.78), rgba(241, 196, 15, 0.7));
    animation-delay: 4.8s;
}

.service-connector {
    position: absolute;
    width: 2px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.35), rgba(109, 45, 157, 0));
    transform-origin: top center;
    z-index: 0;
    animation: connectorPulse 4s ease-in-out infinite;
}

.connector-ngo {
    top: 28%;
    left: 34%;
    height: clamp(140px, 16vw, 180px);
    transform: rotate(-42deg);
}

.connector-hr {
    top: 28%;
    right: 28%;
    height: clamp(150px, 17vw, 190px);
    transform: rotate(38deg);
}

.connector-builder {
    bottom: 20%;
    left: 32%;
    height: clamp(150px, 17vw, 190px);
    transform: rotate(42deg);
}

.connector-showroom {
    bottom: 18%;
    right: 28%;
    height: clamp(160px, 18vw, 200px);
    transform: rotate(-36deg);
}

.connector-microfinance {
    top: 52%;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
    width: 2px;
    height: clamp(120px, 14vw, 160px);
    background: linear-gradient(180deg, rgba(255, 215, 0, 0.55), rgba(109, 45, 157, 0));
}

@keyframes corePulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
    }
}

@keyframes glowRotate {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.05);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

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

@keyframes orbitSpin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes glintPulse {
    0%, 100% {
        transform: scale(0.8);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

@keyframes glintWander {
    0%, 100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(10px, -12px, 0);
    }
}

@keyframes connectorPulse {
    0%, 100% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.9;
    }
}

@media (max-width: 992px) {
    .services-hero-animation {
        display: none;
    }
}

.hero-shapes .shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

/* About Hero Modern */
.about-hero-modern {
    position: relative;
    min-height: 70vh;
    padding: 130px 0 110px;
    overflow: hidden;
}

.about-hero-modern .hero-overlay {
    background: radial-gradient(circle at 10% 10%, rgba(109, 45, 157, 0.35), transparent 55%),
                radial-gradient(circle at 85% 20%, rgba(52, 148, 230, 0.3), transparent 60%),
                linear-gradient(135deg, rgba(17, 13, 35, 0.88) 0%, rgba(35, 21, 67, 0.78) 60%, rgba(24, 21, 59, 0.9) 100%);
}

.about-hero-modern::before,
.about-hero-modern::after {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.45;
    z-index: 1;
}

.about-hero-modern::before {
    top: -60px;
    left: -50px;
    background: rgba(109, 45, 157, 0.8);
}

.about-hero-modern::after {
    bottom: -70px;
    right: -40px;
    background: rgba(67, 206, 162, 0.7);
}

.about-hero-modern .container {
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 1.3rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero-action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}


.hero-insight-panel {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 22px;
    padding: 1.6rem;
    backdrop-filter: blur(14px);
    box-shadow: 0 25px 45px rgba(10, 16, 60, 0.45);
    color: rgba(255, 255, 255, 0.9);
}

.hero-insight-header {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1.2rem;
}

.hero-insight-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.24);
    display: grid;
    place-items: center;
    font-size: 1.4rem;
}

.hero-insight-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.6rem;
}

.hero-insight-list li {
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}

.hero-insight-list i {
    color: #43CEA2;
    margin-top: 0.25rem;
}

.hero-trust-note {
    margin-top: 1.2rem;
    padding: 0.75rem 1rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.85);
}

/* Overview Section */
.about-overview-section {
    background: #ffffff;
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
}

.about-summary {
    display: grid;
    gap: 1.3rem;
}

.summary-points {
    display: grid;
    gap: 0.6rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.summary-points li {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
    color: #555;
}

.summary-points li i {
    color: #6D2D9D;
    margin-top: 0.25rem;
}

.info-grid {
    display: grid;
    gap: 1rem;
}

@media (min-width: 992px) {
    .info-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.overview-card {
    height: 100%;
    border-radius: 18px;
    padding: 1.6rem 1.7rem;
    background: linear-gradient(135deg, #ffffff 0%, #f3f0ff 45%, #f9fbff 100%);
    border: 1px solid rgba(109, 45, 157, 0.12);
    box-shadow: 0 18px 30px rgba(109, 45, 157, 0.08);
    display: grid;
    gap: 0.8rem;
}

.overview-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
}

.overview-card p {
    color: #555;
    margin-bottom: 0.4rem;
}

.overview-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
    color: #6c6c6c;
    display: grid;
    gap: 0.3rem;
    font-size: 0.92rem;
}

.overview-card ul li::before {
    content: '\2022';
    color: #6D2D9D;
    font-weight: 700;
    display: inline-block;
    width: 0.9rem;
}

.overview-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(109, 45, 157, 0.18);
    display: grid;
    place-items: center;
    font-size: 1.4rem;
    color: #6D2D9D;
}

/* Story Section */
.about-story-section .story-points {
    display: grid;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.story-point {
    display: flex;
    gap: 0.75rem;
    font-size: 0.98rem;
    background: #f8f9ff;
    border-radius: 12px;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(109, 45, 157, 0.1);
}

.story-point i {
    color: #6D2D9D;
    margin-top: 0.2rem;
}

.story-timeline {
    background: linear-gradient(135deg, rgba(109, 45, 157, 0.12), rgba(52, 148, 230, 0.08));
    border-radius: 18px;
    padding: 1.4rem 1.6rem;
    border: 1px solid rgba(109, 45, 157, 0.18);
}

.story-timeline h5 {
    font-weight: 700;
    margin-bottom: 1.1rem;
}

.timeline-item {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.1rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-year {
    position: absolute;
    left: 0;
    top: 0;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    background: #6D2D9D;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* Metrics Section */
.metric-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.6rem;
    text-align: center;
    border: 1px solid rgba(109, 45, 157, 0.12);
    box-shadow: 0 10px 25px rgba(109, 45, 157, 0.08);
}

.metric-figure {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #6D2D9D;
}

.metric-label {
    font-size: 0.9rem;
    color: #555;
    margin-top: 0.4rem;
}

/* Expertise Section */
.expertise-card {
    height: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #f4f0f9 100%);
    border-radius: 18px;
    padding: 1.5rem 1.6rem;
    border: 1px solid rgba(109, 45, 157, 0.12);
    box-shadow: 0 18px 35px rgba(109, 45, 157, 0.08);
    display: grid;
    gap: 0.75rem;
}

.expertise-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(109, 45, 157, 0.15);
    display: grid;
    place-items: center;
    font-size: 1.4rem;
    color: #6D2D9D;
}

.expertise-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.35rem;
    font-size: 0.9rem;
    color: #555;
}

/* Methodology Section */
.methodology-steps {
    display: grid;
    gap: 1rem;
}

.method-step {
    display: flex;
    gap: 1rem;
    background: #fff;
    border-radius: 16px;
    padding: 1.1rem 1.3rem;
    border: 1px solid rgba(109, 45, 157, 0.1);
    box-shadow: 0 12px 28px rgba(109, 45, 157, 0.08);
}

.step-number {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(135deg, #6D2D9D 0%, #9B59B6 100%);
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Leadership Section */
/* Culture Section */
.culture-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.culture-item {
    display: flex;
    gap: 0.9rem;
    background: #fff;
    border-radius: 16px;
    padding: 1.1rem 1.2rem;
    border: 1px solid rgba(109, 45, 157, 0.12);
    box-shadow: 0 12px 22px rgba(109, 45, 157, 0.08);
}

.culture-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(109, 45, 157, 0.12);
    display: grid;
    place-items: center;
    color: #6D2D9D;
    font-size: 1.2rem;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: white;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: white;
    bottom: 20%;
    right: 10%;
    animation-delay: 5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: white;
    top: 60%;
    left: 80%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-30px) rotate(90deg);
    }
    50% {
        transform: translateY(0) rotate(180deg);
    }
    75% {
        transform: translateY(30px) rotate(270deg);
    }
}

/* Section Styles */
.section-header {
    margin-bottom: 2rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 0.95rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* Feature Cards */
.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    background: var(--gradient-3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--white);
}

.feature-card:hover .feature-icon {
    transform: rotateY(360deg);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.feature-text {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Service Cards */
.service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(10deg);
}

.service-title {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-description {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: var(--dark-color);
    gap: 10px;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Client Cards */
.client-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}

.client-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.client-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.client-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.client-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0;
}

/* Contact Section */
.contact-info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.contact-info-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.contact-info-icon i {
    font-size: 2rem;
    color: var(--white);
}

.contact-info-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.contact-info-text {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 0;
}

.contact-form-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.contact-form-card .form-label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.contact-form-card .form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.contact-form-card .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.1);
}

/* Footer */
.footer {
    margin-top: 5rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
}

.text-light-gray {
    color: rgba(255, 255, 255, 0.7);
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.contact-info i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--dark-color);
    transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .hero-buttons .btn {
        padding: 0.75rem 2rem;
        font-size: 0.9rem;
    }
    
    .contact-form-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .feature-card,
    .service-card,
    .client-card {
        padding: 1.5rem;
    }
    
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 991px) {
    .about-hero-modern {
        padding: 110px 0 85px;
        text-align: center;
    }

    .about-hero-modern .hero-title,
    .about-hero-modern .hero-subtitle,
    .hero-highlight-grid {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-insight-panel {
        margin-top: 2rem;
    }

    .about-story-section .story-timeline,
    .methodology-steps,
    .culture-grid {
        max-width: 540px;
        margin-left: auto;
        margin-right: auto;
    }

    .culture-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

@media (max-width: 575px) {
    .about-hero-modern {
        padding: 100px 0 70px;
    }

    .hero-highlight-grid {
        flex-direction: column;
        gap: 0.9rem;
    }

    .hero-insight-panel {
        padding: 1.3rem;
    }

    .story-point {
        flex-direction: column;
        align-items: flex-start;
    }

    .culture-grid {
        grid-template-columns: 1fr;
    }
}

/* Padding Utilities */
.py-5 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

/* ========================================
   ADVANCED UI ENHANCEMENTS
   ======================================== */

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.preloader-spinner {
    text-align: center;
}

.preloader-spinner p {
    margin-top: 1rem;
    font-weight: 600;
    color: var(--primary-color);
}

body.loaded #preloader {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-out;
}

/* Particles JS Container */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

/* Hero Badge */
.hero-badge {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-weight: 500;
    font-size: 0.9rem;
}

/* Text Gradient */
.text-gradient {
    background: linear-gradient(135deg, #6D2D9D 0%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #6D2D9D; /* Fallback for browsers that don't support background-clip */
}

/* Button Hover Effects */
.btn-hover-effect {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-hover-effect::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.btn-hover-effect:hover::before {
    width: 300px;
    height: 300px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator a {
    color: var(--white);
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Statistics Section */
.stats-section {
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0056b3 100%);
    opacity: 0.95;
}

.stats-section .container {
    position: relative;
    z-index: 1;
}

.stat-box {
    padding: 2rem;
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-10px);
}

.stat-icon {
    font-size: 3rem;
    opacity: 0.8;
}

.stat-counter {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 1rem 0;
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Testimonials Section */
.testimonials-slider {
    padding: 2rem 0;
    position: relative;
}

.testimonial-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    margin: 1rem;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.testimonial-rating {
    margin-bottom: 1.5rem;
}

.testimonial-rating i {
    font-size: 1.2rem;
    margin-right: 0.25rem;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-gray);
    font-style: italic;
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-avatar i {
    font-size: 1.5rem;
    color: var(--white);
}

.author-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

.author-title {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 0;
}

/* Swiper Custom Styling */
.swiper-button-prev,
.swiper-button-next {
    color: var(--primary-color);
    background: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 1.5rem;
}

.swiper-pagination-bullet {
    background: var(--primary-color);
    width: 12px;
    height: 12px;
}

.swiper-pagination-bullet-active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 6px;
}

/* ========================================
   CAREER PAGE STYLES
   ======================================== */

/* Career Hero */
.career-hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-1);
    overflow: hidden;
}

.career-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.career-hero-subtitle {
    font-size: 1.35rem;
    font-weight: 300;
}

.career-stats {
    margin: 2rem 0;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    min-width: 150px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Why Join Section */
.why-join-section {
    background: var(--white);
}

.benefit-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gradient-2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.benefit-icon i {
    font-size: 2rem;
    color: var(--white);
}

.benefit-card:hover .benefit-icon {
    transform: rotate(360deg) scale(1.1);
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.benefit-text {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Job Cards */
.job-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border-left: 4px solid transparent;
}

.job-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-left-color: var(--primary-color);
}

.job-card-header {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.job-department-badge {
    padding: 0.5rem 1rem;
    background: rgba(13, 110, 253, 0.1);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.job-type-badge {
    padding: 0.5rem 1rem;
    background: rgba(25, 135, 84, 0.1);
    color: #198754;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.job-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.job-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.job-meta-item {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.job-meta-item i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.job-description {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.job-requirements {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.requirements-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.requirements-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.requirements-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-gray);
}

.requirements-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.job-card-footer {
    display: flex;
    gap: 1rem;
    margin-top: auto;
    flex-wrap: wrap;
}

.job-details-btn {
    flex: 1;
    min-width: 120px;
}

.job-card-footer .btn-primary {
    flex: 1;
    min-width: 120px;
}

/* Career Contact Section */
.career-contact-section {
    background: var(--light-color);
}

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

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.contact-info-item:hover {
    box-shadow: var(--shadow-md);
    border-left-color: var(--primary-color);
    transform: translateX(5px);
}

.contact-info-item .contact-info-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(102, 126, 234, 0.2);
}

.contact-info-item .contact-info-icon i {
    font-size: 1.25rem;
    color: var(--white);
}

.contact-info-content {
    flex: 1;
    text-align: left;
}

.contact-info-item h6 {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--dark-color);
    font-size: 0.95rem;
    text-align: left;
}

.contact-info-item p {
    color: var(--dark-color);
    font-weight: 500;
    font-size: 1rem;
    margin-bottom: 0;
    line-height: 1.5;
    text-align: left;
}

.contact-info-item p a {
    color: var(--dark-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-item p a:hover {
    color: var(--primary-color);
}

.career-image-container img {
    border-radius: 20px;
}

/* Application Form */
.apply-section {
    padding-top: 120px;
    min-height: 100vh;
    background: var(--light-color);
}

.apply-header h1 {
    color: var(--dark-color);
}

.application-form-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.form-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--light-color);
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.form-section-title i {
    color: var(--primary-color);
}

.application-form-card .form-label {
    font-weight: 500;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.application-form-card .form-control,
.application-form-card .form-select {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.application-form-card .form-control:focus,
.application-form-card .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.1);
}

/* Enhanced Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Responsive Enhancements */
@media (max-width: 992px) {
    .career-hero-title {
        font-size: 2.5rem;
    }
    
    .stat-counter {
        font-size: 2.5rem;
    }
    
    .testimonial-card {
        min-height: auto;
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .career-hero-title {
        font-size: 2rem;
    }
    
    .career-stats {
        flex-direction: column;
    }
    
    .stat-item {
        width: 100%;
    }
    
    .application-form-card {
        padding: 2rem 1.5rem;
    }
    
    .swiper-button-prev,
    .swiper-button-next {
        width: 40px;
        height: 40px;
    }
    
    .swiper-button-prev:after,
    .swiper-button-next:after {
        font-size: 1.2rem;
    }
}

/* ========================================
   ADVANCED UI/UX ENHANCEMENTS V2.0
   ======================================== */

/* Typing Animation */
.typing-text {
    display: inline-block;
    min-height: 1.2em;
}

.typing-cursor {
    display: inline-block;
    margin-left: 5px;
    animation: blink 1s infinite;
    color: var(--white);
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* 3D Flip Cards */
.services-section .row {
    display: flex;
    flex-wrap: wrap;
    row-gap: 3rem;
}

.services-section .row > [class*='col-'] {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
    isolation: isolate;
}

.flip-card {
    background-color: transparent;
    min-height: 350px;
    height: 100%;
    flex: 1;
    perspective: 1000px;
    position: relative;
    z-index: 1;
    transition: z-index 0s 0.4s;
    margin-bottom: 1rem;
}

.flip-card:hover {
    z-index: 100;
    transition: z-index 0s 0s;
}

.services-section .row > [class*='col-']:hover {
    z-index: 100;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    min-height: 350px;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    min-height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 2.5rem 2rem;
    will-change: transform;
}

.flip-card-front {
    background: var(--white);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.flip-card:hover .flip-card-front {
    border-color: var(--primary-color);
}

.flip-card-back {
    background: var(--gradient-1);
    color: white;
    transform: rotateY(180deg);
    padding: 2rem 1.5rem;
    overflow-y: auto;
}

.flip-card-back h4 {
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.service-description-back {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.feature-list-back {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0;
    text-align: left;
}

.feature-list-back li {
    padding: 0.4rem 0;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-list-back li i {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8rem;
}

.service-icon-3d {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--gradient-2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem auto 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.service-icon-3d i {
    font-size: 3rem;
    color: var(--white);
}

.flip-card:hover .service-icon-3d {
    transform: scale(1.1) rotate(10deg);
}

.flip-hint {
    font-size: 0.85rem;
    color: var(--text-gray);
    font-style: italic;
    margin-top: 1rem;
}

.service-description-back {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-list-back {
    list-style: none;
    padding: 0;
    text-align: left;
    width: 100%;
}

.feature-list-back li {
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

.feature-list-back i {
    margin-right: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Skills Section */
.skills-section {
    background: var(--white);
    position: relative;
    z-index: 1;
}

.parallax-section {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.skill-item {
    margin-bottom: 2rem;
    padding: 0 0.5rem;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.skill-name {
    font-weight: 600;
    color: var(--dark-color);
}

.skill-percentage {
    font-weight: 600;
    color: var(--primary-color);
}

.skill-bar {
    height: 12px;
    background: #e9ecef;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.skill-progress {
    height: 100%;
    background: var(--gradient-1);
    border-radius: 10px;
    width: 0;
    transition: width 2s ease-in-out;
    position: relative;
}

.skill-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Circle Progress */
.circle-progress {
    position: relative;
    display: inline-block;
    z-index: 1;
    margin-bottom: 1rem;
}

.circle-progress svg {
    transform: rotate(-90deg);
    max-width: 100%;
    height: auto;
}

.circle-bg {
    fill: none;
    stroke: #e9ecef;
    stroke-width: 10;
}

.circle-progress-bar {
    fill: none;
    stroke: url(#gradient);
    stroke-width: 10;
    stroke-linecap: round;
    stroke-dasharray: 408;
    stroke-dashoffset: 408;
    transition: stroke-dashoffset 2s ease-in-out;
}

.circle-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    padding: 0 10px;
}

.circle-percentage {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.circle-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
    z-index: 2;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background: var(--gradient-1);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    border-radius: 2px;
}

.timeline-item {
    padding: 20px 40px;
    position: relative;
    background: transparent;
    width: 50%;
    margin-bottom: 2rem;
}

.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 40px;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 40px;
}

.timeline-dot {
    position: absolute;
    width: 30px;
    height: 30px;
    background: var(--white);
    border: 4px solid var(--primary-color);
    border-radius: 50%;
    top: 30px;
    z-index: 1;
    box-shadow: 0 0 0 8px rgba(13, 110, 253, 0.1);
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -15px;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -15px;
}

.timeline-date {
    position: absolute;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color);
    top: 20px;
}

.timeline-item:nth-child(odd) .timeline-date {
    right: -180px;
}

.timeline-item:nth-child(even) .timeline-date {
    left: -180px;
}

.timeline-content {
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.timeline-content h4 {
    margin-bottom: 0.75rem;
    color: var(--dark-color);
    font-weight: 700;
}

.timeline-content p {
    color: var(--text-gray);
    margin-bottom: 0;
    line-height: 1.7;
}

/* Fix for section stacking */
section {
    position: relative;
    z-index: auto;
}

.services-section {
    position: relative;
    z-index: 3;
    overflow: visible;
}

.services-section .container {
    overflow: visible;
}

.clients-section {
    position: relative;
    z-index: 4;
}

.testimonials-section {
    position: relative;
    z-index: 5;
}

.contact-section {
    position: relative;
    z-index: 6;
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 10000;
    pointer-events: none;
}

.toast-notification {
    background: var(--white);
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 300px;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s ease;
    pointer-events: all;
    border-left: 4px solid var(--primary-color);
}

.toast-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.toast-notification.success {
    border-left-color: #198754;
}

.toast-notification.error {
    border-left-color: #dc3545;
}

.toast-notification.warning {
    border-left-color: #ffc107;
}

.toast-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.toast-notification.success .toast-icon {
    background: rgba(25, 135, 84, 0.1);
    color: #198754;
}

.toast-notification.error .toast-icon {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.toast-notification.warning .toast-icon {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}

.toast-content h6 {
    margin: 0 0 0.25rem 0;
    font-weight: 600;
    color: var(--dark-color);
}

.toast-content p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.toast-close {
    background: none;
    border: none;
    font-size: 1.25rem;
    color: var(--text-gray);
    cursor: pointer;
    padding: 0;
    margin-left: auto;
    transition: color 0.3s ease;
}

.toast-close:hover {
    color: var(--dark-color);
}

/* Tooltips */
.tooltip-wrapper {
    position: relative;
    display: inline-block;
}

.tooltip-content {
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.tooltip-content::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: var(--dark-color);
}

.tooltip-wrapper:hover .tooltip-content {
    opacity: 1;
    visibility: visible;
    bottom: 135%;
}

/* Newsletter Modal */
.newsletter-modal {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.2);
    max-width: 400px;
    transform: translateY(500px);
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 9999;
}

.newsletter-modal.show {
    transform: translateY(0);
    opacity: 1;
}

.newsletter-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-gray);
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.newsletter-close:hover {
    color: var(--dark-color);
    transform: rotate(90deg);
}

.newsletter-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.newsletter-icon i {
    font-size: 2rem;
    color: var(--white);
}

.newsletter-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.newsletter-description {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.newsletter-button {
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-button:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

/* Floating Action Button */
.fab-container {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 998;
}

.fab-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-1);
    color: var(--white);
    border: none;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.fab-button:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

/* AI Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 380px;
    height: 550px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    display: none;
    flex-direction: column;
    z-index: 99999;
    overflow: hidden;
    transition: all 0.3s ease;
}

.chat-widget.active {
    display: flex;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.chat-header {
    background: linear-gradient(135deg, #6D2D9D 0%, #4A90E2 100%);
    color: var(--white);
    padding: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 20px 20px 0 0;
}

.chat-header h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.chat-header .chat-status {
    font-size: 0.75rem;
    opacity: 0.9;
    margin-top: 0.25rem;
}

.chat-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.chat-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chat-message {
    max-width: 80%;
    padding: 0.75rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    line-height: 1.5;
    animation: fadeIn 0.3s ease;
}

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

.chat-message.user {
    align-self: flex-end;
    background: linear-gradient(135deg, #6D2D9D 0%, #4A90E2 100%);
    color: var(--white);
    border-bottom-right-radius: 5px;
}

.chat-message.bot {
    align-self: flex-start;
    background: var(--white);
    color: var(--dark-color);
    border: 1px solid #e9ecef;
    border-bottom-left-radius: 5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.chat-message.bot p {
    margin: 0;
    line-height: 1.6;
}

.chat-message.bot p + p {
    margin-top: 0.5rem;
}

.chat-message.bot strong {
    font-weight: 600;
    color: #6D2D9D;
}

.chat-message.bot em {
    font-style: italic;
    color: #666;
}

.chat-message.typing {
    background: var(--white);
    padding: 1rem;
}

.typing-indicator {
    display: flex;
    gap: 0.3rem;
    align-items: center;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #6D2D9D;
    animation: typing 1.4s infinite;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.7;
    }
    30% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

.chat-input-container {
    padding: 1rem;
    background: var(--white);
    border-top: 1px solid #e9ecef;
    display: flex;
    gap: 0.5rem;
    align-items: flex-end;
}

.chat-input {
    flex: 1;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
    resize: none;
    max-height: 100px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.chat-input:focus {
    outline: none;
    border-color: #6D2D9D;
    box-shadow: 0 0 0 0.2rem rgba(109, 45, 157, 0.1);
}

.chat-send-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6D2D9D 0%, #4A90E2 100%);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.chat-send-btn:hover:not(:disabled) {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(109, 45, 157, 0.3);
}

.chat-send-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Contact Form Modal */
.chat-contact-form {
    display: none;
    padding: 0.65rem;
    background: var(--white);
    position: relative;
    border-top: 1px solid #e9ecef;
}

.chat-contact-form.active {
    display: block;
    animation: fadeIn 0.3s ease;
    transform: translateY(-100px);
}

.chat-contact-close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: transparent;
    border: none;
    color: #666;
    font-size: 0.95rem;
    cursor: pointer;
    padding: 0.1rem 0.25rem;
    line-height: 1;
    transition: all 0.2s ease;
    z-index: 10;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.chat-contact-close:hover {
    color: #333;
    background: #f0f0f0;
}

.chat-contact-close:focus {
    outline: 2px solid #6D2D9D;
    outline-offset: 2px;
}

.chat-contact-form h5 {
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    font-size: 0.9rem;
    padding-right: 1.5rem;
}

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

.chat-contact-form label {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--dark-color);
}

.chat-contact-form input,
.chat-contact-form textarea {
    width: 100%;
    padding: 0.5rem;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 0.8rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.chat-contact-form input:focus,
.chat-contact-form textarea:focus {
    outline: none;
    border-color: #6D2D9D;
    box-shadow: 0 0 0 0.15rem rgba(109, 45, 157, 0.1);
}

.chat-contact-form textarea {
    resize: vertical;
    min-height: 70px;
}

.chat-contact-form .btn-submit {
    width: 100%;
    padding: 0.5rem;
    background: linear-gradient(135deg, #6D2D9D 0%, #4A90E2 100%);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chat-contact-form .btn-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(109, 45, 157, 0.3);
}

.chat-contact-form .btn-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.chat-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.chat-suggestion-btn {
    padding: 0.5rem 1rem;
    background: var(--white);
    border: 1px solid #e9ecef;
    border-radius: 20px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--dark-color);
}

.chat-suggestion-btn:hover {
    background: #6D2D9D;
    color: var(--white);
    border-color: #6D2D9D;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .chat-widget {
        width: calc(100vw - 20px);
        height: calc(100vh - 120px);
        bottom: 80px;
        right: 10px;
        left: 10px;
        max-width: 380px;
        max-height: 600px;
    }
    
    .fab-container {
        bottom: 80px;
        right: 15px;
    }
}

/* Reveal on Scroll */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Advanced Responsive */
@media (max-width: 992px) {
    .flip-card {
        min-height: 320px;
    }
    
    .flip-card-inner {
        min-height: 320px;
    }
    
    .skills-section .row {
        row-gap: 2rem;
    }
    
    .skills-section .col-lg-6:first-child {
        margin-bottom: 2rem;
    }
    
    .timeline::after {
        left: 30px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 0;
    }
    
    .timeline-item:nth-child(even) {
        left: 0;
        padding-left: 70px;
    }
    
    .timeline-dot {
        left: 15px !important;
        right: auto !important;
    }
    
    .timeline-date {
        left: 70px !important;
        right: auto !important;
        top: -30px;
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .flip-card {
        min-height: 300px;
    }
    
    .flip-card-inner {
        min-height: 300px;
    }
    
    .service-icon-3d {
        width: 80px;
        height: 80px;
    }
    
    .service-icon-3d i {
        font-size: 2.5rem;
    }
    
    .skills-section {
        padding: 3rem 0 !important;
    }
    
    .skills-section .section-title {
        font-size: 1.75rem;
    }
    
    .skills-section .section-subtitle {
        font-size: 0.95rem;
    }
    
    .skills-section .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .circle-progress svg {
        width: 120px;
        height: 120px;
    }
    
    .circle-percentage {
        font-size: 1.5rem;
    }
    
    .circle-label {
        font-size: 0.75rem;
    }
    
    .skill-item {
        margin-bottom: 1.5rem;
    }
    
    .skill-name,
    .skill-percentage {
        font-size: 0.95rem;
    }
    
    .skill-bar {
        height: 10px;
    }
    
    .newsletter-modal {
        left: 20px;
        right: 20px;
        max-width: none;
    }
    
    .toast-notification {
        min-width: 280px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .skills-section {
        padding: 2.5rem 0 !important;
    }
    
    .skills-section .section-title {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .skills-section .section-subtitle {
        font-size: 0.9rem;
    }
    
    .flip-card {
        min-height: 280px;
    }
    
    .flip-card-inner {
        min-height: 280px;
    }
    
    .circle-progress svg {
        width: 100px;
        height: 100px;
    }
    
    .circle-progress .circle-bg,
    .circle-progress .circle-progress-bar {
        r: 45;
        cx: 50;
        cy: 50;
        stroke-width: 8;
    }
    
    .circle-percentage {
        font-size: 1.2rem;
    }
    
    .circle-label {
        font-size: 0.7rem;
    }
    
    .skill-item {
        margin-bottom: 1.25rem;
    }
    
    .skill-name,
    .skill-percentage {
        font-size: 0.9rem;
    }
    
    .skill-bar {
        height: 8px;
    }
    
    .skills-section .col-lg-6 {
        margin-bottom: 2rem;
    }
    
    .skills-section .row .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .circle-progress {
        margin-bottom: 1.5rem;
    }
}

/* Extra small devices adjustments */
@media (max-width: 400px) {
    .circle-progress svg {
        width: 90px;
        height: 90px;
    }
    
    .circle-progress .circle-bg,
    .circle-progress .circle-progress-bar {
        r: 40;
        cx: 45;
        cy: 45;
        stroke-width: 7;
    }
    
    .circle-percentage {
        font-size: 1.1rem;
    }
    
    .circle-label {
        font-size: 0.65rem;
    }
    
    .skill-name,
    .skill-percentage {
        font-size: 0.85rem;
    }
}

/* ========================================
   SECTION ICON HEADER
   ======================================== */

.section-icon-header {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(13, 110, 253, 0.3);
}

.section-icon-header i {
    font-size: 2.5rem;
    color: var(--white);
}

/* ========================================
   PRICING SECTION STYLES - PROFESSIONAL
   ======================================== */

.pricing-section {
    position: relative;
    overflow: hidden;
}

.pricing-section .row {
    display: flex;
    flex-wrap: wrap;
}

.pricing-section .row > [class*='col-'] {
    display: flex;
    flex-direction: column;
}

.pricing-tagline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(13, 110, 253, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    margin-top: 1rem;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
}

.pricing-tagline i {
    font-size: 1.1rem;
}

.pricing-card-professional {
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 2px solid #e9ecef;
    overflow: hidden;
    min-height: 100%;
}

.pricing-card-professional:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 45px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
}

.pricing-card-professional.featured {
    border-color: var(--primary-color);
    border-width: 3px;
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(13, 110, 253, 0.25);
}

.pricing-card-professional.featured:hover {
    transform: scale(1.05) translateY(-12px);
}

.pricing-card-professional .pricing-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 10;
}

.pricing-card-professional .badge-popular {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.pricing-card-professional .badge-recommended {
    background: var(--gradient-2);
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.pricing-header {
    padding: 2.5rem 2rem 1.5rem;
    text-align: center;
    border-bottom: 2px solid #f8f9fa;
}

.pricing-card-professional .pricing-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.3);
}

.pricing-card-professional .pricing-icon i {
    font-size: 2.75rem;
    color: var(--white);
}

.pricing-card-professional:hover .pricing-icon {
    transform: rotateY(360deg) scale(1.1);
}

.pricing-card-professional .pricing-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.pricing-subtitle {
    font-size: 0.95rem;
    color: var(--text-gray);
    font-weight: 500;
}

.pricing-card-professional .pricing-price {
    padding: 2rem 2rem 1.5rem;
    text-align: center;
    background: linear-gradient(180deg, #f8f9fa 0%, var(--white) 100%);
}

.price-wrapper {
    margin-bottom: 0.75rem;
}

.pricing-card-professional .currency {
    font-size: 1.1rem;
    color: var(--text-gray);
    font-weight: 600;
    vertical-align: top;
    margin-right: 0.25rem;
}

.pricing-card-professional .amount {
    font-size: 3.25rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    letter-spacing: -2px;
}

.pricing-card-professional .amount.custom {
    font-size: 2.5rem;
}

.pricing-card-professional .period {
    display: block;
    font-size: 1rem;
    color: var(--text-gray);
    margin-top: 0.5rem;
    font-weight: 500;
}

.price-note {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-top: 0.5rem;
    font-style: italic;
}

.pricing-description {
    padding: 0 2rem 1.5rem;
    text-align: center;
}

.pricing-description p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.pricing-card-professional .pricing-features {
    padding: 0 2rem 1.5rem;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.features-header {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #f8f9fa;
    flex-shrink: 0;
}

.pricing-card-professional .pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}

.pricing-card-professional .pricing-features li {
    padding: 0.85rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--dark-color);
    border-bottom: 1px solid #f5f5f5;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.pricing-card-professional .pricing-features li:last-child {
    border-bottom: none;
}

.pricing-card-professional .pricing-features li:hover {
    padding-left: 0.5rem;
    background: #f8f9fa;
}

.pricing-card-professional .pricing-features li i {
    color: #28a745;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.pricing-card-professional .pricing-features li.disabled {
    opacity: 0.4;
}

.pricing-card-professional .pricing-features li.disabled i {
    color: #dc3545;
}

.pricing-card-professional .pricing-features li span {
    flex: 1;
}

.pricing-footer {
    padding: 0 2rem 2.5rem;
    margin-top: auto;
    flex-shrink: 0;
}

.btn-pricing-pro {
    width: 100%;
    padding: 1rem 2rem;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    border-width: 2px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-pricing-pro:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(13, 110, 253, 0.3);
}

.btn-pricing-pro i {
    transition: transform 0.3s ease;
}

.btn-pricing-pro:hover i {
    transform: translateX(5px);
}

.pricing-guarantee {
    margin-top: 1.25rem;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.pricing-guarantee i {
    color: #28a745;
    font-size: 1rem;
}

/* Old pricing card styles for backward compatibility */
.pricing-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(13, 110, 253, 0.2);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(13, 110, 253, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-badge.popular {
    background: var(--gradient-2);
    color: var(--white);
}

.pricing-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.pricing-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.pricing-card:hover .pricing-icon {
    transform: rotate(360deg) scale(1.1);
}

.pricing-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    text-align: center;
}

.pricing-price {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 1.5rem 0;
    border-top: 2px solid var(--light-color);
    border-bottom: 2px solid var(--light-color);
}

.pricing-price .currency {
    font-size: 1rem;
    color: var(--text-gray);
    font-weight: 600;
}

.pricing-price .amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0 0.25rem;
}

.pricing-price .period {
    font-size: 1rem;
    color: var(--text-gray);
}

.pricing-description {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex-grow: 1;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    border-bottom: 1px solid #f0f0f0;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: #198754;
    font-size: 1rem;
    flex-shrink: 0;
}

.pricing-features li.disabled {
    opacity: 0.4;
}

.pricing-features li.disabled i {
    color: #dc3545;
}

.btn-pricing {
    width: 100%;
    padding: 0.85rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    margin-top: auto;
}

.btn-pricing:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.pricing-info-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--light-color);
}

.pricing-info-card h4 {
    color: var(--dark-color);
    font-weight: 700;
}

.pricing-feature-item {
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    border-radius: 15px;
}

.pricing-feature-item:hover {
    background: var(--light-color);
    transform: translateY(-5px);
}

.pricing-feature-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

.pricing-feature-item p {
    margin: 0;
    color: var(--dark-color);
    font-weight: 500;
    font-size: 0.95rem;
}

/* Pricing Responsive */
@media (max-width: 992px) {
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .pricing-price .amount {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .pricing-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .pricing-title {
        font-size: 1.5rem;
    }
    
    .pricing-price .amount {
        font-size: 2rem;
    }
    
    .pricing-icon {
        width: 70px;
        height: 70px;
    }
    
    .pricing-icon i {
        font-size: 2rem;
    }
    
    .pricing-info-card {
        padding: 2rem 1.5rem;
    }
    
    .pricing-feature-item {
        padding: 1rem 0.5rem;
    }
    
    .pricing-feature-item i {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .pricing-card {
        padding: 1.5rem 1rem;
    }
    
    .pricing-badge {
        top: 10px;
        right: 10px;
        padding: 0.4rem 0.75rem;
        font-size: 0.75rem;
    }
    
    .pricing-features li {
        font-size: 0.9rem;
        padding: 0.6rem 0;
    }
    
    .pricing-info-card .row .col-md-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* ========================================
   CERTIFICATES SECTION STYLES - PROFESSIONAL WITH IMAGES
   ======================================== */

.certificates-section {
    position: relative;
    background: var(--white);
}

.certificate-card {
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 2px solid #e9ecef;
    overflow: hidden;
}

.certificate-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    border-color: var(--primary-color);
}

.certificate-ribbon {
    position: absolute;
    top: 20px;
    right: -10px;
    background: var(--gradient-2);
    color: var(--white);
    padding: 0.5rem 1.25rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    letter-spacing: 0.5px;
}

.certificate-ribbon i {
    font-size: 0.9rem;
}

/* Certificate Image Container */
.certificate-image-container {
    position: relative;
    padding: 1.5rem 1.5rem 0;
}

.certificate-image-wrapper {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border: 3px solid #f8f9fa;
}

.certificate-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.certificate-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 20px,
        rgba(255,255,255,0.3) 20px,
        rgba(255,255,255,0.3) 40px
    );
    animation: moveStripes 20s linear infinite;
}

@keyframes moveStripes {
    0% { transform: translate(0, 0); }
    100% { transform: translate(40px, 40px); }
}

.certificate-placeholder i {
    font-size: 4rem;
    color: var(--primary-color);
    z-index: 2;
    opacity: 0.7;
}

.certificate-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 110, 253, 0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 10;
}

.certificate-placeholder:hover .certificate-overlay {
    opacity: 1;
}

.certificate-overlay i {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.certificate-overlay p {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.certificate-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.certificate-card:hover .certificate-img {
    transform: scale(1.05);
}

.certificate-stamp {
    position: absolute;
    bottom: 10px;
    right: 20px;
    background: var(--white);
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 15;
}

.certificate-stamp i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.certificate-stamp span {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
}

/* Certificate Content */
.certificate-content {
    padding: 2rem 2rem 2.5rem;
}

.certificate-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.certificate-description {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.7;
}

.certificate-meta {
    background: #f8f9fa;
    padding: 1.25rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    min-width: 45%;
}

.meta-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.meta-item span {
    color: var(--dark-color);
    font-size: 0.9rem;
    font-weight: 600;
}

.certificate-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.badge-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
    transition: all 0.3s ease;
}

.badge-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(40, 167, 69, 0.4);
}

.badge-item i {
    font-size: 1rem;
}

/* Trust Banner Professional */
.trust-banner-professional {
    background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 2px solid #e9ecef;
}

.trust-banner-header {
    text-align: center;
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.trust-banner-header i {
    font-size: 3rem;
    color: var(--primary-color);
}

.trust-banner-header h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark-color);
    margin: 0;
}

.trust-item-professional {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    transition: all 0.4s ease;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    border: 2px solid transparent;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    height: 100%;
}

.trust-item-professional:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
    border-color: var(--primary-color);
}

.trust-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(13, 110, 253, 0.3);
    transition: all 0.4s ease;
}

.trust-item-professional:hover .trust-icon-wrapper {
    transform: rotateY(360deg);
}

.trust-icon-wrapper i {
    font-size: 2rem;
    color: var(--white);
}

.trust-content {
    text-align: left;
    flex: 1;
}

.trust-content h5 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.trust-content p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Old trust banner styles for backward compatibility */
.trust-banner {
    background: var(--light-color);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    border: 2px solid #e9ecef;
}

.trust-item {
    padding: 1rem;
    transition: all 0.3s ease;
    border-radius: 12px;
}

.trust-item:hover {
    background: var(--white);
    transform: translateY(-5px);
}

.trust-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.trust-item:hover i {
    transform: scale(1.1) rotateY(360deg);
}

.trust-item h5 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.trust-item p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9rem;
}

/* ========================================
   PROFESSIONAL UI ENHANCEMENTS FOR ALL SECTIONS
   ======================================== */

/* Section Divider */
.section-divider {
    width: 80px;
    height: 4px;
    background: var(--gradient-1);
    margin: 1.5rem auto 0;
    border-radius: 2px;
    position: relative;
}

.section-divider::before,
.section-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-color);
}

.section-divider::before {
    left: -20px;
}

.section-divider::after {
    right: -20px;
}

/* Professional Feature Cards */
.feature-card-pro {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    position: relative;
    border: 2px solid #e9ecef;
    overflow: hidden;
}

.feature-card-pro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card-pro:hover::before {
    transform: scaleX(1);
}

.feature-card-pro:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
}

.feature-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(13, 110, 253, 0.08);
    line-height: 1;
    transition: all 0.4s ease;
}

.feature-card-pro:hover .feature-number {
    color: rgba(13, 110, 253, 0.15);
    transform: scale(1.1);
}

.feature-icon-pro {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.3);
}

.feature-icon-pro i {
    font-size: 2.5rem;
    color: var(--white);
}

.feature-card-pro:hover .feature-icon-pro {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 12px 30px rgba(13, 110, 253, 0.5);
}

.feature-title-pro {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.feature-card-pro:hover .feature-title-pro {
    color: var(--primary-color);
}

.feature-text-pro {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.feature-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    transition: all 0.4s ease;
}

.feature-link i {
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.feature-card-pro:hover .feature-link {
    background: var(--primary-color);
    transform: scale(1.1);
}

.feature-card-pro:hover .feature-link i {
    color: var(--white);
    transform: translateX(3px);
}

/* Enhanced Client Cards */
.client-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    height: 100%;
    text-align: center;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.client-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: var(--gradient-1);
    transition: height 0.4s ease;
}

.client-card:hover::before {
    height: 4px;
}

.client-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    border-color: var(--primary-color);
}

.client-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
    box-shadow: 0 6px 20px rgba(79, 172, 254, 0.3);
}

.client-icon i {
    font-size: 2rem;
    color: var(--white);
}

.client-card:hover .client-icon {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 10px 30px rgba(79, 172, 254, 0.5);
}

.client-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0;
    line-height: 1.5;
    transition: all 0.3s ease;
}

.client-card:hover .client-name {
    color: var(--primary-color);
}

/* Enhanced Testimonial Cards */
.testimonial-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    margin: 1rem;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s ease;
    border: 2px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 30px;
    left: 30px;
    font-size: 4rem;
    color: rgba(13, 110, 253, 0.05);
    z-index: 0;
}

.testimonial-card > * {
    position: relative;
    z-index: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
}

.testimonial-rating {
    margin-bottom: 1.5rem;
}

.testimonial-rating i {
    font-size: 1.3rem;
    margin-right: 0.3rem;
    color: #ffc107;
    filter: drop-shadow(0 2px 4px rgba(255, 193, 7, 0.3));
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-gray);
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 2px solid #f8f9fa;
}

.author-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(13, 110, 253, 0.3);
}

.author-avatar i {
    font-size: 2rem;
    color: var(--white);
}

.author-info {
    text-align: left;
}

.author-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.35rem;
}

.author-title {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 0;
}

/* Enhanced Contact Info Cards */
.contact-info-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    height: 100%;
    text-align: center;
    border: 2px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.03) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.contact-info-card:hover::before {
    opacity: 1;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
}

.contact-info-icon {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.3);
    position: relative;
    z-index: 1;
}

.contact-info-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.contact-info-card:hover .contact-info-icon {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 12px 35px rgba(13, 110, 253, 0.5);
}

.contact-info-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-info-title {
    color: var(--primary-color);
}

.contact-info-text {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 0;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.contact-info-text a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-info-text a:hover {
    color: #0056b3;
}

/* Enhanced Contact Form Card */
.contact-form-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 2px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-1);
}

.contact-form-card .form-label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.contact-form-card .form-control,
.contact-form-card textarea {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.contact-form-card .form-control:focus,
.contact-form-card textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.1);
    transform: translateY(-2px);
}

/* Certificates & Pricing Responsive */
@media (max-width: 992px) {
    .certificate-card {
        margin-bottom: 1.5rem;
    }
    
    .certificate-image-wrapper {
        aspect-ratio: 16/10;
    }
    
    .certificate-stamp {
        width: 60px;
        height: 60px;
    }
    
    .certificate-stamp i {
        font-size: 1.25rem;
    }
    
    .trust-banner-professional {
        padding: 2.5rem 2rem;
    }
    
    .trust-banner-header h3 {
        font-size: 1.75rem;
    }
    
    .pricing-card-professional.featured {
        transform: scale(1);
    }
    
    .pricing-card-professional.featured:hover {
        transform: translateY(-12px);
    }
    
    .pricing-card-professional .amount {
        font-size: 2.75rem;
    }
}

@media (max-width: 768px) {
    .section-icon-header {
        width: 70px;
        height: 70px;
    }
    
    .section-icon-header i {
        font-size: 2rem;
    }
    
    .pricing-tagline {
        font-size: 0.85rem;
        padding: 0.6rem 1.25rem;
    }
    
    .certificate-card {
        margin-bottom: 1.5rem;
    }
    
    .certificate-image-container {
        padding: 1.25rem 1.25rem 0;
    }
    
    .certificate-image-wrapper {
        aspect-ratio: 3/2;
    }
    
    .certificate-ribbon {
        font-size: 0.7rem;
        padding: 0.4rem 1rem;
    }
    
    .certificate-stamp {
        width: 55px;
        height: 55px;
        bottom: 8px;
        right: 15px;
    }
    
    .certificate-stamp i {
        font-size: 1.1rem;
    }
    
    .certificate-stamp span {
        font-size: 0.65rem;
    }
    
    .certificate-content {
        padding: 1.5rem 1.5rem 2rem;
    }
    
    .certificate-title {
        font-size: 1.25rem;
    }
    
    .certificate-description {
        font-size: 0.9rem;
    }
    
    .certificate-meta {
        padding: 1rem;
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .meta-item {
        min-width: 100%;
    }
    
    .badge-item {
        font-size: 0.8rem;
        padding: 0.4rem 0.85rem;
    }
    
    .trust-banner-professional {
        padding: 2rem 1.5rem;
    }
    
    .trust-banner-header {
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 2rem;
    }
    
    .trust-banner-header i {
        font-size: 2.5rem;
    }
    
    .trust-banner-header h3 {
        font-size: 1.5rem;
    }
    
    .trust-item-professional {
        padding: 1.5rem 1.25rem;
        margin-bottom: 1rem;
    }
    
    .trust-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .trust-icon-wrapper i {
        font-size: 1.75rem;
    }
    
    .trust-content h5 {
        font-size: 1.1rem;
    }
    
    .trust-content p {
        font-size: 0.85rem;
    }
    
    /* Pricing Responsive */
    .pricing-section .row > [class*='col-'] {
        display: flex;
        flex-direction: column;
        margin-bottom: 1.5rem;
    }
    
    .pricing-header {
        padding: 2rem 1.5rem 1.25rem;
        flex-shrink: 0;
    }
    
    .pricing-card-professional .pricing-icon {
        width: 75px;
        height: 75px;
    }
    
    .pricing-card-professional .pricing-icon i {
        font-size: 2.25rem;
    }
    
    .pricing-card-professional .pricing-title {
        font-size: 1.75rem;
    }
    
    .pricing-card-professional .amount {
        font-size: 2.5rem;
    }
    
    .pricing-card-professional .amount.custom {
        font-size: 2rem;
    }
    
    .pricing-card-professional .pricing-price {
        padding: 1.5rem 1.5rem 1.25rem;
        flex-shrink: 0;
    }
    
    .pricing-description {
        padding: 0 1.5rem 1.25rem;
        flex-shrink: 0;
    }
    
    .pricing-card-professional .pricing-features {
        padding: 0 1.5rem 1.25rem;
    }
    
    .pricing-footer {
        padding: 0 1.5rem 2rem;
    }
}

@media (max-width: 576px) {
    .section-icon-header {
        width: 60px;
        height: 60px;
    }
    
    .section-icon-header i {
        font-size: 1.75rem;
    }
    
    .pricing-tagline {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    .certificate-image-container {
        padding: 1rem 1rem 0;
    }
    
    .certificate-image-wrapper {
        aspect-ratio: 4/3;
        border-width: 2px;
    }
    
    .certificate-placeholder i {
        font-size: 3rem;
    }
    
    .certificate-overlay i {
        font-size: 2.5rem;
    }
    
    .certificate-overlay p {
        font-size: 0.9rem;
    }
    
    .certificate-ribbon {
        font-size: 0.65rem;
        padding: 0.35rem 0.85rem;
        top: 15px;
        right: -8px;
    }
    
    .certificate-stamp {
        width: 50px;
        height: 50px;
        bottom: 5px;
        right: 10px;
        border-width: 2px;
    }
    
    .certificate-stamp i {
        font-size: 1rem;
    }
    
    .certificate-stamp span {
        font-size: 0.6rem;
    }
    
    .certificate-content {
        padding: 1.25rem 1.25rem 1.75rem;
    }
    
    .certificate-title {
        font-size: 1.15rem;
    }
    
    .certificate-description {
        font-size: 0.85rem;
        margin-bottom: 1.25rem;
    }
    
    .certificate-meta {
        padding: 0.85rem;
    }
    
    .meta-item {
        font-size: 0.85rem;
    }
    
    .meta-item i {
        font-size: 1rem;
    }
    
    .badge-item {
        font-size: 0.75rem;
        padding: 0.35rem 0.75rem;
    }
    
    .trust-banner-professional {
        padding: 1.5rem 1rem;
    }
    
    .trust-banner-header i {
        font-size: 2rem;
    }
    
    .trust-banner-header h3 {
        font-size: 1.25rem;
    }
    
    .trust-item-professional {
        padding: 1.25rem 1rem;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .trust-icon-wrapper {
        width: 55px;
        height: 55px;
    }
    
    .trust-icon-wrapper i {
        font-size: 1.5rem;
    }
    
    .trust-content {
        text-align: center;
    }
    
    .trust-content h5 {
        font-size: 1rem;
    }
    
    .trust-content p {
        font-size: 0.8rem;
    }
    
    /* Pricing Responsive */
    .pricing-section .row > [class*='col-'] {
        display: block;
        margin-bottom: 1.5rem;
    }
    
    .pricing-card-professional {
        margin-bottom: 0;
        height: auto;
        min-height: auto;
    }
    
    .pricing-card-professional .pricing-badge {
        top: 18px;
        right: 18px;
        padding: 0.4rem 1rem;
        font-size: 0.75rem;
    }
    
    .pricing-header {
        padding: 1.75rem 1.25rem 1rem;
        flex-shrink: 0;
    }
    
    .pricing-card-professional .pricing-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1rem;
    }
    
    .pricing-card-professional .pricing-icon i {
        font-size: 2rem;
    }
    
    .pricing-card-professional .pricing-title {
        font-size: 1.5rem;
    }
    
    .pricing-subtitle {
        font-size: 0.85rem;
    }
    
    .pricing-card-professional .pricing-price {
        padding: 1.25rem 1.25rem 1rem;
        flex-shrink: 0;
    }
    
    .pricing-card-professional .currency {
        font-size: 1rem;
    }
    
    .pricing-card-professional .amount {
        font-size: 2.25rem;
    }
    
    .pricing-card-professional .amount.custom {
        font-size: 1.85rem;
    }
    
    .pricing-card-professional .period {
        font-size: 0.9rem;
    }
    
    .price-note {
        font-size: 0.8rem;
    }
    
    .pricing-description {
        padding: 0 1.25rem 1rem;
        flex-shrink: 0;
    }
    
    .pricing-description p {
        font-size: 0.85rem;
    }
    
    .pricing-card-professional .pricing-features {
        padding: 0 1.25rem 1rem;
        flex: 1 1 auto;
    }
    
    .features-header {
        font-size: 0.85rem;
        margin-bottom: 0.85rem;
    }
    
    .pricing-card-professional .pricing-features li {
        padding: 0.7rem 0;
        font-size: 0.85rem;
    }
    
    .pricing-card-professional .pricing-features li i {
        font-size: 1rem;
    }
    
    .pricing-footer {
        padding: 0 1.25rem 1.75rem;
        flex-shrink: 0;
    }
    
    .btn-pricing-pro {
        padding: 0.85rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .pricing-guarantee {
        font-size: 0.8rem;
        margin-top: 1rem;
    }
    
    .pricing-info-card {
        padding: 2rem 1.25rem;
    }
    
    .pricing-info-card .row .col-md-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    /* Professional Enhancements Responsive for Small Screens */
    .feature-card-pro {
        margin-bottom: 1.5rem;
        padding: 2rem 1.5rem;
    }
    
    .feature-number {
        font-size: 2.5rem;
    }
    
    .feature-icon-pro {
        width: 70px;
        height: 70px;
    }
    
    .feature-icon-pro i {
        font-size: 2.2rem;
    }
    
    .feature-title-pro {
        font-size: 1.2rem;
    }
    
    .feature-text-pro {
        font-size: 0.9rem;
    }
    
    .feature-link {
        width: 40px;
        height: 40px;
    }
    
    .feature-link i {
        font-size: 1.1rem;
    }
    
    .testimonial-card {
        padding: 2rem 1.75rem;
        min-height: 350px;
    }
    
    .testimonial-card::before {
        font-size: 3rem;
        top: 20px;
        left: 20px;
    }
    
    .author-avatar {
        width: 60px;
        height: 60px;
    }
    
    .author-avatar i {
        font-size: 1.75rem;
    }
    
    .author-name {
        font-size: 1.1rem;
    }
    
    .author-title {
        font-size: 0.9rem;
    }
    
    .contact-info-icon {
        width: 75px;
        height: 75px;
    }
    
    .contact-info-icon i {
        font-size: 2.25rem;
    }
    
    .contact-info-title {
        font-size: 1.2rem;
    }
    
    .contact-form-card {
        padding: 2.5rem 2rem;
    }
}

/* Footer Styles */
.footer-section {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

.footer-section .row {
    margin-bottom: 0.5rem;
}

.footer-section hr {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.footer-brand h4 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.social-links {
    margin-top: 1rem;
}

.social-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.contact-info p {
    color: #bdc3c7;
    margin-bottom: 0.5rem;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #5a2a8a;
    transform: translateY(-2px);
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, #6D2D9D 0%, #9B59B6 100%);
    padding: 120px 0 80px;
    margin-top: 70px;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* About Page Hero Section */
.about-hero-section {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 60px 0 40px;
}

.hero-background-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-image {
    position: absolute;
    opacity: 0.3;
    transition: all 0.5s ease;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.7) sepia(0.2);
    border-radius: 8px;
}

.hero-image-1 {
    top: 10%;
    left: 5%;
    width: 25%;
    height: 80%;
    animation: slideInLeft 1s ease-out;
}

.hero-image-2 {
    top: 5%;
    right: 10%;
    width: 20%;
    height: 40%;
    animation: slideInRight 1.2s ease-out;
}

.hero-image-3 {
    bottom: 10%;
    right: 5%;
    width: 18%;
    height: 35%;
    animation: slideInUp 1.4s ease-out;
}

.hero-image-4 {
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 15%;
    height: 25%;
    animation: slideInDown 1.6s ease-out;
}

.hero-image-5 {
    bottom: 20%;
    left: 20%;
    width: 12%;
    height: 20%;
    animation: slideInLeft 1.8s ease-out;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 0.3;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 0.3;
    }
}

@keyframes slideInUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 0.3;
    }
}

@keyframes slideInDown {
    from {
        transform: translateY(-100%) translateX(-50%);
        opacity: 0;
    }
    to {
        transform: translateY(0) translateX(-50%);
        opacity: 0.3;
    }
}

.about-hero-section .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.about-hero-section .container {
    position: relative;
    z-index: 2;
}

.about-hero-section .hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: white !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.about-hero-section .hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.about-hero-section .hero-buttons .btn {
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.about-hero-section .scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.about-hero-section .scroll-indicator a {
    color: white;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Client Logo Marquee Styles */
.clients-marquee-container {
    overflow: hidden;
    position: relative;
    height: 80px;
    background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 10%, rgba(255,255,255,0) 90%, rgba(255,255,255,1) 100%);
}

.clients-marquee {
    display: flex;
    animation: scroll 20s linear infinite;
    width: calc(200% + 40px);
}

.clients-marquee:hover {
    animation-play-state: paused;
}

.client-logo-item {
    flex: 0 0 auto;
    margin-right: 20px;
}

.client-logo-card {
    background: white;
    border-radius: 6px;
    padding: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 60px;
    width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e9ecef;
}

.client-logo-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(109, 45, 157, 0.2);
    border-color: var(--primary-color);
}

.client-logo-placeholder {
    text-align: center;
    color: var(--text-gray);
    transition: all 0.3s ease;
}

.client-logo-card:hover .client-logo-placeholder {
    color: var(--primary-color);
}

.client-logo-placeholder i {
    font-size: 1.4rem;
    margin-bottom: 3px;
    display: block;
}

.client-logo-text {
    font-size: 0.7rem;
    font-weight: 500;
    margin: 0;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Client Logo Images */
.client-logo {
    max-width: 100%;
    max-height: 50px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.client-logo-card:hover .client-logo {
    filter: grayscale(0%);
}

/* Certificate Cards Styles */
.certificate-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.certificate-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(109, 45, 157, 0.15);
}

.certificate-image {
    padding: 1.5rem;
    overflow: visible;
    position: relative;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.certificate-img {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.certificate-card:hover .certificate-img {
    transform: scale(1.05);
}

.certificate-content {
    padding: 20px;
}

.certificate-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.certificate-description {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

.certificate-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(109, 45, 157, 0.8);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.certificate-image:hover .certificate-overlay {
    opacity: 1;
}

.certificate-overlay i {
    font-size: 2rem;
    margin-bottom: 10px;
}

.certificate-overlay p {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Modal Styles */
.modal-content {
    border-radius: 12px;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.modal-header {
    background: var(--primary-color);
    color: white;
    border-radius: 12px 12px 0 0;
}

.modal-title {
    font-weight: 600;
}

.btn-close {
    filter: invert(1);
}

.modal-body img {
    max-height: 70vh;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.certificate-modal-image {
    max-height: 80vh;
    max-width: 100%;
    width: auto;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    object-fit: contain;
}

/* Features Numbered List Styles */
.features-numbered-list {
    list-style: none;
    counter-reset: feature-counter;
    padding: 0;
    margin: 0;
}

.feature-item {
    counter-increment: feature-counter;
    margin-bottom: 2rem;
    position: relative;
    padding-left: 4rem;
}

.feature-item::before {
    content: counter(feature-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 3rem;
    height: 3rem;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(109, 45, 157, 0.3);
}

.feature-content {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.feature-content:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(109, 45, 157, 0.15);
}

.feature-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.feature-description {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Skills Section Styles */
.skills-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.skills-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(109, 45, 157, 0.03) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.skill-item {
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 12px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.skill-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(109, 45, 157, 0.15);
    border-color: #6D2D9D;
}

.skill-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.skill-header h5 {
    margin: 0;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.skill-percentage {
    font-weight: 700;
    color: #6D2D9D;
    font-size: 1rem;
    background: linear-gradient(135deg, #6D2D9D 0%, #9B59B6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.skill-bar {
    height: 10px;
    background: #e9ecef;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #6D2D9D 0%, #9B59B6 50%, #E74C3C 100%);
    background-size: 200% auto;
    border-radius: 10px;
    width: 0;
    transition: width 1.5s ease-in-out;
    position: relative;
    overflow: hidden;
}

.skill-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Circle Progress Styles */
.circle-progress {
    text-align: center;
    margin-bottom: 1rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 15px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.circle-progress:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(109, 45, 157, 0.2);
    border-color: #6D2D9D;
}

.progress-circle {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto;
}

.progress-circle svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.progress-circle circle {
    fill: none;
    stroke-width: 8;
    stroke-linecap: round;
}

.progress-circle .bg-circle {
    stroke: #e9ecef;
}

.progress-circle .progress-circle-path {
    stroke: url(#gradient);
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    transition: stroke-dashoffset 1.5s ease-in-out;
    stroke-width: 10;
}

.progress-circle svg {
    filter: drop-shadow(0 4px 6px rgba(109, 45, 157, 0.2));
}

.circle-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 1;
}

.circle-percentage {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #6D2D9D 0%, #9B59B6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
}

.circle-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-gray);
    font-weight: 600;
}

/* Statistics Section Styles */
.stats-section {
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    animation: float 20s linear infinite;
}

.stat-item {
    position: relative;
    z-index: 1;
    padding: 1.5rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-icon {
    opacity: 0.8;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin: 0;
    background: linear-gradient(45deg, #ffffff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
    opacity: 0.9;
}

/* Process Section Styles */
.process-step {
    padding: 1rem 0.75rem;
    border-radius: 12px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    height: 100%;
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(109, 45, 157, 0.15);
    border-color: #6D2D9D;
}

.step-icon {
    position: relative;
}

.step-number {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #6D2D9D 0%, #9B59B6 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(109, 45, 157, 0.3);
}

/* Technology Stack Styles */
.tech-stack-row {
    flex-wrap: nowrap;
    justify-content: center;
    gap: 0.5rem;
}

.tech-stack-row > [class*="col-"] {
    flex: 1 1 110px;
    min-width: 95px;
    max-width: 140px;
}

.tech-item {
    padding: 0.6rem;
    border-radius: 10px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    animation: fadeInScale 0.6s ease-out;
    animation-fill-mode: both;
}

.tech-item:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(109, 45, 157, 0.15);
    border-color: #6D2D9D;
}

.tech-icon {
    transition: all 0.3s ease;
}

.tech-icon i {
    font-size: 1.6rem;
}

.tech-item:hover .tech-icon {
    transform: scale(1.1);
}

/* Testimonials Section Styles */
.testimonial-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 12px;
    padding: 0.75rem;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(109, 45, 157, 0.15);
    border-color: #6D2D9D;
}

.testimonial-content {
    margin-bottom: 0.75rem;
}

.testimonial-author {
    padding-top: 0.5rem;
    border-top: 1px solid #e9ecef;
}

.testimonial-content p {
    font-style: italic;
    line-height: 1.6;
    margin: 0;
}

.author-image img {
    width: 40px;
    height: 40px;
    object-fit: cover;
}

/* Animation Keyframes for Page Load Effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Add staggered animation delays */
.process-step:nth-child(1) { animation-delay: 0.1s; }
.process-step:nth-child(2) { animation-delay: 0.2s; }
.process-step:nth-child(3) { animation-delay: 0.3s; }
.process-step:nth-child(4) { animation-delay: 0.4s; }

.tech-item:nth-child(1) { animation-delay: 0.1s; }
.tech-item:nth-child(2) { animation-delay: 0.2s; }
.tech-item:nth-child(3) { animation-delay: 0.3s; }
.tech-item:nth-child(4) { animation-delay: 0.4s; }
.tech-item:nth-child(5) { animation-delay: 0.5s; }
.tech-item:nth-child(6) { animation-delay: 0.6s; }

/* Add pulse effect for step numbers */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.step-number {
    animation: pulse 2s infinite;
}

/* Add hover glow effect */
.process-step:hover .step-number {
    box-shadow: 0 6px 20px rgba(109, 45, 157, 0.5);
}

.tech-item:hover {
    animation: none;
}

/* ERP Products Section Styles */
.product-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 15px;
    padding: 2rem 1.5rem;
    border: 1px solid #e9ecef;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(109, 45, 157, 0.05), transparent);
    transition: left 0.5s ease;
}

.product-card:hover::before {
    left: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(109, 45, 157, 0.2);
    border-color: #6D2D9D;
}

.product-icon {
    transition: transform 0.3s ease;
}

.product-card:hover .product-icon {
    transform: scale(1.1) rotateY(15deg);
}

.product-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.product-description {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-features li {
    padding: 0.4rem 0;
    font-size: 0.9rem;
    color: #6c757d;
}

.product-features i {
    font-size: 0.9rem;
}

/* CTA Section Styles */
.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cta-buttons .btn {
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Counter Animation */
@keyframes countUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.stat-number.animate {
    animation: countUp 0.6s ease-out;
}

/* Features Bullet List Styles */
.features-bullet-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-bullet-list li {
    position: relative;
    padding: 1rem 0 1rem 2rem;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid #e9ecef;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-gray);
}

.features-bullet-list li:last-child {
    border-bottom: none;
}

.features-bullet-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 1rem;
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: bold;
}

.features-bullet-list li strong {
    color: var(--text-dark);
    font-weight: 600;
}

.features-bullet-list li:hover {
    background: rgba(109, 45, 157, 0.05);
    border-radius: 8px;
    padding-left: 2.5rem;
    transition: all 0.3s ease;
}

/* Additional Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .navbar-nav {
        text-align: center;
        margin-top: 1rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.5rem 0;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

/* ERP Module Icons Floating Animation */
.erp-modules-floating {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.erp-icon {
    position: absolute;
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.35);
    animation: float-rotate 8s ease-in-out infinite;
    transition: all 0.3s ease;
    cursor: pointer;
    pointer-events: auto;
}

.erp-icon:hover {
    color: rgba(255, 255, 255, 0.8);
    transform: scale(1.3);
}

.erp-icon-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.erp-icon-2 {
    top: 25%;
    right: 15%;
    animation-delay: 1s;
}

.erp-icon-3 {
    bottom: 30%;
    left: 8%;
    animation-delay: 2s;
}

.erp-icon-4 {
    top: 45%;
    right: 12%;
    animation-delay: 3s;
}

.erp-icon-5 {
    bottom: 20%;
    right: 25%;
    animation-delay: 4s;
}

.erp-icon-6 {
    top: 35%;
    left: 5%;
    animation-delay: 5s;
}

.erp-icon-7 {
    bottom: 45%;
    right: 5%;
    animation-delay: 6s;
}

.erp-icon-8 {
    top: 60%;
    left: 15%;
    animation-delay: 7s;
}

.erp-icon-9 {
    top: 10%;
    right: 8%;
    animation-delay: 8s;
}

.erp-icon-10 {
    bottom: 35%;
    left: 20%;
    animation-delay: 9s;
}

.erp-icon-11 {
    top: 55%;
    right: 20%;
    animation-delay: 10s;
}

.erp-icon-12 {
    bottom: 25%;
    right: 30%;
    animation-delay: 11s;
}

.erp-icon-13 {
    top: 40%;
    left: 3%;
    animation-delay: 12s;
}

.erp-icon-14 {
    bottom: 40%;
    right: 8%;
    animation-delay: 13s;
}

.erp-icon-15 {
    top: 70%;
    left: 10%;
    animation-delay: 14s;
}

.erp-icon-16 {
    top: 5%;
    left: 25%;
    animation-delay: 15s;
}

@keyframes float-rotate {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(5deg);
    }
    50% {
        transform: translateY(10px) rotate(-5deg);
    }
    75% {
        transform: translateY(-15px) rotate(3deg);
    }
}

@media (max-width: 768px) {
    .erp-icon {
        font-size: 1.5rem;
    }
    
    .erp-icon-1 { top: 20%; left: 5%; }
    .erp-icon-2 { top: 30%; right: 10%; }
    .erp-icon-3 { bottom: 40%; left: 5%; }
    .erp-icon-4 { top: 50%; right: 8%; }
    .erp-icon-5 { bottom: 30%; right: 20%; }
    .erp-icon-6 { top: 40%; left: 3%; }
    .erp-icon-7 { bottom: 50%; right: 3%; }
    .erp-icon-8 { top: 65%; left: 10%; }
    .erp-icon-9 { top: 12%; right: 5%; }
    .erp-icon-10 { bottom: 42%; left: 15%; }
    .erp-icon-11 { top: 58%; right: 15%; }
    .erp-icon-12 { bottom: 32%; right: 25%; }
    .erp-icon-13 { top: 42%; left: 2%; }
    .erp-icon-14 { bottom: 48%; right: 5%; }
    .erp-icon-15 { top: 72%; left: 8%; }
    .erp-icon-16 { top: 8%; left: 20%; }
}

/* Modern Services Section Styles */
.services-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(109, 45, 157, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(52, 152, 219, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(46, 204, 113, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.service-card-modern {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 24px;
    padding: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(109, 45, 157, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.service-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(109, 45, 157, 0.1), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.service-card-modern:hover::before {
    left: 100%;
}

.service-card-modern:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 25px 70px rgba(109, 45, 157, 0.15);
    border-color: rgba(109, 45, 157, 0.2);
}

.service-card-header {
    position: relative;
    padding: 1.5rem 1.5rem 0.75rem;
    background: linear-gradient(135deg, #6D2D9D, #9B59B6);
    border-radius: 24px 24px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

.service-icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.6rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.service-card-modern:hover .service-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.service-card-modern:hover .service-badge {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.service-card-body {
    padding: 1rem 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    z-index: 2;
}

.service-title-modern {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #6D2D9D, #3498DB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-description-modern {
    color: #6c757d;
    margin-bottom: 1rem;
    line-height: 1.5;
    font-size: 0.85rem;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.feature-tag {
    background: linear-gradient(135deg, #6D2D9D, #9B59B6);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(109, 45, 157, 0.2);
}

.feature-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(109, 45, 157, 0.3);
}

.feature-tag.feature-tag-lg {
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
}

.service-card-footer {
    padding: 0 1.5rem 1.5rem;
    z-index: 2;
}

.btn-service-modern {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #6D2D9D, #9B59B6);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    border: none;
}

.btn-service-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.btn-service-modern:hover::before {
    left: 100%;
}

.btn-service-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(109, 45, 157, 0.3);
    color: white;
    text-decoration: none;
}

.btn-service-modern i {
    transition: transform 0.3s ease;
}

.btn-service-modern:hover i {
    transform: translateX(3px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .service-card-modern {
        margin-bottom: 2rem;
    }
    
    .service-card-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .service-card-body {
        padding: 1rem 1.5rem;
    }
    
    .service-card-footer {
        padding: 0 1.5rem 1.5rem;
    }
    
    .service-icon-wrapper {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .service-title-modern {
        font-size: 1.2rem;
    }
}

/* About Page Styles */
.about-content-section {
    padding: 4rem 0;
}

.about-image-wrapper {
    position: relative;
}

.about-stats-card {
    background: linear-gradient(135deg, #6D2D9D 0%, #9B59B6 100%);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 50px rgba(109, 45, 157, 0.2);
}

.stat-card-about {
    text-align: center;
    color: white;
}

.stat-icon {
    color: rgba(255, 255, 255, 0.9);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

.mission-card, .vision-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.mission-icon, .vision-icon {
    color: #6D2D9D;
    text-align: center;
}

.mission-title, .vision-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
}

.mission-text, .vision-text {
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.mission-features, .vision-features {
    list-style: none;
    padding: 0;
}

.mission-features li, .vision-features li {
    padding: 0.5rem 0;
    color: #495057;
}

.mission-features i {
    color: #6D2D9D;
    margin-right: 0.5rem;
}

.vision-features i {
    color: #f39c12;
    margin-right: 0.5rem;
}

/* ERP Products Detail Section Styles */
.erp-products-detail-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    padding: 4rem 0;
}

.product-detail-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.product-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #6D2D9D 0%, #3498DB 50%, #2ECC71 100%);
}

.product-detail-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(109, 45, 157, 0.15);
}

.product-image-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #6D2D9D 0%, #3498DB 50%, #2ECC71 100%);
    min-height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-column {
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-image-wrapper:hover .product-image {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(109, 45, 157, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-image-wrapper:hover .product-overlay {
    opacity: 1;
}

.product-icon-large {
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.2);
    animation: float-icon 3s ease-in-out infinite;
}

@keyframes float-icon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.product-badge-custom {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, #6D2D9D 0%, #3498DB 50%, #2ECC71 100%);
    color: white;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(109, 45, 157, 0.3);
}

.product-detail-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.product-detail-description {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.8;
}

.product-benefits {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 1.35rem 1.5rem;
    border-radius: 15px;
    border-left: 4px solid #6D2D9D;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.benefits-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    padding: 0.5rem 0;
    font-size: 1rem;
    color: #555;
    border-bottom: 1px solid #e9ecef;
    line-height: 1.5;
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefits-list li i {
    font-size: 1.1rem;
}

.product-features-detailed {
    padding: 1.35rem 1.5rem;
    background: #ffffff;
    border-radius: 15px;
    border: 1px solid #f0ecfb;
    box-shadow: 0 8px 25px rgba(109, 45, 157, 0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.features-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.feature-item-detailed {
    display: flex;
    align-items: center;
    padding: 0.85rem;
    margin-bottom: 0.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item-detailed:hover {
    background: linear-gradient(135deg, #6D2D9D 0%, #3498DB 50%);
    color: white;
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(109, 45, 157, 0.2);
}

.feature-item-detailed i {
    font-size: 1.5rem;
    margin-right: 1rem;
    width: 30px;
    text-align: center;
}

.feature-item-detailed span {
    font-size: 1rem;
    font-weight: 500;
}

.btn-primary {
    background: linear-gradient(135deg, #6D2D9D 0%, #3498DB 50%, #2ECC71 100%);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(109, 45, 157, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(109, 45, 157, 0.4);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .product-detail-card {
        padding: 2rem;
    }
    
    .product-detail-title {
        font-size: 1.8rem;
    }
    
    .product-icon-large {
        font-size: 6rem;
    }
}

@media (max-width: 768px) {
    .erp-products-detail-section {
        padding: 2rem 0;
    }
    
    .product-detail-card {
        padding: 1.5rem;
    }
    
    .product-image-wrapper {
        min-height: 300px;
    }
    
    .product-detail-title {
        font-size: 1.5rem;
    }
    
    .product-detail-description {
        font-size: 1rem;
    }
    
    .product-icon-large {
        font-size: 4rem;
    }
}

/* Module Selection Cards */
.module-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    margin-bottom: 1rem;
}

.module-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(109, 45, 157, 0.2);
    border-color: #6D2D9D;
}

.module-card-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.module-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6D2D9D 0%, #3498DB 50%, #2ECC71 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.module-info {
    flex-grow: 1;
}

.module-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.25rem;
}

.module-description {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 0;
}

.module-price {
    text-align: center;
    margin: 1rem 0;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.module-amount {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #6D2D9D 0%, #3498DB 50%, #2ECC71 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-add-module {
    width: 100%;
    padding: 0.75rem;
    background: linear-gradient(135deg, #6D2D9D 0%, #3498DB 50%, #2ECC71 100%);
    border: none;
    color: white;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.btn-add-module:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(109, 45, 157, 0.4);
    color: white;
}

/* Cart Sidebar */
.cart-sidebar {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.cart-header {
    background: linear-gradient(135deg, #6D2D9D 0%, #3498DB 50%, #2ECC71 100%);
    padding: 1.5rem;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
}

.cart-count {
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
}

.cart-body {
    padding: 1.5rem;
    max-height: 400px;
    overflow-y: auto;
}

.cart-footer {
    padding: 1.5rem;
    background: #f8f9fa;
    border-top: 2px solid #e9ecef;
}

.cart-total {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #dee2e6;
}

.cart-total h5 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.cart-total span {
    background: linear-gradient(135deg, #6D2D9D 0%, #3498DB 50%, #2ECC71 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-checkout {
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    background: linear-gradient(135deg, #6D2D9D 0%, #3498DB 50%, #2ECC71 100%);
    border: none;
    color: white;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.btn-checkout:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(109, 45, 157, 0.4);
    color: white;
}

.btn-checkout:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.cart-item {
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #e9ecef;
}

.module-selection-header {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.module-selection-header h4 {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* Responsive */
@media (max-width: 992px) {
    .cart-sidebar {
        margin-top: 2rem;
        position: static !important;
    }
}

/* Cart Notification */
.cart-notification {
    position: fixed;
    top: 100px;
    right: -400px;
    background: linear-gradient(135deg, #6D2D9D 0%, #3498DB 50%, #2ECC71 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(109, 45, 157, 0.3);
    z-index: 9999;
    transition: right 0.3s ease;
    min-width: 300px;
}

.cart-notification.show {
    right: 20px;
}

.notification-content {
    display: flex;
    align-items: center;
    font-weight: 600;
}

.notification-content i {
    font-size: 1.5rem;
}

/* NGO ERP Box */
.ngo-erp-box {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(109, 45, 157, 0.15);
    border: 2px solid #6D2D9D;
    position: relative;
    overflow: hidden;
}

.ngo-erp-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #6D2D9D 0%, #3498DB 50%, #2ECC71 100%);
}

.ngo-erp-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f8f9fa;
}

.ngo-erp-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #6D2D9D 0%, #3498DB 50%, #2ECC71 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin-right: 1.5rem;
}

.ngo-erp-title h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

/* Sub Module Items */
.sub-module-item {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.sub-module-item:hover {
    background: white;
    border-color: #6D2D9D;
    box-shadow: 0 5px 15px rgba(109, 45, 157, 0.1);
    transform: translateY(-3px);
}

.sub-module-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #6D2D9D 0%, #3498DB 50%, #2ECC71 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.sub-module-info h6 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.25rem;
}

.sub-module-info .badge {
    font-size: 0.8rem;
    padding: 0.25rem 0.5rem;
}

.btn-add-submodule {
    padding: 0.5rem;
    background: linear-gradient(135deg, #6D2D9D 0%, #3498DB 50%, #2ECC71 100%);
    border: none;
    color: white;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-add-submodule:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(109, 45, 157, 0.3);
    color: white;
}

.total-badge {
    display: inline-block;
    background: linear-gradient(135deg, #6D2D9D 0%, #3498DB 50%, #2ECC71 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(109, 45, 157, 0.3);
}

.total-badge strong {
    font-size: 1.3rem;
}

/* Responsive for NGO ERP Box */
@media (max-width: 768px) {
    .ngo-erp-box {
        padding: 1.5rem;
    }
    
    .ngo-erp-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-right: 1rem;
    }
    
    .ngo-erp-title h3 {
        font-size: 1.5rem;
    }
    
    .total-badge {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

/* FAQ Section Styles */
.faq-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.faq-section .accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-section .accordion-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.faq-section .accordion-button {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: none;
    padding: 1.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    color: #2c3e50;
    transition: all 0.3s ease;
    position: relative;
}

.faq-section .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #6D2D9D 0%, #8B5FBF 100%);
    color: white;
    box-shadow: none;
}

.faq-section .accordion-button:not(.collapsed) i {
    color: white;
}

.faq-section .accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(109, 45, 157, 0.25);
    border: none;
}

.faq-section .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236D2D9D'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: all 0.3s ease;
}

.faq-section .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(180deg);
}

.faq-section .accordion-body {
    background: white;
    padding: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    border-top: 1px solid #e9ecef;
}

.faq-section .accordion-body ul,
.faq-section .accordion-body ol {
    margin-bottom: 1rem;
}

.faq-section .accordion-body li {
    margin-bottom: 0.5rem;
}

.faq-section .accordion-body strong {
    color: #6D2D9D;
    font-weight: 600;
}

.faq-section .accordion-body a {
    color: #6D2D9D;
    text-decoration: none;
    font-weight: 600;
}

.faq-section .accordion-body a:hover {
    text-decoration: underline;
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .faq-section .accordion-button {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .faq-section .accordion-body {
        padding: 1rem;
        font-size: 0.95rem;
    }
    
    .faq-section .accordion-button i {
        font-size: 0.9rem;
    }
}

/* Demo Page Styles */
.demo-scheduling-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.demo-info-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.demo-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6D2D9D, #4A90E2, #50C878);
}

.demo-info-title {
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.demo-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.demo-feature:hover {
    background: rgba(109, 45, 157, 0.05);
    transform: translateX(5px);
}

.demo-feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6D2D9D 0%, #4A90E2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.demo-feature-icon i {
    color: white;
    font-size: 1.2rem;
}

.demo-feature-content h5 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.demo-feature-content p {
    color: #6c757d;
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.demo-info-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
}

.demo-duration,
.demo-format {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: #495057;
    font-size: 0.9rem;
}

.demo-duration i,
.demo-format i {
    color: #6D2D9D;
    width: 20px;
}

.demo-form-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.demo-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6D2D9D, #4A90E2, #50C878);
}

.demo-form-title {
    color: #2c3e50;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.demo-form-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.demo-form .form-label {
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.5rem;
}

.demo-form .form-control,
.demo-form .form-select {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.demo-form .form-control:focus,
.demo-form .form-select:focus {
    border-color: #6D2D9D;
    box-shadow: 0 0 0 0.2rem rgba(109, 45, 157, 0.25);
}

/* Time Slots Styling */
.time-slots-grid {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.time-slot-group {
    margin-bottom: 1.5rem;
}

.time-slot-group:last-child {
    margin-bottom: 0;
}

.time-slot-day {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.time-slot-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.time-slot-option {
    position: relative;
    cursor: pointer;
}

.time-slot-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.time-slot-label {
    display: block;
    padding: 0.75rem 1.25rem;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    color: #495057;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 80px;
}

.time-slot-option input[type="radio"]:checked + .time-slot-label {
    background: linear-gradient(135deg, #6D2D9D 0%, #4A90E2 100%);
    color: white;
    border-color: #6D2D9D;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(109, 45, 157, 0.3);
}

.time-slot-option:hover .time-slot-label {
    border-color: #6D2D9D;
    transform: translateY(-1px);
}

.demo-form .form-check-input:checked {
    background-color: #6D2D9D;
    border-color: #6D2D9D;
}

.demo-form .form-check-label {
    font-weight: 500;
    color: #495057;
}

.demo-form .btn-primary {
    background: linear-gradient(135deg, #6D2D9D 0%, #4A90E2 100%);
    border: none;
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(109, 45, 157, 0.3);
}

.demo-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(109, 45, 157, 0.4);
}

/* Demo Benefits Section */
.demo-benefits-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.benefit-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6D2D9D 0%, #4A90E2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.benefit-icon i {
    color: white;
    font-size: 2rem;
}

.benefit-title {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.benefit-description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .demo-form-card {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .demo-form-title {
        font-size: 1.5rem;
    }
    
    .demo-form-subtitle {
        font-size: 1rem;
    }
    
    .time-slot-options {
        justify-content: center;
    }
    
    .time-slot-label {
        min-width: 70px;
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .demo-info-card {
        margin-bottom: 2rem;
    }
}
.contact-form-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6D2D9D, #4A90E2, #50C878);
}

.form-title {
    color: #2c3e50;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.contact-form .form-label {
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.5rem;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: #6D2D9D;
    box-shadow: 0 0 0 0.2rem rgba(109, 45, 157, 0.25);
}

.contact-form .form-check-input:checked {
    background-color: #6D2D9D;
    border-color: #6D2D9D;
}

.contact-form .form-check-label {
    font-weight: 500;
    color: #495057;
}

.contact-form .btn-primary {
    background: linear-gradient(135deg, #6D2D9D 0%, #4A90E2 100%);
    border: none;
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(109, 45, 157, 0.3);
}

.contact-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(109, 45, 157, 0.4);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-form-card {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .form-title {
        font-size: 1.5rem;
    }
    
    .form-subtitle {
        font-size: 1rem;
    }
}
.case-studies-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.case-study-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.case-study-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.case-study-header {
    background: linear-gradient(135deg, #6D2D9D 0%, #8B5FBF 100%);
    padding: 1.5rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.case-study-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

.case-study-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.case-study-icon i {
    font-size: 1.5rem;
    color: white;
}

.case-study-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    display: inline-block;
}

.case-study-body {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.case-study-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.case-study-description {
    color: #6c757d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.case-study-challenges,
.case-study-results {
    margin-bottom: 1.5rem;
}

.case-study-challenges h6,
.case-study-results h6 {
    color: #6D2D9D;
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.case-study-challenges ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.case-study-challenges li {
    padding: 0.25rem 0;
    color: #6c757d;
    font-size: 0.9rem;
    position: relative;
    padding-left: 1.5rem;
}

.case-study-challenges li::before {
    content: '•';
    color: #dc3545;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 0.75rem;
}

.result-item {
    text-align: center;
    padding: 0.75rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.result-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #6D2D9D;
    margin-bottom: 0.25rem;
}

.result-label {
    font-size: 0.8rem;
    color: #6c757d;
    font-weight: 500;
}

.case-study-testimonial {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #6D2D9D;
    margin-top: auto;
}

.testimonial-text {
    font-style: italic;
    color: #495057;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial-author strong {
    color: #6D2D9D;
    font-weight: 600;
}

.testimonial-author span {
    color: #6c757d;
    font-size: 0.9rem;
    display: block;
    margin-top: 0.25rem;
}

/* Responsive Case Studies */
@media (max-width: 768px) {
    .case-study-body {
        padding: 1.5rem;
    }
    
    .case-study-title {
        font-size: 1.2rem;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .result-item {
        padding: 0.5rem;
    }
    
    .result-number {
        font-size: 1.3rem;
    }
    
    .case-study-testimonial {
        padding: 1rem;
    }
}

/* About Hero */
.about-hero-signature {
    position: relative;
    min-height: 60vh;
    padding: 130px 0 110px;
    overflow: hidden;
    color: #fff;
}

.about-hero-signature::before,
.about-hero-signature::after {
    content: '';
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    filter: blur(85px);
    opacity: 0.45;
    z-index: 1;
}

.about-hero-signature::before {
    top: -80px;
    left: -50px;
    background: rgba(109, 45, 157, 0.8);
}

.about-hero-signature::after {
    bottom: -90px;
    right: -40px;
    background: rgba(52, 148, 230, 0.7);
}

.about-hero-signature .hero-overlay {
    background: radial-gradient(circle at 20% 20%, rgba(109, 45, 157, 0.65), transparent 55%),
                radial-gradient(circle at 80% 20%, rgba(52, 148, 230, 0.55), transparent 55%),
                linear-gradient(135deg, rgba(17, 12, 35, 0.95) 0%, rgba(42, 22, 78, 0.85) 60%, rgba(22, 21, 56, 0.92) 100%);
}

.about-hero-signature .container {
    position: relative;
    z-index: 2;
}

.about-hero-signature .hero-action-buttons .btn {
    min-width: 200px;
}

/* Company Information */
.company-info-section {
    background: #ffffff;
}

.info-card {
    height: 100%;
    border-radius: 18px;
    padding: 1.6rem;
    background: linear-gradient(135deg, #ffffff 0%, #f6f2ff 45%, #f9fbff 100%);
    border: 1px solid rgba(109, 45, 157, 0.12);
    box-shadow: 0 18px 32px rgba(109, 45, 157, 0.08);
    display: grid;
    gap: 0.75rem;
}

.info-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(109, 45, 157, 0.2);
    color: #6D2D9D;
    display: grid;
    place-items: center;
    font-size: 1.35rem;
}

.info-card p {
    color: #555;
    margin-bottom: 0.4rem;
}

.info-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
    color: #6c6c6c;
    display: grid;
    gap: 0.35rem;
    font-size: 0.92rem;
}

.info-card ul li::before {
    content: '\2022';
    color: #6D2D9D;
    font-weight: 700;
    display: inline-block;
    width: 0.85rem;
}

/* Who We Are */
.who-we-are-section {
    background: #ffffff;
}

.who-card {
    background: linear-gradient(135deg, #f8f4ff 0%, #f4f8ff 100%);
    border-radius: 18px;
    padding: 1.6rem;
    border: 1px solid rgba(109, 45, 157, 0.1);
    box-shadow: 0 18px 30px rgba(109, 45, 157, 0.08);
}

.who-card h5 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.who-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.5rem;
    color: #555;
}

.who-list li {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
}

.who-list li i {
    color: #6D2D9D;
    margin-top: 0.2rem;
}

/* Team Section */
.team-section {
    background: #f7f4fb;
}

.team-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 1.6rem;
    border: 1px solid rgba(109, 45, 157, 0.12);
    box-shadow: 0 18px 32px rgba(109, 45, 157, 0.08);
    text-align: center;
    height: 100%;
}

.team-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #6D2D9D;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
}

.team-avatar::after {
    content: attr(data-initials);
}

.team-role {
    display: block;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(109, 45, 157, 0.8);
    margin-bottom: 0.75rem;
}

.team-card p {
    color: #555;
    font-size: 0.95rem;
}

@media (max-width: 991px) {
    .about-hero-signature {
        padding: 110px 0 80px;
        text-align: center;
    }

    .about-hero-signature .hero-action-buttons {
        justify-content: center;
    }

    .about-hero-signature .hero-action-buttons .btn {
        width: 100%;
        max-width: 260px;
    }

    .who-card {
        margin-top: 1.5rem;
    }

    .company-info-section .info-card,
    .team-section .team-card {
        height: 100%;
    }
}

@media (max-width: 575px) {
    .about-hero-signature {
        padding: 100px 0 70px;
    }

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

    .who-card {
        padding: 1.3rem;
    }

    .team-card {
        padding: 1.4rem;
    }
}

/* Certificate Overlay */
.certificate-overlay-view,
.certificate-overlay-content,
.certificate-overlay-image,
.certificate-overlay-title,
.certificate-overlay-close {
    display: contents;
}
body.certificate-overlay-open {
    overflow: auto;
}
@keyframes zoomIn {
    from {}
    to {}
}

@media (max-width: 768px) {
    .certificate-image {
        padding: 1rem;
    }
}

@media (max-width: 576px) {
    .certificate-image {
        padding: 0.75rem;
    }
}

.about-overview-section {
    background: #ffffff;
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
}

.about-summary {
    display: grid;
    gap: 1.3rem;
}

.summary-points {
    display: grid;
    gap: 0.6rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.summary-points li {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
    color: #555;
}

.summary-points li i {
    color: #6D2D9D;
    margin-top: 0.25rem;
}

.info-grid {
    display: grid;
    gap: 1rem;
}

@media (min-width: 992px) {
    .info-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.team-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.team-chip {
    padding: 0.6rem 1rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(109, 45, 157, 0.12), rgba(52, 148, 230, 0.12));
    border: 1px solid rgba(109, 45, 157, 0.2);
    color: #45236b;
    font-weight: 600;
    font-size: 0.9rem;
}

.team-chip strong {
    display: block;
}

.team-chip span {
    display: block;
    font-weight: 500;
    font-size: 0.82rem;
    color: #5b4e87;
}

.hero-credibility {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
    margin-top: 1rem;
}

.credibility-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
}

.credibility-chip i {
    font-size: 1rem;
    color: #43CEA2;
}

@media (max-width: 991px) {
    .about-overview-section {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }

    .about-summary {
        text-align: center;
    }

    .summary-points li {
        justify-content: center;
    }

    .team-inline {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .about-overview-section {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .team-chip {
        width: 100%;
        justify-content: center;
    }
}

.summary-heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: #6D2D9D;
    margin-top: 0.5rem;
    margin-bottom: 0.6rem;
}

.summary-points li strong {
    font-weight: 700;
    color: #4b2c76;
}

.info-grid {
    display: grid;
    gap: 1rem;
}


.about-identity-section {
    background: #ffffff;
}

.hero-pillars {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.pillar-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 1.1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
}

.pillar-chip i {
    color: #43CEA2;
    font-size: 1rem;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.stat-chip {
    min-width: 150px;
    padding: 1rem 1.1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: grid;
    gap: 0.25rem;
}

.stat-chip strong {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
}

.stat-chip span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.88rem;
}

.hero-insight-card {
    background: rgba(17, 12, 35, 0.85);
    border-radius: 20px;
    padding: 1.9rem 2rem;
    border: 1px solid rgba(109, 45, 157, 0.35);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
    display: grid;
    gap: 1.1rem;
}

.hero-insight-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-insight-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(109, 45, 157, 0.3);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 1.4rem;
}

.hero-insight-card h4 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.hero-insight-card p {
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

.hero-insight-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.65rem;
}

.hero-insight-list li {
    display: flex;
    gap: 0.6rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.6;
}

.hero-insight-list li i {
    color: #6D2D9D;
    margin-top: 0.25rem;
}

.hero-trust-note {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 0.75rem 1rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.86rem;
    letter-spacing: 0.01em;
}

.about-summary .section-subheading {
    font-size: 1rem;
    font-weight: 700;
    color: #6D2D9D;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.team-highlight {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.4rem;
}

.team-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 1.1rem;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(109, 45, 157, 0.12), rgba(52, 148, 230, 0.12));
    border: 1px solid rgba(109, 45, 157, 0.18);
    color: #4b2c76;
    font-weight: 600;
    font-size: 0.88rem;
}

.team-badge i {
    color: #6D2D9D;
}

.identity-grid {
    --identity-bg: linear-gradient(135deg, rgba(109, 45, 157, 0.08), rgba(52, 148, 230, 0.05));
}

.identity-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 1.5rem 1.6rem;
    border: 1px solid rgba(109, 45, 157, 0.14);
    box-shadow: 0 18px 30px rgba(109, 45, 157, 0.08);
    display: grid;
    gap: 0.65rem;
    position: relative;
    overflow: hidden;
    min-height: 100%;
}

.identity-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--identity-bg);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.identity-card:hover::after {
    opacity: 1;
}

.identity-card > * {
    position: relative;
    z-index: 1;
}

.identity-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(109, 45, 157, 0.18);
    display: grid;
    place-items: center;
    color: #6D2D9D;
    font-size: 1.25rem;
}

.identity-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0;
    color: #2c1d4f;
}

.identity-card p {
    color: #57546b;
    margin: 0;
    font-size: 0.94rem;
}

.identity-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.35rem;
    font-size: 0.88rem;
    color: #655f76;
}

.identity-card ul li::before {
    content: '\2022';
    color: #6D2D9D;
    font-weight: 700;
    display: inline-block;
    width: 0.85rem;
}

.about-why-section {
    background: #f6f3fb;
}

.why-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 1.7rem 1.8rem;
    border: 1px solid rgba(109, 45, 157, 0.14);
    box-shadow: 0 20px 36px rgba(109, 45, 157, 0.1);
    display: grid;
    gap: 0.75rem;
    height: 100%;
}

.why-badge {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: rgba(109, 45, 157, 0.1);
    color: #6D2D9D;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.why-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c1d4f;
    margin: 0;
}

.why-card p {
    color: #55536a;
    font-size: 0.95rem;
    margin: 0;
}

.why-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.35rem;
    font-size: 0.88rem;
    color: #5f5b72;
}

.why-card ul li::before {
    content: '\2022';
    color: #6D2D9D;
    font-weight: 700;
    display: inline-block;
    width: 0.9rem;
}

.about-journey-section {
    background: #ffffff;
}

.journey-intro {
    display: grid;
    gap: 1.3rem;
}

.journey-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.journey-stat {
    flex: 1 1 160px;
    padding: 1rem 1.1rem;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(109, 45, 157, 0.1), rgba(52, 148, 230, 0.08));
    border: 1px solid rgba(109, 45, 157, 0.2);
    display: grid;
    gap: 0.2rem;
}

.journey-stat strong {
    font-size: 1.35rem;
    color: #6D2D9D;
    font-weight: 700;
}

.journey-stat span {
    color: #4d4763;
    font-size: 0.85rem;
}

.journey-timeline {
    position: relative;
    padding-left: 2.2rem;
    border-left: 2px dashed rgba(109, 45, 157, 0.3);
    display: grid;
    gap: 1.6rem;
}

.journey-item {
    display: flex;
    gap: 1.2rem;
    position: relative;
}

.journey-year {
    position: absolute;
    left: -3.1rem;
    top: 0.2rem;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    background: #6D2D9D;
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 700;
}

.journey-content {
    background: #f9f6ff;
    border: 1px solid rgba(109, 45, 157, 0.14);
    border-radius: 16px;
    padding: 1.2rem 1.3rem;
    box-shadow: 0 14px 26px rgba(109, 45, 157, 0.08);
}

.journey-content h5 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #2c1d4f;
    margin-bottom: 0.4rem;
}

.journey-content p {
    color: #5c5870;
    margin: 0;
    font-size: 0.92rem;
}

@media (max-width: 991px) {
    .about-hero-signature {
        padding: 120px 0 90px;
    }

    .hero-stats {
        justify-content: center;
    }

    .about-identity-section {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .about-summary {
        text-align: center;
    }

    .summary-points li {
        justify-content: center;
    }

    .team-highlight {
        justify-content: center;
    }

    .journey-timeline {
        margin-top: 1.5rem;
    }
}

@media (max-width: 576px) {
    .about-hero-signature {
        padding: 110px 0 80px;
    }

    .hero-pillars {
        justify-content: center;
    }

    .hero-stats {
        gap: 0.75rem;
    }

    .stat-chip {
        min-width: 120px;
        text-align: center;
    }

    .team-badge {
        width: 100%;
        justify-content: center;
    }

    .journey-timeline {
        padding-left: 1.4rem;
    }

    .journey-year {
        left: -2rem;
    }
}

.about-hero-animated {
    background: linear-gradient(140deg, #14043b 0%, #1d0b4d 35%, #0f1f5e 100%);
}

.about-hero-animation {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.pulse-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(109, 45, 157, 0.45);
    opacity: 0.65;
    animation: heroPulse 12s linear infinite;
    mix-blend-mode: screen;
    box-shadow: 0 0 25px rgba(109, 45, 157, 0.45);
}

.pulse-circle-1 {
    width: 420px;
    height: 420px;
    top: -160px;
    left: -110px;
    border-color: rgba(109, 45, 157, 0.5);
}

.pulse-circle-2 {
    width: 320px;
    height: 320px;
    bottom: -130px;
    right: 15%;
    animation-delay: 2s;
    border-color: rgba(87, 140, 255, 0.45);
    box-shadow: 0 0 30px rgba(87, 140, 255, 0.35);
}

.pulse-circle-3 {
    width: 260px;
    height: 260px;
    top: 30%;
    right: -120px;
    animation-delay: 4s;
    border-color: rgba(155, 89, 182, 0.5);
    box-shadow: 0 0 28px rgba(155, 89, 182, 0.4);
}

.floating-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.9), rgba(109, 45, 157, 0.75) 45%, rgba(35, 60, 178, 0.65) 75%, rgba(20, 10, 60, 0.65) 100%);
    opacity: 0.82;
    box-shadow: 0 20px 55px rgba(18, 6, 60, 0.45);
    animation: orbFloat 16s ease-in-out infinite, orbGlow 12s linear infinite;
}

.floating-orb-1 {
    width: 160px;
    height: 160px;
    top: 15%;
    left: 12%;
}

.floating-orb-2 {
    width: 120px;
    height: 120px;
    top: 55%;
    left: 25%;
    animation-delay: 3s;
}

.floating-orb-3 {
    width: 200px;
    height: 200px;
    top: 30%;
    right: 18%;
    animation-delay: 6s;
    background: radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.9), rgba(46, 204, 113, 0.6) 45%, rgba(26, 118, 189, 0.6) 70%, rgba(18, 10, 60, 0.65) 100%);
}

.floating-orb-4 {
    width: 140px;
    height: 140px;
    bottom: 10%;
    right: 5%;
    animation-delay: 1s;
    background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.85), rgba(255, 123, 207, 0.6) 45%, rgba(118, 72, 191, 0.65) 70%, rgba(18, 10, 60, 0.6) 100%);
}

@keyframes heroPulse {
    0% {
        transform: scale(0.8);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.15);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.45);
        opacity: 0;
    }
}

@keyframes orbFloat {
    0%, 100% {
        transform: translate3d(0, 0, 0);
    }
    33% {
        transform: translate3d(15px, -25px, 0) scale(1.05);
    }
    66% {
        transform: translate3d(-20px, 30px, 0) scale(0.95);
    }
}

@keyframes orbGlow {
    0% {
        filter: hue-rotate(0deg) drop-shadow(0 0 18px rgba(109, 45, 157, 0.6));
    }
    50% {
        filter: hue-rotate(40deg) drop-shadow(0 0 22px rgba(87, 140, 255, 0.55));
    }
    100% {
        filter: hue-rotate(0deg) drop-shadow(0 0 18px rgba(155, 89, 182, 0.6));
    }
}

/* Chat Widget FAB Button */
.fab-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6D2D9D 0%, #9B59B6 100%);
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(109, 45, 157, 0.4);
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.fab-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(109, 45, 157, 0.6);
}

.fab-button:active {
    transform: scale(0.95);
}

@media (max-width: 768px) {
    
    .fab-button {
        bottom: 15px;
        right: 15px;
        width: 55px;
        height: 55px;
        font-size: 20px;
    }
}

