:root {
    /* Brand Colors */
    --primary-color: #10b981;
    /* Emerald Green */
    --primary-dark: #059669;
    --secondary-color: #0f172a;
    /* Navy */
    --accent-color: #0dcaf0;
    /* Cyan */

    /* Functional Colors */
    --text-dark: #334155;
    --text-light: #94a3b8;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;

    /* Shadows & Effects */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Bootstrap Overrides */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.border-primary {
    border-color: var(--primary-color) !important;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    color: var(--secondary-color);
}

main {
    flex: 1;
}

/* Glassmorphism Utility */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: var(--glass-border);
    box-shadow: var(--shadow-sm);
}

/* Navbar */
.navbar {
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md) !important;
    padding: 0.5rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1.1rem;
        font-weight: 700;
    }
}

.nav-link {
    font-weight: 500;
    margin: 0 5px;
    color: var(--secondary-color) !important;
    transition: all 0.3s ease;
    position: relative;
}

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

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

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border: none;
    box-shadow: 0 4px 6px rgba(32, 201, 151, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(32, 201, 151, 0.4);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

.btn-outline-light {
    border-width: 2px;
}

.btn-outline-light:hover {
    background-color: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* New Hero Section */
.hero-section-new {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #d1fae5 100%);
    z-index: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.8), rgba(13, 202, 240, 0.6));
    backdrop-filter: blur(15px);
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 0 40px rgba(16, 185, 129, 0.4), 0 0 60px rgba(13, 202, 240, 0.3);
    border: 2px solid rgba(16, 185, 129, 0.3);
}

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

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 15%;
    animation-delay: 1s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 20%;
    animation-delay: 2s;
}

.shape-4 {
    width: 250px;
    height: 250px;
    top: 30%;
    right: 30%;
    animation-delay: 3s;
}

.shape-5 {
    width: 180px;
    height: 180px;
    bottom: 10%;
    right: 10%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1);
        box-shadow: 0 0 40px rgba(16, 185, 129, 0.4), 0 0 60px rgba(13, 202, 240, 0.3);
    }
    50% { 
        transform: translateY(-20px) rotate(180deg) scale(1.1);
        box-shadow: 0 0 60px rgba(16, 185, 129, 0.6), 0 0 80px rgba(13, 202, 240, 0.5);
    }
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.05), rgba(16, 185, 129, 0.1));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    padding-top: 100px;
    padding-bottom: 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.nabh-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: fit-content;
}

.nabh-logo {
    height: 50px;
    border-radius: 10px;
}

.badge-text {
    color: #0f172a;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
}

.hero-title {
    margin-bottom: 30px;
}

.title-main {
    font-size: 4rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.title-sub {
    font-size: 2.5rem;
    font-weight: 600;
    color: #10b981;
    line-height: 1;
    margin-bottom: 20px;
}

.title-underline {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #0dcaf0);
    border-radius: 2px;
    margin-top: 15px;
}

.hero-tagline {
    margin-bottom: 40px;
}

.tagline-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.tagline-sub {
    font-size: 1.1rem;
    color: black;
    font-style: italic;
}

.hero-features {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 3px solid #059669;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    
}

.feature-item::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    
    border-radius: 15px;
    z-index: -1;
    animation: movingBorder 2s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
    filter: blur(1px);
}

.feature-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 13px;
    z-index: -1;
}

.feature-item:hover::before,
.feature-item.active::before {
    opacity: 1;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #10b981, #0dcaf0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.feature-item span {
    color: #0f172a;
    font-weight: 500;
    font-size: 0.95rem;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-hero {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-hero.btn-primary {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.btn-hero.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
}

.btn-hero.btn-secondary {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-hero.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* Medical Showcase Styles */
.medical-showcase {
    position: relative;
    height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 5;
    gap: 30px;
}

/* Body Scanner Animation */
.body-scanner {
    position: relative;
    width: 250px;
    height: 350px;
}

.scanner-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.human-silhouette {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(13, 202, 240, 0.1));
    backdrop-filter: blur(10px);
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.human-silhouette::before {
    content: '';
    position: absolute;
    width: 80px;
    height: 200px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(13, 202, 240, 0.1));
    border-radius: 40px 40px 20px 20px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.scanning-line {
    position: absolute;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #10b981, transparent);
    animation: scan 3s linear infinite;
}

.scan-point {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.8);
}

.scan-1 {
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    animation: pulse 2s ease-in-out infinite;
}

.scan-2 {
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    animation: pulse 2s ease-in-out infinite 0.5s;
}

.scan-3 {
    top: 70%;
    left: 50%;
    transform: translateX(-50%);
    animation: pulse 2s ease-in-out infinite 1s;
}

.scanner-ring {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 25px;
    animation: ringPulse 3s ease-in-out infinite;
}

/* Imaging Services Grid */
.imaging-services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 400px;
}

.service-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(16, 185, 129, 0.2);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.3);
    border-color: rgba(16, 185, 129, 0.5);
}

.service-card .service-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #10b981, #0dcaf0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 15px;
}

.service-card h4 {
    color: #0f172a;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.service-card p {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
}

.service-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(13, 202, 240, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-glow {
    opacity: 1;
}

/* Technology Features */
.tech-features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.tech-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 10px 15px;
    border-radius: 25px;
    border: 1px solid rgba(16, 185, 129, 0.2);
    font-size: 0.9rem;
    color: #0f172a;
    font-weight: 500;
}

.tech-feature i {
    color: #10b981;
    font-size: 1.1rem;
}

.visual-card {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.card-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.main-image {
    width: 100%;
    height: auto;
    display: block;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.3), rgba(13, 202, 240, 0.2));
}

.floating-cards {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.float-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    animation: cardFloat 3s ease-in-out infinite;
}

.float-card i {
    color: #10b981;
    font-size: 1.2rem;
}

.float-card span {
    color: #0f172a;
    font-weight: 600;
    font-size: 0.9rem;
}

.card-1 {
    top: 20px;
    right: -30px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 30px;
    left: -40px;
    animation-delay: 1s;
}

.card-3 {
    top: 50%;
    right: -50px;
    animation-delay: 2s;
}

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

@keyframes scan {
    0% { top: 0; }
    100% { top: 100%; }
}

@keyframes ringPulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.3;
    }
    50% { 
        transform: scale(1.02);
        opacity: 0.6;
    }
}

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

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
}

.scroll-text {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.scroll-arrow {
    color: #0f172a;
    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); }
}

/* Responsive Design */
/* Additional Animations */
@keyframes movingBorder {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

/* Enhanced hover effects */
.feature-item.slideInLeft {
    animation: slideInLeft 0.8s ease-out forwards;
}

.hero-visual .visual-card {
    animation: slideInRight 1s ease-out forwards;
}

.btn-hero:hover {
    animation: pulse 0.6s ease-in-out;
}

/* Scroll indicator hide on scroll */
.scroll-indicator {
    transition: opacity 0.3s ease;
}

.scroll-indicator.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .title-main {
        font-size: 2.5rem;
    }
    
    .title-sub {
        font-size: 1.8rem;
    }
    
    .hero-visual {
        height: 400px;
        margin-top: 50px;
    }
    
    .float-card {
        transform: scale(0.8);
    }
    
    .card-1 {
        right: 10px;
    }
    
    .card-2 {
        left: 10px;
    }
    
    .card-3 {
        right: 10px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .nabh-badge {
        flex-direction: column;
        text-align: center;
    }
    
    .medical-showcase {
        height: auto;
        gap: 20px;
    }
    
    .body-scanner {
        width: 200px;
        height: 280px;
    }
    
    .imaging-services {
        grid-template-columns: 1fr;
        max-width: 300px;
        gap: 15px;
    }
    
    .service-card {
        padding: 15px;
    }
    
    .service-card .service-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .service-card h4 {
        font-size: 1rem;
    }
    
    .tech-features {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}

/* Gallery Background */
.hero-gallery-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.gallery-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
}

.gallery-layer-1 {
    top: 10%;
    animation: driftRight 25s linear infinite;
}

.gallery-layer-2 {
    top: 50%;
    animation: driftLeft 30s linear infinite;
    animation-delay: -5s;
}

.gallery-img {
    height: 200px;
    width: 300px;
    object-fit: cover;
    border-radius: 15px;
    opacity: 0.15;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
    transition: all 0.5s ease;
}

@media (max-width: 768px) {
    .gallery-img {
        height: 150px;
        width: 200px;
        opacity: 0.1;
    }
}

@media (max-width: 480px) {
    .gallery-img {
        height: 120px;
        width: 180px;
        opacity: 0.08;
    }
}

.gallery-img:hover {
    opacity: 0.25;
    transform: scale(1.05);
}

@keyframes driftRight {
    0% {
        transform: translateX(-100px);
    }
    100% {
        transform: translateX(calc(100vw + 100px));
    }
}

@keyframes driftLeft {
    0% {
        transform: translateX(calc(100vw + 100px));
    }
    100% {
        transform: translateX(-100px);
    }
}



.testimonial-scroll-wrapper {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.testimonial-scroll-track {
    display: flex;
    align-items: center;
    height: 100%;
    animation: scrollTestimonials 20s linear infinite;
    width: fit-content;
}

.testimonial-item {
    flex-shrink: 0;
    width: 400px;
    padding: 20px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 15px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.testimonial-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Responsive Testimonials */
@media (max-width: 768px) {
    .testimonial-item {
        width: 300px;
        padding: 15px 20px;
        margin: 0 10px;
    }
    
    .testimonial-content {
        font-size: 12px;
    }
    
    .testimonial-quote {
        font-size: 20px;
    }
    
    .testimonial-hero-section {
        height: 150px;
        margin: 15px 0;
    }
}

@media (max-width: 480px) {
    .testimonial-item {
        width: 250px;
        padding: 12px 15px;
        margin: 0 8px;
    }
    
    .testimonial-content {
        font-size: 11px;
    }
    
    .testimonial-quote {
        font-size: 18px;
    }
    
    .testimonial-hero-section {
        height: 140px;
    }
}

.testimonial-quote {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
}

.testimonial-content {
    font-size: 14px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 10px 0;
    font-style: italic;
}

.testimonial-author {
    font-size: 12px;
    color: var(--accent-color);
    font-weight: 600;
    margin-top: 8px;
}

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

/* Achievement Showcase Styles */
.achievement-showcase {
    position: relative;
    margin: 30px 0;
    padding: 20px;
    perspective: 1000px;
}

.achievement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.achievement-item {
    position: relative;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 25px;
    overflow: hidden;
    cursor: pointer;
    transform: translateZ(50px);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: translateY(50px);
}

.achievement-item.active {
    opacity: 1;
    transform: translateY(0);
}

.achievement-item:hover {
    transform: translateY(-10px) rotateX(5deg) scale(1.05);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.achievement-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
    animation: pulse 2s infinite;
    z-index: 2;
}

.achievement-label {
    display: block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--accent-color);
    margin-bottom: 8px;
    text-transform: uppercase;
    opacity: 0;
    animation: slideInLeft 0.8s forwards;
    animation-delay: 0.5s;
}

.achievement-text {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    color: white;
    margin: 0;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.achievement-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(13, 202, 240, 0.1) 0%, 
        rgba(16, 185, 129, 0.1) 50%, 
        rgba(13, 202, 240, 0.1) 100%);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.achievement-item:hover .achievement-glow {
    opacity: 1;
    animation: glow 1.5s ease-in-out infinite alternate;
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(13, 202, 240, 0.7);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 0 10px rgba(13, 202, 240, 0);
    }
}

@keyframes glow {
    0% {
        box-shadow: inset 0 0 20px rgba(13, 202, 240, 0.3);
    }
    100% {
        box-shadow: inset 0 0 30px rgba(16, 185, 129, 0.3), 0 0 30px rgba(16, 185, 129, 0.2);
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Progressive appearance for achievement items */
.achievement-item[data-achievement="1"] {
    animation-delay: 0.2s;
}

.achievement-item[data-achievement="2"] {
    animation-delay: 0.4s;
}

.achievement-item[data-achievement="3"] {
    animation-delay: 0.6s;
}

.achievement-item[data-achievement="4"] {
    animation-delay: 0.8s;
}

/* Responsive Achievements */
@media (max-width: 768px) {
    .achievement-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
    }
    
    .achievement-item {
        padding: 20px;
    }
    
    .achievement-text {
        font-size: 14px;
    }
    
    .achievement-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .achievement-text {
        font-size: 13px;
    }
    
    .achievement-item {
        padding: 18px;
    }
    
    .achievement-label {
        font-size: 9px;
        margin-bottom: 6px;
    }
}

/* Enhanced Hero Content Styling */
.hero-tagline {
   
    background-clip: text;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
    font-weight: 600;
}

.hero-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Legacy Testimonial Slider (kept for compatibility) */
.testimonial-slider {
    height: 60px;
    position: relative;
    overflow: hidden;
}

.testimonial-text {
    position: absolute;
    width: 100%;
    text-align: center;
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.6s ease-in-out;
    margin: 0;
    color: black !important;
    font-weight: bold;
}

.testimonial-text.active {
    opacity: 1;
    transform: translateX(0);
}

.testimonial-text.exit-left {
    opacity: 0;
    transform: translateX(-100px);
}

.hero-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(32, 201, 151, 0.3);
    border-radius: 50%;
    top: -50px;
    left: -50px;
    filter: blur(80px);
}

.hero-section::after {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background: rgba(13, 202, 240, 0.2);
    border-radius: 50%;
    bottom: 50px;
    right: -50px;
    filter: blur(60px);
}

/* Cards */
.service-card {
    background: white;
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--primary-color);
    transition: height 0.4s ease;
    z-index: -1;
}

.service-card:hover::before {
    height: 100%;
}

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

.service-card i {
    transition: transform 0.4s ease;
}

.service-card:hover i {
    transform: scale(1.2) rotate(5deg);
    color: var(--primary-dark) !important;
}

/* Footer */
footer {
    background-color: var(--secondary-color) !important;
}

footer a:hover {
    color: var(--primary-color) !important;
    padding-left: 5px;
    transition: all 0.3s ease;
}

/* Chat Message Styles */
.message-sent {
    background-color: #d1e7dd;
    /* Light green for sent messages */
    color: var(--dark-text);
    align-self: flex-end;
    /* Note: Flex alignment handled in parent container utility classes */
}

.message-received {
    background-color: white;
    color: var(--dark-text);
    align-self: flex-start;
}

/* Utilities */
.tracking-wider {
    letter-spacing: 2px;
}