/* ============================================
   AR MEDICAL CONSULTANCY - REDESIGN CSS
   Modern Premium Layout
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Accessibility helper: visually hidden but available for screen readers */
.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* ===== DESIGN TOKENS ===== */
:root {
    /* New refined palette */
    --primary: #0f62fe;        /* vivid blue */
    --primary-dark: #0b49c6;
    --primary-light: #eaf4ff;
    --accent: #7c3aed;         /* soft violet accent */
    --accent-light: #f3e9ff;
    --dark: #0b1220;
    --gray-900: #1f2933;
    --gray-700: #4b5563;
    --gray-500: #6b7280;
    --gray-300: #cbd5df;
    --gray-100: #f6f9ff;
    --light: #fbfdff;
    --white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.15);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== GLOBAL STYLES ===== */
html {
    scroll-behavior: smooth;
}

body {
    /* Use Poppins for headings and Inter for body (set in HTML already) */
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
    color: var(--gray-900);
    background: linear-gradient(180deg, var(--gray-100), var(--light));
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3rem;
    letter-spacing: -0.6px;
}

h2 {
    font-size: 2rem;
    letter-spacing: -0.3px;
}

h3 {
    font-size: 1.3rem;
}

h4 {
    font-size: 1.1rem;
}

p {
    font-size: 1rem;
    color: var(--gray-700);
}

.section-title {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-500);
    text-align: center;
    margin-bottom: 3rem;
}

.section-header {
    margin-bottom: 3.5rem;
}

/* ===== GRADIENT EFFECTS ===== */
.gradient-highlight {
    background: linear-gradient(90deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

/* ===== BUTTONS ===== */
.btn {
    padding: 0.875rem 1.75rem;
    border: none;
    border-radius: var(--radius-md);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: white;
    box-shadow: 0 12px 40px rgba(12,74,224,0.12);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 20px 60px rgba(12,74,224,0.14);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-dark);
    border: 2px solid rgba(15,98,254,0.08);
}

.btn-secondary:hover {
    background: rgba(15,98,254,0.06);
    transform: translateY(-2px) scale(1.01);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0.7), rgba(255,255,255,0.85));
    backdrop-filter: blur(6px);
    z-index: 1000;
    box-shadow: 0 6px 30px rgba(15, 98, 254, 0.06);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.75rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    cursor: pointer;
    font-weight: 700;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), #004fa3);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}


.logo-brand {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary);
}

.logo-tagline {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--gray-500);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.75rem;
}

.nav-link {
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    padding: 0.25rem 0.5rem;
    border-radius: 8px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background: rgba(15,98,254,0.06);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    border-radius: 1px;
}

.nav-cta {
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: white;
    border: none;
    padding: 0.6rem 1.25rem;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
    box-shadow: 0 8px 30px rgba(12,74,224,0.12);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.4);
}


.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
}

.hamburger span {
    width: 26px;
    height: 3px;
    background: var(--gray-700);
    border-radius: 3px;
    transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(245,248,255,0.6), rgba(250,255,255,0.9));
    margin-top: 72px;
}

.hero-startup {
    padding: 0px 0 48px;
}

.hero-startup-inner {
    padding: 0;
}

.hero-startup-grid {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 2.5rem;
    align-items: center;
}

.hero-left {
    max-width: 640px;
}

.hero-beta {
    display: inline-block;
    background: rgba(124,58,237,0.12);
    color: var(--accent);
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.hero-title.startup {
    font-size: 2.2rem;
    line-height: 1.05;
    margin-bottom: 0.75rem;
}

.hero-sub {
    color: var(--gray-700);
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
}

.trust-logos {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-700);
    font-size: 0.95rem;
}

.trust-logos strong { font-weight: 800; color: var(--dark); }

.hero-right .hero-illustration {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-right .hero-illustration picture {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 25px 80px rgba(12, 74, 224, 0.15);
    transition: transform 0.6s ease, filter 0.6s ease;
    filter: brightness(1) contrast(1.05) saturate(1.1);
}

.hero-image:hover {
    transform: scale(1.03) translateY(-5px);
    filter: brightness(1.05) contrast(1.1) saturate(1.15);
    box-shadow: 0 35px 100px rgba(12, 74, 224, 0.2);
}

.hero-right svg { width: 100%; height: auto; border-radius: 12px; box-shadow: 0 20px 60px rgba(12,74,224,0.06); }

.features-row {
    margin-top: 2.25rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.feature-item {
    background: white;
    padding: 1.2rem 1rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(31,41,51,0.04);
    border: 1px solid rgba(15,98,254,0.04);
}

.feature-icon {
    font-size: 1.6rem;
    color: var(--primary);
    display: inline-block;
    margin-bottom: 0.6rem;
}

.feature-item h4 { font-size: 1rem; margin-bottom: 0.4rem; }
.feature-item p { font-size: 0.9rem; color: var(--gray-700); }

.hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 0;
}
.gradient-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px); /* slightly less blur for stronger color */
    opacity: 0.6;       /* increase visibility */
    animation: blobMove 8s ease-in-out infinite;
}

.blob-1 {
    width: 420px;
    height: 420px;
    background: linear-gradient(135deg, rgba(15,98,254,0.4), rgba(124,58,237,0.3));
    top: -120px;
    right: -100px;
    animation-delay: 0s;
}

.blob-2 {
    width: 320px;
    height: 320px;
    background: linear-gradient(135deg, rgba(124,58,237,0.35), rgba(15,98,254,0.25));
    bottom: -60px;
    left: -60px;
    animation-delay: 3s;
}

.blob-3 {
    width: 260px;
    height: 260px;
    background: linear-gradient(135deg, rgba(15,98,254,0.25), rgba(124,58,237,0.2));
    bottom: 90px;
    right: 12%;
    animation-delay: 6s;
}

@keyframes blobMove {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(30px, -30px); }
    66% { transform: translate(-20px, 20px); }
}

.hero-container {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    border: 1px solid var(--primary-light);
    animation: badgeBounce 2s ease-in-out infinite;
}

@keyframes badgeBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-title {
    margin-bottom: 1rem;
    font-size: 2.6rem;
    color: var(--dark);
    line-height: 1.05;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--gray-700);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin: 2.5rem 0;
    padding: 2rem 0;
    border-top: 1px solid var(--gray-300);
    border-bottom: 1px solid var(--gray-300);
}

.stat {
    flex: 1;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--gray-600);
    font-weight: 500;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
    align-items: center;
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    color: var(--primary);
    font-size: 1.5rem;
    box-shadow: 0 4px 16px rgba(15,98,254,0.08);
    border: 1.5px solid var(--primary-light);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    margin-left: 0.2rem;
}
.btn-icon:hover {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 8px 24px rgba(15,98,254,0.14);
}
.whatsapp-btn {
    color: #25d366;
    border-color: #eaf4ff;
}
.whatsapp-btn:hover {
    background: #25d366;
    color: #fff;
}
.gmail-btn {
    color: #ea4335;
    border-color: #eaf4ff;
}
.gmail-btn:hover {
    background: #ea4335;
    color: #fff;
}

.hero-visual {
    position: relative;
    height: 480px;
    animation: slideInRight 0.9s cubic-bezier(.2,.8,.2,1);
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-image-container {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 18px 60px rgba(12,74,224,0.08);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomIn 0.8s ease-out;
}

@keyframes zoomIn {
    from {
        transform: scale(0.95);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1), rgba(0, 102, 204, 0.05));
    pointer-events: none;
}

.illustration {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.illustration img {
    max-width: 100%;
    height: auto;
    opacity: 0.9;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.visual-card {
    position: absolute;
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(250,250,255,0.95));
    border-radius: 12px;
    padding: 1rem 1.25rem;
    box-shadow: 0 10px 30px rgba(15,98,254,0.06);
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-weight: 700;
    color: var(--gray-900);
    border: 1px solid rgba(15,98,254,0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.visual-card i {
    font-size: 1.6rem;
    color: var(--primary);
}

.visual-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 18px 50px rgba(15,98,254,0.08);
}

.card-1 {
    top: 20px;
    left: 0;
    animation: floatCard1 3s ease-in-out infinite;
}

.card-2 {
    top: 50%;
    right: 0;
    animation: floatCard2 3s ease-in-out infinite;
    animation-delay: 0.5s;
}

.card-3 {
    bottom: 0;
    left: 30%;
    animation: floatCard3 3s ease-in-out infinite;
    animation-delay: 1s;
}

@keyframes floatCard1 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes floatCard2 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(15px); }
}

@keyframes floatCard3 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ===== QUICK BENEFITS ===== */
.quick-benefits {
    padding: 80px 0;
    background: var(--gray-100);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: linear-gradient(180deg, var(--white), var(--primary-light));
    padding: 0;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(31,41,51,0.04);
    border: 1px solid rgba(15,98,254,0.06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.benefit-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary), var(--accent));
}

.benefit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.4s ease;
    filter: brightness(0.95) contrast(1.05);
}

.benefit-card:hover .benefit-image img {
    transform: scale(1.08);
    filter: brightness(1) contrast(1.1);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-light), rgba(230, 240, 255, 0.5));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
    margin: 1.5rem auto 1rem;
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--dark);
    padding: 0 1.75rem;
}

.benefit-card p {
    font-size: 0.95rem;
    color: var(--gray-600);
    padding: 0 1.75rem 1.75rem;
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: 100px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.services-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.services-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.08;
}

.services-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(245, 250, 255, 0.95));
}

.services > .container {
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(246,250,255,0.98));
    padding: 0;
    border-radius: 12px;
    border: 1px solid rgba(15,98,254,0.05);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    margin-bottom: 0;
}

.service-image img {
    width: 100%;
    height: 100%;
    
    transition: transform 0.5s ease, filter 0.5s ease;
    filter: brightness(0.9) contrast(1.05) saturate(1.1);
}

.service-card:hover .service-image img {
    transform: scale(1.1) rotate(1deg);
    filter: brightness(1) contrast(1.1) saturate(1.2);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
    z-index: 2;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 70px rgba(12,74,224,0.06);
    border-color: rgba(15,98,254,0.08);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 2rem 2rem 0;
}

.service-number {
    font-size: 2rem;
    font-weight: 800;
    color: #0f62fe;
    line-height: 1;
}

.service-card i {
    font-size: 2rem;
    color: var(--primary);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--dark);
    padding-left: 10px;
}

.service-card > p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-700);
    font-size: 0.95rem;
}

.service-list i {
    color: var(--accent);
    font-weight: 700;
}

/* ===== WHY US SECTION ===== */
.why-us {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--light) 0%, rgba(230, 240, 255, 0.3) 100%);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.why-us-item {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
}

.why-us-item:hover {
    transform: scale(1.05);
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), #004fa3);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 1.5rem;
}

.why-us-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.why-us-item p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    padding: 100px 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.stars i {
    color: #ffc107;
    font-size: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-300);
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #004fa3);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--light);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.card-header{
    padding-left: 10px;
}
.author-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.author-info strong {
    font-size: 0.95rem;
    color: var(--dark);
}

.author-info span {
    font-size: 0.85rem;
    color: var(--gray-500);
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--light) 0%, rgba(230, 240, 255, 0.3) 100%);
    position: relative;
    overflow: hidden;
}

.contact-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.contact-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.06;
}

.contact-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(245, 250, 255, 0.97), rgba(230, 240, 255, 0.97));
}

.contact > .container {
    position: relative;
    z-index: 1;
}

.contact-wrapper {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary);
    box-shadow: var(--shadow-sm);
}

.contact-card i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.contact-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.contact-card p {
    font-size: 0.95rem;
    color: var(--gray-700);
    margin: 0.25rem 0;
}

.contact-card p.small {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.contact-card a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.contact-card a:hover {
    text-decoration: underline;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-md);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.form-buttons .btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-buttons .btn-secondary {
    background: linear-gradient(135deg, #25D366 0%, #20B456 100%);
    color: white;
    border: none;
}

.form-buttons .btn-secondary:hover {
    background: linear-gradient(135deg, #20B456 0%, #1A9945 100%);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.2);
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(180deg, var(--primary-dark), #071432);
    color: rgba(255,255,255,0.9);
    padding: 60px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p {
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul a {
    color: var(--gray-400);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-section ul a:hover {
    color: var(--primary);
    padding-left: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: var(--gray-500);
    font-size: 0.9rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 968px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-visual {
        height: 350px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: white;
        /*padding: 2rem;*/
        gap: 1rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: var(--shadow-md);
        align-items: flex-start;
    }

    .nav-menu.active {
        max-height: 400px;
    }

    .nav-link,
    .nav-cta {
        width: 100%;
    }

    .hero {
        padding: 100px 0 40px;
    }

    h1 {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .services-grid,
    .why-us-grid,
    .benefits-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        display: none;
    }

    .contact-form,
    .contact-info {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .hero {
        padding: 80px 0 30px;
        margin-top: 60px;
    }

    .nav-container {
        padding: 0.75rem 1rem;
    }

   /* .logo-text {
        display: none;
    } */

    .logo-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .logo{
        width: 270px;
    }

    .hero-cta {
        gap: 0.5rem;
    }

    .btn {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .btn-large {
        padding: 0.9rem 1.5rem;
    }

    .visual-card {
        display: none;
    }

    .quick-benefits,
    .services,
    .why-us,
    .testimonials,
    .contact {
        padding: 60px 0;
    }

    .section-subtitle {
        margin-bottom: 2rem;
    }

    .contact-card i {
        font-size: 1.25rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .footer-content {
        gap: 2rem;
    }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===== UTILITIES ===== */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

h1 {
  font-size: clamp(1.8rem, 2.5vw, 3.5rem);
}
h2 {
  font-size: clamp(1.5rem, 2vw, 2.8rem);
}
p {
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
}

.hero-startup-inner {
  padding: 3rem 1rem;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Hero content */
.hero-content {
  max-width: 600px;
}

.hero-title {
  font-size: 2rem;
  margin: 1rem 0;
}

.hero-sub {
  margin-bottom: 1.5rem;
  color: #555;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero-illustration {
  margin-top: 2rem;
}

.hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Features row */
.features-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 3rem;
}

.feature-item {
  flex: 1 1 250px;
  text-align: center;
  padding: 1.5rem;
  border-radius: 8px;
  background: #f9f9f9;
  transition: transform 0.2s ease;
}
.feature-item:hover {
  transform: translateY(-5px);
}
.feature-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #0066cc;
}

/* Larger screens: side-by-side hero */
@media (min-width: 992px) {
  .hero-grid {
    flex-direction: row;
    text-align: left;
    align-items: center;
    justify-content: space-between;
  }

  .hero-content {
    flex: 1;
    max-width: 50%;
    padding-right: 2rem;
  }

  .hero-illustration {
    flex: 1;
    margin-top: 0;
    text-align: right;
  }

  .hero-title {
    font-size: 3rem;
  }
  .TextColor{
    color: blanchedalmond;
  }
  /* Base navbar styles */
.navbar {
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1.5rem;
}

/* Logo section */
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  font-size: 1.5rem;
  color: #0066cc;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-brand {
  font-weight: 700;
  font-size: 1.1rem;
  color: rbg(15,98,254);
}

.logo-tagline {
  font-size: 0.8rem;
  color: #777;
}

/* Navigation menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  text-decoration: none;
  color: #2D3E50;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #0066cc;
}

.nav-cta {
  background: #0066cc;
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.2s ease;
}

.nav-cta:hover {
  background: #004c99;
}

/* Hamburger button */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #2D3E50;
  border-radius: 2px;
}

/* Mobile styles */
@media (max-width: 768px) {
  .nav-menu {
    position: absolute;
    top: 60px;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    width: 200px;
    border: 1px solid #eee;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    display: none; /* hidden by default */
  }

  .nav-menu.show {
    display: flex; /* show when toggled */
  }

  .hamburger {
    display: flex; /* visible only on mobile */
  }
  .navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
}
}
}