/* ===================================
   RESET & BASE STYLES
   =================================== */
@import url('https://fonts.googleapis.com/css2?family=Cabin:ital,wght@0,400..700;1,400..700&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Cabin", sans-serif;

}

:root {
    /* Blue Color Palette */
    --primary-blue: #148DB4;
    --dark-blue: #0E6B8A;
    --light-blue: #1BA8D9;
    --accent-blue: #5CC8E8;

    /* For backwards compatibility */
    --primary-orange: #148DB4;
    --dark-orange: #0E6B8A;
    --light-orange: #1BA8D9;
    --accent-yellow: #5CC8E8;

    /* Navy/Dark Colors */
    --bg-dark: #0F1629;
    --bg-darker: #0A101F;
    --bg-navy: #1A2342;
    --bg-card: #1E2845;

    /* Text Colors */
    --text-primary: #FFFFFF;
    --text-secondary: #A8B8D8;
    --text-muted: #6B7A99;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #148DB4 0%, #0E6B8A 100%);
    --gradient-hero: linear-gradient(135deg, #0F1629 0%, #0A101F 100%);
    --gradient-card: linear-gradient(145deg, #1E2845 0%, #1A2342 100%);

    /* Spacing */
    --section-padding: 100px;
    --container-width: 1200px;

    /* Effects */
    --shadow-sm: 0 2px 8px rgba(20, 141, 180, 0.1);
    --shadow-md: 0 4px 16px rgba(20, 141, 180, 0.15);
    --shadow-lg: 0 8px 32px rgba(20, 141, 180, 0.2);
    --shadow-glow: 0 0 30px rgba(20, 141, 180, 0.3);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(20, 141, 180, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    animation: slideDown 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 45px;
    transition: transform 0.3s ease;
}

.logo:hover .logo-image {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 36px;
    align-items: center;
}

.nav-links a {
    color: #1A2342;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #148DB4, #1BA8D9);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #148DB4;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cta-button {
    background: #148DB4;
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #0E6B8A;
}

.cta-button-login {
    background: transparent;
    color: #0E6B8A;
    border: none;
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.cta-button-login:hover {
    color: #1A2342;
    background: transparent;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 5px;
    transition: transform 0.3s ease;
}

.mobile-menu-toggle:hover {
    transform: scale(1.1);
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: linear-gradient(90deg, #148DB4, #1BA8D9);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}


/* ===================================
   HERO SECTION
   =================================== */
.hero {
    position: relative;
    padding: 140px 0px 100px 0px;
    overflow: hidden;
    background: var(--bg-darker);
    min-height: 100vh;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: flex-start;
    position: relative;
    z-index: 10;
}

.hero-text {
    padding-top: 40px;
}

.hero-title {
    font-size: 58px;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease;
    color: var(--text-primary);
    letter-spacing: -1px;
}

.hero-description-row {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 380px;
    font-style: italic;
    margin: 0;
}

.hero-cta-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.profile-avatars {
    display: flex;
    margin-left: 0;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--bg-darker);
    margin-left: -12px;
    position: relative;
    transition: all 0.3s ease;
    background-size: cover;
    background-position: center;
}

.avatar:first-child {
    margin-left: 0;
}

.avatar:nth-child(1) {
    background: linear-gradient(135deg, #C0A080, #8B7355);
    z-index: 4;
}

.avatar:nth-child(2) {
    background: linear-gradient(135deg, #E6C9A8, #D4B896);
    z-index: 3;
}

.avatar:nth-child(3) {
    background: linear-gradient(135deg, #8B7355, #6B5344);
    z-index: 2;
}

.avatar:nth-child(4) {
    background: linear-gradient(135deg, #A08070, #806050);
    z-index: 1;
}

.avatar:hover {
    transform: translateY(-3px) scale(1.1);
    z-index: 10 !important;
}

.btn-hero {
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
    background: var(--primary-orange);
    border: none;
    border-radius: 8px;
    color: var(--bg-darker);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(20, 141, 180, 0.4);
}

.btn-primary {
    background: var(--primary-orange);
    color: var(--bg-darker);
    border: none;
    padding: 16px 40px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-orange);
    border: 2px solid var(--primary-orange);
    padding: 16px 40px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(20, 141, 180, 0.1);
    transform: translateY(-3px);
}

.review-badges {
    display: flex;
    gap: 40px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.review-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    background: transparent;
    border: none;
    transition: all 0.3s ease;
}

.review-badge:hover {
    transform: translateY(-3px);
}

.badge-logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.badge-info {
    display: flex;
    flex-direction: column;
}

.badge-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.stars-row {
    display: flex;
    gap: 2px;
}

.star {
    color: #FFD700;
    font-size: 14px;
}

.review-badges .stars {
    color: #FFD700;
    font-size: 14px;
    letter-spacing: 2px;
}

.hero-image {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    animation: fadeInRight 0.8s ease;
    position: relative;
    height: 100%;
    min-height: 650px;
}

.hero-character {
    max-width: 100%;
    max-height: 750px;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

.character-placeholder {
    display: none;
    width: 480px;
    height: 680px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    border-radius: 20px;
    position: relative;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: 600;
    color: white;
    border: 3px dashed var(--accent-blue);
}

.hero-image.placeholder-active .character-placeholder {
    display: flex;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}







/* ===================================
   SECTIONS COMMON
   =================================== */
.services-section,
.portfolio-section,
.process-section,
.tech-section,
.pricing-section,
.faq-section,
.testimonials-section {
    padding: var(--section-padding) 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
}

/* ===================================
   SERVICES SECTION
   =================================== */
.service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

.service-row.reverse {
    direction: rtl;
}

.service-row.reverse>* {
    direction: ltr;
}

.service-image {
    position: relative;
}

.mockup-placeholder {
    width: 100%;
    height: 400px;
    background: var(--gradient-card);
    border-radius: 20px;
    border: 2px solid var(--primary-orange);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mockup-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(20, 141, 180, 0.3), transparent);
    transition: left 0.5s ease;
}

.service-row:hover .mockup-placeholder::before {
    left: 100%;
}

.mockup-placeholder::after {
    content: '📱';
    font-size: 100px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.mockup-1::after {
    content: '💻';
}

.mockup-2::after {
    content: '📊';
}

.mockup-3::after {
    content: '📞';
}

.mockup-4::after {
    content: '⭐';
}

.mockup-5::after {
    content: '📱';
}

.service-content {
    padding: 20px;
}

.service-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-orange);
}

.service-description {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    padding: 10px 0;
    color: var(--text-secondary);
    font-size: 16px;
}

.btn-learn-more {
    background: transparent;
    color: var(--primary-orange);
    border: 2px solid var(--primary-orange);
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-learn-more:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ===================================
   PORTFOLIO SECTION
   =================================== */
.portfolio-section {
    background: var(--bg-darker);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.portfolio-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-10px);
}

.portfolio-image {
    width: 100%;
    height: 300px;
    background: var(--gradient-card);
    border: 2px solid rgba(20, 141, 180, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.portfolio-image::before {
    content: '🏗️';
    font-size: 80px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.portfolio-img-1::before {
    content: '🏗️';
}

.portfolio-img-2::before {
    content: '🔧';
}

.portfolio-img-3::before {
    content: '❄️';
}

.portfolio-img-4::before {
    content: '🏠';
}

.portfolio-img-5::before {
    content: '⚡';
}

.portfolio-img-6::before {
    content: '🌳';
}

.portfolio-item:hover .portfolio-image {
    border-color: var(--primary-orange);
    box-shadow: var(--shadow-glow);
}

.portfolio-info {
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid rgba(20, 141, 180, 0.2);
    border-top: none;
}

.portfolio-info h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--primary-orange);
}

.portfolio-info p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* ===================================
   PROCESS SECTION
   =================================== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.process-card {
    background: var(--gradient-card);
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid rgba(20, 141, 180, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-orange);
    box-shadow: var(--shadow-glow);
}

.process-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.process-card h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-orange);
}

.process-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===================================
   TECHNOLOGY SECTION
   =================================== */
.tech-section {
    background: var(--bg-darker);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
}

.tech-item {
    background: var(--gradient-card);
    padding: 40px 20px;
    border-radius: 16px;
    border: 1px solid rgba(20, 141, 180, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.tech-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-orange);
    box-shadow: var(--shadow-glow);
}

.tech-logo {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-orange);
}

/* ===================================
   PRICING SECTION
   =================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--gradient-card);
    padding: 50px 40px;
    border-radius: 20px;
    border: 2px solid rgba(20, 141, 180, 0.2);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-orange);
    box-shadow: var(--shadow-glow);
}

.pricing-card.featured {
    border-color: var(--primary-orange);
    box-shadow: var(--shadow-lg);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 8px 25px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.pricing-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-orange);
}

.pricing-amount {
    margin-bottom: 10px;
}

.currency {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-secondary);
    vertical-align: top;
}

.price {
    font-size: 64px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-period {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 16px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 35px;
    text-align: left;
}

.pricing-features li {
    padding: 12px 0;
    color: var(--text-secondary);
    font-size: 16px;
    border-bottom: 1px solid rgba(20, 141, 180, 0.1);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.btn-pricing {
    width: 100%;
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-pricing:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* ===================================
   FAQ SECTION
   =================================== */
.faq-section {
    background: var(--bg-dark);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--gradient-card);
    border: 1px solid rgba(20, 141, 180, 0.2);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-orange);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    cursor: pointer;
    user-select: none;
}

.faq-question h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
}

.faq-toggle {
    font-size: 28px;
    color: var(--primary-orange);
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 10px 25px 10px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--gradient-card);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(20, 141, 180, 0.2);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-orange);
    box-shadow: var(--shadow-glow);
}

.stars {
    color: #FFD700;
    font-size: 24px;
    margin-bottom: 20px;
}

.testimonial-text {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    flex-shrink: 0;
}

.author-info h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 3px;
}

.author-info p {
    color: var(--text-muted);
    font-size: 14px;
}

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
    padding: 100px 0;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.cta-robot {
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    animation: float 3s ease-in-out infinite;
}

.cta-robot::before {
    content: '🤖';
    font-size: 120px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.cta-text {
    text-align: center;
}

.cta-text h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-text p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-cta-large {
    background: white;
    color: var(--primary-orange);
    border: none;
    padding: 18px 50px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.btn-cta-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.3);
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--bg-darker);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(20, 141, 180, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-orange);
}

.footer-col p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--primary-orange);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-orange);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(20, 141, 180, 0.2);
    color: var(--text-muted);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 42px;
    }

    .section-title {
        font-size: 36px;
    }

    .stats-grid,
    .process-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tech-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-content,
    .service-row,
    .cta-content,
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-row.reverse {
        direction: ltr;
    }

    .hero-title {
        font-size: 36px;
        text-align: left;
    }

    .section-title {
        font-size: 32px;
    }

    .stats-grid,
    .portfolio-grid,
    .pricing-grid,
    .process-grid,
    .tech-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}

/* ===================================
   FUNCTIONAL WEBSITE SECTION
   =================================== */
.functional-website-section {
    padding: 100px 0;
    background: #FFFFFF;
}

.section-center-header {
    text-align: center;
    margin-bottom: 20px;
}

.section-center-header h2 {
    font-size: 38px;
    font-weight: 800;
    color: var(--bg-navy);
    line-height: 1.2;
}

.feature-split {
    display: flex;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
}

.feature-visual {
    flex: 1;
    min-width: 320px;
    display: flex;
    justify-content: center;
    position: relative;
    padding-bottom: 40px;
}

.feature-text-content {
    flex: 1;
    min-width: 320px;
}

.feature-website {
    width: 500px;
    height: auto;
}

/* Phone Mockup Styling - Enhanced */
.phone-mockup {
    width: 300px;
    height: 600px;
    background: #000;
    border-radius: 45px;
    box-shadow:
        0 0 0 6px #2D3436,
        /* Main Bezel */
        0 0 0 8px #1a1a1a,
        /* Outer Frame */
        0 30px 60px rgba(0, 0, 0, 0.4),
        /* Deep Shadow */
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    /* Inner Reflection */
    position: relative;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 38px;
    overflow: hidden;
    padding-top: 50px;
    /* Space for Notch/Island */
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Dynamic Island / Notch */
.phone-mockup::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 25px;
    background: #000;
    border-radius: 20px;
    z-index: 20;
}

/* Side Buttons */
.phone-mockup::after {
    content: '';
    position: absolute;
    top: 100px;
    right: -10px;
    width: 4px;
    height: 40px;
    background: #2D3436;
    border-radius: 0 4px 4px 0;
    box-shadow:
        -318px 0 0 #2D3436,
        /* Volume Up (Left side approx) */
        -318px 50px 0 #2D3436;
    /* Volume Down */
    z-index: 5;
}

/* Chat Interface */
.chat-interface {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.chat-bubble {
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 13px;
    line-height: 1.4;
    max-width: 85%;
    position: relative;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.chat-bubble.received {
    align-self: flex-end;
    background: #2E86DE;
    color: white;
    border-bottom-right-radius: 4px;
}

.chat-bubble.sent {
    align-self: flex-start;
    background: #F1F2F6;
    color: #2D3436;
    border-bottom-left-radius: 4px;
}

.feature-character {
    position: absolute;
    bottom: 0;
    left: -40px;
    width: 180px;
    height: auto;
    z-index: 15;
    filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.2));
}

/* Feature Text Styling */
.feature-main-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--bg-navy);
    margin-bottom: 15px;
}

.feature-lead {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
    font-style: italic;
    line-height: 1.6;
}

.feature-list-check {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.feature-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.check-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    margin-top: 2px;
}

.feature-detail h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0F6A88;
    /* Blue theme color */
    margin-bottom: 5px;
}

.feature-detail p {
    font-size: 15px;
    color: #636E72;
    line-height: 1.6;
    margin: 0;
}

.feature-split.reverse {
    flex-direction: row-reverse;
}

@media (max-width: 768px) {

    .feature-split,
    .feature-split.reverse {
        flex-direction: column;
        gap: 40px;
    }

    .feature-character {
        left: -10px;
        width: 80px;
    }

    .feature-website {
        width: 350px;
        height: auto;
    }
}

/* Trades Slider Section */
.trades-slider-section {
    background-color: var(--bg-card);
    padding: 120px 0 100px;
    position: relative;
    clip-path: polygon(0 50px, 100% 0, 100% 100%, 0 100%);
    margin-top: -50px;
    /* Pull up to create seamless slant effect */
}

/* Ensure content is readable */
.section-title-white {
    color: #fff;
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 60px;
}

.slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.trades-track-container {
    overflow: hidden;
}

.trades-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease-in-out;
}

.trade-card {
    flex: 0 0 calc(33.333% - 20px);
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1024px) {
    .trade-card {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .trade-card {
        flex: 0 0 100%;
    }
}

.trade-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.trade-info {
    padding: 20px;
    text-align: center;
}

.trade-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin: 0;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
    transition: transform 0.2s;
}

.slider-arrow:hover {
    transform: translateY(-50%) scale(1.1);
}

.prev-trade {
    left: 0;
}

.next-trade {
    right: 0;
}

@media (max-width: 768px) {
    .trade-card {
        flex: 0 0 calc(100% - 20px);
        /* 1 card on mobile */
    }

    .slider-container {
        padding: 0 40px;
    }
}

/* New Process Section */
.new-process-section {
    background-color: #F4F6F8;
    padding: 100px 0 150px;
    position: relative;
    overflow: hidden;
}

.dark-blue-text {
    color: #1A1E29;
}

.process-steps-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 60px;
    gap: 40px;
}

.process-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-circle {
    width: 80px;
    height: 80px;
    background-color: var(--bg-card);
    color: white;
    font-size: 32px;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 10px 20px rgba(7, 28, 123, 0.3);
}

.step-title {
    font-size: 20px;
    font-weight: 800;
    color: #1A1E29;
    margin-bottom: 15px;
    line-height: 1.4;
}

.step-duration {
    font-weight: 400;
    font-size: 16px;
    color: #555;
}

.step-description {
    font-size: 16px;
    color: #636E72;
    line-height: 1.6;
    max-width: 300px;
    margin: 0 auto;
}

/* Connector Line (Desktop) */
.process-connector-line {
    position: absolute;
    top: 40px;
    left: 15%;
    right: 15%;
    height: 4px;
    border-top: 4px dashed #DCDDE1;
    z-index: 1;
}

/* Bottom Slant White */
.section-slant-bottom-white {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: #fff;
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

@media (max-width: 768px) {
    .process-steps-container {
        flex-direction: column;
        gap: 60px;
        align-items: center;
    }

    .process-connector-line {
        top: 40px;
        left: 50%;
        width: 4px;
        height: calc(100% - 80px);
        /* Height minus top/bottom offset */
        border-top: none;
        border-left: 4px dashed #DCDDE1;
        transform: translateX(-50%);
        right: auto;
    }

    .section-slant-bottom-white {
        height: 50px;
    }
}

/* Why Us (Unique) Section */
.unique-section {
    padding: 100px 0;
    background-color: #fff;
    /* White bg for the section */
}

.unique-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.unique-card {
    background-color: var(--bg-card);
    /* Dark Navy Card */
    border-radius: 12px;
    padding: 40px 30px;
    color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.unique-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.unique-icon {
    display: inline-flex;
    margin-bottom: 20px;
}

.unique-icon svg {
    width: 48px;
    height: 48px;
    stroke: white;
    /* Default stroke if not inline */
}

.unique-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 15px;
    color: white;
}

.unique-card p {
    font-size: 16px;
    color: #CED6E0;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 992px) {
    .unique-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .unique-grid {
        grid-template-columns: 1fr;
    }

    .unique-card {
        padding: 30px 20px;
    }
}

/* Footer Section */
.footer {
    background-color: #1A1E29;
    /* Dark Navy Theme */
    color: white;
    padding: 80px 0 40px;
}

.footer-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-cta-right {
    display: flex;
    align-items: center;
}

.footer-divider {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin: 40px 0;
}

.footer-main {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-left-col {
    flex: 0 0 300px;
}

.footer-col-links {
    flex: 0 0 150px;
}

.footer-col-products {
    flex: 1;
}

.footer-heading {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
}

.products-grid {
    display: flex;
    gap: 40px;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 15px;
}

.footer-links-list a {
    color: #A4B0BE;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 15px;
}

.footer-links-list a:hover {
    color: var(--text-primary);
    /* Orange hover matching theme */
}

.footer-bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-legal a {
    color: #747D8C;
    margin-right: 20px;
    font-size: 14px;
    text-decoration: none;
}

.footer-legal a:hover {
    color: white;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s;
}

.social-icon:hover {
    background: var(--bg-card);
    border-color: var(--bg-card);
}

@media (max-width: 992px) {
    .footer-main {
        flex-direction: column;
        gap: 40px;
    }

    .products-grid {
        flex-direction: column;
        gap: 0;
    }

    .footer-left-col,
    .footer-col-links,
    .footer-col-products {
        flex: auto;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-top-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .footer-cta-right {
        width: 100%;
        justify-content: space-between;
    }

    .footer-bottom-bar {
        flex-direction: column-reverse;
        gap: 20px;
        align-items: flex-start;
    }
}

/* Testimonials Carousel Section */
.new-testimonials-section {
    padding: 100px 0 150px;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.testimonial-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 0 60px;
}

.testimonial-track-container {
    overflow: hidden;
    padding-bottom: 50px;
    /* For shadow visibility */
}

.testimonial-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
    flex: 0 0 calc(33.333% - 20px);
    opacity: 1;
    transform: scale(1);
    transition: all 0.3s;
}

.testimonial-card-modern {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    height: 100%;
    border: 1px solid #f0f0f0;
}

.quote-icon {
    font-size: 60px;
    color: #E09416;
    line-height: 1;
    position: absolute;
    top: 20px;
    left: 20px;
    opacity: 0.15;
    font-family: serif;
}

.testimonial-text {
    font-size: 16px;
    color: #2D3436;
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    min-height: 80px;
}

.rating {
    color: #FFC107;
    font-size: 18px;
    margin-bottom: 20px;
}

.testimonial-author-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.author-details h5 {
    font-weight: 700;
    font-size: 16px;
    color: #1A1E29;
    margin: 0;
}

.author-details p {
    font-size: 14px;
    color: #636E72;
    margin: 0;
}

@media (max-width: 992px) {
    .testimonial-slide {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .testimonial-slide {
        flex: 0 0 100%;
    }

    .testimonial-slider-container {
        padding: 0 40px;
    }
}



/* ============================================
   NEW TESTIMONIALS SECTION STYLES
   ============================================ */
.testimonials-section-new {
    padding: 80px 0;
    background: #fff;
}

.testimonials-carousel {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-wrapper {
    flex: 1;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 20px);
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    border: 1px solid #e0e0e0;
}

.testimonial-card .card-quote {
    font-size: 60px;
    color: #148DB4;
    line-height: 1;
    margin-bottom: -10px;
    font-family: Georgia, serif;
}

.testimonial-card .card-text {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
    min-height: 80px;
}

.testimonial-card .card-rating {
    color: #F5A623;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.testimonial-card .card-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-card .card-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-card .card-author strong {
    display: block;
    font-size: 16px;
    color: #1A1E29;
    font-weight: 700;
}

.testimonial-card .card-author span {
    font-size: 13px;
    color: #888;
}

.testimonial-nav {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #ddd;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-nav:hover {
    background: #148DB4;
    border-color: #148DB4;
}

.testimonial-nav:hover svg {
    stroke: #fff;
}

.testimonial-nav svg {
    stroke: #333;
    transition: stroke 0.3s ease;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.testimonial-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: background 0.3s ease;
}

.testimonial-dots .dot.active {
    background: #148DB4;
}

/* Responsive */
@media (max-width: 992px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        flex: 0 0 100%;
    }

    .testimonials-carousel {
        padding: 0 10px;
    }

    .testimonial-nav {
        width: 40px;
        height: 40px;
    }
}

/* ===================================
   GLOBAL MOBILE RESPONSIVENESS
   =================================== */

@media (max-width: 992px) {

    /* Hero */
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }

    .hero-text {
        padding-top: 0;
    }

    .hero-description-row {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .hero-cta-section {
        justify-content: center;
        width: 100%;
    }

    .hero-image {
        display: flex;
        justify-content: center;
        margin-top: -40px;
        /* Pull up closer to text if needed */
        margin-bottom: 40px;
    }

    .hero-character {
        max-width: 60%;
        /* Smaller on tablet */
    }

    /* Process Section */
    .process-steps-container {
        flex-direction: column;
        gap: 40px;
    }

    .process-connector-line {
        display: none;
    }

    .process-step {
        width: 100%;
    }
}

@media (max-width: 768px) {

    /* Navigation */
    .navbar {
        padding: 10px 0;
        /* Smaller navbar */
    }

    .mobile-menu-toggle {
        display: flex;
        z-index: 1002;
        position: relative;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1001;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
        gap: 30px;
        padding: 40px;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 18px;
        width: 100%;
        text-align: center;
        display: block;
        padding: 10px 0;
    }

    .nav-cta {
        display: none;
        /* Hide desktop buttons */
    }

    /* Typography */
    .hero-title {
        font-size: 38px;
        line-height: 1.1;
    }

    .section-title,
    .section-title-white {
        font-size: 28px;
    }

    .hero-description {
        font-size: 16px;
        text-align: left;
        max-width: 100%;
    }

    /* Feature Sections */
    .feature-split {
        flex-direction: column;
        gap: 50px;
    }

    .feature-visual,
    .feature-text-content {
        width: 100%;
        padding: 0 10px;
    }

    .feature-visual {
        order: -1;
        /* Image on top */
        display: flex;
        justify-content: center;
    }

    .phone-mockup {
        transform: scale(0.9);
        /* Scale down if huge */
    }

    /* Feature Text */
    .feature-main-title {
        font-size: 26px;
        text-align: center;
    }

    .feature-lead {
        text-align: center;
    }

    .feature-list-check {
        grid-template-columns: 1fr;
    }



    /* Trades Slider */
    .slider-container {
        padding: 0;
        /* Remove padding */
    }

    .slider-arrow {
        width: 35px;
        height: 35px;
        top: 40%;
        /* Adjust vertical center */
    }



    /* Reviews Section */
    .custom-shape-divider-top svg {
        height: 50px;
        /* Smaller wave */
    }

    .reviews-title {
        font-size: 24px;

        br {
            display: none;
        }

        /* Remove break on mobile title */
    }

    /* Footer */
    .footer {
        padding: 60px 0 30px;
    }

    .footer-main,
    .footer-top-bar,
    .footer-bottom-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .footer-cta-right {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .footer-heading {
        margin-bottom: 15px;
    }

    .products-grid {
        gap: 30px;
    }
}

/* ===================================
   PRICING TESTIMONIALS GRID
   =================================== */
.pricing-testimonials-section {
    padding: 130px 0;
    background: #FFFFFF;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 20px 0;
}

.testimonial-grid-card {
    background: #FFFFFF;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    /* Slightly stronger shadow */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    /* Ensure cards are equal height in grid */
}

.testimonial-grid-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.grid-video-wrapper {
    width: 100%;
    position: relative;
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio */
    background: #000;
}

.grid-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.grid-review-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
    /* Pushes content to fill space */
}

.grid-review-content .review-stars {
    margin-bottom: 12px;
    display: flex;
    gap: 2px;
}

.grid-review-content .star-icon {
    color: #F5A623;
    font-size: 16px;
}

.grid-review-content .review-body {
    font-size: 15px;
    line-height: 1.6;
    color: #3D4852;
    margin-bottom: 20px;
    flex: 1;
    /* Pushes author to bottom */
}

.grid-review-author {
    font-weight: 700;
    color: #1a1a1a;
    font-size: 15px;
    display: block;
    margin-top: auto;
}

/* Responsive for Grid */
@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   PRICING PAGE STYLES
   =================================== */
.pricing-title-main {
    font-size: 50px;
    font-weight: 800;
    color: #1A1E29;
    margin-bottom: 20px;
}

.pricing-toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

.toggle-label {
    font-size: 16px;
    font-weight: 600;
    color: #636E72;
    transition: color 0.3s;
}

.toggle-label.active {
    color: #1A1E29;
}

/* Switch Styles */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked+.slider {
    background-color: #148DB4;
    /* Blue */
}

input:focus+.slider {
    box-shadow: 0 0 1px #148DB4;
    /* Blue */
}

input:checked+.slider:before {
    transform: translateX(26px);
}

/* Pricing Card */
.pricing-cards-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.pricing-card {
    background: linear-gradient(135deg, #148DB4 0%, #0E6B8A 100%);
    /* Blue Gradient */
    border-radius: 12px;
    padding: 60px 40px;
    color: white;
    width: 100%;
    max-width: 450px;
    position: relative;
    box-shadow: 0 20px 40px rgba(20, 141, 180, 0.3);
    /* Blue shadow */
    text-align: center;
    overflow: visible;
}

.card-badge {
    position: absolute;
    top: -15px;
    /* Pull badge slightly out or stick to top */
    left: 50%;
    transform: translateX(-50%);
    background: #FF5252;
    color: white;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.plan-name {
    font-size: 32px;
    font-weight: 800;
    margin-top: 20px;
    margin-bottom: 10px;
    color: white;
}

.plan-price {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    line-height: 1;
    color: white;
}

.plan-price .currency {
    font-size: 36px;
    margin-top: 8px;
    font-weight: 700;
}

.plan-price .amount {
    margin: 0 2px;
}

.plan-price .period {
    font-size: 24px;
    align-self: flex-end;
    margin-bottom: 8px;
    font-weight: 600;
    opacity: 0.9;
}

.plan-features {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 30px 0;
    margin-bottom: 35px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-line {
    font-size: 18px;
    font-weight: 700;
    color: white;
}

.btn-pricing-action {
    background: white;
    color: #1A1E29;
    border: none;
    padding: 20px 40px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    width: 100%;
    letter-spacing: 0.5px;
}

.btn-pricing-action:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* ===================================
   REVIEWS SLIDER ARROW FIXES
   =================================== */
.reviews-slider-wrapper {
    position: relative;
    padding: 0 20px;
}

.reviews-slider-wrapper .slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    color: #148DB4;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(20, 141, 180, 0.1);
}

.reviews-slider-wrapper .slider-arrow:hover {
    background: #148DB4;
    color: #fff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 15px 35px rgba(20, 141, 180, 0.25);
}

.reviews-slider-wrapper .prev-arrow {
    left: -25px;
}

.reviews-slider-wrapper .next-arrow {
    right: -25px;
}

.reviews-slider-wrapper .arrow-icon {
    display: none;
}

/* Responsive */
@media (max-width: 992px) {
    .reviews-slider-wrapper .slider-arrow {
        width: 50px;
        height: 50px;
    }

    .reviews-slider-wrapper .prev-arrow {
        left: -10px;
    }

    .reviews-slider-wrapper .next-arrow {
        right: -10px;
    }
}

@media (max-width: 768px) {
    .reviews-slider-wrapper {
        padding: 0;
    }

    .reviews-slider-wrapper .prev-arrow {
        left: 0;
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.9);
    }

    .reviews-slider-wrapper .next-arrow {
        right: 0;
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.9);
    }
}

/* ===================================
   MOBILE MENU OVERLAY
   =================================== */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    height: 100vh;
    background: #ffffff;
    z-index: 10001;
    padding: 30px 30px 40px;
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow-y: auto;
    box-shadow: 5px 0 30px rgba(0, 0, 0, 0.15);
}

.mobile-menu-close {
    align-self: flex-end;
    background: none;
    border: none;
    font-size: 32px;
    color: #1A1E29;
    cursor: pointer;
    margin-bottom: 20px;
    padding: 5px;
    line-height: 1;
    transition: color 0.3s;
}

.mobile-menu-close:hover {
    color: #148DB4;
}

.mobile-menu-overlay.active {
    transform: translateX(0);
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.mobile-nav-links li {
    margin-bottom: 25px;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active .mobile-nav-links li {
    opacity: 1;
    transform: translateX(0);
}

.mobile-menu-overlay.active .mobile-nav-links li:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-menu-overlay.active .mobile-nav-links li:nth-child(2) {
    transition-delay: 0.15s;
}

.mobile-menu-overlay.active .mobile-nav-links li:nth-child(3) {
    transition-delay: 0.2s;
}

.mobile-menu-overlay.active .mobile-nav-links li:nth-child(4) {
    transition-delay: 0.25s;
}

.mobile-menu-overlay.active .mobile-nav-links li:nth-child(5) {
    transition-delay: 0.3s;
}

.mobile-nav-links a {
    font-size: 24px;
    font-weight: 700;
    color: #1A1E29;
    text-decoration: none;
    display: block;
}

.mobile-nav-links a:hover {
    color: #148DB4;
}

.mobile-nav-cta {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: auto;
    width: 100%;
}

.mobile-nav-cta a {
    width: 100%;
    text-decoration: none;
}

.mobile-nav-cta button {
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: 16px;
}

.mobile-socials {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.mobile-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #f5f5f5;
    transition: all 0.3s ease;
}

.mobile-socials a:hover {
    background: #148DB4;
    transform: translateY(-3px);
}

.mobile-socials a svg {
    width: 24px;
    height: 24px;
    fill: #1A1E29;
    transition: fill 0.3s;
}

.mobile-socials a:hover svg {
    fill: white;
}

/* ===================================
   MOBILE HEADER ADJUSTMENTS
   =================================== */
@media (max-width: 768px) {
    .navbar {
        position: absolute;
    }

    .hero {
        padding-bottom: 0 !important;
        overflow: hidden;
        /* Prevent horizontal scroll from large image */
    }

    .hero-image {
        min-height: auto !important;
        height: auto !important;
        justify-content: center;
        align-items: flex-end;
        margin-top: 20px;
    }

    .hero-character {
        width: 120%;
        /* Increase size */
        max-width: none;
        max-height: none;
        /* Unset max-height */
        margin-left: -10%;
        /* Center the enlarged image */
        margin-bottom: -10px;
        /* Reduce bottom space */
        display: block;
    }
}

/* ===================================
   CTA BANNER SECTION
   =================================== */
.cta-banner-section {
    padding: 0px 0px 50px 0px;
    background: #ffffff;
}

.cta-banner-container {
    background: #1A2342;
    border-radius: 20px;
    padding: 20px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    background-image: url('assets/blur-bg.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    background-color: #1A2342;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.cta-banner-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
    position: relative;
}

.cta-banner-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-banner-content p {
    font-size: 18px;
    color: #A8B8D8;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-banner-btn {
    display: inline-block;
    background: #148DB4;
    /* Primary Blue */
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(20, 141, 180, 0.3);
}

.cta-banner-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(20, 141, 180, 0.4);
    background: #0E6B8A;
}

.cta-banner-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
    z-index: 1;
}

.cta-banner-image img {
    max-height: 400px;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(20, 141, 180, 0.2));
}

@media (max-width: 991px) {
    .cta-banner-container {
        flex-direction: column;
        padding: 40px;
        text-align: center;
    }

    .cta-banner-content {
        max-width: 100%;
        margin-bottom: 40px;
    }

    .cta-banner-image {
        justify-content: center;
        width: 100%;
    }

    .cta-banner-image img {
        height: 300px;
        max-width: 100%;
    }
}