/* styles.css */

/* =========================================
   ROOT VARIABLES & FONTS
   ========================================= */
:root {
    --primary: #0056b3;
    --secondary: #27a934;
    --secondary-dark: #0f9e1c;
    --accent: #f9b233;
    --dark: #111827;
    --light: #f8f9fa;
    --white: #ffffff;
    --text: #4b5563;
    --nav-bg: #ffffff;
    --nav-text: #111827;
    --nav-hover: #27a934;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Poppins', sans-serif;
}

/* Load Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Poppins:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
    background-color: var(--white);
}

/* =========================================
   NAVBAR STYLES
   ========================================= */
.navbar {
    background-color: var(--nav-bg);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    padding: 12px 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

.navbar-white {
    background-color: var(--white) !important;
}

/* Brand Container */
.navbar-brand {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

/* Zoomed Logo */
.navbar-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    border-radius: 8px;
    transition: transform 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.navbar-brand:hover .navbar-logo {
    transform: scale(1.1);
}

/* Styled Brand Text */
.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-name {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--nav-text);
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.brand-subname {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--secondary);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1.2;
}

.navbar-toggler {
    border: none;
    padding: 8px;
    background: transparent;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(17, 24, 39, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 30px;
    height: 25px;
}

.navbar-nav {
    gap: 2px;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--nav-text) !important;
    padding: 10px 18px !important;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary) !important;
}

.nav-link:hover {
    background-color: rgba(39, 169, 52, 0.05);
}

/* =========================================
   CALL BUTTONS STYLES (NEW)
   ========================================= */
.navbar-call-box {
    background: rgba(39, 169, 52, 0.05);
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid rgba(39, 169, 52, 0.2);
    transition: all 0.3s ease;
}

.navbar-call-box:hover {
    background: rgba(39, 169, 52, 0.1);
    border-color: var(--secondary);
    transform: translateY(-2px);
}

.call-link {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--secondary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.call-link i {
    font-size: 0.9rem;
    margin-right: 4px;
}

.call-link:hover {
    color: var(--secondary-dark);
    transform: translateY(-2px);
}

/* Separator for desktop */
.navbar-call-box .text-secondary {
    color: #ccc !important;
    font-size: 0.8rem;
    margin: 0 4px;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 85px; /* Space for fixed navbar */
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out, transform 8s ease;
    transform: scale(1.05);
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.85) 0%, rgba(21, 213, 40, 0.2) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
}

.hero-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.5rem;
    line-height: 1.1;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

.hero-title span {
    color: var(--secondary);
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.15rem;
    line-height: 1.7;
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    border-left: 5px solid var(--secondary);
    box-shadow: 0 10px 30px rgba(16, 16, 16, 0.3);
    max-width: 850px;
    margin-bottom: 2rem;
    backdrop-filter: blur(5px);
}

.hero-btns {
    margin-bottom: 3rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-custom-primary {
    background-color: var(--secondary);
    border: 2px solid var(--secondary);
    color: white;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(9, 10, 9, 0.4);
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-custom-primary:hover {
    background-color: var(--secondary-dark);
    border-color: var(--secondary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(95, 100, 96, 0.6);
    color: white;
}

.btn-custom-outline {
    background-color: transparent;
    border: 2px solid white;
    color: white;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-custom-outline:hover {
    background-color: white;
    color: var(--primary);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.stat-item {
    text-align: left;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #e0e0e0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Animations */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   FOOTER STYLES
   ========================================= */
.footer-section {
    background-color: var(--dark);
    color: white;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    color: white;
}

.footer-text {
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 1.5rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background-color: var(--secondary);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    color: #9ca3af;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 0.9rem;
}

/* =========================================
   RESPONSIVE ADJUSTMENTS
   ========================================= */
@media (max-width: 991px) {
    .navbar {
        padding: 10px 0;
    }
    
    .navbar-brand {
        gap: 10px;
    }

    .brand-name {
        font-size: 1.1rem;
    }

    .brand-subname {
        font-size: 0.75rem;
    }

    .navbar-collapse {
        background-color: var(--white);
        margin-top: 15px;
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .navbar-nav {
        flex-direction: column;
        gap: 5px;
    }
    
    .nav-link {
        padding: 12px 15px !important;
        text-align: center;
    }
    
    .nav-link::after {
        display: none;
    }

    /* Stack call links on mobile */
    .navbar-call-box {
        flex-direction: column !important;
        width: 100%;
        padding: 12px;
        background: transparent;
        border: none;
        margin-top: 10px;
    }

    .call-link {
        width: 100%;
        justify-content: center;
        padding: 12px 0;
        border-radius: 8px;
    }
}
.call-link {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--secondary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.call-link i {
    font-size: 0.9rem;
    margin-right: 4px;
}

.call-link:hover {
    color: var(--secondary-dark);
    transform: translateY(-2px);
}

/* Separator for desktop */
.navbar-call-box .text-secondary {
    color: #ccc !important;
    font-size: 0.8rem;
    margin: 0 4px;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 85px; /* Space for fixed navbar */
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out, transform 8s ease;
    transform: scale(1.05);
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.85) 0%, rgba(21, 213, 40, 0.2) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
}

.hero-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.5rem;
    line-height: 1.1;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

.hero-title span {
    color: var(--secondary);
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.15rem;
    line-height: 1.7;
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    border-left: 5px solid var(--secondary);
    box-shadow: 0 10px 30px rgba(16, 16, 16, 0.3);
    max-width: 850px;
    margin-bottom: 2rem;
    backdrop-filter: blur(5px);
}

.hero-btns {
    margin-bottom: 3rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-custom-primary {
    background-color: var(--secondary);
    border: 2px solid var(--secondary);
    color: white;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(9, 10, 9, 0.4);
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-custom-primary:hover {
    background-color: var(--secondary-dark);
    border-color: var(--secondary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(95, 100, 96, 0.6);
    color: white;
}

.btn-custom-outline {
    background-color: transparent;
    border: 2px solid white;
    color: white;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-custom-outline:hover {
    background-color: white;
    color: var(--primary);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.stat-item {
    text-align: left;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #e0e0e0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Animations */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   FOOTER STYLES
   ========================================= */
.footer-section {
    background-color: var(--dark);
    color: white;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    color: white;
}

.footer-text {
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 1.5rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background-color: var(--secondary);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    color: #9ca3af;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 0.9rem;
}

/* =========================================
   RESPONSIVE ADJUSTMENTS
   ========================================= */
@media (max-width: 991px) {
    .navbar {
        padding: 10px 0;
    }
    
    .navbar-brand {
        gap: 10px;
    }

    .brand-name {
        font-size: 1.1rem;
    }

    .brand-subname {
        font-size: 0.75rem;
    }

    .navbar-collapse {
        background-color: var(--white);
        margin-top: 15px;
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .navbar-nav {
        flex-direction: column;
        gap: 5px;
    }
    
    .nav-link {
        padding: 12px 15px !important;
        text-align: center;
    }
    
    .nav-link::after {
        display: none;
    }

    /* Stack call links on mobile */
    .navbar-call-box {
        flex-direction: column !important;
        width: 100%;
        padding: 12px;
        background: transparent;
        border: none;
        margin-top: 10px;
    }

    .call-link {
        width: 100%;
        justify-content: center;
        padding: 8px 0;
        background: rgba(39, 169, 52, 0.05);
        border-radius: 8px;
        border: 1px solid rgba(39, 169, 52, 0.2);
    }
    
    .call-link:hover {
        background: rgba(39, 169, 52, 0.1);
    }

    .navbar-call-box .text-secondary {
        display: none !important; /* Hide separator on mobile */
    }
}

@media (max-width: 992px) {
    .hero-title { font-size: 2.8rem; }
    .hero-subtitle { font-size: 1rem; padding: 1rem 1.5rem; }
    .hero-stats { gap: 2rem; justify-content: center; text-align: center; }
    .stat-item { text-align: center; }
    .hero-btns { justify-content: center; display: flex; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.2rem; }
    .hero-subtitle { font-size: 0.95rem; padding: 1rem; }
    .stat-number { font-size: 2rem; }
    .hero-section { padding-top: 70px; }
    .hero-btns { flex-direction: column; align-items: center; }
    .btn-custom-primary, .btn-custom-outline { width: 100%; max-width: 300px; justify-content: center; }
}

@media (max-width: 576px) {
    .hero-title { font-size: 1.8rem; }
    .hero-subtitle { font-size: 0.9rem; }
    .stat-number { font-size: 1.8rem; }
    .stat-label { font-size: 0.8rem; }
    .navbar-logo { height: 50px; }
}

/* =========================================
   EXPANDED EXPERTISE SECTION (ZIG-ZAG LAYOUT)
   ========================================= */
.expertise-full-section {
    padding: 100px 0;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif; /* Ensure font is defined in base or import */
}

/* Subtle Background Gradient Mesh */
.expertise-full-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(6, 147, 227, 0.05), transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.section-header {
    max-width: 800px;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 1;
}

/* Typography & Colors */
.section-title {
    font-family: 'Playfair Display', serif; /* Professional Serif for Headings */
    font-size: 3rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
}

.section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
}

/* Badges */
.section-badge {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    color: #9b51e0;
    margin-bottom: 1rem;
    display: inline-block;
}

/* Feature Rows (Zig-Zag) */
.feature-row, .feature-row-reverse {
    position: relative;
    z-index: 1;
}

.feature-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    background: #f0f0f0; /* Fallback color while image loads */
}

.feature-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.feature-image-wrapper:hover img {
    transform: scale(1.05);
}

/* Image Decoration Badge */
.image-decoration-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #333;
    transform: translateY(100px); /* Hidden initially */
    opacity: 0;
    transition: all 0.4s ease 0.2s;
}

.feature-image-wrapper:hover .image-decoration-badge {
    transform: translateY(0);
    opacity: 1;
}

/* Specific Badge Colors */
.badge-green { color: #00d084; }
.badge-blue { color: #0693e3; }

/* Feature Content Styling */
.feature-content {
    padding: 2rem 0;
}

.feature-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    color: #1a1a1a;
}

/* Gradient Text Effects */
.text-gradient-primary {
    background: linear-gradient(135deg, #0693e3, #9b51e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-green {
    background: linear-gradient(135deg, #7bdcb5, #00d084);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-blue {
    background: linear-gradient(135deg, #8ed1fc, #0693e3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-desc {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Feature Checklist */
.feature-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-checklist li {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #333;
    display: flex;
    align-items: flex-start;
}

.feature-checklist li i {
    margin-top: 2px;
    font-size: 0.9rem;
}

/* CTA Box */
.expertise-cta-box {
    background: linear-gradient(135deg, #0693e3, #9b51e0);
    border-radius: 24px;
    padding: 3rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(6, 147, 227, 0.3);
    margin-top: 2rem;
}

.expertise-cta-box::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    filter: blur(40px);
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.cta-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

.btn-custom-white {
    background: white;
    color: #0693e3;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: none;
    cursor: pointer;
}

.btn-custom-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    color: #0575b5;
}

/* =========================================
   RESPONSIVE ADJUSTMENTS
   ========================================= */

/* Tablet & Below */
@media (max-width: 991px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .feature-title {
        font-size: 1.8rem;
    }
    
    /* Force stacking order on mobile */
    .order-1 { order: 1; }
    .order-2 { order: 2; }
    
    /* Center align content on mobile for better readability */
    .feature-content {
        text-align: left !important;
        padding: 1.5rem 0;
    }
    
    .feature-checklist {
        align-items: flex-start !important;
    }
    
    /* Stack CTA */
    .expertise-cta-box {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 2rem 1.5rem;
    }
    
    .cta-action {
        width: 100%;
    }
    
    .btn-custom-white {
        width: 100%;
        justify-content: center;
    }
}

/* Mobile Phones */
@media (max-width: 768px) {
    .expertise-full-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .feature-title {
        font-size: 1.5rem;
    }
    
    .feature-desc {
        font-size: 0.95rem;
    }
    
    .image-decoration-badge {
        bottom: 10px;
        left: 10px;
        padding: 8px 15px;
        font-size: 0.8rem;
    }
    
    .expertise-cta-box {
        padding: 1.5rem;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-text {
        font-size: 1rem;
    }
}

/* Small Mobile */
@media (max-width: 576px) {
    .section-title {
        font-size: 1.75rem;
    }
    
    .feature-title {
        font-size: 1.3rem;
    }
    
    .cta-title {
        font-size: 1.3rem;
    }
}

/* Add this to your CSS */
.text-gradient-purple {
    background: linear-gradient(135deg, #9b51e0, #7a3eb5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.badge-purple { color: #9b51e0; }

/* Base styles for the quote section */
.quote-section {
    background-color: #f8f9fa;
    margin-top: 2rem;
}

/* Container for the form card */
.quote-container {
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid #e0e0e0;
    transition: box-shadow 0.3s ease;
}

.quote-container:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Form Inputs */
.form-control-lg {
    border-radius: 0.5rem;
    border: 1px solid #ced4da;
    padding: 0.8rem 1rem;
}

.form-control-lg:focus {
    border-color: #6c5ce7;
    box-shadow: 0 0 0 0.25rem rgba(108, 92, 231, 0.15);
}

/* Custom Primary Button */
.btn-custom-primary {
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-custom-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.4);
}

/* Badge styling */
.section-badge {
    background-color: rgba(108, 92, 231, 0.1);
    color: #6c5ce7;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}
/* =========================================
   TESTIMONIALS SECTION
   ========================================= */
.testimonials-section {
    padding: 80px 0;
    background: var(--light);
    position: relative;
    overflow: hidden;
}

/* Background Decoration */
.testimonials-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(39, 169, 52, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Section Header */
.testimonials-section .section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    position: relative;
    z-index: 1;
}

.testimonials-section .section-badge {
    display: inline-block;
    background: rgba(39, 169, 52, 0.1);
    color: var(--secondary);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.testimonials-section .section-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.testimonials-section .section-title span {
    color: var(--secondary);
}

.testimonials-section .section-divider {
    width: 60px;
    height: 3px;
    background: var(--secondary);
    margin: 0.75rem auto 0;
    border-radius: 2px;
}

/* Testimonial Card */
.testimonial-card {
    padding: 2rem 1.75rem;
    background: var(--white);
    border-radius: 16px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border-color: rgba(39, 169, 52, 0.1);
}

/* Quote Icon */
.testimonial-quote {
    font-size: 2.2rem;
    color: var(--secondary);
    opacity: 0.15;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
    flex-grow: 1;
}

/* Author Section */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--secondary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.testimonial-card:hover .author-avatar {
    transform: scale(1.05);
}

.author-name {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 0.05rem;
}

.author-role {
    font-size: 0.85rem;
    color: var(--text);
}

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */

/* Tablets */
@media (max-width: 992px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonials-section .section-title {
        font-size: 2.2rem;
    }
}

/* Mobile Landscape */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 50px 0;
    }
    
    .testimonials-section .section-title {
        font-size: 1.8rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
}

/* Mobile Portrait */
@media (max-width: 576px) {
    .testimonials-section {
        padding: 40px 0;
    }
    
    .testimonials-section .section-title {
        font-size: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.25rem;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .author-avatar {
        width: 45px;
        height: 45px;
        font-size: 0.9rem;
    }
}

/* =========================================
   ALTERNATIVE STYLES (Optional Add-ons)
   ========================================= */

/* Dark Theme Version */
.testimonials-dark {
    background: var(--dark);
}

.testimonials-dark .section-title {
    color: white;
}

.testimonials-dark .testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.08);
}

.testimonials-dark .testimonial-text {
    color: rgba(255, 255, 255, 0.85);
}

.testimonials-dark .author-name {
    color: white;
}

.testimonials-dark .author-role {
    color: rgba(255, 255, 255, 0.6);
}

.testimonials-dark .testimonial-author {
    border-top-color: rgba(255, 255, 255, 0.08);
}

.testimonials-dark .testimonial-quote {
    color: var(--secondary);
    opacity: 0.2;
}

/* Gradient Background Version */
.testimonials-gradient {
    background: linear-gradient(135deg, var(--dark) 0%, #1a2a3a 100%);
}

.testimonials-gradient .section-title {
    color: white;
}

.testimonials-gradient .testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.testimonials-gradient .testimonial-text {
    color: rgba(255, 255, 255, 0.85);
}

.testimonials-gradient .author-name {
    color: white;
}

.testimonials-gradient .author-role {
    color: rgba(255, 255, 255, 0.6);
}

.testimonials-gradient .testimonial-author {
    border-top-color: rgba(255, 255, 255, 0.08);
}

.testimonials-gradient .testimonial-quote {
    color: var(--secondary);
    opacity: 0.2;
}

/* With Rating Stars */
.testimonial-rating {
    margin-bottom: 0.75rem;
    color: #fbbf24;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.testimonial-rating i {
    margin-right: 2px;
}

/* With Image Avatar */
.author-avatar-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

/* Different Avatar Colors */
.author-avatar.blue {
    background: #0693e3;
}

.author-avatar.purple {
    background: #9b51e0;
}

.author-avatar.gold {
    background: #f9b233;
}

.author-avatar.red {
    background: #ef4444;
}

.author-avatar.pink {
    background: #ec4899;
}

/* Hover Effects - Additional */
.testimonial-card:hover .testimonial-quote {
    opacity: 0.3;
    transform: scale(1.1);
    transition: all 0.3s ease;
}

/* Card with Left Border Accent */
.testimonial-card-accent {
    border-left: 4px solid var(--secondary);
}

.testimonial-card-accent.blue {
    border-left-color: #0693e3;
}

.testimonial-card-accent.purple {
    border-left-color: #9b51e0;
}

.testimonial-card-accent.gold {
    border-left-color: #f9b233;
}