/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9fafb;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Color Variables */
:root {
    --wordpress-color: #21759B;
    --magento-color: #EE672F;
    --shopify-color: #96BF48;
    --figma-color: #EC4899;
    --marketing-color: #F59E0B;
    --purple-color: #8B5CF6;
    --indigo-color: #6366F1;
    --blue-color: #3B82F6;
    --green-color: #10B981;
    --yellow-color: #F59E0B;
    --pink-color: #EC4899;
}


/* Navigation */
.navbar {
    background: white !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1000 !important;
}

.nav-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
    width: 100%;
}

.nav-content {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    height: 70px !important;
}

.logo-text {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--shopify-color), var(--magento-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
a.logo-text {
    
}

.nav-menu {
    display: flex !important;
    align-items: center !important;
    gap: 32px !important;
}

.nav-link {
    text-decoration: none !important;
    color: #4B5563 !important;
    font-weight: 500 !important;
    transition: color 0.3s ease !important;
}

.nav-link:hover {
    color: var(--shopify-color) !important;
}

.cta-button {
    background: var(--shopify-color);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background: #7BA83A;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #EBF8FF 0%, #FFFFFF 50%, #F0FDF4 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(150, 191, 72, 0.1);
    color: var(--shopify-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #111827;
}

.highlight {
    color: var(--shopify-color);
}

.hero-description {
    font-size: 20px;
    color: #6B7280;
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.primary-button {
    background: var(--magento-color);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 14px rgba(238, 103, 47, 0.3);
}

.primary-button:hover {
    background: #D55A2A;
}

.secondary-button {
    background: transparent;
    color: #374151;
    padding: 16px 32px;
    border: 2px solid #D1D5DB;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.secondary-button:hover {
    border-color: var(--shopify-color);
    color: var(--shopify-color);
}

.hero-features {
    display: flex;
    gap: 24px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6B7280;
    font-size: 14px;
}

.check-icon {
    width: 20px;
    height: 20px;
    color: var(--green-color);
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.stats-card {
    background: white;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
}

.stats-header h3 {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 24px;
    color: #111827;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.stat-item {
    text-align: center;
}

.stat-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.stat-icon svg {
    width: 40px;
    height: 40px;
}

.stat-item.wordpress .stat-icon {
    background: rgba(33, 117, 155, 0.1);
    color: var(--wordpress-color);
}

.stat-item.magento .stat-icon {
    background: rgba(238, 103, 47, 0.1);
    color: var(--magento-color);
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 4px;
}

.stat-item.wordpress .stat-number {
    color: var(--wordpress-color);
}

.stat-item.magento .stat-number {
    color: var(--magento-color);
}

.stat-label {
    font-size: 14px;
    color: #6B7280;
}

.total-stats {
    background: linear-gradient(135deg, var(--shopify-color), #7BA83A);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    color: white;
}

.total-number {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 4px;
}

.total-label {
    font-size: 14px;
    opacity: 0.9;
}

/* Trust Section */
.trust-section {
    padding: 48px 0;
    background: white;
}

.trust-content {
    text-align: center;
    margin-bottom: 32px;
}

.trust-text {
    color: #6B7280;
    font-weight: 500;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    opacity: 0.6;
}

.brand-item {
    background: #F3F4F6;
    border-radius: 12px;
    padding: 24px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #9CA3AF;
}

/* Services Section */
.services {
    padding: 80px 0px;
    background: #F9FAFB;
}

/* Additional styles from shopify.html (no duplicates, only unique or missing rules) */
.brand-swiper {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.swiper-wrapper {
    transition-timing-function: linear !important;
    align-items: center;
}

.swiper-slide {
    padding: 0 30px;
    white-space: nowrap;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ddd;
    border-radius: 4px;
}

.brand-swiper .brand-item {
    background: #F3F4F6;
    border-radius: 12px;
    padding: 24px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #9CA3AF;
    margin: 0 8px;
}

/* Ensure .brand-swiper .brand-item is not duplicated, but margin: 0 8px; is added if missing */

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 24px;
}

.section-description {
    font-size: 20px;
    color: #6B7280;
    max-width: 600px;
    margin: 0 auto;
}

.service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 80px;
}

.service-row.reverse {
    direction: rtl;
}

.service-row.reverse>* {
    direction: ltr;
}

.service-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.service-badge.wordpress {
    background: rgba(33, 117, 155, 0.1);
    color: var(--wordpress-color);
}

.service-badge.magento {
    background: rgba(238, 103, 47, 0.1);
    color: var(--magento-color);
}

.service-badge.figma {
    background: rgba(236, 72, 153, 0.1);
    color: var(--figma-color);
}

.service-badge.marketing {
    background: rgba(245, 158, 11, 0.1);
    color: var(--marketing-color);
}

.service-title {
    font-size: 32px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 24px;
}

.service-description {
    font-size: 18px;
    color: #6B7280;
    margin-bottom: 32px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 32px;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: #374151;
}

.service-button {
    padding: 12px 32px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-button.wordpress {
    background: var(--wordpress-color);
    color: white;
}

.service-button.wordpress:hover {
    background: #1A5F7A;
}

.service-button.magento {
    background: var(--magento-color);
    color: white;
}

.service-button.magento:hover {
    background: #D55A2A;
}

.service-button.figma {
    background: var(--figma-color);
    color: white;
}

.service-button.figma:hover {
    background: #DB2777;
}

.service-button.marketing {
    background: var(--marketing-color);
    color: white;
}

.service-button.marketing:hover {
    background: #D97706;
}

/* Service Visuals */
.service-visual {
    position: relative;
}

/* .migration-diagram {
    background: white;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
} */

.migration-diagram img {
    border-radius: 16px;
    max-width: 550px;
}

@media screen and (max-width: 1024px) {
    .migration-diagram img {
        max-width: 100%;
    }
}

.migration-diagram.magento-to-shopify-img {
    justify-content: start;
}

.platform-box {
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    color: white;
    font-weight: 700;
    min-width: 120px;
}

.platform-box.wordpress {
    background: var(--wordpress-color);
}

.platform-box.magento {
    background: var(--magento-color);
}

.platform-box.shopify {
    background: var(--shopify-color);
}

.platform-box small {
    display: block;
    font-size: 12px;
    opacity: 0.8;
    font-weight: 400;
}

.arrow {
    position: relative;
    flex: 1;
    margin: 0 20px;
}

.arrow-line {
    height: 3px;
    background: #9CA3AF;
    position: relative;
}

.arrow.complex .arrow-line {
    margin-bottom: 4px;
}

.arrow-head {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid #9CA3AF;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.data-labels {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: center;
}

.data-labels span {
    font-size: 10px;
    color: #6B7280;
    white-space: nowrap;
}

.success-indicator {
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--green-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.success-indicator svg {
    width: 24px;
    height: 24px;
}

.performance-boost {
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--green-color);
    color: white;
    padding: 12px;
    border-radius: 12px;
    text-align: center;
    min-width: 60px;
}

.boost-number {
    font-size: 18px;
    font-weight: 700;
    display: block;
}

.boost-label {
    font-size: 10px;
    opacity: 0.9;
}

/* Design Showcase */
.design-showcase {
    background: white;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.design-card {
    border-radius: 12px;
    padding: 16px;
    color: white;
    text-align: center;
}

.design-card.desktop {
    background: linear-gradient(135deg, var(--figma-color), var(--purple-color));
}

.design-card.mobile {
    background: linear-gradient(135deg, var(--blue-color), var(--indigo-color));
}

.design-card.development {
    background: linear-gradient(135deg, var(--shopify-color), var(--green-color));
    grid-column: 1 / -1;
}

.design-header {
    font-size: 12px;
    margin-bottom: 12px;
    opacity: 0.9;
}

.design-mockup {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    height: 64px;
    margin-bottom: 12px;
}

.design-elements {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.element {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    height: 8px;
}

.element.short {
    width: 75%;
}

.element.shorter {
    width: 66%;
}

.dev-elements {
    display: flex;
    gap: 8px;
}

.dev-element {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    height: 32px;
    flex: 1;
}

/* Growth Metrics */
.growth-metrics {
    display: flex;
    justify-content: end;
    align-items: center;
}

.growth-metrics img {
    border-radius: 16px;
    max-width: 550px;
}

@media (max-width: 1025px) {
    .service-visual {
        order: 2;
    }

    .growth-metrics img {
        max-width: 100%;
    }

}

.metrics-header {
    text-align: center;
    margin-bottom: 24px;
}

.metrics-header h4 {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
}

.metric-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.metric-label {
    color: #6B7280;
    min-width: 120px;
    font-size: 14px;
}

.metric-bar {
    flex: 1;
    height: 8px;
    background: #E5E7EB;
    border-radius: 4px;
    overflow: hidden;
}

.metric-progress {
    height: 100%;
    background: var(--green-color);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.metric-progress.blue {
    background: var(--blue-color);
}

.metric-progress.purple {
    background: var(--purple-color);
}

.metric-value {
    color: var(--green-color);
    font-weight: 600;
    font-size: 14px;
    min-width: 60px;
    text-align: right;
}

.metric-value.blue {
    color: var(--blue-color);
}

.metric-value.purple {
    color: var(--purple-color);
}

/* Reviews Section */
.reviews {
    padding: 80px 0;
    background: #F9FAFB;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 64px;
}

.additional-reviews {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--shopify-color), var(--green-color));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    margin-right: 16px;
}

.reviewer-name {
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
}

.reviewer-title {
    color: #6B7280;
    font-size: 14px;
}

.review-stars {
    margin-bottom: 16px;
}

.star {
    color: #FCD34D;
    font-size: 20px;
}

.review-text {
    color: #374151;
    line-height: 1.6;
    margin-bottom: 20px;
}

.review-tag {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
}

.review-tag.wordpress {
    background: rgba(33, 117, 155, 0.1);
    color: var(--wordpress-color);
}

.review-tag.magento {
    background: rgba(238, 103, 47, 0.1);
    color: var(--magento-color);
}

.review-tag.figma {
    background: rgba(236, 72, 153, 0.1);
    color: var(--figma-color);
}

/* Process Section */
.process {
    padding: 80px 0;
    background: white;
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}

.process-card {
    border-radius: 24px;
    padding: 48px;
    position: relative;
}

.process-card:first-child {
    background: linear-gradient(135deg, #EBF8FF 0%, #FFF7ED 100%);
}

.process-card:last-child {
    background: linear-gradient(135deg, #F0FDF4 0%, #FAF5FF 100%);
}

.process-header {
    text-align: center;
    margin-bottom: 32px;
}

.process-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 12px 24px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 16px;
    font-weight: 700;
    color: #111827;
}

.process-icon {
    width: 24px;
    height: 24px;
    color: var(--magento-color);
}

.process-subtitle {
    color: #6B7280;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.step-number.wordpress {
    background: var(--wordpress-color);
}

.step-number.magento {
    background: var(--magento-color);
}

.step-number.shopify {
    background: var(--shopify-color);
}

.step-number.purple {
    background: var(--purple-color);
}

.step-number.pink {
    background: var(--pink-color);
}

.step-number.indigo {
    background: var(--indigo-color);
}

.step-number.green {
    background: var(--green-color);
}

.step-number.yellow {
    background: var(--yellow-color);
}

.step-number.blue {
    background: var(--blue-color);
}

.step-title {
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
}

.step-description {
    color: #6B7280;
    font-size: 14px;
    line-height: 1.5;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #1F2937 0%, #111827 100%);
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
}

.contact-description {
    font-size: 20px;
    color: #D1D5DB;
    margin-bottom: 32px;
    line-height: 1.6;
}

.contact-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #D1D5DB;
}

.contact-form {
    background: linear-gradient(135deg, #ffc0ad -20%, #66bbff 100%);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: #374151;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    color: #111827;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--shopify-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-submit {
    background: var(--shopify-color);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-submit:hover {
    background: #7BA83A;
}

/* Footer */
.footer {
    background: #111827;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 64px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--shopify-color), var(--magento-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer ul {
    padding-left: 0;
}

.footer-tagline {
    color: #9CA3AF;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9CA3AF;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--shopify-color);
    color: white;
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.footer-heading {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-list a {
    color: #9CA3AF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-list a:hover {
    color: var(--shopify-color);
}

.footer-list li {
    color: #9CA3AF;
    font-size: 14px;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    color: #9CA3AF;
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: #9CA3AF;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--shopify-color);
}

/* Responsive Design */

/* Tablet Styles */
@media (max-width: 1024px) {
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 48px;
    }

    .section-title {
        font-size: 40px;
    }

    .hero-content,
    .service-row,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-row.reverse {
        direction: ltr;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .additional-reviews {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-features {
        flex-direction: column;
        gap: 12px;
    }

    .section-title {
        font-size: 32px;
    }

    .section-description {
        font-size: 18px;
    }

    .service-title {
        font-size: 28px;
    }

    .service-description {
        font-size: 16px;
    }

    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stats-grid {
        gap: 16px;
    }

    /* .migration-diagram {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    } */

    .arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }

    .data-labels {
        position: static;
        transform: none;
        margin-top: 10px;
    }

    .success-indicator,
    .performance-boost {
        position: static;
        transform: none;
        margin-top: 20px;
    }

    .design-showcase {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .design-card.development {
        grid-column: 1;
    }

    .contact-title {
        font-size: 36px;
    }

    .contact-description {
        font-size: 18px;
    }

    .contact-form {
        padding: 24px;
    }

    .process-card {
        padding: 32px 24px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .hero-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 28px;
    }

    .service-title {
        font-size: 24px;
    }

    .contact-title {
        font-size: 28px;
    }

    .primary-button,
    .secondary-button {
        padding: 14px 24px;
        font-size: 16px;
    }

    .hero-buttons {
        gap: 12px;
    }

    .brands-grid {
        grid-template-columns: 1fr;
    }

    .brand-item {
        height: 60px;
        padding: 16px;
    }

    .stats-card,
    .review-card,
    .contact-form {
        padding: 20px;
    }

    .process-card {
        padding: 24px 16px;
    }

    .step {
        gap: 12px;
    }

    .step-number {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
}

/* Animation and Transitions */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.service-row,
.review-card,
.process-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 2px solid var(--shopify-color);
    outline-offset: 2px;
}

/* Print styles */
@media print {

    .navbar,
    .footer,
    .contact {
        display: none;
    }

    body {
        background: white;
        color: black;
    }

    .hero,
    .services,
    .reviews,
    .process {
        background: white;
        padding: 20px 0;
    }
}

/* new css */

.pg-statistics {
    padding-top: 50px;
    padding-bottom: 50px;
}

.pg-statistics .statistics-info {
    padding-left: 70px;
}

.pg-statistics .sec-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 36px;
}

.pg-statistics .statistics-list {
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin: 30px auto !important;
    list-style: none;
    padding-left: 0;
    max-width: 390px;
}

.pg-statistics .statistics-list>* {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-top: var(--bs-gutter-y);
}

.pg-statistics .statistics-list li {
    flex: 0 0 auto;
    width: 50%;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
}

.pg-statistics .statistics-list .list-item {
    border-bottom: 1px solid #ACB4DE;
    border-right: 1px solid #ACB4DE;
    padding: 36px 0;
}

.pg-statistics .statistics-list li:nth-child(even) .list-item {
    border-right: 0;
}

.pg-statistics .statistics-list :is(li:nth-child(3), li:nth-child(4)) .list-item {
    border-bottom: 0;
}

.pg-statistics .statistics-list .list-item .list-num {
    display: block;
    font-size: 24px;
    font-weight: 700;
    line-height: 36px;
}

.pg-statistics .statistics-list .list-item .list-num.timer::after {
    content: '+';
    margin-left: 7px;
}

.pg-statistics .statistics-link {
    background: #008060;
    color: #fff;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 700;
    line-height: 21px;
    padding: 16px 40px;
    display: inline-block;
    margin-top: 2rem;
}

.pg-statistics .frame-animation {}

.pg-statistics .frame-animation .animation-head {}

.pg-statistics .frame-animation .animation-head img {
    max-width: 100%;
    height: auto;
}

.pg-statistics .frame-animation .animation-img {
    width: 100%;
    aspect-ratio: 1152/1078;
    overflow: hidden;
    border-bottom-right-radius: 10px;
}

.pg-statistics .frame-animation .animation-img.scroll-img {
    background-size: cover;
    background-repeat: repeat-y;
}

.pg-statistics .frame-animation .animation-img.scroll-img-inf {
    background-size: cover;
    background-repeat: repeat-y;
    animation: mymove 45s infinite;
}

.pg-statistics .frame-animation .animation-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes mymove {
    0% {
        background-position-y: 0%;
    }

    50% {
        background-position-y: 100%;
    }

    100% {
        background-position-y: 0%;
    }
}

.pg-statistics {
    /*padding-bottom: 125px;*/
    padding-bottom: 0;
}

.pg-statistics .statistics-wrap {
    background: #F1F5FF;
    border-radius: 10px;
    padding-top: 55px;
}

.pg-statistics .statistics-info {
    padding-left: 70px;
}

.pg-statistics .sec-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 36px;
}

.pg-statistics .statistics-list {
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x));
    list-style: none;
    padding-left: 0;
    max-width: 390px;
}

.pg-statistics .statistics-list>* {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-top: var(--bs-gutter-y);
}

.pg-statistics .statistics-list li {
    flex: 0 0 auto;
    width: 50%;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
}

.pg-statistics .statistics-list .list-item {
    border-bottom: 1px solid #ACB4DE;
    border-right: 1px solid #ACB4DE;
    padding: 36px 0;
}

.pg-statistics .statistics-list li:nth-child(even) .list-item {
    border-right: 0;
}

.pg-statistics .statistics-list :is(li:nth-child(3), li:nth-child(4)) .list-item {
    border-bottom: 0;
}

.pg-statistics .statistics-list .list-item .list-num {
    display: block;
    font-size: 24px;
    font-weight: 700;
    line-height: 36px;
}

.pg-statistics .statistics-list .list-item .list-num.timer::after {
    content: '+';
    margin-left: 7px;
}

.pg-statistics .statistics-link {
    background: #008060;
    color: #fff;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 700;
    line-height: 21px;
    padding: 16px 40px;
    display: inline-block;
    margin-top: 2rem;
}

.pg-statistics .frame-animation {}

.pg-statistics .frame-animation .animation-head {}

.pg-statistics .frame-animation .animation-head img {
    max-width: 100%;
    height: auto;
}

.pg-statistics .frame-animation .animation-img {
    width: 100%;
    aspect-ratio: 1152/1078;
    overflow: hidden;
    border-bottom-right-radius: 10px;
    border-top-right-radius: 10px;
}

.pg-statistics .frame-animation .animation-img.scroll-img {
    background-size: cover;
    background-repeat: repeat-y;
}

.pg-statistics .frame-animation .animation-img.scroll-img-inf {
    background-size: cover;
    background-repeat: repeat-y;
    animation: mymove 45s infinite;
}

.pg-statistics .frame-animation .animation-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes mymove {
    0% {
        background-position-y: 0%;
    }

    50% {
        background-position-y: 100%;
    }

    100% {
        background-position-y: 0%;
    }
}

.pg-statistics {
    padding: 80px 0px;
}

.pg-statistics .statistics-wrap {
    padding-top: 0px;
}

.pg-statistics .statistics-info {
    padding: 20px;
}

.pg-statistics .sec-title {
    text-align: center;
}

.pg-statistics .statistics-list .list-item {
    padding: 22px 12px;
}

.pg-statistics .statistics-link {
    margin-top: 0;
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
}


.pg-services {
    background: #FBF7ED;
    padding: 72px 0;
}

.pg-services .sec-title {
    font-size: 36px;
    font-weight: 400;
    line-height: 57px;
    text-align: center;
}

.pg-services .sec-title :is(b, strong) {
    font-weight: 700;
}

.pg-services .sec-desc {
    font-size: 18px;
    line-height: 27px;
    text-align: center;
}

.pg-services .services-wrap {
    margin-top: 74px;
}

.pg-services .service-box {
    border-radius: 10px;
    height: 100%;
    padding: 54px 50px;
}

.pg-services .service-box .box-title {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 22px;
}

.pg-services .service-box .box-title .title-icon {
    width: 46px;
    height: auto;
}

.pg-services .service-box .box-title .title-icon img {
    width: 100%;
    transition: all .2s;
}

.pg-services .service-box:hover .box-title .title-icon img {
    transform: scale(1.2);
}

.pg-services .service-box .box-title .title-txt {
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
    color: #333;
    margin-bottom: 0;
}

.pg-services .service-box .box-info {
    font-size: 16px;
    line-height: 28px;
    color: #565656;
}

.pg-services .service-link {
    background: #008060;
    color: #fff;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 700;
    line-height: 21px;
    padding: 16px 40px;
    display: flex;
    margin-top: 4rem;
    margin-left: auto;
    margin-right: auto;
    width: max-content;
}

.pg-services .sec-title {
    font-size: clamp(1.8rem, 4vw, 2.875rem);
    /* from ~29px to 46px */
    font-weight: 400;
    line-height: clamp(2.2rem, 5vw, 3.56rem);
    /* scales with font size */
    text-align: center;
}

.pg-services .sec-title :is(b, strong) {
    font-weight: 700;
}

.pg-services .sec-desc {
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    /* 16px to 18px */
    line-height: clamp(1.5rem, 3.5vw, 1.6875rem);
    /* 24px to 27px */
    text-align: center;
}

.pg-services .service-box .box-title .title-txt {
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    /* 16px to 18px */
    font-weight: 700;
    line-height: clamp(1.22rem, 3vw, 1.375rem);
    /* 19.5px to 22px */
    color: #333;
    margin-bottom: 0;
}

.pg-services .service-box .box-info {
    font-size: clamp(0.875rem, 2vw, 1rem);
    /* 14px to 16px */
    line-height: clamp(1.5rem, 3.5vw, 1.75rem);
    /* 24px to 28px */
    color: #565656;
}

.pg-services .service-link {
    font-size: clamp(0.75rem, 1.5vw, 0.875rem);
    /* 12px to 14px */
    font-weight: 700;
    line-height: clamp(1rem, 2.5vw, 1.3125rem);
    /* 16px to 21px */
    background: #008060;
    color: #fff;
    border-radius: 3px;
    padding: 16px 40px;
    display: flex;
    margin-top: 4rem;
    margin-left: auto;
    margin-right: auto;
    width: max-content;
}

.pg-services {
    background: #FBF7ED;
    padding: clamp(2rem, 5vw, 4.5rem) 0;
    /* 32px to 72px vertical padding */
}

.pg-services .services-wrap {
    margin-top: clamp(2rem, 5vw, 4.625rem);
    /* 32px to 74px */
}

.pg-services .service-box {
    border-radius: 10px;
    height: 100%;
    padding: clamp(2rem, 4vw, 3.375rem) clamp(2rem, 5vw, 3.125rem);
    /* vertical: 32px to 54px, horizontal: 32px to 50px */
    transition: all 0.3s ease-in-out;

}

.pg-services .service-box-1 {
    background: linear-gradient(135deg, #fdfbfb, #ebedee);
    /* soft gray-white */
}

.pg-services .service-box-2 {
    background: linear-gradient(135deg, #fefcea, #d6f0f0);
    /* soft yellowish-blue */
}

.pg-services .service-box-3 {
    background: linear-gradient(135deg, #fef9f9, #fce9e9);
    /* soft pink */
}

.pg-services .service-box-4 {
    background: linear-gradient(135deg, #f0fcf9, #e0f7f1);
    /* mint green */
}

.pg-services .service-box-5 {
    background: linear-gradient(135deg, #fefaf7, #f6eaf2);
    /* lavender */
}

.pg-services .service-box-6 {
    background: linear-gradient(135deg, #fdf9f0, #e6f0fa);
    /* soft blue */
}

/* Hover effect (optional) */
.pg-services .service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.pg-services .service-box .box-title {
    display: flex;
    align-items: center;
    gap: clamp(0.75rem, 2vw, 1.25rem);
    /* 12px to 20px */
    margin-bottom: clamp(1rem, 3vw, 1.375rem);
    /* 16px to 22px */
}

.pg-services .service-link {
    background: #008060;
    color: #fff;
    border-radius: 3px;
    font-weight: 700;
    padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2.5rem);
    /* vertical: 12px to 16px, horizontal: 24px to 40px */
    font-size: clamp(0.75rem, 1.5vw, 0.875rem);
    line-height: clamp(1rem, 2.5vw, 1.3125rem);
    display: flex;
    margin-top: clamp(2.5rem, 6vw, 4rem);
    /* 40px to 64px */
    margin-left: auto;
    margin-right: auto;
    width: max-content;
}

:root {
    --shopify-color: #5C5AC7 !important;
    --green-color: #04BF55 !important;
    --wordpress-color: #21759B !important;
    --magento-color: #EE672F !important;
    --figma-color: #EC489B !important;
}

/* Your existing CSS styles go here */
.reviews {
    padding: 80px 0 !important;
    background: #F9FAFB !important;
}

/* .reviews-grid is now a Swiper container, so we remove the flexbox display */
.reviews-grid {
    margin-bottom: 64px !important;
}

/* Swiper's navigation buttons and pagination dots can be styled here */
.swiper-button-next,
.swiper-button-prev {
    color: #4B5563 !important;
    /* Change arrow color */
}

.swiper-pagination-bullet {
    background: #D1D5DB !important;
    /* Inactive dot color */
}

.swiper-pagination-bullet-active {
    background: #4B5563 !important;
    /* Active dot color */
}

.review-card {
    background: white !important;
    border-radius: 20px !important;
    padding: 32px !important;
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.08) !important;
}

.review-header {
    display: flex !important;
    align-items: center !important;
    margin-bottom: 24px !important;
}

.reviewer-avatar {
    width: 48px !important;
    min-width: 48px !important;
    height: 48px !important;
    min-height: 48px !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, var(--shopify-color), var(--green-color)) !important;
    color: white !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: 700 !important;
    font-size: 18px !important;
    margin-right: 16px !important;
}

.reviewer-name {
    font-weight: 700 !important;
    color: #111827 !important;
    margin-bottom: 4px !important;
    font-size: clamp(16px, 2vw, 20px) !important;
    /* responsive */
}

.reviewer-title {
    color: #6B7280 !important;
    font-size: clamp(12px, 1.5vw, 14px) !important;
    /* responsive */

}

.review-stars {
    margin-bottom: 16px !important;
}

.star {
    color: #FCD34D !important;
    font-size: 20px !important;
}

.review-text {
    color: #374151 !important;
    line-height: 1.6 !important;
    margin-bottom: 20px !important;
    white-space: normal !important;
    font-size: clamp(14px, 1.8vw, 18px) !important;
    /* responsive font size */
}

.review-tag {
    display: inline-block !important;
    padding: 8px 16px !important;
    border-radius: 8px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
}

.review-tag.wordpress {
    background: rgba(33, 117, 155, 0.1) !important;
    color: var(--wordpress-color) !important;
}

.review-tag.magento {
    background: rgba(238, 103, 47, 0.1) !important;
    color: var(--magento-color) !important;
}

.review-tag.figma {
    background: rgba(236, 72, 153, 0.1) !important;
    color: var(--figma-color) !important;
}

.review-card.swiper-slide {
    display: block !important;
}

/* Adjustments for a nice responsive layout */
@media (max-width: 1024px) {
    .reviews-grid {
        margin-bottom: 48px !important;
    }
}

@media (max-width: 768px) {
    .reviews-grid {
        margin-bottom: 32px !important;
    }

    .review-card {
        padding: 24px !important;
    }
}

/* why choose us */

.pg-why-us {
    padding: 84px 0;
}

.pg-why-us .sec-title {
    font-size: clamp(26px, 4vw, 46px);
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 42px;
}

.pg-why-us .why-us-list {
    background: #F1F5FF;
    border-radius: 10px;
    list-style: none;
    padding: 68px 72px;
}

.pg-why-us .why-us-list .list-item {
    display: flex;
    gap: 30px;
}

.pg-why-us .why-us-list .item-img {
    width: 54px;
    flex: 0 0 auto;
}

.pg-why-us .why-us-list .item-img img {
    width: 100%;
    height: auto;
    transition: all .2s;
}

.pg-why-us .why-us-list .list-item:hover .item-img img {
    transform: scale(1.2);
}

.pg-why-us .why-us-list .item-text .text-title {
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 700;
    line-height: 26px;
    margin-bottom: 14px;
}

.pg-why-us .why-us-list .item-text .text-desc {
    font-size: clamp(14px, 2vw, 18px);
    font-weight: 400;
    line-height: 27px;
}

.pg-why-us .why-us-list {
    background: #F1F5FF;
    border-radius: 10px;
    list-style: none;
    padding: 68px 72px;

    /* New styles for 1-row layout */
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    /* Optional: allows wrapping on small screens */
}

@media (max-width: 575px) {
    .pg-why-us .why-us-list {
        padding: 68px 32px;
    }
}

.pg-why-us .why-us-list .list-item {
    flex: 1 1 calc(25% - 30px);
    /* 4 items in a row with spacing */
    background-color: #fff;
    /* Optional for better visual separation */
    border-radius: 8px;
    /* Optional */
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);

    /* Remove the vertical spacing */
    margin-bottom: 0;
    flex-direction: column;
    /* Stack image and text vertically */
    align-items: center;
    text-align: center;
}

@media (max-width: 992px) {
    .pg-why-us .why-us-list .list-item {
        flex: 1 1 calc(50% - 30px);
        /* 2 per row on tablets */
    }
}

@media (max-width: 600px) {
    .pg-why-us .why-us-list .list-item {
        flex: 1 1 100%;
        /* 1 per row on small screens */
    }
}


/* our proven */

.pg-our-process .sec-title {
    font-size: 32px;
}

.pg-our-process .process-link {
    margin-top: 0;
}


.pg-our-process {
    overflow: hidden;
    padding: 74px 0;
}

.pg-our-process .sec-title {
    font-size: clamp(26px, 4vw, 46px);
    /* responsive font size */
    font-weight: 700;
    line-height: clamp(34px, 5vw, 57px);
    /* responsive line-height */
    text-align: center;
    margin-bottom: 2.5rem;
}

.pg-our-process .process-wrapper {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-right: auto;
    margin-left: auto;
    cursor: grab;
}

.pg-our-process .process-box {
    border-radius: 10px;
    height: 100%;
    padding: 0;
}

.pg-our-process .process-box .box-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    position: relative;
    flex-wrap: wrap;
    /* allows wrapping on small screens */
}

.pg-our-process .process-box .box-title .title-txt {
    flex: 1;
    /* text takes full available width */
}

/* connector between boxes */
.pg-our-process .process-box {
    position: relative;
    /* so ::after is positioned relative to each box */
}

/* add arrow only after boxes that are not the last one */
.pg-our-process .process-box::after {
    content: "";
    position: absolute;
    bottom: 66px;
    /* position between boxes vertically (adjust if needed) */
    left: 90%;
    transform: translateX(-50%);
    width: 120px;
    /* arrow width */
    height: 20px;
    background: url('data:image/svg+xml,<svg width="136" height="15" viewBox="0 0 136 15" xmlns="http://www.w3.org/2000/svg"><path d="M111.354 4.35355C111.549 4.15829 111.549 3.84171 111.354 3.64645L108.172 0.464466C107.976 0.269204 107.66 0.269204 107.464 0.464466C107.269 0.659728 107.269 0.976311 107.464 1.17157L110.293 4L107.464 6.82843C107.269 7.02369 107.269 7.34027 107.464 7.53553C107.66 7.7308 107.976 7.7308 108.172 7.53553L111.354 4.35355ZM0 4.5H111V3.5H0V4.5Z" fill="black"/></svg>') no-repeat center;
    background-size: contain;
}

/* Responsive adjustments: shrink the connector arrow */
@media (max-width: 1400px) {
    .pg-our-process .process-box::after {
        bottom: 94px;
    }
}

@media (max-width: 1200px) {
    .pg-our-process .process-box::after {
        bottom: 118px;
    }
}

@media (max-width: 1024px) {
    .pg-our-process .process-box::after {
        bottom: 117px;
    }

}

@media (max-width: 768px) {
    .pg-our-process .process-box::after {
        bottom: 66px;
    }
}

@media (max-width: 480px) {
    .pg-our-process .process-box::after {
        bottom: 77px;
    }
}

@media (max-width: 375px) {
    .pg-our-process .process-box::after {
        bottom: 92px;
    }
}




.pg-our-process .process-box .box-title.no-bg {
    background: none;
}

.pg-our-process .process-box .box-title .title-icon {
    width: 46px;
    height: auto;
}

.pg-our-process .process-box .box-title .title-icon img {
    width: 100%;
}

.pg-our-process .process-box .box-title .title-txt {
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
    color: #333;
    margin-bottom: 0;
}

.pg-our-process .process-box .box-info {
    font-size: 16px;
    line-height: 28px;
    color: #565656;
}

.pg-our-process .process-link {
    background: #008060;
    color: #fff;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 700;
    line-height: 21px;
    padding: 16px 40px;
    display: flex;
    margin-top: 3rem;
    margin-left: auto;
    margin-right: auto;
    width: max-content;
}

.pg-our-process .sec-subtitle {
    font-size: 18px;
    text-align: center;
    margin-top: -20px;
    margin-bottom: 40px;
    color: #6B7280;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Step number badge styling (replacing icons) */
.pg-our-process .step-number {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: white;
    flex-shrink: 0;
}

/* Colors for numbered badges */
.step-number.wordpress {
    background: #21759b;
}

/* WordPress Blue */
.step-number.magento {
    background: #ee672f;
}

/* Magento Orange */
.step-number.shopify {
    background: #96bf48;
}

/* Shopify Green */
.step-number.purple {
    background: #7e5bef;
}

.step-number.pink {
    background: #ec4899;
}

.step-number.indigo {
    background: #6366f1;
}

.step-number.green {
    background: #10b981;
}

.step-number.yellow {
    background: #f59e0b;
}

.step-number.blue {
    background: #3b82f6;
}

/* Adjust spacing for .box-title when using numbered steps */
.pg-our-process .box-title {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 22px;
    background: none;
    /* remove SVG arrow */
    background-repeat: no-repeat;
    background-position: right center;
}

.process-wrapper {
    cursor: grab;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.process-wrapper.active {
    cursor: grabbing;
    user-select: none;
}

#draggable3 {
    overflow-x: scroll;
    scroll-behavior: auto;
    /* no snapping */
    -webkit-overflow-scrolling: touch;
    cursor: grab;
}

#draggable3.active {
    cursor: grabbing;
    user-select: none;
}

#draggable3::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

#draggable3 {
    -ms-overflow-style: none;
    /* IE/Edge */
    scrollbar-width: none;
    /* Firefox */
}

#draggable3>* {
    min-width: 220px;
    /* card width */
    margin-right: 12px;
    /* spacing */
    flex-shrink: 0;
}

#draggable4 {
    overflow-x: scroll;
    scroll-behavior: auto;
    /* no snapping */
    -webkit-overflow-scrolling: touch;
    cursor: grab;
}

#draggable4.active {
    cursor: grabbing;
    user-select: none;
}

#draggable4::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

#draggable4 {
    -ms-overflow-style: none;
    /* IE/Edge */
    scrollbar-width: none;
    /* Firefox */
}

#draggable4>* {
    min-width: 220px;
    /* card width */
    margin-right: 12px;
    /* spacing */
    flex-shrink: 0;
}

.portfolio-section {
    padding: 40px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.portfolio-title {
    font-size: clamp(26px, 4vw, 46px);
    font-weight: 700;
    line-height: clamp(34px, 5vw, 57px);
    text-align: center;
    margin-bottom: 2.5rem;
}

.slider-wrapper {
    overflow: hidden;
    margin-top: 40px;
    position: relative;
    width: 100%;
}

.portfolio-slider {
    display: flex;
    /* animation: scrollX 10s linear infinite; */
}

.portfolio-slider .swiper-slide {
    background: transparent;
}

.portfolio-slider:hover {
    animation-play-state: paused;
}

.slider-container {
    display: flex;
    width: 100%;
    transition: transform 0.5s ease;
    /* Smooth transition for sliding */
}


.portfolio-item {
    /* width: clamp(250px, 40vw, 458px); */
    width: 100%;
    /* responsive width between 250px and 458px */
    height: clamp(300px, 60vw, 550px);
    /* responsive height between 300px and 550px */
    margin: 0 1.5vw;
    /* responsive spacing between items */
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}


.image-scroll {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: scrollY 12s linear infinite;
    /* vertical scroll */
}


.image-scroll img {
    width: 100%;
    height: 120%;
    /* Taller than container to scroll */
    object-fit: cover;
    display: block;
}

/* Dark overlay */
.portfolio-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 20%, rgba(0, 0, 0, 0.7) 100%);
    border-radius: 8px;
    pointer-events: none;
}

.portfolio-info {
    position: absolute;
    bottom: 15px;
    left: 15px;
    color: #fff;
    text-align: left;
    z-index: 2;
}

.portfolio-info h3 {
    margin: 0;
    font-size: clamp(16px, 4vw, 30px);
    word-break: break-all;
    white-space: normal;
}

.portfolio-info p {
    margin: 0;
    font-size: clamp(16px, 4vw, 18px);
    opacity: 0.9;
}

/* Horizontal card scroll */
@keyframes scrollX {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Vertical seamless scroll */
@keyframes scrollY {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-650px);
    }
}

/* ========== Portfolio Full Image Modal ========== */
.portfolio-image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    justify-content: center;
    align-items: center;
    overflow: auto;
    /* allows manual scroll for big images */
    padding: 40px 0;
}

.portfolio-image-modal-content {
    max-width: 90%;
    background: #111;
    border-radius: 10px;
    padding: 20px;
    overflow-y: auto;
    max-height: 90vh;
}

.portfolio-image-modal-content img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.portfolio-image-close {
    position: fixed;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: color 0.3s ease;
}

.portfolio-image-close:hover {
    color: #ff6666;
}
/* ================= View Full Button (Unique Design) ================= */
.portfolio-view-btn-unique {
    position: absolute;
    top: 48%;
    right: 38%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--shopify-color), var(--magento-color));
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    padding: 8px 16px;
    font-size: 14px;
    letter-spacing: 0.5px;
    cursor: pointer;
    backdrop-filter: blur(8px);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    opacity: 01;
    transform: translateY(-50%) , translateX(-50%);
    visibility: hidden;
    z-index: 3;
  }
  
  /* Eye icon */
  .eye-icon-unique {
    width: 18px;
    height: 18px;
  }
  
  /* Hover effects */
  .portfolio-view-btn-unique:hover {
    background: linear-gradient(135deg, var(--magento-color) , var(--shopify-color));
    box-shadow: 0 0 18px rgba(255, 255, 255, 0.3);
    transform: translateY(0) scale(1.05);
    transform: all 0.3s ease;
  }
  
  /* Show button when hovering the item */
  .portfolio-item:hover .portfolio-view-btn-unique {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
.modal-custom {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    background: #f5f7fa;
}

/* Button */
.modal-custom .btn {
    display: inline-block;
    padding: 14px 26px;
    border-radius: 12px;
    background: linear-gradient(135deg, #6c63ff, #4a47a3);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.modal-custom .btn:hover {
    background: linear-gradient(135deg, #4a47a3, #6c63ff);
    transform: scale(1.05);
}

/* Modal Background */
.modal-custom.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    /* hidden by default */
    justify-content: center;
    /* center horizontally */
    align-items: center;
    /* center vertically */
    z-index: 1000;
}

/* Show modal when targeted */
.modal-custom .modal:target {
    display: flex;
    /* flexbox centers modal content */
}

/* Modal Box */
.modal-custom .modal-content {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    width: 90%;
    max-width: 550px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.4s ease-in-out;
    position: relative;
    margin: 0 auto;
}

.modal-custom .modal-content h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
}

/* Container grid */
.modal-custom .form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 columns by default */
    gap: 20px;
    /* spacing between columns and rows */
}

/* Each form item */
.modal-custom .form-grid .form-group {
    width: 100%;
}

/* Responsive: below medium screens */
@media (max-width: 768px) {
    .modal-custom .form-grid {
        grid-template-columns: 1fr;
        /* single column */
    }

    .modal-custom .modal-content {
        height: 80%;
        overflow-y: auto;
    }
}

.modal-custom label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    color: #555;
}

.modal-custom input,
.modal-custom select,
.modal-custom textarea {
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid #ccc;
    outline: none;
    font-size: 15px;
    transition: 0.3s;
}

.modal-custom input:focus,
.modal-custom select:focus,
.modal-custom textarea:focus {
    border-color: #6c63ff;
    box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.15);
}

.modal-custom textarea {
    min-height: 90px;
    resize: vertical;
}

/* Submit Button */
.modal-custom .modal-content button {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #6c63ff, #4a47a3);
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.modal-custom .modal-content button:hover {
    background: linear-gradient(135deg, #4a47a3, #6c63ff);
    transform: scale(1.03);
}

/* Close Button */
.modal-custom .close {
    position: absolute;
    top: 0px;
    right: 0px;
    font-size: 30px;
    color: #999;
    text-decoration: none;
    transition: 0.3s;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.modal-custom .close:hover {
    color: #333;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-custom .phone-wrapper {
    display: flex;
    gap: 10px;
}

.modal-custom .country-code {
    padding: 12px;
    border-radius: 12px;
    border: 1px solid #ccc;
    font-size: 15px;
    background: #f9f9f9;
    flex: 0 0 100px;
    /* fixed width for country code */
    outline: none;
}

.modal-custom input[type="tel"] {
    flex: 1;
    /* take remaining space */
    padding: 12px;
    border-radius: 12px;
    border: 1px solid #ccc;
    font-size: 15px;
}

.modal-custom .phone-wrapper select:focus,
.modal-custom .phone-wrapper input:focus {
    border-color: #6c63ff;
    box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.15);
}

.modal-custom .phone-wrapper {
    display: flex;
    gap: 10px;
}

.modal-custom .country-code {
    padding: 12px;
    border-radius: 12px;
    border: 1px solid #ccc;
    font-size: 15px;
    background: #f9f9f9;
    flex: 0 0 100px;
    /* fixed width for country code */
    outline: none;
}

.modal-custom input[type="tel"] {
    flex: 1;
    /* take remaining space */
    padding: 12px;
    border-radius: 12px;
    border: 1px solid #ccc;
    font-size: 15px;
}

.modal-custom .phone-wrapper select:focus,
.modal-custom .phone-wrapper input:focus {
    border-color: #6c63ff;
    box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.15);
}

/* ============================================
   FAQ SECTION CSS
   ============================================ */

/* FAQ Section Container */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
}

/* FAQ Section Title */
.faq-section h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.faq-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

/* FAQ Section Description */
.faq-section .faq-description {
    text-align: center;
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

/* FAQ Container */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Individual FAQ Item */
.faq-item {
    background: #ffffff;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
    transform: translateY(-3px);
}

/* FAQ Question/Header */
.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    position: relative;
    user-select: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    padding-right: 30px;
    line-height: 1.5;
}

/* FAQ Toggle Icon */
.faq-toggle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-toggle::before,
.faq-toggle::after {
    content: '';
    position: absolute;
    background: #ffffff;
    transition: transform 0.3s ease;
}

.faq-toggle::before {
    width: 14px;
    height: 2px;
}

.faq-toggle::after {
    width: 2px;
    height: 14px;
}

/* Active state - rotate minus */
.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* FAQ Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: #f8f9fa;
}

.faq-answer p {
    padding: 0 30px 25px 30px;
    margin: 0;
    color: #555;
    font-size: 16px;
    line-height: 1.8;
}

/* Active state - show answer */
.faq-item.active .faq-answer {
    max-height: 500px;
    padding-top: 0;
}

/* FAQ Number Badge (optional) */
.faq-number {
    display: inline-block;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    font-weight: 700;
    font-size: 16px;
    margin-right: 15px;
    flex-shrink: 0;
}

/* Alternate Design - With Icons */
.faq-item.with-icon .faq-question::before {
    content: '?';
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    margin-right: 20px;
    flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 20px;
    }

    .faq-section h2 {
        font-size: 32px;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-question h3 {
        font-size: 18px;
        padding-right: 20px;
    }

    .faq-answer p {
        padding: 0 20px 20px 20px;
        font-size: 15px;
    }

    .faq-toggle {
        width: 26px;
        height: 26px;
    }

    .faq-number {
        width: 30px;
        height: 30px;
        line-height: 30px;
        font-size: 14px;
        margin-right: 12px;
    }
}

@media (max-width: 480px) {
    .faq-section h2 {
        font-size: 28px;
    }

    .faq-question h3 {
        font-size: 16px;
    }

    .faq-answer p {
        font-size: 14px;
    }
}

/* Animation for FAQ items appearing */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-item {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }
.faq-item:nth-child(6) { animation-delay: 0.6s; }

/* Accessibility - Focus states */
.faq-question:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

.faq-question:focus-visible {
    outline: 2px solid #667eea;
}

/* Print styles */
@media print {
    .faq-section {
        background: white;
    }
    
    .faq-item {
        page-break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .faq-answer {
        max-height: none !important;
        display: block !important;
    }
    
    .faq-toggle {
        display: none;
    }
}

/* ============================================
   ALTERNATIVE STYLES (Choose One)
   ============================================ */

/* Style 2: Bordered Style */
.faq-section.bordered .faq-item {
    background: transparent;
    border: 2px solid #e0e0e0;
    box-shadow: none;
}

.faq-section.bordered .faq-item:hover {
    border-color: #667eea;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.1);
}

/* Style 3: Minimalist Style */
.faq-section.minimalist .faq-item {
    background: transparent;
    border-bottom: 1px solid #e0e0e0;
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 0;
}

.faq-section.minimalist .faq-item:last-child {
    border-bottom: none;
}

.faq-section.minimalist .faq-question {
    padding: 20px 0;
}

.faq-section.minimalist .faq-answer p {
    padding: 0 0 20px 0;
}

/* Style 4: Card with Shadow */
.faq-section.card-shadow .faq-item {
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
}

.faq-section.card-shadow .faq-item:hover {
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .faq-section {
        background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    }

    .faq-item {
        background: #0f3460;
    }

    .faq-question h3 {
        color: #e0e0e0;
    }

    .faq-answer {
        background: #16213e;
    }

    .faq-answer p {
        color: #c0c0c0;
    }

    .faq-question:hover {
        background: #16213e;
    }
}



/* ============================================
   MOBILE-FIRST RESPONSIVE FORM CSS
   ============================================ */

/* Base Form Styles */
.compact-form {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

/* Form Rows - Mobile First */
.form-row {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 15px;
}

/* Desktop - 2 Columns */
@media (min-width: 768px) {
    .form-row {
        flex-direction: row;
        gap: 15px;
    }
    
    .form-row .form-group {
        flex: 1;
    }
}

/* Form Groups */
.form-group {
    margin-bottom: 15px;
    width: 100%;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

/* Input Fields */
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="url"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px; /* Prevents zoom on iOS */
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-family: inherit;
    background: #fff;
    box-sizing: border-box;
}

/* Focus States */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Phone Wrapper */
.phone-wrapper {
    display: flex;
    gap: 10px;
    width: 100%;
}

.phone-wrapper .country-code {
    flex: 0 0 100px;
    padding: 14px 12px;
    font-size: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: #f8f9fa;
    cursor: pointer;
}

.phone-wrapper input[type="tel"] {
    flex: 1;
    margin-bottom: 0;
}

/* Mobile Phone Adjustments */
@media (max-width: 480px) {
    .phone-wrapper .country-code {
        flex: 0 0 90px;
        font-size: 15px;
        padding: 14px 8px;
    }
}

/* Select Dropdown */
.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

/* Textarea */
.form-group textarea {
    resize: vertical;
    min-height: 80px;
    line-height: 1.5;
}

/* Submit Button - Mobile Optimized */
.btn-submit {
    width: 100%;
    padding: 16px 30px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    min-height: 56px; /* Touch-friendly */
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.btn-submit:active {
    transform: translateY(0);
}

.btn-submit svg {
    transition: transform 0.3s ease;
}

.btn-submit:hover svg {
    transform: translateX(5px);
}

/* Alert Messages - Mobile Optimized */
.alert-success,
.alert-error {
    padding: 14px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Modal - Mobile Responsive */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    box-sizing: border-box;
}

.modal-content {
    background-color: #fff;
    margin: auto;
    padding: 30px;
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Mobile Modal Adjustments */
@media (max-width: 768px) {
    .modal {
        padding: 10px;
        align-items: flex-start;
    }
    
    .modal-content {
        padding: 25px 20px;
        margin-top: 20px;
        max-height: 95vh;
        border-radius: 12px 12px 0 0;
    }
}

@media (max-width: 480px) {
    .modal-content {
        padding: 20px 16px;
        margin-top: 10px;
    }
}

/* Modal Header */
.modal-header {
    text-align: center;
    margin-bottom: 25px;
}

.modal-header h2 {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
    line-height: 1.3;
}

.modal-header p {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
}

/* Mobile Modal Header */
@media (max-width: 480px) {
    .modal-header h2 {
        font-size: 22px;
    }
    
    .modal-header p {
        font-size: 14px;
    }
}

/* Close Button */
.close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 32px;
    font-weight: 300;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close:hover {
    color: #333;
}

/* Contact Section */
.contact-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 15px;
    }
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
    line-height: 1.3;
}

.section-header p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 28px;
    }
    
    .section-header p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 24px;
    }
    
    .section-header p {
        font-size: 14px;
    }
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .contact-form-wrapper {
        padding: 25px 16px;
        border-radius: 8px;
    }
}

/* Loading State */
.btn-submit.loading {
    opacity: 0.7;
    cursor: not-allowed;
    pointer-events: none;
}

.btn-submit.loading::after {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid #fff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    margin-left: 10px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Error State */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #dc3545;
    background-color: #fff5f5;
}

/* Success Animation */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert-success,
.alert-error {
    animation: slideDown 0.3s ease;
}

/* Accessibility - Focus Visible */
.form-group input:focus-visible,
.form-group select:focus-visible,
.form-group textarea:focus-visible {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* Prevent zoom on input focus (iOS) */
@media screen and (max-width: 767px) {
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="url"],
    select,
    textarea {
        font-size: 16px !important;
    }
}

/* Touch-friendly spacing */
@media (max-width: 768px) {
    .form-group {
        margin-bottom: 18px;
    }
    
    .form-row {
        gap: 18px;
        margin-bottom: 18px;
    }
}

/* Container utility */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Fix for modal overflow on mobile */
@media (max-width: 768px) {
    body.modal-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }
}

.modal-header {
 display: flex;
 flex-shrink: 0;
 align-items: center;
 justify-content: space-between;
 padding: 0rem 1rem 1rem 0;
 border-bottom: 1px solid #dee2e6;
 border-top-left-radius: calc(.3rem - 1px);
 border-top-right-radius: calc(.3rem - 1px);
 flex-direction: column;
}
.modal-custom .modal-content h2 {
 text-align: center;
 margin-bottom: 0px;
 font-size: 24px;
 color: #333;
 display: block;
 width: 100%;
}
.modal-header p {
 font-size: 15px;
 color: #666;
 line-height: 1.5;
 margin-bottom: 0;
}
.modal-custom .close {
 position: absolute;
 top: 10px;
 right: 10px;
 font-size: 30px;
 color: #999;
 text-decoration: none;
 transition: 0.3s;
 width: 30px;
 height: 30px;
 cursor: pointer;
}