/* 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;
    overflow-x: hidden;
}

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

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 37, 64, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(245, 166, 35, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    color: white;
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.nav-logo h2 {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #F5A623 0%, #E09500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-logo span {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #F5A623;
}

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

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(135deg, #F5A623 0%, #E09500 100%);
    color: #0A2540 !important;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 166, 35, 0.4);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background: linear-gradient(135deg, #0A2540 0%, #1A365F 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 70px;
}

.hero-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.hero-content {
    color: white;
}

.hero-badge {
    background: rgba(245, 166, 35, 0.2);
    border: 1px solid #F5A623;
    padding: 8px 16px;
    border-radius: 25px;
    color: #F5A623;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.hero-headline {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #FFFFFF 0%, #F5A623 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subheadline {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #F5A623;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 5px;
}

.hero-visual {
    position: relative;
}

/* Phone Mockup - Fixed Sizing */
.phone-mockup {
    width: 280px;
    height: 560px;
    background: #1a1a1a;
    border-radius: 30px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    padding: 12px;
    border: 2px solid #333;
}

/* Phone Screen */
.phone-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

/* Screenshot Slider */
.screenshot-slider {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    border-radius: 20px;
    overflow: hidden;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 20px;
}

/* Navigation dots */
.slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.6);
    padding: 6px 10px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #F5A623;
    transform: scale(1.3);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

/* Navigation arrows */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    z-index: 10;
}

.nav-btn {
    width: 30px;
    height: 30px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.nav-btn:hover {
    background: rgba(245, 166, 35, 0.8);
    border-color: #F5A623;
    transform: scale(1.1);
}


/* Services Section */
.services-section {
    padding: 120px 0;
    background: #F8F9FA;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-badge {
    background: rgba(245, 166, 35, 0.1);
    border: 1px solid #F5A623;
    padding: 8px 20px;
    border-radius: 25px;
    color: #F5A623;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: #0A2540;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #040303;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.service-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #E5E7EB;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #F5A623 0%, #E09500 100%);
}

.service-card.featured {
    border: 2px solid #F5A623;
    transform: scale(1.02);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #F5A623 0%, #E09500 100%);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-icon {
    margin-bottom: 25px;
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #F5A623 0%, #E09500 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.icon-wrapper svg {
    width: 35px;
    height: 35px;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0A2540;
    margin-bottom: 15px;
}

.service-description {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    color: #444;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

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

.service-tech {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.service-tech span {
    background: rgba(245, 166, 35, 0.1);
    color: #F5A623;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.service-cta {
    color: #F5A623;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.service-cta:hover {
    color: #E09500;
    transform: translateX(5px);
}

/* Floating elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    color: #F5A623;
    font-size: 2rem;
    animation: floatIcon 8s ease-in-out infinite;
}

.icon-1 {
    top: 15%;
    left: 15%;
    animation-delay: 0s;
}

.icon-2 {
    top: 25%;
    left: 85%;
    animation-delay: 1s;
}

.icon-3 {
    top: 70%;
    left: 10%;
    animation-delay: 2s;
}

.icon-4 {
    top: 80%;
    left: 80%;
    animation-delay: 3s;
}

.icon-5 {
    top: 40%;
    left: 5%;
    animation-delay: 4s;
}

@keyframes floatIcon {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.6;
    }

    50% {
        transform: translateY(-30px) rotate(180deg);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(10, 37, 64, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: all 0.3s ease;
    }

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

    .nav-toggle {
        display: flex;
    }

    .hero-section {
        height: auto;
        padding: 120px 0 80px;
    }

    .hero-section .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-headline {
        font-size: 2.5rem;
    }

    .hero-stats {
        justify-content: center;
        gap: 30px;
    }

    /* .cta-buttons {
        justify-content: center;
    } */

    .phone-mockup {
        width: 240px;
        height: 480px;
        padding: 10px;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card.featured {
        transform: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-headline {
        font-size: 2rem;
    }

    .phone-mockup {
        width: 220px;
        height: 440px;
        padding: 8px;
    }

    .nav-btn {
        width: 26px;
        height: 26px;
        font-size: 14px;
    }

    .slider-dots {
        bottom: 10px;
        padding: 4px 8px;
    }

    .dot {
        width: 5px;
        height: 5px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #F5A623;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #E09500;
}







.case-studies-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #0A2540 0%, #1A365F 100%);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-badge {
    background: rgba(245, 166, 35, 0.2);
    border: 1px solid #F5A623;
    padding: 8px 20px;
    border-radius: 25px;
    color: #F5A623;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(135deg, #FFFFFF 0%, #F5A623 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle-case-studies {
    font-size: 1.25rem;
    color: white;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.case-study-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.case-study-card.featured {
    border: 2px solid #F5A623;
    transform: scale(1.02);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #F5A623 0%, #E09500 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    z-index: 5;
}

.case-study-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.case-study-icon {
    font-size: 4rem;
    margin-bottom: 25px;
    text-align: center;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.case-study-content {
    text-align: left;
}

.case-study-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.case-study-meta span {
    background: rgba(245, 166, 35, 0.2);
    color: #F5A623;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid rgba(245, 166, 35, 0.3);
}

.case-study-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.case-study-excerpt {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 25px;
    line-height: 1.5;
}

.challenge-solution {
    margin-bottom: 25px;
}

.cs-item {
    margin-bottom: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 4px solid #F5A623;
}

.cs-item h4 {
    font-size: 12px;
    color: #F5A623;
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cs-item p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.4;
}

.case-study-tech {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.case-study-tech span {
    background: rgba(245, 166, 35, 0.2);
    color: #F5A623;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 500;
    border: 1px solid rgba(245, 166, 35, 0.3);
}

.case-study-links {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.store-link {
    background: linear-gradient(135deg, #F5A623 0%, #E09500 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.store-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 166, 35, 0.4);
}

.learn-more-btn {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    padding: 8px 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.learn-more-btn:hover {
    background: rgba(245, 166, 35, 0.2);
    border-color: #F5A623;
    color: #F5A623;
}

.private-app,
.coming-soon {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .case-studies-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .case-study-card.featured {
        transform: none;
    }

    .case-studies-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 30px 20px;
    }

    .stat-card .stat-number {
        font-size: 2rem;
    }

    .case-study-card {
        padding: 30px 20px;
    }

    .case-study-icon {
        font-size: 3rem;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .case-studies-stats {
        grid-template-columns: 1fr;
    }

    .case-study-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .section-title {
        font-size: 2rem;
    }
}



/* Process Section - True Horizontal Layout */
.process-section {
    padding: 120px 0;
    background: #FFFFFF;
    position: relative;
}

.process-horizontal-container {
    overflow-x: auto;
    padding: 20px 0;
    margin-bottom: 60px;
}

.process-horizontal-container::-webkit-scrollbar {
    height: 8px;
}

.process-horizontal-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.process-horizontal-container::-webkit-scrollbar-thumb {
    background: #F5A623;
    border-radius: 4px;
}

.process-horizontal {
    display: flex;
    align-items: center;
    gap: 20px;
    min-width: max-content;
    padding: 20px;
}

.process-step {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.step-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #F5F5F5;
    width: 280px;
    height: 320px;
    position: relative;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #F5A623 0%, #E09500 100%);
    border-radius: 20px 20px 0 0;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: #F5A623;
}

.step-number {
    position: absolute;
    top: -15px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #F5A623 0%, #E09500 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    box-shadow: 0 5px 15px rgba(245, 166, 35, 0.4);
    z-index: 10;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: rgba(245, 166, 35, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F5A623;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.step-icon svg {
    width: 28px;
    height: 28px;
}

.step-card:hover .step-icon {
    background: rgba(245, 166, 35, 0.2);
    transform: scale(1.1) rotate(10deg);
}

.step-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0A2540;
    margin-bottom: 12px;
    line-height: 1.3;
}

.step-description {
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
    font-size: 13px;
    flex-grow: 1;
}

.step-features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: auto;
}

.step-features span {
    background: rgba(245, 166, 35, 0.1);
    color: #F5A623;
    padding: 4px 8px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 500;
    border: 1px solid rgba(245, 166, 35, 0.2);
}

.arrow-right {
    color: #F5A623;
    font-size: 2.5rem;
    font-weight: bold;
    animation: arrowBounce 2s ease-in-out infinite;
    flex-shrink: 0;
}

.process-step:last-child .arrow-right {
    display: none;
}

@keyframes arrowBounce {

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

    50% {
        transform: translateX(10px);
    }
}

/* Process CTA */
.process-cta {
    text-align: center;
    padding: 50px 40px;
    background: linear-gradient(135deg, #F8F9FA 0%, #E5E7EB 100%);
    border-radius: 20px;
    border: 1px solid #E5E7EB;
}

.process-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #0A2540;
    margin-bottom: 15px;
}

.process-cta p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 25px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.process-cta .cta-primary {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    display: inline-block;
}

.process-cta .cta-primary::before {
    content: '💬';
    margin-right: 8px;
}

.process-cta .cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .step-card {
        width: 250px;
        height: 300px;
    }

    .arrow-right {
        font-size: 2rem;
    }
}



/* Testimonials Section */
.testimonials-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #0A2540 0%, #1A365F 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section .section-badge {
    background: rgba(245, 166, 35, 0.2);
    border: 1px solid #F5A623;
    padding: 8px 20px;
    border-radius: 25px;
    color: #F5A623;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.testimonials-section .section-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(135deg, #FFFFFF 0%, #F5A623 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonials-section .section-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.testimonial-card.featured {
    border: 2px solid #F5A623;
    transform: scale(1.02);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #F5A623 0%, #E09500 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    z-index: 5;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #F5A623 0%, #E09500 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(245, 166, 35, 0.3);
}

.avatar-letter {
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
}

.client-info {
    flex: 1;
}

.client-name {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.client-position {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 8px;
}

.rating {
    display: flex;
    gap: 2px;
}

.star {
    color: #F5A623;
    font-size: 16px;
}

.testimonial-content {
    text-align: left;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 15px;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-text::before {
    content: '"';
    color: #F5A623;
    font-size: 2rem;
    font-weight: bold;
    line-height: 0;
}

.testimonial-text::after {
    content: '"';
    color: #F5A623;
    font-size: 2rem;
    font-weight: bold;
    line-height: 0;
}

.project-tag {
    background: rgba(245, 166, 35, 0.2);
    color: #F5A623;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    display: inline-block;
    border: 1px solid rgba(245, 166, 35, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .testimonial-card.featured {
        transform: none;
    }

    .testimonials-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 40px 20px;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .testimonials-stats {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .testimonial-header {
        gap: 15px;
    }

    .client-avatar {
        width: 50px;
        height: 50px;
    }

    .avatar-letter {
        font-size: 1.2rem;
    }

    .testimonials-section .section-title {
        font-size: 2rem;
    }
}


.blogs-section {
    padding: 120px 0;
    background: #FFFFFF;
    position: relative;
}

.blogs-section .section-header {
    text-align: center;
    margin-bottom: 80px;
}

.blogs-section .section-badge {
    background: rgba(245, 166, 35, 0.1);
    border: 1px solid #F5A623;
    padding: 8px 20px;
    border-radius: 25px;
    color: #F5A623;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.blogs-section .section-title {
    font-size: 3rem;
    font-weight: 800;
    color: #0A2540;
    margin-bottom: 20px;
    line-height: 1.2;
}

.blogs-section .section-subtitle {
    font-size: 1.25rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.blogs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.blog-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #F5F5F5;
    position: relative;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #F5A623 0%, #E09500 100%);
    border-radius: 20px 20px 0 0;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: #F5A623;
}

.blog-number {
    position: absolute;
    top: -15px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #F5A623 0%, #E09500 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    box-shadow: 0 5px 15px rgba(245, 166, 35, 0.4);
    z-index: 10;
}

.blog-icon {
    width: 60px;
    height: 60px;
    background: rgba(245, 166, 35, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F5A623;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    font-size: 24px;
}

.blog-card:hover .blog-icon {
    background: rgba(245, 166, 35, 0.2);
    transform: scale(1.1) rotate(10deg);
}

.blog-meta {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.blog-date {
    background: rgba(245, 166, 35, 0.1);
    color: #F5A623;
    padding: 4px 8px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 500;
    border: 1px solid rgba(245, 166, 35, 0.2);
}

.blog-category {
    background: rgba(245, 166, 35, 0.1);
    color: #F5A623;
    padding: 4px 8px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 500;
    border: 1px solid rgba(245, 166, 35, 0.2);
}

.blog-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0A2540;
    margin-bottom: 12px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-excerpt {
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
    font-size: 13px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-read-time {
    color: #999;
    font-size: 12px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-footer {
    margin-top: auto;
}

.blog-cta {
    color: #F5A623;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.blog-cta:hover {
    color: #E09500;
    transform: translateX(5px);
}

/* Process-style CTA */
.blogs-cta {
    text-align: center;
    padding: 50px 40px;
    background: linear-gradient(135deg, #F8F9FA 0%, #E5E7EB 100%);
    border-radius: 20px;
    border: 1px solid #E5E7EB;
}

.blogs-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #0A2540;
    margin-bottom: 15px;
}

.blogs-cta p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 25px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.blogs-cta .cta-primary {
    background: linear-gradient(135deg, #F5A623 0%, #E09500 100%);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.4);
    text-decoration: none;
    display: inline-block;
}

.blogs-cta .cta-primary::before {
    content: '📝';
    margin-right: 8px;
}

.blogs-cta .cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245, 166, 35, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .blogs-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .blog-card {
        padding: 25px 20px;
    }

    .blogs-section .section-title {
        font-size: 2rem;
    }

    .blogs-cta {
        padding: 40px 20px;
    }

    .blogs-cta h3 {
        font-size: 1.5rem;
    }
}

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

    .blog-meta {
        flex-direction: column;
        gap: 8px;
    }
}


/* Contact Section - Add this to your style.css file */
.contact-section {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #0A2540 0%, #1A365F 100%);
    position: relative;
    color: white;
}

.contact-section .section-badge {
    background: rgba(245, 166, 35, 0.2);
    border: 1px solid #F5A623;
    padding: 8px 20px;
    border-radius: 25px;
    color: #F5A623;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.contact-section .section-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(135deg, #FFFFFF 0%, #F5A623 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-section .section-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-content {
    margin-bottom: 80px;
}

/* Main CTA */
.contact-main-cta {
    text-align: center;
    padding: 50px 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 60px;
}

.contact-main-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.contact-main-cta p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.cta-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 18px 36px;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.cta-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

/* Contact Info Grid */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(245, 166, 35, 0.3);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(245, 166, 35, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F5A623;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.contact-icon svg {
    width: 28px;
    height: 28px;
}

.contact-info-card:hover .contact-icon {
    transform: scale(1.1) rotate(10deg);
    background: rgba(245, 166, 35, 0.3);
}

.contact-info-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
}

.contact-info-card a {
    color: #F5A623;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.contact-info-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin: 0;
}



/* Portfolio CTA Styling */
.portfolio-cta {
    text-align: center;
    padding: 50px 40px;
    background: linear-gradient(135deg, #F8F9FA 0%, #E5E7EB 100%);
    border-radius: 20px;
    border: 1px solid #E5E7EB;
    margin-top: 60px;
}

.portfolio-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #0A2540;
    margin-bottom: 15px;
}

.portfolio-cta p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 25px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.portfolio-cta .cta-primary {
    background: linear-gradient(135deg, #F5A623 0%, #E09500 100%);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.4);
    text-decoration: none;
    display: inline-block;
}

.portfolio-cta .cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245, 166, 35, 0.6);
}

/* Testimonials CTA Styling */
.testimonials-cta {
    text-align: center;
    padding: 50px 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 60px;
}

.testimonials-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.testimonials-cta p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 25px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-cta .cta-primary {
    background: linear-gradient(135deg, #F5A623 0%, #E09500 100%);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.4);
    text-decoration: none;
    display: inline-block;
}

.testimonials-cta .cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245, 166, 35, 0.6);
}

/* Mobile Responsive */
@media (max-width: 768px) {

    .portfolio-cta,
    .testimonials-cta {
        padding: 40px 20px;
    }

    .portfolio-cta h3,
    .testimonials-cta h3 {
        font-size: 1.5rem;
    }
}

/* Social Links */
.social-links {
    text-align: center;
    margin-bottom: 60px;
}

.social-links h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 25px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

.social-icon.facebook {
    background: linear-gradient(135deg, #1877F2, #42A5F5);
    color: white;
}

.social-icon.instagram {
    background: linear-gradient(135deg, #E4405F, #FCCC63, #833AB4);
    color: white;
}

.social-icon.linkedin {
    background: linear-gradient(135deg, #0A66C2, #0E76A8);
    color: white;
}

.social-icon.medium {
    background: linear-gradient(135deg, #000000, #333333);
    color: white;
}

.social-icon:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Global Presence */
.global-presence {
    text-align: center;
    margin-bottom: 40px;
}

.global-presence h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 25px;
}

.countries-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.country-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid transparent;
    min-width: 120px;
}

.country-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(245, 166, 35, 0.5);
}

.country-card.active {
    border-color: #F5A623;
    background: rgba(245, 166, 35, 0.2);
}

.country-flag {
    font-size: 2rem;
    margin-bottom: 5px;
}

.country-card span {
    color: white;
    font-weight: 500;
    font-size: 14px;
}

/* Footer */
.contact-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo h3 {
    color: white;
    font-size: 1.8rem;
    font-weight: 800;
}

.footer-logo span {
    color: #F5A623;
    font-weight: 400;
}

.footer-text p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-section .section-title {
        font-size: 2rem;
    }

    .contact-main-cta {
        padding: 40px 20px;
    }

    .contact-main-cta h3 {
        font-size: 1.5rem;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .social-icons {
        gap: 15px;
    }

    .social-icon {
        width: 45px;
        height: 45px;
    }

    .countries-grid {
        gap: 20px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .contact-main-cta h3 {
        font-size: 1.3rem;
    }

    .cta-whatsapp {
        padding: 15px 30px;
        font-size: 1rem;
    }

    .contact-info-card {
        padding: 25px 15px;
    }

    .countries-grid {
        justify-content: center;
    }

    .country-card {
        min-width: 100px;
        padding: 15px;
    }
}