/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1f2937;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: #6b7280;
}

.highlight {
    background: linear-gradient(120deg, #2563eb 0%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
}

.btn-secondary {
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(229, 231, 235, 0.3);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 20px;
}

.nav-brand .logo {
    height: 75px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #1f2937;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: #2563eb;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2563eb;
    transition: width 0.3s ease;
}

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

.cta-nav {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white !important;
    padding: 14px 28px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.cta-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.cta-nav::after {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #1f2937;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
    height: 100vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232563eb' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 520px;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
    /* padding: 2rem 0; */
    padding: 130px 0 30px;
}

.hero-text h1 {
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #4b5563;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.4s both;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
}

/* Hero Form */
.hero-form {
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    position: relative;
    width: 100%;
    /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); */
    /* animation: slideInRight 1s ease; */
    border: 3px solid;
    border-image: linear-gradient(135deg, #2563eb, #f97316) 1;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    animation: slideInRight 1s ease;
}

.hero-form::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-color: linear-gradient(135deg, #2563eb, #f97316);
    border-radius: 19px;
    z-index: -1;
}

/* Remove gradient background completely */

.hero-form h3 {
    color: #1f2937;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
    line-height: 1.3;
}

.hero-form p {
    color: #6b7280;
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
}

/* Forms */
.contact-form {
    width: 100%;
}

.form-group {
    margin-bottom: 0.85rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: white !important;
}

/* Prevent browser autofill from changing background */
.form-group input:-webkit-autofill,
.form-group input:-webkit-autofill:hover,
.form-group input:-webkit-autofill:focus,
.form-group input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
    -webkit-text-fill-color: #1f2937 !important;
    background: white !important;
}

/* Hero form specific overrides */
.hero-form .form-group input,
.hero-form .form-group select,
.hero-form .form-group textarea {
    background: white !important;
}

.hero-form .form-group input:-webkit-autofill,
.hero-form .form-group input:-webkit-autofill:hover,
.hero-form .form-group input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
    background: white !important;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    background: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-disclaimer {
    font-size: 0.875rem;
    color: #9ca3af;
    margin-top: 1rem;
    text-align: center;
}

/* Sections */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.25rem;
    color: #6b7280;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f3f4f6;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #f97316);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 1.5rem;
    color: white;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: #1f2937;
    min-height: 3rem;
    display: flex;
    align-items: center;
}

.service-card p {
    margin-bottom: 1.5rem;
    color: #6b7280;
}

.service-card ul {
    list-style: none;
    padding: 0;
}

.service-card li {
    padding: 0.5rem 0;
    color: #4b5563;
    position: relative;
    padding-left: 1.5rem;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background: #f8fafc;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 1.75rem;
    color: white;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: #1f2937;
}

.feature-card p {
    color: #6b7280;
}

/* Case Studies Section */
.case-studies {
    padding: 80px 0;
    background: white;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.case-study-card {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    color: white;
    padding: 2rem;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(249, 115, 22, 0.3);
}

.case-study-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #2563eb, #f97316);
    border-radius: 50%;
    transform: translate(50px, -50px);
    opacity: 0.15;
}

.case-study-header {
    margin-bottom: 1.5rem;
}

.case-study-header h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.industry {
    background: rgba(37, 99, 235, 0.2);
    color: #93c5fd;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.results {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 1.5rem 0;
}

.result {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
}

.result-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: #f97316;
    line-height: 1;
    min-width: 80px;
}

.result-label {
    font-size: 0.8rem;
    color: #94a3b8;
    font-weight: 400;
    line-height: 1.2;
}

.case-study-card p {
    color: #d1d5db;
    line-height: 1.6;
}

/* Creative Stats Badges */
.stats-badges {
    display: flex;
    justify-content: space-around;
    margin: 1.5rem 0;
    padding: 1rem 0;
}

.stat-badge {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(251, 191, 36, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: all 0.3s ease;
    cursor: pointer;
}

.stat-badge::before {
    content: attr(data-stat);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #f97316, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    z-index: 2;
}

.stat-badge::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f97316, #fbbf24);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.stat-badge:hover {
    transform: scale(1.1);
    background: rgba(249, 115, 22, 0.2);
}

.stat-badge:hover::after {
    opacity: 0.2;
}

.badge-label {
    position: absolute;
    bottom: -20px;
    font-size: 0.65rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
    white-space: nowrap;
}

/* Special styling for timeline badges */
.timeline-badge::before {
    font-size: 1.8rem !important;
}

.timeline-badge .badge-label {
    color: #fbbf24;
    font-weight: 600;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 60px;
    background: #f8fafc;
}

/* Testimonials Slider */
.testimonials-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: visible;
}

.slider-container {
    position: relative;
    padding: 0 0;
    overflow: hidden;
    width: 100%;
}

.testimonials-wrapper {
    display: flex;
    transition: transform 0.5s ease;
    width: 300%; /* Total width for 9 cards (6 original + 3 duplicates) */
    cursor: grab;
    user-select: none;
}

.testimonials-wrapper:active {
    cursor: grabbing;
}

.testimonials-wrapper.dragging {
    cursor: grabbing;
    transition: none;
}

.testimonials-wrapper .testimonial-card {
    width: calc(11.111% - 1.33rem); /* 100% / 9 cards = 11.111% */
    min-width: calc(11.111% - 1.33rem);
    max-width: calc(11.111% - 1.33rem);
    flex-shrink: 0;
    margin: 0 0.67rem;
    box-sizing: border-box;
    height: 280px;
}

.testimonials-slider .testimonial-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #2563eb;
    transition: all 0.3s ease;
    height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.stars {
    margin-bottom: 1rem;
}

.stars i {
    color: #fbbf24;
    margin-right: 0.25rem;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1rem;
    color: #374151;
    line-height: 1.5;
    font-size: 0.9rem;
    flex-grow: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

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

.author-info h4 {
    margin: 0;
    color: #1f2937;
    font-size: 1rem;
}

.author-info span {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Slider Navigation */
.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 2px solid #e5e7eb;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-prev:hover,
.slider-next:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: -60px;
}

.slider-next {
    right: -60px;
}

.slider-prev i,
.slider-next i {
    font-size: 1.25rem;
    color: #2563eb;
    font-weight: bold;
}

.slider-prev:hover i,
.slider-next:hover i {
    color: white;
}

.slider-prev:hover,
.slider-next:hover {
    border-color: #2563eb;
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    width: 30px;
    border-radius: 5px;
    background: #2563eb;
}

.dot:hover {
    background: #94a3b8;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 1rem;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #2563eb;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 600;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: #2563eb;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    opacity: 1;
    padding-bottom: 1.5rem;
}

.faq-answer p {
    color: #6b7280;
    line-height: 1.7;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    color: white;
}

.contact .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact .section-header h2,
.contact .section-header p {
    color: white;
}

.contact .section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact .section-header p {
    font-size: 1.25rem;
    color: #d1d5db;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

/* Contact Info Simple */
.contact-info-simple {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 500px;
}

.contact-text h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-text p {
    color: #d1d5db;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-benefits-simple {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.contact-benefits-simple li {
    color: #e5e7eb;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.contact-benefits-simple li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.contact-cta {
    color: #93c5fd;
    font-weight: 500;
    margin-bottom: 0;
}

.contact-simple {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.contact-method {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-method p {
    color: #e5e7eb;
    margin: 0;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-method p i {
    color: #60a5fa;
    font-size: 1rem;
    min-width: 16px;
}

.contact-method strong {
    color: white;
}

.contact-method a {
    color: #93c5fd;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-method a:hover {
    color: white;
    text-decoration: underline;
}

.contact-method span {
    color: #9ca3af;
    font-size: 0.875rem;
    padding-left: 1.5rem;
    font-style: italic;
}

.contact-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.contact-icon i {
    font-size: 1.5rem;
    color: white;
}

.contact-card h3 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.contact-card p {
    margin-bottom: 0.5rem;
}

.contact-card a {
    color: #93c5fd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: #dbeafe;
}

.contact-card span {
    font-size: 0.875rem;
    color: #9ca3af;
}

.chat-button {
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.chat-button:hover {
    background: linear-gradient(135deg, #ea580c, #dc2626);
    transform: translateY(-2px);
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #f97316);
}

.main-contact-form h3 {
    color: white;
    margin-bottom: 1.5rem;
    text-align: center;
}

.main-contact-form .form-group input,
.main-contact-form .form-group select,
.main-contact-form .form-group textarea {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: #1f2937;
    font-weight: 500;
}

.main-contact-form .form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
}

.main-contact-form .form-group select option {
    background: #1f2937;
    color: white;
    padding: 8px;
}

.main-contact-form .form-group select:invalid {
    color: rgba(107, 114, 128, 0.7);
}

.main-contact-form .form-group input::placeholder,
.main-contact-form .form-group select::placeholder,
.main-contact-form .form-group textarea::placeholder {
    color: rgba(107, 114, 128, 0.9);
    font-weight: 400;
}

.main-contact-form .form-group input:focus,
.main-contact-form .form-group select:focus,
.main-contact-form .form-group textarea:focus {
    background: rgba(255, 255, 255, 1);
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
    outline: none;
}

.main-contact-form .btn-primary {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: auto;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.main-contact-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.5);
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
}

/* Footer */
.footer {
    background: #111827;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-logo {
    height: 80px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-section p {
    color: #9ca3af;
    margin-bottom: 1.5rem;
}

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

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

.social-links a:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
    white-space: nowrap;
    color: #9ca3af;
}

.footer-section a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-section i {
    margin-right: 0.5rem;
    color: #2563eb;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 40px;
}

.footer-bottom-content p {
    margin: 0;
    line-height: 1;
    color: #9ca3af;
}

.footer-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

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

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

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

.fade-in {
    animation: fadeIn 1s ease;
}

.fade-in-up {
    animation: fadeInUp 1s ease;
}



/* Responsive Design */


@media (max-width: 1024px) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 2rem 0;
    }
    
    .hero-content {
        /* grid-template-columns: 1fr; */
        gap: 2rem;
    }
    
    .hero-form {
        max-width: 500px;
        margin: 0 auto;
    }
    
    h1 {
        font-size: 2.75rem;
    }
    
    .hero-text p {
        font-size: 1.125rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info-simple {
        gap: 1.5rem;
        max-width: 100%;
    }
    
    .contact-text h3 {
        font-size: 1.25rem;
    }
    
    .contact-method p,
    .contact-method span {
        padding-left: 1rem;
    }
    
    .contact .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) and (min-width: 481px) {
    /* iPad testimonials - 2 cards at a time */
    .testimonials-wrapper .testimonial-card {
        width: calc(22.222% - 1.33rem) !important; /* Show 2 cards: 2 * 11.111% = 22.222% */
        min-width: calc(22.222% - 1.33rem) !important;
        max-width: calc(22.222% - 1.33rem) !important;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 1.5rem 0;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1rem;
    }
    
    .services-grid,
    .features-grid,
    .case-studies-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonials-slider {
        max-width: 100%;
    }
    
    .slider-container {
        padding: 0 50px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-info-simple {
        gap: 1rem;
    }
    
    .contact-text h3 {
        font-size: 1.125rem;
    }
    
    .contact-simple {
        gap: 1rem;
    }
    
    .contact-method p,
    .contact-method span {
        padding-left: 0.75rem;
    }
    
    .contact-method span {
        font-size: 0.8rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .results {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    h1 {
        font-size: 1.5rem;
        line-height: 1.2;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .hero {
        padding: 100px 0 2rem 0;
        min-height: auto;
        height: auto;
    }
    
    .hero-content {
        padding: 0 1rem;
        gap: 2rem;
    }
    
    .hero-text {
        margin-bottom: 2rem;
        padding-top: 1rem;
    }
    
    .hero-text h1 {
        margin-bottom: 1.5rem;
        line-height: 1.3;
    }
    
    .hero-text p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .hero-stats {
        gap: 0.75rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .hero-form,
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .service-card,
    .feature-card,
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .btn-primary {
        width: 100%;
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    /* Complete mobile testimonials override */
    .testimonials {
        padding: 80px 0 !important;
    }
    
    .testimonials-slider {
        margin: 0 !important;
        padding: 0 !important;
        max-width: 100vw !important;
        overflow: hidden !important;
        position: relative !important;
    }
    
    .slider-container {
        padding: 0 50px !important; /* Further reduced padding for maximum card width */
        overflow: hidden !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .testimonials-wrapper {
        display: flex !important;
        width: 600% !important; /* 6 cards total */
        transition: transform 0.5s ease !important;
        gap: 10px !important; /* Minimal gap for maximum card width */
    }
    
    .testimonials-wrapper .testimonial-card {
        width: calc((100% - 50px) / 6) !important; /* Maximum width minus minimal gap space */
        min-width: calc((100% - 50px) / 6) !important;
        max-width: calc((100% - 50px) / 6) !important;
        margin: 0 !important; /* No margins, using gap instead */
        padding: 2rem !important;
        flex-shrink: 0 !important;
        box-sizing: border-box !important;
    }
    
    .slider-prev,
    .slider-next {
        position: absolute !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        width: 40px !important;
        height: 40px !important;
        font-size: 1rem !important;
        z-index: 10 !important;
        background: white !important;
        border: 2px solid #e5e7eb !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        cursor: pointer !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15) !important;
        color: #2563eb !important;
        transition: all 0.3s ease !important;
    }
    
    .slider-prev:hover,
    .slider-next:hover {
        background: #2563eb !important;
        color: white !important;
        transform: translateY(-50%) scale(1.1) !important;
        border-color: #2563eb !important;
    }
    
    .slider-prev i,
    .slider-next i {
        color: inherit !important;
        font-size: 1rem !important;
        font-weight: bold !important;
    }
    
    .slider-prev {
        left: 5px !important;
    }
    
    .slider-next {
        right: 5px !important;
    }
    
    .testimonial-card p {
        font-size: 0.875rem;
        -webkit-line-clamp: 4;
    }
}

@media only screen and (max-width: 1199.98px){
    .footer-content {
        row-gap: 30px;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        column-gap: 20px !important;
    }
    .footer-section:not(:first-child) {
        width: calc((100% / 3) - 20px);
    }
    .nav-links{
        gap: 20px;
    }
    .contact-content {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .contact-form-container{
        padding: 30px 20px;
    }
}

@media only screen and (max-width: 991.98px){
    .nav-links.active {
        display: flex;
        position: absolute;
        background-color: #fff;
        flex-direction: column;
        width: 100%;
        top: 100px;
        padding: 15px 30px 30px;
        left: 0;
        align-items: baseline;
    }
    .services,.contact,.faq,.testimonials,.case-studies,.why-choose-us{
        padding: 50px 0 !important;
    }
    .section-header {
        margin-bottom: 2.5rem;
    }
    .hero-content {
        grid-template-columns: 1fr;
    }
    .services-grid, .features-grid, .case-studies-grid, .testimonials-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    .case-studies-grid{
        grid-template-columns: 1fr;
    }
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer {
        padding: 50px 0 20px;
    }
    .footer-content {
        column-gap: 0px !important;
    }
    .footer-section:not(:first-child) {
        width: calc((100% / 3) - 0px);
    }
    .testimonials-slider {
        max-width: calc(100% - 100px);
    }
}

@media only screen and (max-width: 767.98px){
    .footer-content{
        text-align: start;
        row-gap: 20px;
    }
    .footer-section:not(:first-child) {
        width: 100%;
    }
    .services,.contact,.faq,.testimonials,.case-studies,.why-choose-us{
        padding: 30px 0 !important;
    }
    .footer {
        padding: 30px 0 20px;
    }
    .footer-content .footer-section .footer-logo {
        height: 70px;
        width: 100%;
        margin-bottom: 0;
    }
    .hero-content {
        padding: 30px 0px;
    }
    .hero-text {
        margin-bottom: 0;
    }
    .hero-form{
        padding: 25px 15px;
    }
    .services-grid, .features-grid, .case-studies-grid, .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .nav-brand .logo {
        height: 60px;
    }
    .nav-links.active{
        top: 90px;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 2rem;
}

.hidden {
    display: none;
}

.visible {
    display: block;
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.btn-primary:disabled {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%) !important;
    opacity: 0.8 !important;
    cursor: not-allowed !important;
}

/* Success/Error Messages */
.success-message {
    background: #10b981;
    color: white;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    text-align: center;
}

.error-message {
    background: #ef4444;
    color: white;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    text-align: center;
}