:root {
    --primary-blue: #4a72d3;
    --primary-orange: #ea580c;
    --text-white: #ffffff;
    --text-gray: #a1a1aa;
    --bg-dark: #0f172a;
    --font-main: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-white);
    background-color: var(--bg-dark);
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

/* Hero Section Container */
.hero-section {
    position: relative;
    min-height: calc(100vh - 80px);
    margin-top: 80px;
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Background Video */
.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    z-index: -3;
    object-fit: cover;
}

/* Overlays */
.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(24, 64, 121, 0.85) 0%, rgba(15, 23, 42, 0.85) 50%, rgba(15, 23, 42, 0.9) 100%);
    box-shadow: inset 0 0 250px 60px #184079;
    z-index: -2;
}

.dotted-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px);
    background-size: 26px 26px;
    z-index: -1;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* Header */
.header {
    background-color: #ffffff;
    padding: 12px 0;
    position: fixed;
    top: 0;

    left: 0;
    width: 100%;
    z-index: 100;
    color: #1a1a1a;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo img {
    height: 55px;
    width: auto;
}

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

.nav-menu a {
    font-size: 15px;
    font-weight: 500;
    color: #222;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-orange);
}

.nav-menu a.active {
    background: linear-gradient(90deg, #3d5a98, #ad5940);
    color: white;
    padding: 10px 14px;
    border-radius: 20px;
}

.nav-menu .dropdown i {
    font-size: 12px;
    margin-left: 4px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    gap: 8px;
}

.btn-orange {
    background-color: var(--primary-orange);
    color: white;
}

.btn-orange:hover {
    background-color: #c24100;
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #333;
    cursor: pointer;
}

/* Main Content */
.hero-content {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 40px;
    padding-bottom: 60px;
}

.hero-content .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 900px;
}

.top-badge {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
    backdrop-filter: blur(5px);
    color: #e2e8f0;
}

.top-badge .dot {
    width: 6px;
    height: 6px;
    background-color: var(--primary-orange);
    border-radius: 50%;
    display: inline-block;
}

.hero-title {
    font-size: 76px;
    line-height: 1.05;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.text-blue {
    color: #4a75e6;
}

.text-orange {
    color: #e55c20;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: #f1f5f9;
    max-width: 820px;
    margin: 0 auto 40px;
    font-weight: 500;
}

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

.hero-buttons .btn {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 700;
}

.btn-gradient {
    background: linear-gradient(90deg, #496cd4, #d65b26);
    color: white;
    border: none;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

.hero-small-text {
    font-size: 14px;
    color: #e2e8f0;
    margin-bottom: 40px;
    font-weight: 500;
}

.bottom-tags {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.tag {
    font-size: 14px;
    font-weight: 600;
    padding: 8px 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    color: #f1f5f9;
    transition: all 0.3s;
    cursor: default;
    background: rgba(255, 255, 255, 0.05);
}

.tag:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Stats Section */
.stats-section {
    background: linear-gradient(90deg, #12254b 0%, #091226 100%);
    padding: 60px 0;
    position: relative;
    z-index: 10;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 32px 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.05);
}

.stat-number {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 8px;
    background: linear-gradient(90deg, #818ed9, #d47e5b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 10px;
    font-weight: 600;
    color: #e2e8f0;
    letter-spacing: 1px;
}

/* About Section */
.about-section {
    background-color: #f2f7fd;
    padding: 100px 0;
    color: #1b1e23;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-subtitle {
    font-size: 12px;
    font-weight: 700;
    color: #1f59c2;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #111827;
    letter-spacing: -1px;
}

.section-title .text-purple {
    color: #756575;
}

.section-title .text-orange {
    color: #d15822;
}

.about-text {
    font-size: 16px;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 40px;
}

.feature-cards {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.feature-card {
    background: white;
    padding: 16px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    font-size: 13px;
    font-weight: 700;
    color: #111827;
    flex: 1;
}

.feature-card i {
    color: #1f59c2;
    font-size: 16px;
}

.feature-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.learn-more-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    color: #1f59c2;
    text-decoration: none;
    transition: transform 0.3s;
}

.learn-more-link:hover {
    transform: translateX(5px);
}

.about-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-image-wrapper img {
    width: 100%;
    aspect-ratio: 13 / 10;
    object-fit: cover;
    display: block;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.play-btn i {
    color: #1f59c2;
    font-size: 24px;
    margin-left: 5px;
}

.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

/* Trusted Section */
.trusted-section {
    background-color: #FFF7F0;
    padding: 60px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.02);
}

.trusted-text {
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    color: #4b5563;
    margin-bottom: 40px;
}

.trusted-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.trusted-logos img {
    height: 30px;
    width: auto;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: opacity 0.3s ease;
}

.trusted-logos img:hover {
    opacity: 1;
}

/* Services Section */
.services-section {
    position: relative;
    background-image: url('assets/img/bg_1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 50px 0;
    color: white;
    z-index: 1;
}

.services-dotted-overlay {
    display: none;
}

.services-header {
    max-width: 600px;
    margin-bottom: 60px;
}

.services-subtitle {
    font-size: 12px;
    font-weight: 700;
    color: #e55c20;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.services-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.text-gradient-blue-orange {
    background: linear-gradient(90deg, #062B6F 0%, #d4591f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #94a3b8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background-color: rgba(22, 40, 80, 0.3);
    /* Translucent tint without blur to let dots show */
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 30px 24px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #062B6F 0%, #d4591f 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
    margin-bottom: 16px;
}

.service-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: white;
}

.service-text {
    font-size: 14px;
    line-height: 1.5;
    color: #94a3b8;
    margin-bottom: 20px;
}

.service-link {
    font-size: 14px;
    font-weight: 600;
    color: #e55c20;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s ease;
    margin-top: auto;
    /* Pushes the link to the bottom */
}

.service-link:hover {
    gap: 10px;
}

/* Process Section */
.process-section {
    background-color: #ffffff;
    padding: 50px 0;
    color: #111827;
}

.process-header {
    text-align: center;
    margin-bottom: 60px;
}

.process-subtitle {
    font-size: 12px;
    font-weight: 700;
    color: #3b82f6;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.process-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.process-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.process-icon-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.process-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #062B6F 0%, #d4591f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
}

.process-number {
    font-size: 24px;
    font-weight: 800;
    color: #1e3a8a;
}

.process-name {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}

.process-text {
    font-size: 14px;
    line-height: 1.6;
    color: #64748b;
}

/* Tech Stack Section */
.tech-stack-section {
    position: relative;
    background-image: url('assets/img/bg_1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 50px 0;
    color: white;
    z-index: 1;
}

.tech-stack-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 60px;
    align-items: stretch;
}

.tech-header {
    margin-bottom: 50px;
    max-width: 600px;
}

.tech-subtitle {
    font-size: 12px;
    font-weight: 700;
    color: #e55c20;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.text-gradient-blue-orange {
    background: linear-gradient(90deg, #3b82f6 0%, #e55c20 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tech-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.tech-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #94a3b8;
    margin-bottom: 40px;
}

.tech-sidebar {
    height: 100%;
}

.tech-tabs {
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
    height: 100%;
    justify-content: space-between;
}

.tech-tabs li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    border-radius: 40px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    color: #e2e8f0;
}

.tech-tabs li:hover {
    background-color: rgba(255, 255, 255, 0.08);
}

.tech-tabs li.active {
    background: linear-gradient(90deg, #062B6F 0%, #e55c20 100%);
    border-color: transparent;
    color: white;
}

.tech-tabs li i {
    font-size: 18px;
    min-width: 20px;
    text-align: center;
}

.tech-tabs li.active i {
    color: white !important;
}

.tech-content-area {
    height: 100%;
}

.tech-content {
    background-color: rgba(22, 40, 80, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 40px;
    height: 40vh;
}

.tech-content-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.tech-brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}

.tech-brand-name {
    font-size: 32px;
    font-weight: 700;
    color: white;
}

.tech-best-for {
    font-size: 14px;
    color: #cbd5e1;
    margin-bottom: 40px;
    line-height: 1.6;
}

.tech-best-for strong {
    color: white;
}

.tech-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.tech-feature-title {
    font-size: 11px;
    font-weight: 700;
    color: #e55c20;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.tech-feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.tech-feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
    color: #e2e8f0;
}

.tech-feature-list li i {
    font-size: 12px;
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    cursor: pointer;
    backdrop-filter: blur(10px);
    z-index: 100;
    transition: all 0.3s ease;
}

.chat-widget:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 48px;
    }

    .nav-menu ul {
        gap: 20px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tech-stack-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        padding: 20px 0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        opacity: 0;
        transition: all 0.3s ease;
        z-index: 99;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
    }

    .nav-menu ul {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .header-action {
        display: none;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }

    .btn {
        width: 100%;
    }

    .feature-cards {
        flex-direction: column;
    }

    .trusted-logos {
        justify-content: center;
        gap: 40px;
    }
}

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

    .top-badge {
        font-size: 10px;
        padding: 6px 12px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

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

    .process-grid {
        grid-template-columns: 1fr;
    }

    .tech-stack-grid {
        grid-template-columns: 1fr;
    }

    .tech-features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .tech-content {
        padding: 30px 20px;
    }
}

/* ==========================================================================
   Portfolio Section
   ========================================================================== */
.portfolio-section {
    padding: 100px 0;
    background-color: #fdf8f5;
}

.portfolio-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

.portfolio-subtitle {
    font-size: 12px;
    font-weight: 700;
    color: #3b82f6;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.portfolio-title {
    font-size: 48px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.1;
    letter-spacing: -1px;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: 1px solid #e2e8f0;
    border-radius: 30px;
    background-color: white;
    color: #0f172a;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    border-color: #cbd5e1;
    background-color: #f8fafc;
}

.portfolio-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Featured Project Card */
.project-card-featured {
    display: grid;
    grid-template-columns: 0.8fr 1fr;
    background-color: white;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    padding: 16px;
    gap: 30px;
    min-height: 320px;
}

.project-card-featured .project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.project-card-featured .project-content {
    padding: 20px 40px 20px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.project-badge {
    display: inline-block;
    padding: 6px 12px;
    background-color: rgba(229, 92, 32, 0.1);
    color: #e55c20;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 20px;
    margin-bottom: 16px;
}

.project-title {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
}

.project-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 12px;
}

.project-desc strong {
    color: #0f172a;
}

.btn-gradient {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(90deg, #3b82f6 0%, #e55c20 100%);
    color: white;
    font-weight: 600;
    font-size: 13px;
    border-radius: 30px;
    text-decoration: none;
    margin-top: 20px;
    transition: opacity 0.3s ease;
}

.btn-gradient:hover {
    opacity: 0.9;
}

/* Secondary Projects Grid */
.projects-secondary-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.project-card {
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.project-card .project-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.project-card .project-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.project-category {
    font-size: 10px;
    font-weight: 700;
    color: #3b82f6;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.project-card .project-title {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
}

.project-card .project-desc {
    font-size: 12px;
    line-height: 1.5;
    color: #64748b;
    margin-bottom: 8px;
}

.project-link {
    margin-top: auto;
    padding-top: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #3b82f6;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.project-link:hover {
    text-decoration: underline;
}

/* ==========================================================================
   Pricing Section
   ========================================================================== */
.pricing-section {
    padding: 50px 0;
    background-color: #071022;
    color: white;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-subtitle {
    font-size: 12px;
    font-weight: 700;
    color: #e55c20;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.pricing-title {
    font-size: 48px;
    font-weight: 800;
    color: white;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.pricing-desc {
    color: #94a3b8;
    font-size: 16px;
}

/* Pricing Tabs */
.pricing-tabs-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.pricing-tabs {
    display: inline-flex;
    list-style: none;
    padding: 6px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
}

.pricing-tabs li {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    color: #cbd5e1;
    cursor: pointer;
    border-radius: 40px;
    transition: all 0.3s ease;
}

.pricing-tabs li:hover {
    color: white;
}

.pricing-tabs li.active {
    background: linear-gradient(90deg, #3b82f6 0%, #e55c20 100%);
    color: white;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: center;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 30px;
    position: relative;
    transition: transform 0.3s ease;
}

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

.pricing-card.active {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.9) 0%, rgba(229, 92, 32, 0.85) 100%);
    border: 1px solid rgba(229, 92, 32, 0.3);
    transform: scale(1.05);
    padding: 40px 30px;
}

.pricing-card.active:hover {
    transform: scale(1.05) translateY(-5px);
}

.plan-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    color: #3b82f6;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 6px 16px;
    border-radius: 20px;
    text-transform: uppercase;
}

.plan-name {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.plan-price {
    font-size: 48px;
    font-weight: 800;
    color: #3b82f6;
    margin-bottom: 30px;
}

.pricing-card.active .plan-price {
    color: white;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.plan-features li {
    font-size: 14px;
    color: #cbd5e1;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-card.active .plan-features li {
    color: white;
}

.plan-features li i {
    font-size: 12px;
    color: white;
}

.btn-plan {
    display: block;
    text-align: center;
    width: 100%;
    padding: 14px 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-weight: 600;
    font-size: 14px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-plan:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-plan-active {
    background: white;
    color: #3b82f6;
    border: none;
}

.btn-plan-active:hover {
    background: #f8fafc;
}

/* ==========================================================================
   Hosting Section
   ========================================================================== */
.hosting-section {
    padding: 100px 0;
    background-color: #EAF3FF;
}

.hosting-header {
    max-width: 600px;
    margin-bottom: 50px;
}

.hosting-subtitle {
    font-size: 12px;
    font-weight: 700;
    color: #3b82f6;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.hosting-title {
    font-size: 42px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.text-gradient-purple-orange {
    background: linear-gradient(90deg, #6366f1 0%, #e55c20 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hosting-desc {
    color: #64748b;
    font-size: 16px;
    line-height: 1.6;
}

/* Features Grid */
.hosting-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.h-feature-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.h-feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.h-feature-card i {
    font-size: 20px;
    color: #3b82f6;
    margin-bottom: 16px;
}

.h-feature-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.h-feature-card p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
}

/* Hosting Pricing Grid */
.hosting-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.h-pricing-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
}

.h-pricing-card.active {
    background: linear-gradient(135deg, #1e40af 0%, #ea580c 100%);
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(229, 92, 32, 0.2);
}

.hp-title {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}

.h-pricing-card.active .hp-title {
    color: white;
}

.hp-subtitle {
    font-size: 12px;
    color: #64748b;
    margin-bottom: 20px;
}

.h-pricing-card.active .hp-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.hp-price {
    font-size: 36px;
    font-weight: 800;
    color: #3b82f6;
    margin-bottom: 24px;
}

.h-pricing-card.active .hp-price {
    color: white;
}

.hp-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    flex-grow: 1;
}

.hp-features li {
    font-size: 13px;
    color: #0f172a;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.h-pricing-card.active .hp-features li {
    color: white;
}

.hp-features li i {
    font-size: 12px;
    color: #3b82f6;
}

.h-pricing-card.active .hp-features li i {
    color: white;
}

.btn-hp {
    display: block;
    text-align: center;
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(90deg, #334155 0%, #c2410c 100%);
    color: white;
    font-weight: 600;
    font-size: 13px;
    border-radius: 30px;
    text-decoration: none;
    transition: opacity 0.3s ease;
    margin-top: auto;
}

.btn-hp:hover {
    opacity: 0.9;
}

.btn-hp-active {
    background: white;
    color: #3b82f6;
}

.btn-hp-active:hover {
    background: #f8fafc;
    opacity: 1;
}

/* ==========================================================================
   Consultation Section
   ========================================================================== */
.consultation-section {
    padding: 100px 0;
    background-color: #071022;
    color: white;
}

.consultation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

/* Left Column */
.cons-subtitle {
    font-size: 12px;
    font-weight: 700;
    color: #e55c20;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.cons-title {
    font-size: 48px;
    font-weight: 800;
    color: white;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.cons-desc {
    color: #94a3b8;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 90%;
}

/* Calendar UI */
.calendar-ui {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
}

.cal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.cal-month {
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.cal-month i {
    color: #e55c20;
}

.cal-duration {
    font-size: 13px;
    color: #94a3b8;
}

.cal-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-size: 12px;
    color: #64748b;
    margin-bottom: 16px;
}

.cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    margin-bottom: 20px;
}

.cal-grid span {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1; 
    font-size: 14px;
    font-weight: 500;
    color: #cbd5e1;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
    cursor: default;
}

.cal-grid span.cal-active {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.9) 0%, rgba(229, 92, 32, 0.85) 100%);
    color: white;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(229, 92, 32, 0.3);
    cursor: pointer;
}

.cal-grid span.cal-active:hover {
    transform: scale(1.1);
}

.cal-footer {
    font-size: 11px;
    color: #64748b;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 16px;
}

/* Right Column (Form Container) */
.form-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
}

.form-header {
    padding: 30px;
}

.form-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin-bottom: 6px;
}

.form-header p {
    font-size: 14px;
    color: #94a3b8;
}

.form-body {
    background: white;
    padding: 40px;
    border-radius: 20px 20px 16px 16px;
    margin: 0 4px 4px 4px;
}

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

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    color: #334155;
    outline: none;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: #3b82f6;
}

.form-group textarea {
    resize: vertical;
}

.btn-submit-form {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(90deg, #2a4382 0%, #e55c20 100%);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s ease;
    font-family: inherit;
}

.btn-submit-form:hover {
    opacity: 0.9;
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testimonials-section {
    padding: 100px 0;
    background-color: #f8fafc;
}

.testi-header {
    text-align: center;
    margin-bottom: 50px;
}

.testi-subtitle {
    font-size: 12px;
    font-weight: 700;
    color: #3b82f6;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.testi-title {
    font-size: 42px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.1;
    letter-spacing: -1px;
}

/* We reuse .text-gradient-blue-orange for "Clients Say." */

/* Featured Testimonial */
.testi-featured {
    background: linear-gradient(90deg, #1d4ed8 0%, #ea580c 100%);
    border-radius: 24px;
    padding: 50px;
    margin-bottom: 30px;
    color: white;
    box-shadow: 0 20px 40px rgba(234, 88, 12, 0.15);
}

.testi-stars {
    color: white;
    font-size: 14px;
    margin-bottom: 24px;
    display: flex;
    gap: 4px;
}

.testi-featured-text {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 900px;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testi-avatar-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #94a3b8;
}

.testi-author-info h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.testi-author-info p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

/* Secondary Testimonials Grid */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testi-card {
    background: white;
    border-radius: 20px;
    padding: 32px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
}

.testi-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 800;
    color: #e55c20;
    background-color: #fff7ed;
    padding: 6px 12px;
    border-radius: 20px;
    letter-spacing: 1px;
    margin-bottom: 20px;
    align-self: flex-start;
}

.testi-stars-orange {
    color: #ea580c;
    font-size: 13px;
    margin-bottom: 16px;
    display: flex;
    gap: 4px;
}

.testi-text {
    font-size: 15px;
    color: #334155;
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1;
}

.testi-avatar-gradient {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1e3a8a 0%, #c2410c 100%);
}

.testi-author-info-dark h4 {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}

.testi-author-info-dark p {
    font-size: 12px;
    color: #64748b;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-section {
    padding: 100px 0;
    background-color: #071022;
    color: white;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-subtitle {
    font-size: 12px;
    font-weight: 700;
    color: #e55c20;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.faq-title {
    font-size: 42px;
    font-weight: 800;
    color: white;
    line-height: 1.1;
    letter-spacing: -1px;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin-right: 20px;
}

.faq-icon {
    color: #e55c20;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.faq-answer {
    display: none;
    margin-top: 12px;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    color: #94a3b8;
    font-size: 15px;
    line-height: 1.6;
}

/* ==========================================================================
   Insights Section
   ========================================================================== */
.insights-section {
    padding: 100px 0;
    background-color: #fffbf7;
}

.insights-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

.insights-subtitle {
    font-size: 12px;
    font-weight: 700;
    color: #3b82f6;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.insights-title {
    font-size: 42px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.1;
    letter-spacing: -1px;
}

.btn-all-articles {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: white;
    color: #0f172a;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid #e2e8f0;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-all-articles:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.article-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    text-decoration: none;
}

.article-card:hover, .article-card.active-card {
    border-color: transparent;
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.15);
    transform: translateY(-5px);
}

.article-icon {
    font-size: 16px;
    color: #3b82f6;
    margin-bottom: 24px;
}

.article-title {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.article-card:hover .article-title,
.article-card.active-card .article-title {
    color: #3b82f6;
}

.article-desc {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.article-link {
    font-size: 13px;
    font-weight: 700;
    color: #3b82f6;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .project-card-featured {
        grid-template-columns: 1fr;
    }

    .project-card-featured .project-img {
        height: 300px;
    }

    .projects-secondary-grid,
    .hosting-features-grid,
    .hosting-pricing-grid,
    .consultation-grid,
    .testi-grid,
    .insights-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .consultation-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    .portfolio-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .projects-secondary-grid,
    .hosting-features-grid,
    .hosting-pricing-grid,
    .consultation-grid,
    .testi-grid,
    .insights-grid {
        grid-template-columns: 1fr;
    }

    .insights-header-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

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

    .testi-featured {
        padding: 30px;
    }

    .testi-featured-text {
        font-size: 18px;
    }
}

/* Global Presence Section */
.global-presence-section {
    position: relative;
    padding: 80px 0;
    color: white;
    z-index: 1;
}

.global-presence-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.gp-subtitle {
    font-size: 12px;
    font-weight: 700;
    color: #e55c20;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.gp-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.gp-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #94a3b8;
}

.gp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.gp-location-card {
    background-color: rgba(22, 40, 80, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.gp-location-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.gp-icon {
    color: #e55c20;
    font-size: 20px;
}

.gp-location-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.gp-location-info p {
    font-size: 13px;
    color: #94a3b8;
}

.gp-contact-card {
    background-color: rgba(22, 40, 80, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gp-contact-email {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
    color: #e2e8f0;
}

/* Responsive adjustments for Global Presence */
@media (max-width: 992px) {
    .gp-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .gp-grid {
        grid-template-columns: 1fr;
    }
    .gp-contact-card {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .gp-contact-email {
        justify-content: center;
    }
}

/* Let's Talk Section */
.lets-talk-section {
    position: relative;
    z-index: 1;
}

.lets-talk-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.lt-subtitle {
    font-size: 12px;
    font-weight: 700;
    color: #3b82f6;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.lt-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
    color: #0f172a;
}

.lt-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 40px;
    max-width: 90%;
}

.lt-contact-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 48px;
}

.lt-contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 16px;
    font-weight: 500;
    color: #111827;
}

.lt-contact-item i {
    font-size: 20px;
    width: 24px;
    color: #3b82f6;
}

.lt-stats {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.lt-stat-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 30px;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: 130px;
    flex: 1;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.lt-stat-card i {
    font-size: 24px;
    color: #3b82f6;
}

.lt-stat-card span {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
}

.lt-form-container {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.lt-form-container .form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.lt-form-container .form-group input,
.lt-form-container .form-group select,
.lt-form-container .form-group textarea {
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 15px;
    border-color: #e2e8f0;
}

.lt-form-container .btn-submit-form {
    padding: 16px 32px;
    font-size: 16px;
    border-radius: 30px;
}

@media (max-width: 992px) {
    .lets-talk-grid {
        grid-template-columns: 1fr;
    }
}

/* CTA Section */
.cta-section {
    padding: 60px 0 100px;
    background: white;
}

.cta-banner {
    background-image: 
        radial-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, #234185 0%, #3a68b5 40%, #d85c1c 100%);
    background-size: 26px 26px, 100% 100%;
    border-radius: 24px;
    padding: 80px 40px;
    text-align: center;
    color: white;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.cta-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.cta-desc {
    font-size: 18px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-white {
    background: white;
    color: #1e3a8a;
}

.btn-white:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background-color: #091B38;
    color: white;
    padding: 80px 0 0;
    font-size: 14px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1.6fr 1.8fr;
    gap: 40px;
    padding-bottom: 60px;
}

.footer-logo-wrapper {
    background: white;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-bottom: 24px;
}

.footer-logo {
    max-width: 80%;
    max-height: 80%;
    display: block;
}

.footer-desc {
    color: #94a3b8;
    line-height: 1.8;
    font-size: 13px;
}

.footer-heading {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 24px;
    color: white;
}

.footer-heading-small {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    margin-top: 32px;
    color: white;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #94a3b8;
    font-size: 13px;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 13px;
    color: #94a3b8;
}

.footer-contact-item i {
    font-size: 14px;
    width: 16px;
    text-align: center;
}

.footer-contact-item a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact-item a:hover {
    color: white;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cta-title {
        font-size: 36px;
    }
    .cta-buttons {
        flex-direction: column;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Socials */
.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

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

.footer-socials a:hover {
    background: #e55c20;
}

/* Footer Bottom */
.footer-bottom-wrapper {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #94a3b8;
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}