/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* CSS Variables */
:root {
    --primary-color: #754ef9;
    --primary-dark: #5b3cc4;
    --text-color: #333;
    --text-light: #666;
    --bg-color: #ffffff;
    --bg-secondary: #f9f9f9;
    --card-bg: #ffffff;
    --border-color: #eee;
    --shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
    --white: #fff;
    --gradient: linear-gradient(45deg, #754ef9, #9d7bf9);
}

/* Dark Mode Variables */
[data-theme="dark"] {
    --text-color: #f0f0f0;
    --text-light: #bbb;
    --bg-color: #121212;
    --bg-secondary: #1e1e1e;
    --card-bg: #252525;
    --border-color: #333;
    --shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

body {
    background: var(--bg-color);
    color: var(--text-color);
    transition: var(--transition);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title span {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 30px;
    font-weight: 500;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(117, 78, 249, 0.3);
}

.btn:hover {
    background: transparent;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(117, 78, 249, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--text-color);
    border: 2px solid var(--border-color);
    box-shadow: none;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(117, 78, 249, 0.3);
}

/* HEADER */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    z-index: 1000;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    padding: 15px 0;
}

[data-theme="dark"] header {
    background: rgba(18, 18, 18, 0.9);
}

header.sticky {
    box-shadow: var(--shadow);
    border-bottom: 1px solid var(--border-color);
    padding: 10px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-color);
}

.logo span {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.theme-toggle {
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--text-color);
    transition: var(--transition);
    background: var(--bg-secondary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-toggle:hover {
    color: var(--primary-color);
    background: var(--border-color);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--text-color);
    cursor: pointer;
}

/* HERO SECTION */
.hero {
    padding-top: 120px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-image: radial-gradient(circle at 10% 20%, rgba(117, 78, 249, 0.05) 0%, transparent 20%);
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 50px;
}

.hero-text {
    flex: 1;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-title span {
    color: var(--primary-color);
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 500px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-blob {
    position: relative;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    /* Using 50% for circle as placeholder, or abstract shape */
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    overflow: hidden;
    border: 10px solid var(--bg-color);
    box-shadow: var(--shadow);
}

.hero-blob img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-shape {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: var(--primary-color);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    transform: rotate(-15deg);
    z-index: -1;
    opacity: 0.5;
}

/* STATS */
.stats {
    padding: 40px 0;
    background: var(--bg-secondary);
}

.stats-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-color);
    display: block;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-number span {
    color: var(--primary-color);
}

.stat-title {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 500;
}

/* SERVICES */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    background: var(--primary-color);
    box-shadow: 0 20px 40px rgba(117, 78, 249, 0.4);
}

.service-card:hover h3,
.service-card:hover p {
    color: var(--white);
}

.service-card:hover .service-icon {
    background: var(--white);
    color: var(--primary-color);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ABOUT */
.lead-gen-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.lead-gen-content {
    flex: 1;
}

.lead-gen-image {
    flex: 1;
}

@media (max-width: 991px) {
    .lead-gen-container {
        flex-direction: column-reverse;
        gap: 40px;
    }
}

.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-img {
    flex: 1;
    position: relative;
}

.about-img img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.about-content .highlight {
    color: var(--primary-color);
}

.about-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

/* SKILLS */
.skills-container {
    max-width: 800px;
    margin: 0 auto;
}

.skill-box {
    margin-bottom: 35px;
}

.skill-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.skill-title {
    font-weight: 600;
    color: var(--text-color);
    font-size: 1.1rem;
}

.skill-percent {
    color: var(--text-light);
}

.skill-bar {
    width: 100%;
    height: 12px;
    background: var(--bg-secondary);
    border-radius: 20px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: var(--primary-color);
    border-radius: 20px;
    width: 0;
    position: relative;
    transition: width 1.5s ease-in-out;
}

/* PORTFOLIO */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.portfolio-item {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow);
    height: 300px;
}

.portfolio-img {
    width: 100%;
    height: 100%;
}

.portfolio-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-img img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(117, 78, 249, 0.95), rgba(117, 78, 249, 0.6));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    transition: var(--transition);
    opacity: 0;
    text-align: center;
}

.portfolio-item:hover .portfolio-overlay {
    bottom: 0;
    opacity: 1;
}

.portfolio-info h3 {
    color: var(--white);
    margin-bottom: 10px;
    font-size: 1.5rem;
    transform: translateY(20px);
    transition: var(--transition);
}

.portfolio-info p {
    color: rgba(255, 255, 255, 0.9);
    transform: translateY(20px);
    transition: var(--transition);
    transition-delay: 0.1s;
}

.portfolio-item:hover h3,
.portfolio-item:hover p {
    transform: translateY(0);
}

/* PRICING */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.pricing-card {
    background: var(--card-bg);
    padding: 50px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.popular {
    transform: scale(1.1);
    border: 2px solid var(--primary-color);
    box-shadow: 0 10px 40px rgba(117, 78, 249, 0.2);
    z-index: 1;
}

.pricing-card.popular:hover {
    transform: scale(1.1) translateY(-10px);
}

.plan-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.price {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
    line-height: 1;
}

.price span {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 400;
}

.pricing-features {
    margin-bottom: 30px;
    text-align: left;
    padding-left: 20px;
}

.pricing-features li {
    margin-bottom: 15px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 15px;
}

.pricing-features i {
    color: var(--primary-color);
    font-size: 1.2rem;
}


/* INFINITE REVIEWS SECTION */
.reviews-section {
    position: relative;
    overflow: hidden;
    padding: 60px 0;
    background: var(--bg-secondary);
}

.review-row {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    width: max-content;
}

/* Duplicated track for seamless loop */
.marquee-track {
    display: flex;
    gap: 30px;
}

/* Row 1: Right to Left */
.marquee-row-1 {
    animation: scrollLeft 40s linear infinite;
}

/* Row 2: Left to Right */
.marquee-row-2 {
    animation: scrollRight 40s linear infinite;
}

.reviews-section:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollRight {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

.review-card {
    background: var(--card-bg);
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    width: 350px;
    height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
    cursor: pointer;
    flex-shrink: 0;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.client-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

.client-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 2px;
}

.flag {
    font-size: 1.2rem;
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    display: inline-block;
}

.client-role {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 400;
}

.stars {
    color: #ffb400;
    font-size: 1rem;
    margin-bottom: 12px;
}

.review-text {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 10px;
}

.read-more-link {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
    margin-top: auto;
}

/* MODAL STYLES */
.review-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.review-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--card-bg);
    width: 90%;
    max-width: 500px;
    padding: 40px;
    border-radius: 20px;
    position: relative;
    transform: scale(0.7);
    transition: all 0.3s ease;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
}

.review-modal.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.modal-body {
    text-align: left;
}

.modal-header-info {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
}

.modal-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
}

.modal-client-details h3 {
    font-size: 1.3rem;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}

.modal-role {
    color: var(--text-light);
    font-size: 0.9rem;
}

.modal-stars {
    color: #ffb400;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.modal-text {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 30px;
    max-height: 300px;
    overflow-y: auto;
}

.fiverr-btn {
    display: inline-block;
    background: #1dbf73;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
    width: 100%;
    transition: var(--transition);
}

.fiverr-btn:hover {
    background: #19a463;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(29, 191, 115, 0.4);
}


/* CLIENT LOGOS */
.clients-section {
    padding: 40px 0;
    background: var(--bg-secondary);
}

.clients-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    opacity: 0.7;
}

.clients-grid img {
    max-height: 40px;
    filter: grayscale(100%);
    transition: var(--transition);
}

.clients-grid img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* CONTACT */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 35px;
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--bg-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.8rem;
    transition: var(--transition);
}

.contact-info-item:hover .contact-icon {
    background: var(--primary-color);
    color: var(--white);
}

.contact-details h4 {
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.contact-details p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.contact-form-container {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 20px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    background: var(--bg-secondary);
    color: var(--text-color);
    outline: none;
    transition: var(--transition);
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    background: var(--card-bg);
}

.form-group textarea {
    height: 180px;
    resize: none;
    margin-bottom: 20px;
}


/* RESUME / TIMELINE */
.resume-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
}

.timeline-column h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-color);
}

.timeline-column h3 i {
    color: var(--primary-color);
}

.timeline-items {
    border-left: 2px solid var(--border-color);
    padding-left: 30px;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -39px;
    top: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--primary-color);
    border: 3px solid var(--card-bg);
    /* create a ring effect */
    box-shadow: 0 0 0 3px var(--primary-color);
}

[data-theme="dark"] .timeline-dot {
    box-shadow: 0 0 0 3px var(--primary-dark);
}

.timeline-date {
    display: inline-block;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
    background: rgba(117, 78, 249, 0.1);
    padding: 5px 15px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.timeline-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 5px;
}

.timeline-content h4 span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-light);
    margin-left: 10px;
}

.timeline-content h4 p {
    /* Assuming the company name/location is roughly here or handled in content */
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 5px 0 10px;
    font-weight: 500;
}

.timeline-content .timeline-desc {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}


/* BLOG LISTING */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-banner-box {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.blog-banner-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-banner-box img {
    transform: scale(1.1);
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.85rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.blog-category {
    color: var(--primary-color);
    font-weight: 600;
}

.dot {
    width: 4px;
    height: 4px;
    background: var(--text-light);
    border-radius: 50%;
}

.blog-item-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
    color: var(--text-color);
}

.blog-card:hover .blog-item-title {
    color: var(--primary-color);
}

.blog-text {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more-btn {
    font-weight: 600;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.read-more-btn:hover {
    gap: 10px;
}

/* FOOTER */
footer {
    background: var(--bg-secondary);
    padding: 60px 0 30px;
    text-align: center;
}

.footer-socials {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: var(--card-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    transition: var(--transition);
    box-shadow: var(--shadow);
    font-size: 1.2rem;
}

.social-icon:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px);
}

.copyright {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* RESPONSIVE */
@media (max-width: 992px) {

    .hero-container,
    .about-container,
    .contact-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        order: 2;
    }

    .hero-image {
        order: 1;
        margin-bottom: 40px;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .about-img {
        margin-bottom: 40px;
    }

    .contact-info {
        order: 2;
        margin-top: 40px;
    }

    .contact-form-container {
        order: 1;
    }

    .contact-info-item {
        justify-content: flex-start;
        /* Changed to left align for list consistency */
        flex-direction: row;
        text-align: left;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background: var(--bg-color);
        flex-direction: column;
        align-items: center;
        padding: 50px 0;
        transition: var(--transition);
        box-shadow: var(--shadow);
        border-top: 1px solid var(--border-color);
    }

    .nav-links.active {
        left: 0;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .section-title h2 {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-blob {
        width: 350px;
        height: 350px;
    }

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-blob {
        width: 280px;
        height: 280px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }



}

/* Updated Client Header for Reviews */
.client-header {
    margin-bottom: 5px !important;
    /* Tighten gap */
}

.client-info h4 {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    /* Space between name and separator */
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 4px;
}

/* Name Row - contains Name and Repeat Badge */
.name-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}

.repeat-separator {
    color: var(--text-light);
    font-size: 0.8rem;
    margin: 0 6px;
}

.repeat-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-color);
}

.repeat-badge i {
    font-size: 0.9rem;
    font-weight: bold;
    color: var(--text-color);
}

/* Review Country Row */
.country-row {
    display: flex;
    align-items: center;
    gap: 8px;
    /* Space between Flag and Country Name */
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0px;
    width: 100%;
}

.country-row .flag {
    font-size: 1.2rem;
    line-height: 1;
}

/* Ensure Avatar alignment */
.review-card .client-header {
    align-items: flex-start;
    /* Align to top to handle multi-line names */
}

.review-card .review-avatar {
    margin-top: 4px;
    /* Slight offset */
}

/* FLOATING CONTACT WIDGET */
.floating-contact-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: rgba(18, 18, 18, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 60px;
    padding: 8px 25px 8px 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.floating-contact-widget:hover {
    transform: translateY(-5px);
    background: rgba(25, 25, 25, 0.95);
    border-color: var(--primary-color, #ffb549);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.widget-avatar {
    width: 48px;
    height: 48px;
    position: relative;
    flex-shrink: 0;
}

.widget-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ffb549;
}

.widget-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.widget-name {
    color: #fff;
    font-weight: 700;
    font-size: 1.05rem;
    line-height: 1.2;
}

.widget-status {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 2px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #2ecc71;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(46, 204, 113, 0.5);
}

.status-text {
    color: #2ecc71;
    font-size: 0.85rem;
    font-weight: 600;
}

.status-sep {
    color: #666;
    font-size: 0.85rem;
}

.response-time {
    color: #aaa;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .floating-contact-widget {
        bottom: 20px;
        right: 20px;
        padding: 6px 15px 6px 6px;
        gap: 10px;
    }

    .widget-avatar {
        width: 36px;
        height: 36px;
    }

    .widget-name {
        font-size: 0.9rem;
    }

    .response-time,
    .status-sep {
        display: none;
    }
}