/* ==========================================
   DENTADS - ULTRA MODERN STYLESHEET
   ========================================== */

/* ==========================================
   RESET & BASE STYLES
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #1a1a2e;
    line-height: 1.6;
    overflow-x: hidden;
    background: #f8f9fa;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

ul {
    list-style: none;
}

/* ==========================================
   MODERN ANIMATIONS
   ========================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0, 188, 212, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(0, 188, 212, 0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* ==========================================
   CONTAINER & LAYOUT
   ========================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 100px 0;
    position: relative;
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
}

/* ==========================================
   TYPOGRAPHY
   ========================================== */
.section-title {
    font-size: 3rem;
    color: #1a1a2e;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #6c757d;
    text-align: center;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }
}

/* ==========================================
   MODERN BUTTONS
   ========================================== */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #FFFFFF;
    padding: 18px 40px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
}

.cta-button-large {
    display: inline-block;
    background: #FFFFFF;
    color: #667eea;
    padding: 22px 50px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button-large:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.submit-button {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #FFFFFF;
    padding: 18px 32px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    transition: all 0.4s ease;
    border: none;
    cursor: pointer;
    margin-top: 1.5rem;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
}

.cta-center {
    text-align: center;
    margin-top: 3rem;
}

/* ==========================================
   HEADER / NAVBAR - GLASSMORPHISM
   ========================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1000;
    transition: all 0.4s ease;
}

.main-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.navbar {
    padding: 0;
}

.nav-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 1rem 0.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.nav-logo {
    height: 40px;
    width: auto;
   
   }

.brand-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #4e4d4d 0%, #3e3e42 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: #1a1a2e;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transition: width 0.3s ease;
    border-radius: 10px;
}

.nav-link:hover {
    color: #667eea;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #FFFFFF;
    padding: 12px 28px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 3px;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .nav-container {
        padding: 1rem 1.5rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 60px;
        right: -100%;
        width: 200px;
        height: calc(100vh - 75px);
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
        gap: 1rem;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-link {
        width: 90%;
        padding: 0.6rem 0;
        border-bottom: 1px solid rgba(102, 126, 234, 0.1);
    }
    
    .nav-cta {
        width: 100%;
        text-align: center;
        margin-top: 1rem;
    }
}

/* ==========================================
   HERO SECTION - ULTRA MODERN
   ========================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
    color: #FFFFFF;
    text-align: center;
    padding: 150px 20px 100px;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('') center/cover no-repeat;
    opacity: 0.15;
    mix-blend-mode: overlay;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to bottom, transparent, #f8f9fa);
}

.hero-overlay {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

.hero-headline {
    font-size: 3rem;
    font-weight: 7000;
    margin-bottom: 2rem;
    line-height: 1.2;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    letter-spacing: -2px;
}

.hero-subheadline {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    font-weight: 400;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-bullets {
    list-style: none;
    margin: 3rem 0;
    font-size: 1.2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.hero-bullets li {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.hero-bullets li:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
}

.hero-subtext {
    margin-top: 1.5rem;
    font-size: 1rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 90vh;
        padding: 120px 20px 80px;
    }
    
    .hero-headline {
        font-size: 2.5rem;
    }
    
    .hero-subheadline {
        font-size: 1.2rem;
    }
    
    .hero-bullets {
        flex-direction: column;
        gap: 1rem;
        font-size: 1rem;
    }
}

/* ==========================================
   SERVICES SECTION - GLASSMORPHISM CARDS
   ========================================== */
.services-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.3);
}

.service-icon {
    text-align: center;
    margin-bottom: 2rem;
}

.service-logo {
    max-width: 100px;
    height: auto;
    margin: 0 auto;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.service-card:hover .service-logo {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 800;
}

.service-card h4 {
    font-size: 1.3rem;
    color: #1a1a2e;
    margin: 2rem 0 1rem;
    font-weight: 700;
}

.service-card ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-card ul li {
    margin: 1rem 0;
    color: #555555;
    padding-left: 2rem;
    position: relative;
}

.service-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: 700;
    font-size: 1.2rem;
}

.service-card p {
    color: #555555;
    line-height: 1.8;
    font-size: 1.05rem;
}

.services-philosophy {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 4rem;
    font-style: italic;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-card {
        padding: 2rem;
    }
}


/* ==========================================
   VALUE PROPOSITION - PREMIUM CARDS
   ========================================== */
.value-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
}

.value-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.value-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.value-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 70px rgba(102, 126, 234, 0.25);
}

.value-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

.value-card h3 {
    font-size: 1.6rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.value-intro {
    margin-bottom: 1.5rem;
    color: #1a1a2e;
    font-weight: 600;
    font-size: 1.05rem;
}

.value-card ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.value-card ul li {
    margin: 1rem 0;
    color: #555555;
    padding-left: 2rem;
    position: relative;
    line-height: 1.7;
}

.value-card ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: 700;
    font-size: 1.2rem;
}

.value-bottom {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(102, 126, 234, 0.2);
    color: #1a1a2e;
    font-weight: 600;
    font-size: 1.05rem;
}

@media (max-width: 768px) {
    .value-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ==========================================
   HOW IT WORKS - MODERN TIMELINE
   ========================================== */
.how-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.step-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
}

.step-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 70px rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.3);
}

.step-number {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    animation: pulse 2s infinite;
}

.step-card h3 {
    font-size: 1.6rem;
    color: #1a1a2e;
    margin: 3rem 0 1.5rem;
    text-align: center;
    font-weight: 800;
}

.step-card h4 {
    font-size: 1.2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color:transparent;
background-clip: text;
margin: 2rem 0 1rem;
font-weight: 700;
}
.step-card ul {
list-style: none;
margin-bottom: 1.5rem;
}
.step-card ul li {
margin: 0.8rem 0;
color: #555555;
padding-left: 2rem;
position: relative;
line-height: 1.7;
}
.step-card ul li::before {
content: '✓';
position: absolute;
left: 0;
color: #667eea;
font-weight: 700;
font-size: 1.2rem;
}
.step-commitment {
margin-top: 2rem;
padding-top: 2rem;
border-top: 2px solid rgba(102, 126, 234, 0.2);
font-size: 1rem;
color: #1a1a2e;
font-weight: 600;
}
@media (max-width: 768px) {
.steps-container {
grid-template-columns: 1fr;
gap: 4rem;
}
}
/* Hide step-number EXCEPT those inside step-card */
.how-section .step-number:not(.step-card .step-number) {
    display: none;
}


/* ==========================================
   CASE STUDIES - PREMIUM DESIGN
   ========================================== */
.case-studies-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
    position: relative;
    overflow: hidden;
}

.case-studies-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.case-studies-section .section-title {
    color: #FFFFFF;
    background: none;
    -webkit-text-fill-color: #FFFFFF;
}

.case-studies-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.case-study-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.case-study-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.case-study-card h3 {
    font-size: 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    font-weight: 800;
}

.case-background {
    margin-bottom: 2rem;
    color: #555555;
    line-height: 1.8;
    font-size: 1.05rem;
}

.case-study-card h4 {
    font-size: 1.3rem;
    color: #1a1a2e;
    margin: 2rem 0 1rem;
    font-weight: 700;
}

.case-study-card ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.case-study-card ul li {
    margin: 0.8rem 0;
    color: #555555;
    padding-left: 2rem;
    position: relative;
    line-height: 1.7;
}

.case-study-card ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: 700;
    font-size: 1.2rem;
}

.results-list {
    list-style: none !important;
    margin-left: 0 !important;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 2rem;
    border-radius: 16px;
    margin-top: 2rem;
}

.results-list li {
    padding: 1rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a2e;
    border-bottom: 1px solid rgba(102, 126, 234, 0.2);
}

.results-list li:last-child {
    border-bottom: none;
}

.roi {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #FFFFFF;
    padding: 1.5rem;
    border-radius: 16px;
    margin: 2rem 0;
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.testimonial-box {
    background: rgba(102, 126, 234, 0.1);
    padding: 2rem;
    border-radius: 16px;
    margin: 2rem 0;
    border-left: 5px solid #667eea;
    transition: all 0.3s ease;
}

.testimonial-box:hover {
    background: rgba(102, 126, 234, 0.15);
    transform: translateX(10px);
}

.testimonial-box p {
    font-style: italic;
    color: #1a1a2e;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: normal !important;
}

.chart-placeholder {
    margin-top: 2rem;
    padding: 2rem;
    background: #FFFFFF;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.case-chart {
    max-width: 100%;
    margin: 1.5rem auto 0;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.case-cta-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .case-studies-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}


/* ==========================================
   WHY WORK WITH US - 3D CARDS
   ========================================== */
.why-us-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.why-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.why-card:hover {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: 0 25px 70px rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.3);
}

.why-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

.why-card h3 {
    font-size: 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.why-card h4 {
    font-size: 1.2rem;
    color: #1a1a2e;
    margin: 2rem 0 1rem;
    font-weight: 700;
}

.why-card ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.why-card ul li {
    margin: 0.8rem 0;
    color: #555555;
    padding-left: 2rem;
    position: relative;
    line-height: 1.7;
}

.why-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: 700;
    font-size: 1.2rem;
}

.why-bottom {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(102, 126, 234, 0.2);
    color: #1a1a2e;
    font-weight: 600;
    font-size: 1.05rem;
}

@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ==========================================
   TESTIMONIALS - MODERN CARDS
   ========================================== */
.testimonials-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 8rem;
    color: rgba(102, 126, 234, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.3);
}

.stars {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 5px rgba(255, 215, 0, 0.3);
}

.testimonial-text {
    font-style: italic;
    color: #1a1a2e;
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ==========================================
   FAQ - ACCORDION STYLE
   ========================================== */
.faq-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
}

.faq-item:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.3);
}

.faq-item h3 {
    font-size: 1.4rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-weight: 700;
}

.faq-item p {
    color: #555555;
    line-height: 1.8;
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.faq-item ul, .faq-item ol {
    margin-left: 2rem;
    margin-top: 1rem;
}

.faq-item li {
    margin: 0.8rem 0;
    color: #555555;
    line-height: 1.7;
}

/* ==========================================
   FINAL CTA - ULTRA MODERN
   ========================================== */
.final-cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
    color: #FFFFFF;
    text-align: center;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.final-cta-section::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: float 6s ease-in-out infinite;
}

.cta-headline {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 900;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    letter-spacing: -2px;
}

.cta-subheadline {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    line-height: 1.7;
}

.cta-bullets {
    list-style: none;
    margin: 3rem 0;
    font-size: 1.3rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.cta-bullets li {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.cta-bullets li:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-8px) scale(1.05);
}

.cta-secondary {
    margin-top: 2rem;
    font-size: 1.1rem;
}

.cta-secondary a {
    color: #FFFFFF;
    text-decoration: underline;
    font-weight: 600;
}

.cta-secondary a:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .cta-headline {
        font-size: 2.5rem;
    }
    
    .cta-subheadline {
        font-size: 1.2rem;
    }
    
    .cta-bullets {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ==========================================
   CONTACT FORM - GLASSMORPHISM
   ========================================== */
.contact-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    padding: 15px 20px;
    border: 2px solid rgba(102, 126, 234, 0.2);
    border-radius: 12px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    background: #FFFFFF;
}

.privacy-note {
    text-align: center;
    font-size: 0.9rem;
    color: #6c757d;
    margin-top: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.alternative-cta {
    text-align: center;
    margin-top: 2rem;
    font-size: 1.1rem;
}

.alternative-cta a {
    color: #667eea;
    font-weight: 700;
}

.alternative-cta a:hover {
    text-decoration: underline;
}

/* FORM SUCCESS/ERROR MESSAGES */
.form-message {
    margin-top: 1.5rem;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    display: none;
}

.form-message.success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    border: 2px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
    border: 2px solid #f5c6cb;
    display: block;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
}

/* ==========================================
   FOOTER - ULTRA MODERN
   ========================================== */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #ecf0f1;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
}

.footer-main {
    padding: 80px 0 40px;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
}

.footer-brand-col {
    padding-right: 2rem;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 45px;
    width: auto;
    filter: drop-shadow(0 5px 15px rgba(102, 126, 234, 0.5));
}

.footer-brand-name {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.footer-tagline {
    font-size: 1.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.footer-description {
    color: #bdc3c7;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(102, 126, 234, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    color: #ecf0f1;
    transition: all 0.4s ease;
    border: 2px solid rgba(102, 126, 234, 0.3);
}

.social-link:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #FFFFFF;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.footer-col h4 {
    font-size: 1.2rem;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 10px;
}

.footer-heading {
    font-size: 1.2rem;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 1rem;
}

.footer-links a,
.footer-contact a {
    color: #bdc3c7;
    font-size: 1rem;
    transition: all 0.3s ease;
display: inline-block;
}
.footer-links a:hover,
.footer-contact a:hover {
color: #667eea;
padding-left: 10px;
}
.footer-contact li {
display: flex;
align-items: center;
color: #bdc3c7;
font-size: 1rem;
}
.footer-contact svg {
flex-shrink: 0;
}
.footer-cta-btn {
display: inline-block;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: #FFFFFF;
padding: 15px 30px;
border-radius: 50px;
font-weight: 700;
font-size: 1rem;
margin-top: 2rem;
transition: all 0.4s ease;
box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}
.footer-cta-btn:hover {
transform: translateY(-3px) scale(1.05);
box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
}
.footer-bottom {
background: rgba(0, 0, 0, 0.3);
padding: 2rem 0;
border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-bottom-content {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 1.5rem;
}
.footer-copyright {
color: #95a5a6;
font-size: 1rem;
margin: 0;
}
.footer-legal {
display: flex;
align-items: center;
gap: 1rem;
}
.footer-legal a {
color: #95a5a6;
font-size: 1rem;
transition: color 0.3s ease;
}
.footer-legal a:hover {
color: #667eea;
}
.separator {
color: #7f8c8d;
}
@media (max-width: 992px) {
.footer-content {
grid-template-columns: repeat(2, 1fr);
gap: 3rem;
}
.footer-brand-col {
    grid-column: 1 / -1;
    padding-right: 0;
    text-align: center;
}

.footer-logo-container {
    justify-content: center;
}

.footer-social {
    justify-content: center;
}
}
@media (max-width: 768px) {
.footer-main {
padding: 60px 0 30px;
}
.footer-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
}

.footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
}

.footer-links li,
.footer-contact li {
    text-align: center;
    justify-content: center;
}

.footer-bottom-content {
    flex-direction: column;
    text-align: center;
}

.footer-legal {
    flex-wrap: wrap;
    justify-content: center;
}
}
/* ==========================================
SCROLL TO TOP BUTTON
========================================== */
#scrollToTop {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4) !important;
border: 2px solid rgba(255, 255, 255, 0.3) !important;
}
#scrollToTop:hover {
transform: translateY(-5px) scale(1.1) !important;
box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6) !important;
}
/* ==========================================
ANIMATIONS & EFFECTS
========================================== */
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.fade-in {
animation: fadeIn 0.8s ease-out;
}
html {
scroll-padding-top: 90px;
}
/* ==========================================
RESPONSIVE ADJUSTMENTS
========================================== */
@media (max-width: 480px) {
.section-title {
font-size: 1.8rem;
}
.section-subtitle {
    font-size: 1rem;
}

.cta-button {
    padding: 16px 30px;
    font-size: 16px;
}
}

/* ---------- FAQ two-column short layout ---------- */
.short-faq-grid { display:grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.faq-item h4 { margin:0 0 6px; font-size:16px; }
.faq-item p { margin:0; color:#333; }

/* ---------- RESPONSIVE: stack for small screens ---------- */
@media (max-width: 900px) {
  .about-grid, .hero-grid, .case-studies-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: 22px; }
  .hero-image { max-width:100%; height:auto; }
  .short-faq-grid { grid-template-columns: 1fr; }
}
/* Hero Section - Text Left, Image Right, CTA Visible */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 0;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-left h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
    }

.hero-left p {
    font-size: 1.15rem;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-right img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.cta-button {
    display: inline-block;
    background: white;
    color: #667eea;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* About Section Short (3-4 lines) - After Hero */
.about-section-short {
    padding: 60px 0;
    background: #f8f9fa;
    text-align: center;
}

.about-section-short h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #2c3e50;
}

.about-section-short p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    max-width: 900px;
    margin: 0 auto;
}

/* Budget Section */
.budget-section {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 40px 0;
    text-align: center;
}

.budget-section h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.budget-section p {
    font-size: 1.3rem;
    font-weight: 600;
}

/* Services */
.services {
    padding: 80px 0;
    background: white;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2c3e50;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    transition: transform 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #667eea;
}

/* Case Studies with Images */
.case-studies {
    padding: 80px 0;
    background: #f8f9fa;
}

.case-studies h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2c3e50;
}

.case-study-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.case-image {
    width: 100%;
    height: 250px;
    margin-bottom: 25px;
    border-radius: 12px;
    overflow: hidden;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.case-study-card:hover .case-image img {
    transform: scale(1.05);
}

.case-study-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #667eea;
}

.case-study-card ul {
    margin: 15px 0 15px 25px;
}

.case-study-card li {
    margin-bottom: 8px;
    color: #555;
}

/* Ready Section - Shortened with Picture */
.ready-section {
    padding: 60px 0;
    background: white;
}

.ready-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.ready-text h2 {
    font-size: 2.3rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.ready-text p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.ready-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* Contact Form with Message Field */
.contact {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #2c3e50;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #667eea;
}

.contact-form button {
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
}

/* Footer with About Section */
footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #667eea;
}

.footer-section p {
    margin-bottom: 10px;
    line-height: 1.6;
    opacity: 0.9;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-section a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content,
    .ready-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-left h1 {
        font-size: 2rem;
    }
    
    .hero-right img,
    .ready-image img {
        height: 300px;
    }
    
    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }
    
    .logo-text {
        font-size: 1.4rem;
    }
    
    .logo-icon {
        width: 32px;
        height: 32px;
    }
}

/* ========== HOW IT WORKS - Compact with Picture ========== */
.how-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.section-subtitle {
    text-align: center;
    font-size: 1.15rem;
    color: #666;
      margin-bottom: 50px;
}

.how-content-wrapper {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 40px;
    align-items: start;
}

.how-image {
    position: sticky;
    top: 100px;
}

.how-image img {
    width: 100%;
     height: 550px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.step-card-compact {
      background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.step-card-compact:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.step-number {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.step-card-compact h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #2c3e50;
}

.step-card-compact p {
    font-size: 1rem;
    line-height: 1.6;
     color: #555;
    margin-bottom: 10px;
}

.step-commitment {
    margin-top: 12px;
    font-size: 0.95rem;
    color: #667eea;
}

.cta-center {
    text-align: center;
    margin-top: 50px;
}
/* ========== CASE STUDIES ========== */
.case-studies {
    padding: 80px 0;
    background: white;
}

.case-studies h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2c3e50;
}

.case-study-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

.case-image {
    width: 100%;
    height: 250px;
    margin-bottom: 25px;
    border-radius: 12px;
    overflow: hidden;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.case-study-card:hover .case-image img {
    transform: scale(1.05);
    }

.case-study-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #667eea;
}

.case-study-card ul {
    margin: 15px 0 15px 25px;
}

.case-study-card li {
    margin-bottom: 8px;
    color: #555;
}
/* ========== HEADER - Logo Merged ========== */
header {
    background: linear-gradient(135deg, #f3f4f7 0%, #fbfafc 100%);
    padding: 0.5rem 0;
    position: sticky;
    top: 0;
    z-index: 900;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 0.2px;

}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
      align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 600;
    color: #0e0d0d;
    letter-spacing: -0.3px;
}

.nav-links {
      display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-links a {
    color: #0c0c0c;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.8;
}
/* ========== HERO SECTION - Text Left, Image Right, CTA Visible ========== */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 50px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.hero-left {
    padding-right: 20px;
}

.hero-headline {
    font-size: 1.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 900;
}

.hero-subheadline {
    font-size: 1.15rem;
    margin-bottom: 25px;
    opacity: 0.95;
    line-height: 1.6;
}
.hero-bullets {
    list-style: none;
    margin-bottom: 30px;
}

.hero-bullets li {
    font-size: 1.05rem;
    margin-bottom: 12px;
    padding-left: 5px;
}

.hero-right img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    }

.cta-button {
    display: inline-block;
    background: white;
    color: #667eea;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    margin-bottom: 15px;
}

.cta-button:hover {
      transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.hero-subtext {
    font-size: 0.9rem;
    opacity: 0.85;
    margin-top: 10px;
}
/* ========== ABOUT SECTION - With Picture ========== */
.about-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    }

.about-content h2 {
    font-size: 2.3rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.about-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}
.footer-about-image {
    margin-top: 20px;
}
.footer-about-image img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    opacity: 0.9;
}
/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 768px) {
    .hero-grid,
    .about-grid,
    .how-content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-headline {
        font-size: 2rem;
    }
    
    .hero-right img,
    .about-image img,
    .how-image img {
        height: 300px;
    }
    
    .how-image {
        position: static;
    }
    
    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }
    
    .logo-text {
        font-size: 1.4rem;
    }
    
    .logo-icon {
        width: 32px;
        height: 32px;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Hero Section - Compact Version */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px 0 40px;
    min-height: 75vh;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-headline {
    font-size: 1.5rem;
    line-height: 1.2;
    margin-bottom: 13px;
    font-weight: 900;
}

.hero-subheadline {
    font-size: 0.8rem;
    margin-bottom: 20px;
    opacity: 0.95;
    line-height: 1.5;
}

.hero-bullets {
    list-style: none;
    margin-bottom: 25px;
}

.hero-bullets li {
    font-size: 0.63rem;
    margin-bottom: 8px;
    padding-left: 6px;
}

.hero-subtext {
    font-size: 0.4rem;
    opacity: 0.85;
    margin-top: 12px;
}

.hero-right img {
    width: 100%;
    height: 410px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 40px 0;
    }
    .hero-headline {
        font-size: 1.5rem;
    }
}

/* Services Section - Compact */
.services-section {
    padding: 60px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 12px;
    color: #2c3e50;
}

.section-subtitle {
    text-align: center;
    font-size: 1rem;
    color: #666;
    margin-bottom: 40px;
}

.services-grid-compact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.service-card-compact {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.service-card-compact:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.service-icon {
    margin-bottom: 15px;
}

.service-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.service-card-compact h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #667eea;
}

.service-card-compact p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #555;
}

.services-philosophy {
    text-align: center;
    font-size: 1.05rem;
    font-style: italic;
    color: #667eea;
    font-weight: 600;
    margin-top: 30px;
}

@media (max-width: 768px) {
    .services-grid-compact {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
/* Modern CTA Section */
.final-cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-container {
    position: relative;
    z-index: 1;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-headline {
    font-size: 2.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.cta-subheadline {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 35px;
    font-weight: 400;
}

.cta-button-modern {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: #667eea;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border: 2px solid transparent;
}

.cta-button-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    background: #f8f9ff;
}

.cta-button-modern svg {
    transition: transform 0.3s ease;
}

.cta-button-modern:hover svg {
    transform: translateX(5px);
}

.cta-trust {
    margin-top: 25px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    letter-spacing: 0.3px;
}

@media (max-width: 768px) {
    .cta-headline {
        font-size: 2rem;
    }
    
    .cta-button-modern {
        padding: 16px 35px;
        font-size: 1rem;
    }
    
    .final-cta-section {
        padding: 50px 0;
    }
}
/* Contact Section - Compact Version */
.contact-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 40px;
    align-items: center;
}

/* Left Side: Image - SHORTER */
.contact-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    height: 480px;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
    padding: 30px 25px;
    color: white;
}

.image-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.image-overlay p {
    font-size: 0.95rem;
    opacity: 0.95;
}

/* Right Side: Form - COMPACT */
.contact-form-wrapper {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.section-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #2c3e50;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.5;
}

.contact-form {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    padding: 12px 14px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.submit-button {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(102, 126, 234, 0.4);
}

.form-message {
    margin-top: 12px;
    padding: 10px;
    border-radius: 6px;
    font-size: 0.9rem;
    text-align: center;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

.privacy-note {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.4;
    margin-top: 15px;
}

.alternative-cta {
    margin-top: 15px;
    text-align: center;
    font-size: 0.95rem;
    color: #555;
}

.alternative-cta a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.alternative-cta a:hover {
    color: #764ba2;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 968px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-image {
        height: 350px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 30px;
    }
}

@media (max-width: 640px) {
    .contact-section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .contact-form-wrapper {
        padding: 25px;
    }
    
    .contact-image {
        height: 300px;
    }
}
/* Value Proposition - Compact 4 in Row */
.value-section {
    padding: 70px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2c3e50;
    font-weight: 700;
}

.value-grid-compact {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.value-card-compact {
    background: #f8f9fa;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
}

.value-card-compact:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    border-color: #667eea;
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.value-card-compact h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 700;
    line-height: 1.3;
}

.value-card-compact p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}

/* Responsive */
@media (max-width: 1024px) {
    .value-grid-compact {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .value-grid-compact {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .value-section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
}
/* Testimonials - Compact 4 in Row */
.testimonials-section {
    padding: 70px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.testimonials-grid-compact {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.testimonial-card-compact {
    background: white;
    padding: 25px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    border-left: 4px solid #667eea;
}

.testimonial-card-compact:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.stars {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: #ffc107;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author {
    font-size: 0.85rem;
    font-weight: 600;
    color: #667eea;
}

/* Responsive */
@media (max-width: 1024px) {
    .testimonials-grid-compact {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .testimonials-grid-compact {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .testimonials-section {
        padding: 50px 0;
    }
}

/* ===========================
   HEADER – DESKTOP
=========================== */
header {
    width: 100%;
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #eee;
}

nav.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    object-fit: cover;
}

.brand-name {
    font-size: 30px;
    font-weight: 700;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    font-weight: 400;
    color: #333;
}

.nav-cta {
    padding: 10px 18px;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    
    color: #f8f7f7 !important;
    border-radius: 25px;
    font-weight: 600;
}

/* Mobile Toggle Hidden on Desktop */
.nav-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: #333;
    border-radius: 3px;
}

/* ======================================================
   MOBILE ONLY (max-width: 768px)
   Desktop remains exactly SAME
====================================================== */
@media (max-width: 768px) {

    /* ========= HEADER ========= */
    .nav-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        background: transparent;
        border: none;
        cursor: pointer;
    }

    .nav-toggle span {
        width: 28px;
        height: 3px;
        background: #6a4bc9; /* soft purple */
        border-radius: 3px;
    }

    .nav-links {
        position: absolute;
        top: 65px;
        right: 0;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        padding: 18px 22px;
        gap: 18px;
        background: #ffffff;
        border-top: 1px solid #eee;
        display: none;
        z-index: 999;
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links a {
        color: #333;
        font-size: 16px;
        width: 100%;
    }

    .nav-cta {
        width: 100%;
        text-align: center;
        padding: 12px 0;
        background: #667eea !important;  /* PURPLE */
        color:  #f4f5f7!important;
        border-radius: 6px;
    }

    /* ========= HERO SECTION ========= */
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .hero-headline {
        font-size: 24px;
        line-height: 1.2;
    }

    .hero-subheadline {
        font-size: 13px;
        margin-top: 10px;
    }

    .cta-button {
        width: 100%;
        padding: 14px 22px;
        background: #f8f8fa !important; /* PURPLE */
        color: #667eea !important;
        border-radius: 20px;
        margin-top: 20px;
        font-weight: 650;
    }

    .hero-right img {
        width: 100%;
        max-height: 350px;
        object-fit: cover;
        border-radius: 15px;
        margin-top: 10px;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .hero-headline {
        font-size: 22px;
    }
}
/* Case Studies Slider */
.case-studies {
    padding: 80px 0;
    background: white;
}

.case-studies h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2c3e50;
}

.case-studies-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.slider-wrapper {
    position: relative;
    overflow: hidden;
}

.case-study-card.slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.case-study-card.slide.active {
    display: block;
    opacity: 1;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.case-study-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #667eea;
}

.case-study-card ul {
    margin: 15px 0 15px 25px;
}

.case-study-card li {
    margin-bottom: 8px;
    color: #555;
}

.case-study-card p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #333;
}

/* Slider Navigation */
.slider-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.slider-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.slider-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: #667eea;
    width: 30px;
    border-radius: 6px;
}

/* Mobile */
@media (max-width: 768px) {
    .case-study-card.slide {
        padding: 25px 20px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}
/* FAQ Accordion */
/* FAQ Accordion - 2 Columns */
.faq-section {
    padding: 70px 0;
    background: #f8f9fa;
}

.faq-container-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 1.05rem;
    color: #2c3e50;
    margin: 0;
    font-weight: 600;
    line-height: 1.4;
}

.faq-icon {
    font-size: 1.8rem;
    color: #667eea;
    font-weight: 300;
    transition: transform 0.3s;
    min-width: 30px;
    text-align: center;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 25px 20px;
}

.faq-answer p {
    margin: 0;
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Mobile - Stack to 1 Column */
@media (max-width: 768px) {
    .faq-container-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .faq-question {
        padding: 18px 20px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 18px;
    }
}
/* Footer - Compact with Small Logo */
.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
}

.footer-main {
    padding: 50px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
}

/* Column 1: Brand with Small Logo */
.footer-brand {
    padding-right: 20px;
}

.footer-logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-logo {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    object-fit: cover;
}

.footer-brand .footer-heading {
    font-size: 1.8rem;
    margin: 0;
    color: white;
    font-weight: 800;
}

.footer-tagline {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Social Links */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-link:hover {
    background: #667eea;
    transform: translateY(-3px);
}

/* Other Columns */
.footer-heading {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #667eea;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.footer-contact a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: white;
}

/* CTA Button */
.footer-cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #FFFFFF;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: 15px;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
    text-decoration: none;
}

.footer-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.5);
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-copyright {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-legal a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: white;
}

.separator {
    color: rgba(255,255,255,0.3);
}

/* Mobile */
@media (max-width: 768px) {
    .footer-main {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-logo {
        width: 40px;
        height: 40px;
    }
    
    .footer-brand .footer-heading {
        font-size: 1.5rem;
    }
    
    .footer-logo-section {
        justify-content: center;
    }
    
    .footer-brand {
        text-align: center;
        padding-right: 0;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 10px;
    }
    
    .separator {
        display: none;
    }
}
/* ========================================
   MOBILE RESPONSIVE - ALL FIXES
======================================== */

@media (max-width: 768px) {
    
    /* ========== 1. HEADER - COMPACT & PROPER TOGGLE ========== */
    header {
        padding: 0.4rem 0;
    }
    
    nav {
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
        min-height: 45px;
        padding: 0 15px;
    }
    
    .nav-brand {
        gap: 8px;
        z-index: 1002;
    }
    
    .nav-logo {
        width: 28px;
        height: 28px;
    }
    
    .brand-name {
        font-size: 1.2rem;
    }
    
    /* Mobile Menu Toggle Button */
    .nav-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 28px;
        height: 22px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1002;
        position: relative;
    }
    
    .nav-toggle span {
        width: 100%;
        height: 2.5px;
        background: #667eea;
        border-radius: 3px;
        transition: all 0.3s ease;
        transform-origin: center;
    }
    
    /* Toggle Animation */
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translateY(7px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translateY(-7px);
    }
    
    /* Mobile Navigation Menu */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        background: linear-gradient(135deg, #eff0f5 0%, #667eea 100%);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        padding: 2rem;
        transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        z-index: 1001;
        box-shadow: -5px 0 20px rgba(14, 13, 13, 0.3);
        color: #000;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        list-style: none;
        opacity: 0;
        transform: translateX(50px);
        transition: all 0.3s ease;
    }
    
    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }
    
    .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active li:nth-child(2) { transition-delay: 0.15s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.2s; }
    .nav-links.active li:nth-child(4) { transition-delay: 0.25s; }
    .nav-links.active li:nth-child(5) { transition-delay: 0.3s; }
    
    .nav-links a {
        font-size: 1.2rem;
        padding: 10px 20px;
    }
    
    /* CTA Button Text Change in Mobile Menu */
    .nav-cta {
        padding: 12px 30px;
        font-size: 1rem;
        margin-top: 1rem;
        background-color: #667eea;
        border-radius: 5px;
    }
    
    /* Change CTA text on mobile */
    .nav-cta::before {
        content: "Get More Patients";
    }
    
    .nav-cta {
        font-size: 0;
    }
    
    .nav-cta::before {
        font-size: 1rem;
        border-radius: 5px;
    }
    
    /* Body scroll lock when menu open */
    body.menu-open {
        overflow: hidden;
    }
    
    /* ========== 2. HERO SECTION - SMALLER TEXT ========== */
    .hero-section {
        padding: 30px 0 40px;
        min-height: auto;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-headline {
        font-size: 1.6rem; /* Reduced from 1.8rem */
        margin-bottom: 12px;
        line-height: 1.2;
    }
    
    .hero-subheadline {
        font-size: 0.9rem; /* Reduced from 1rem */
        margin-bottom: 20px;
        line-height: 1.5;
    }
    
    .hero-bullets {
        margin-bottom: 25px;
    }
    
    .hero-bullets li {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }
    
    .hero-right img {
        height: 280px;
        border-radius: 12px;
    }
    
    .cta-button {
        padding: 14px 30px;
        font-size: 1rem;
        width: 100%;
        text-align: center;
    }
    
    .hero-subtext {
        font-size: 0.8rem;
        text-align: center;
    }
    
    /* ========== 3. ABOUT SECTION - IMAGE AFTER TEXT ========== */
    .about-section {
        padding: 50px 0;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Reverse order on mobile - text first, then image */
    .about-image {
        order: 2; /* Image comes after */
    }
    
    .about-content {
        order: 1; /* Text comes first */
    }
    
    .about-image img {
        height: 250px;
        border-radius: 12px;
    }
    
    .about-content h2 {
        font-size: 1.7rem;
    }
    
    .about-content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    /* ========== 4. CONTACT FORM - HIDE IMAGE ========== */
    .contact-section {
        padding: 50px 0;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 0; /* Remove gap since image is hidden */
    }
    
    /* Hide contact image on mobile */
    .contact-image {
        display: none;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .submit-button {
        padding: 14px;
        font-size: 1rem;
    }
    
    /* ========== 5. TESTIMONIALS - SLIDER ON MOBILE ========== */
    .testimonials-section {
        padding: 50px 0;
    }
    
    /* Hide grid, show slider */
    .testimonials-grid-compact {
        display: none;
    }
    
    /* Create mobile slider */
    .testimonials-mobile-slider {
        display: block;
        position: relative;
        overflow: hidden;
    }
    
    .testimonial-slides {
        display: flex;
        transition: transform 0.4s ease;
    }
    
    .testimonial-card-compact {
        min-width: 100%;
        padding: 25px 20px;
        flex-shrink: 0;
    }
    
    /* Slider navigation */
    .testimonial-nav {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 15px;
        margin-top: 25px;
    }
    
    .testimonial-btn {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        border: none;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        font-size: 1.5rem;
        cursor: pointer;
        transition: all 0.3s;
        box-shadow: 0 3px 10px rgba(102, 126, 234, 0.3);
    }
    
    .testimonial-btn:active {
        transform: scale(0.95);
    }
    
    .testimonial-dots {
        display: flex;
        gap: 8px;
    }
    
    .testimonial-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #ddd;
        cursor: pointer;
        transition: all 0.3s;
    }
    
    .testimonial-dot.active {
        background: #667eea;
        width: 25px;
        border-radius: 5px;
    }
    
    /* ========== OTHER SECTIONS - COMPACT ========== */
    .services-section,
    .how-section,
    .value-section,
    .case-studies,
    .faq-section,
    .final-cta-section {
        padding: 50px 0;
    }
    
    .services-grid-compact,
    .value-grid-compact,
    .faq-container-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .how-content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .how-image {
        position: static;
        height: 280px;
    }
    
    .how-image img {
        height: 100%;
    }
    
    /* Footer */
    .footer-main {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-logo {
        width: 35px;
        height: 35px;
    }
    
    .footer-brand .footer-heading {
        font-size: 1.5rem;
    }
    
    .footer-logo-section {
        justify-content: center;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 10px;
    }
    
    .separator {
        display: none;
    }
}

/* Small Mobile - Extra Compact */
@media (max-width: 480px) {
    .hero-headline {
        font-size: 1.4rem;
    }
    
    .hero-subheadline {
        font-size: 0.85rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .nav-links {
        width: 85%;
    }
}/* ========================================
   TESTIMONIALS - DESKTOP (4 in Row)
======================================== */

.testimonials-section {
    padding: 70px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.testimonials-grid-compact {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.testimonial-card-compact {
    background: white;
    padding: 25px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    border-left: 4px solid #667eea;
}

.testimonial-card-compact:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.stars {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: #ffc107;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author {
    font-size: 0.85rem;
    font-weight: 600;
    color: #667eea;
}

/* Hide mobile slider on desktop */
.testimonials-mobile-slider {
    display: none;
}

/* ========================================
   TESTIMONIALS - MOBILE SLIDER (FIXED)
======================================== */

@media (max-width: 768px) {
    .testimonials-section {
        padding: 50px 0;
    }
    
    /* Hide desktop grid */
    .testimonials-grid-compact {
        display: none;
    }
    
    /* Show mobile slider */
    .testimonials-mobile-slider {
        display: block;
        position: relative;
        overflow: hidden;
        padding: 0 10px;
    }
    
    .testimonial-slides {
        display: flex;
        transition: transform 0.4s ease;
        width: 100%;
    }
    
    /* Each slide takes full width */
    .testimonials-mobile-slider .testimonial-card-compact {
        min-width: 100%;
        max-width: 100%;
        flex-shrink: 0;
        padding: 25px 20px;
        margin: 0;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-height: 180px;
    }
    
    /* Prevent text cutoff */
    .testimonials-mobile-slider .testimonial-text {
        font-size: 0.95rem;
        line-height: 1.6;
        color: #333;
        margin-bottom: 15px;
        font-style: italic;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .testimonials-mobile-slider .testimonial-author {
        font-size: 0.85rem;
        font-weight: 600;
        color: #667eea;
        margin-top: auto;
    }
    
    /* Slider Navigation */
    .testimonial-nav {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 15px;
        margin-top: 25px;
    }
    
    .testimonial-btn {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        border: none;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        font-size: 1.5rem;
        cursor: pointer;
        transition: all 0.3s;
        box-shadow: 0 3px 10px rgba(102, 126, 234, 0.3);
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: 1;
    }
    
    .testimonial-btn:active {
        transform: scale(0.95);
    }
    
    .testimonial-dots {
        display: flex;
        gap: 8px;
    }
    
    .testimonial-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #ddd;
        cursor: pointer;
        transition: all 0.3s;
    }
    
    .testimonial-dot.active {
        background: #667eea;
        width: 25px;
        border-radius: 5px;
    }
}

/* Tablet - 2 columns */
@media (min-width: 769px) and (max-width: 1024px) {
    .testimonials-grid-compact {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}
.hero-headline{
    max-width: 820px;   /* pehle kam hogi, isay barha do */
}
.hero-subheadline{
    max-width: 600px;
    line-height: 1.6;
}


/* HERO GRID – 60% TEXT / 40% IMAGE */

.hero-grid {
    display: grid;
    grid-template-columns: 55% 36%;
    align-items: flex-start;
    gap: 73px;
}

/* LEFT TEXT */
.hero-left {
    width: 100%;
    max-width: 100%;
    text-align: left;
}

/* HEADLINE & SUBHEADLINE FULL WIDTH */
.hero-headline,
.hero-subheadline {
    width: 100%;
    max-width: 100%;
}

/* RIGHT IMAGE */
.hero-right {
    width: 100%;
}

.hero-right img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-left {
        text-align: center;
    }
}
/* HERO TEXT – MINIMAL BALANCE FIX */

.hero-headline {
    margin-bottom: 28px;
}

.hero-subheadline {
    margin-bottom: 42px;
}

.cta-button {
    margin-top: 10px;
    margin-bottom: -29px;
}

.hero-subtext {
    margin-bottom: 20px;
}

/* Desktop only – slight push down */
@media (min-width: 992px) {
    .hero-left {
        padding-bottom: 40px;
    }
}

/* ========================================
   FINAL CTA SECTION - PERFECT VERSION
======================================== */

.final-cta-section {
    background: 
        linear-gradient(
            rgba(102, 126, 234, 0.65), 
            rgba(118, 75, 162, 0.65)
        ), 
        url('https://plus.unsplash.com/premium_photo-1661290360490-4580b8d2488c?w=500&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1yZWxhdGVkfDQyfHx8ZW58MHx8fHx8') center center no-repeat;
    background-size: cover;
    background-attachment: scroll;
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.cta-container {
    position: relative;
    z-index: 2;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-headline {
    font-size: 2.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.cta-subheadline {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 35px;
    font-weight: 400;
    text-shadow: 0 1px 5px rgba(0,0,0,0.15);
}

.cta-button-modern {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: #667eea;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 2px solid transparent;
}

.cta-button-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    background: #f8f9ff;
}

.cta-button-modern svg {
    transition: transform 0.3s ease;
}

.cta-button-modern:hover svg {
    transform: translateX(5px);
}

.cta-trust {
    margin-top: 25px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

/* ========================================
   MOBILE RESPONSIVE
======================================== */

@media (max-width: 768px) {

    .final-cta-section {
        background-image:
            linear-gradient(
                rgba(102, 126, 234, 0.75),
                rgba(118, 75, 162, 0.75)
            ),
            url('https://plus.unsplash.com/premium_photo-1661578408675-3eda254f4cb5?w=500&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1yZWxhdGVkfDl8fHxlbnwwfHx8fHw%3D');

        background-repeat: no-repeat;

        /* 🔒 LOCK POSITION */
        background-position: center center !important;
        background-size: cover !important;

        /* 🔑 MOST IMPORTANT LINE */
        background-attachment: scroll !important;

        /* Prevent repaint jump */
        transform: translateZ(0);
        -webkit-transform: translateZ(0);

        /* Prevent layout shift */
        min-height: 420px;
        overflow: hidden;

        /* stop smooth-scroll conflicts */
        scroll-behavior: auto;
    }

    /* REMOVE all pseudo layers */
    .final-cta-section::before,
    .final-cta-section::after {
        content: none !important;
        display: none !important;
    }
}
/* ========================================
   FAQ SECTION - ALL CARDS EQUAL HEIGHT
======================================== */

.faq-section {
    padding: 70px 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2c3e50;
}

.faq-container-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-column {
    display: contents; /* Remove column wrapper */
}

/* FORCE ALL CARDS TO SAME HEIGHT */
.faq-item {
    background: white;
    border-radius: 12px;
    overflow: visible; /* Changed from hidden */
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    height: 120px; /* FIXED HEIGHT FOR ALL CARDS */
    display: flex;
    flex-direction: column;
}

.faq-item.active {
    height: auto; /* Expand when open */
    overflow: hidden;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

/* QUESTION AREA - FIXED HEIGHT */
.faq-question {
    padding: 16px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    height: 120px; /* Match card height */
    box-sizing: border-box;
}

.faq-question h3 {
    font-size: 1rem;
    color: #2c3e50;
    margin: 0;
    font-weight: 600;
    line-height: 1.4;
    padding-right: 10px;
    flex: 1;
    padding-bottom: 88px;
    /* Allow text to wrap naturally */
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* FAQ Plus Icon - Centered */
.faq-icon {
    font-size: 1.8rem;
    color: #667eea;
    font-weight: 300;
    transition: transform 0.3s;
    min-width: 30px;
    width: 30px;
    text-align: center;
    flex-shrink: 0;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 90px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* ANSWER AREA */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 20px;
}

.faq-item.active .faq-answer {
    max-height: 600px;
    padding: 0 20px 20px;
}

.faq-answer p {
    margin: 0 0 12px 0;
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    margin: 10px 0 12px 20px;
    padding: 0;
}

.faq-answer li {
    margin-bottom: 8px;
    color: #555;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ========================================
   RESPONSIVE
======================================== */

/* Tablet - 2 columns */
@media (max-width: 1024px) {
    .faq-container-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .faq-item {
        height: 130px;
    }
    
    .faq-question {
        height: 130px;
    }
}

/* Mobile - 1 column */
@media (max-width: 768px) {
    .faq-container-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .faq-item {
        height: auto; /* Allow natural height on mobile */
        min-height: 85px;
    }
    
    .faq-question {
        padding: 14px 18px;
        height: auto;
        min-height: 85px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        padding-bottom: 3px;
        padding-top: 2px;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    .faq-icon{
        padding-bottom: 5px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 18px;
    }
}

@media (min-width: 820px) and (max-width: 1180px) {

    /* NAVBAR FIX */
    .nav-links {
        flex-wrap: wrap;          /* ⬅️ MOST IMPORTANT */
        justify-content: center;
        row-gap: 12px;
    }

    .nav-links a {
        font-size: 0.9rem;
        padding: 6px 10px;
        white-space: nowrap;
    }

    /* HERO LAYOUT FIX */
    .hero-grid {
        grid-template-columns: 1fr; /* ⬅️ stack */
        text-align: center;
    }

    .hero-image {
        order: -1; /* image upar */
        margin-bottom: 30px;
    }

    .hero-headline {
        font-size: 2.4rem;
    }

    .hero-subheadline {
        font-size: 1rem;
        max-width: 90%;
        margin: 0 auto;
    }
}

@media (min-width: 820px) and (max-width: 1180px) {

    .hero-image img {
        max-width: 65%;     /* image choti */
        margin: 0 auto;
        display: block;
    }
}


/* =====================================
   HOW IT WORKS – TABLET / iPAD FIX
   (820px – 1180px)
===================================== */
@media (min-width: 820px) and (max-width: 1180px) {

    /* Main wrapper */
    .how-content-wrapper {
        display: grid;
        grid-template-columns: 1fr 1.2fr; /* image smaller, steps wider */
        gap: 40px;
        align-items: center;
    }

    /* Image side */
    .how-image img {
        max-width: 195%;
        height: auto;
        display: block;
        margin: 0 auto;
    }

    /* Steps container */
    .steps-container {
        grid-template-columns: repeat(2, 1fr); /* 2 steps per row */
        gap: 24px;
        margin-top: 0;
    }

    /* Step cards */
    .step-card-compact {
        padding: 22px 20px;
    }

    .step-card-compact h3 {
        font-size: 1.05rem;
        line-height: 1.3;
    }

    .step-card-compact p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    /* Step number size */
    .step-number {
        width: 56px;
        height: 56px;
        font-size: 1.4rem;
        top: -26px;
    }

    /* CTA spacing */
    .cta-center {
        margin-top: 60px;
    }
}
/* ========================================
   HERO SECTION - SUBTLE ANIMATIONS
======================================== */

/* Fade in animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Apply animations to hero elements */


.hero-headline {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-subheadline {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-bullets {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.cta-button {
    animation: fadeInUp 0.8s ease-out 0.8s both;
    transition: all 0.3s ease;
}

.hero-subtext {
    animation: fadeInUp 0.8s ease-out 1s both;
}

.hero-right {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-right img {
    transition: transform 0.3s ease;
}

.hero-right img:hover {
    transform: scale(1.02);
}

/* Smooth button hover */
.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

            
            

 
