/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-teal: #0f1585;
    --dark-bg: #FFFFFF;
    --dark-card: #F8FAFC;
    --text-primary: #1E293B;
    --text-secondary: #64748B;
    --green-bg: #0a0d5f;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Header */
.header {
    padding: 20px 0;
    background-color: var(--dark-bg);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover,
.nav a.active {
    color: #FDCD06;
}

.btn-primary {
    background-color: #FDCD06;
    color: #000000;
    border: none;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: #e6b800;
    transform: translateY(-2px);
}

/* Dropdown & Mega Menu Styles */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.arrow {
    font-size: 10px;
    transition: transform 0.3s;
}

.nav-dropdown:hover .arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 8px;
    padding: 12px 0;
    min-width: 180px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.08);
    z-index: 1000;
    margin-top: 12px;
}

.nav-dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s;
}

.dropdown-menu a:hover {
    background: rgba(168, 85, 247, 0.1);
    color: var(--primary-teal);
}

/* Solutions Mega Menu */
.solutions-mega-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #f8f9fa;
    border-radius: 24px;
    width: 900px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    margin-top: 0px;
    padding-top: 12px;
    overflow: hidden;
}

.solutions-dropdown:hover .solutions-mega-menu,
.solutions-mega-menu:hover {
    display: block;
}

.mega-menu-header {
    background: #f8f9fa;
    padding: 30px 40px;
    border-bottom: 1px solid #e5e7eb;
}

.mega-menu-header h3 {
    color: #0f1585;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 6px;
}

.mega-menu-header p {
    color: #1f2937;
    font-size: 14px;
    margin: 0;
    font-weight: 400;
}

.mega-menu-content {
    display: flex;
    min-height: 400px;
}

.mega-menu-sidebar {
    background: #e8ecf0;
    width: 240px;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.mega-menu-tab {
    background: transparent;
    border: none;
    color: #1f2937;
    padding: 20px 24px;
    text-align: left;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: all 0.3s;
    border-left: 4px solid transparent;
}

.mega-menu-tab:hover {
    background: #d1d5db;
    color: #111827;
}

.mega-menu-tab.active {
    background: #0f1585;
    color: #ffffff;
    border-left: 4px solid #0f1585;
}

.mega-menu-body {
    flex: 1;
    padding: 35px 40px;
    background: #ffffff;
    overflow-y: auto;
    max-height: 500px;
}

.mega-menu-section {
    display: none;
}

.mega-menu-section.active {
    display: block;
}

.mega-menu-title {
    color: #0f1585;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0;
    margin-bottom: 25px;
    text-transform: none;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 30px;
    margin-bottom: 0;
}

.solution-item {
    padding: 0;
}

.solution-item h4 {
    color: #111827;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
}

.solution-item p {
    color: #6b7280;
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}

.engagement-section {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 2px solid #e5e7eb;
}

.engagement-title {
    color: var(--primary-teal);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
}

.engagement-subtitle {
    color: #6b7280;
    font-size: 12px;
    margin-bottom: 15px;
}

.engagement-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.engagement-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: #f9fafb;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.engagement-icon {
    font-size: 20px;
}

.engagement-item span:last-child {
    color: #1a1f26;
    font-size: 13px;
    font-weight: 500;
}

/* Hero Section */
.hero {
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-text h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-text p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 32px;
}

.btn-secondary {
    background-color: #FDCD06;
    color: #000000;
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: #e6b800;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(253, 205, 6, 0.4);
}

.hero-image {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-person {
    width: 480px;
    height: 600px;
    object-fit: cover;
    border-radius: 350px 350px 0 0;
    position: relative;
    z-index: 1;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: float 3s ease-in-out infinite;
    z-index: 2;
}

.card-1 {
    top: 270px;
    left: -40px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: #1F2937;
    font-weight: 600;
}

.card-2 {
    top: 200px;
    right: -10px;
    background: #FDCD06;
}

.stat-card {
    color: #000000;
    text-align: center;
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
}

.stat-label {
    font-size: 11px;
    margin-top: 4px;
    opacity: 0.9;
}

.card-3 {
    bottom: 80px;
    left: 380px;
    background: white;
}

.exp-card {
    color: #1F2937;
}

.exp-number {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-teal);
}

.exp-number span {
    font-size: 12px;
    font-weight: 600;
    color: #1F2937;
    margin-left: 4px;
}

.exp-label {
    font-size: 11px;
    margin-top: 4px;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Stats Section */
.stats {
    padding: 60px 0;
    background-color: #F8FAFC;
    overflow: hidden;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
    align-items: center;
    width: 100%;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 72px !important;
    font-weight: 900 !important;
    color: var(--primary-teal) !important;
    line-height: 1 !important;
    margin-bottom: 16px !important;
}

.stat-label {
    font-size: 14px !important;
    color: var(--text-secondary) !important;
    font-weight: 700 !important;
    letter-spacing: 1.2px !important;
    text-transform: uppercase !important;
}

.stat-logos {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.stat-logos img {
    height: 32px;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: all 0.3s;
}

.stat-logos img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.see-more {
    display: inline-block;
    color: var(--primary-teal);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s;
}

.see-more:hover {
    color: #9333EA;
}

/* Best Developers Team Section */
.developers-team {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background-color: #FFFFFF;
    color: #000000;
}

.developers-team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background-image: url('blur_effect1blue.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center top;
    opacity: 0.2;
    z-index: 0;
    pointer-events: none;
}

.developers-team::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 5%;
    transform: translateX(50%);
    width: 600px;
    height: 600px;
    background-image: url('blur_effect1blue.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center top;
    opacity: 0.2;
    z-index: 0;
    pointer-events: none;
}

.developers-team .container {
    position: relative;
    z-index: 1;
}

.developers-team h2 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #000000;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 800px;
}

.action-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-teal);
    border: 2px solid var(--primary-teal);
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-outline:hover {
    background-color: var(--primary-teal);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.3);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: linear-gradient(135deg, #1a1f9e 0%, #000229 100%);
    padding: 40px 36px;
    border-radius: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 70px rgba(253, 205, 6, 0.3);
    border-color: rgba(253, 205, 6, 0.3);
}

.card-icon-box {
    width: 64px;
    height: 64px;
    background: transparent;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    backdrop-filter: none;
    border: none;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #FFFFFF;
}

.feature-card p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

/* Breaking Barriers Section */
.barriers {
    padding: 100px 0;
    background-color: #FFFFFF;
    position: relative;
}

.barriers::after {
    content: '';
    position: absolute;
    top: 300px;
    left: 0%;
    transform: translateX(-50%);
    width: 1000px;
    height: 1000px;
    background-image: url('blur_effect2blue.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

.barriers h2 {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

.barriers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.barrier-item {
    text-align: left;
    transition: all 0.3s ease;
    cursor: pointer;
}

.barrier-item:hover {
    transform: translateY(-8px);
}

.barrier-item:hover .barrier-icon {
    transform: scale(1.1) rotate(5deg);
}

.discover-link {
    display: inline-block;
    margin-top: 16px;
    color: #FDCD06;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.discover-link:hover {
    color: #e6b800;
    transform: translateX(4px);
}

.barrier-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.barrier-icon svg {
    width: 100%;
    height: 100%;
}

.barrier-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.barrier-item p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Globally Reliable Section */
.globally-reliable {
    padding: 100px 0;
    background: linear-gradient(135deg, #070a4a 0%, #0a0d5f 100%);
}

.reliable-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.section-tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #FDCD06;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.reliable-text h2 {
    font-size: 45px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #FFFFFF;
}

.reliable-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.95;
    color: #FFFFFF;
}

.tech-boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 32px;
}

.tech-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #1E293B;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.tech-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    background: #F8FAFC;
}

.tech-box svg {
    color: #0f1585;
}

.reliable-image {
    position: relative;
    height: 600px;
}

.reliable-person {
    width: 500px;
    height: 600px;
    object-fit: cover;
    border-radius: 300px 300px 0 0;
    position: absolute;
    bottom: 0;
    right: 50px;
    z-index: 0;
}

.review-card {
    position: absolute;
    background: white;
    padding: 24px 32px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    color: #1F2937;
    animation: float 3s ease-in-out infinite;
    z-index: 2;
}

.r-card-1 {
    top: 60px;
    left: -40px;
}

.r-card-2 {
    top: 250px;
    right: -60px;
}

.r-card-3 {
    bottom: 80px;
    left: -40px;
}

.review-card .stars {
    color: #FCD34D;
    font-size: 20px;
    margin-bottom: 12px;
}

.review-card p {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.rating-badge .rating {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-teal);
    line-height: 1;
}

.rating-badge .platform {
    font-size: 14px;
    margin-top: 6px;
}

/* Projects Section */
.projects {
    padding: 100px 0;
}

.projects-header {
    text-align: center;
    margin-bottom: 60px;
}

.projects-header h2 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
}

.projects-carousel-wrapper {
    overflow: hidden;
    margin: 0 -50px;
    padding: 20px 0;
}

.projects-carousel {
    display: flex;
    gap: 24px;
    animation: scroll-left 30s linear infinite;
    width: max-content;
}

.projects-carousel:hover {
    animation-play-state: paused;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.project-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
    height: 400px;
    min-width: 350px;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    background-size: cover;
    background-position: center;
    filter: blur(2px);
    z-index: 1;
}

.project-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
    z-index: 2;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.project-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px 24px;
    z-index: 3;
}

.project-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #FDCD06;
    margin-bottom: 12px;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 6px 12px;
    border-radius: 4px;
}

.project-info h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #FFFFFF;
}

.project-info p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 16px;
}

.btn-view {
    background-color: #FDCD06;
    color: #000000;
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-view:hover {
    background-color: #e6b800;
    transform: translateX(4px);
}

/* Flexible Talent Section */
.flexible-talent {
    padding: 100px 0;
    background-color: #F8FAFC;
}

.flexible-talent .section-tag {
    display: block;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #FDCD06;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.flexible-talent h2 {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
}

.talent-carousel-wrapper {
    overflow: hidden;
    margin: 0 -50px;
}

.talent-row {
    display: flex;
    gap: 20px;
    animation: scroll-left-talent 40s linear infinite;
    width: max-content;
    margin-bottom: 20px;
}

.talent-row:hover {
    animation-play-state: paused;
}

.talent-row-reverse {
    animation: scroll-right-talent 40s linear infinite;
}

@keyframes scroll-left-talent {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes scroll-right-talent {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

.talent-card {
    background-color: white;
    padding: 20px 18px;
    border-radius: 12px;
    transition: all 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    width: 260px;
    min-width: 260px;
    max-width: 260px;
    flex-shrink: 0;
}

.talent-card::before {
    content: attr(data-number);
    position: absolute;
    top: -15px;
    right: -8px;
    font-size: 100px;
    font-weight: 900;
    background: linear-gradient(135deg, #1a1f9e 0%, rgba(255, 255, 255, 0) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

.talent-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid #0f1585;
}

.talent-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.talent-card p {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.btn-learn {
    background-color: transparent;
    color: #FDCD06;
    border: 2px solid #FDCD06;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    position: relative;
    z-index: 1;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-learn:hover {
    background-color: #FDCD06;
    color: #000000;
}

/* CTA Section */
.cta {
    padding: 80px 0;
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.btn-outline-white {
    background-color: #FDCD06;
    color: #000000;
    border: 2px solid #FDCD06;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-outline-white:hover {
    background-color: #e6b800;
    border-color: #e6b800;
    color: #000000;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    padding: 80px 0 20px;
    background: linear-gradient(135deg, #070a4a 0%, #1E293B 100%);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.footer-col p {
    font-size: 14px;
    color: #94A3B8;
    line-height: 1.6;
    margin-bottom: 24px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #94A3B8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #FDCD06;
}

.contact-info li {
    color: #94A3B8;
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

.social-links a {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-links a svg {
    width: 18px;
    height: 18px;
    fill: #FFFFFF;
}

.social-links a:hover {
    background-color: #FDCD06;
    border-color: #FDCD06;
    transform: translateY(-4px);
}

.social-links a:hover svg {
    fill: #000000;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #94A3B8;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #0f1585;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(15, 21, 133, 0.4);
    transition: all 0.3s;
    z-index: 1000;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(168, 85, 247, 0.6);
}

/* Company Page Styles */
.company-hero {
    padding: 100px 0 60px;
    text-align: center;
}

.company-hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.company-hero-content p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 32px;
}

/* Explore Agency Section */
.explore-agency {
    padding: 100px 0;
}

.explore-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.profile-card {
    background: linear-gradient(135deg, #7C3AED 0%, #6D28D9 100%);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
}

.profile-photo {
    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 24px;
    border: 6px solid rgba(255, 255, 255, 0.2);
}

.profile-info h3 {
    font-size: 16px;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 8px;
}

.profile-info p {
    font-size: 14px;
    opacity: 0.9;
}

.explore-text h2 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.explore-text p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 32px;
}

.btn-explore {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: transparent;
    color: var(--text-primary);
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.icon-circle {
    width: 40px;
    height: 40px;
    background-color: var(--primary-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-bg);
    transition: all 0.3s;
}

.btn-explore:hover .icon-circle {
    transform: translateX(8px);
    background-color: #9333EA;
}

/* Rely on Experts Section */
.rely-experts {
    padding: 100px 0;
    background-color: rgba(255, 255, 255, 0.02);
}

.rely-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.rely-text h2 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.rely-text p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 32px;
}

.rely-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: linear-gradient(135deg, #7C3AED 0%, #6D28D9 100%);
    padding: 24px 28px;
    border-radius: 12px;
    transition: all 0.3s;
}

.info-card:hover {
    transform: translateX(8px);
    box-shadow: 0 10px 40px rgba(124, 58, 237, 0.3);
}

.card-icon-circle {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.info-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.info-card p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.95;
    color: white;
}

/* Brochure Section */
.brochure-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #7C3AED 0%, #6D28D9 100%);
}

.brochure-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.brochure-text h2 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 32px;
}

.btn-download {
    background-color: white;
    color: var(--dark-bg);
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.brochure-mockup {
    position: relative;
    height: 400px;
}

.brochure-1,
.brochure-2 {
    position: absolute;
    width: 280px;
    height: 380px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.brochure-1 {
    left: 0;
    top: 0;
    z-index: 2;
}

.brochure-2 {
    right: 0;
    top: 20px;
    z-index: 1;
}

/* Team Section */
.team-section {
    padding: 100px 0;
}

.team-section h2 {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 60px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.team-card {
    background: white;
    padding: 28px 24px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.team-badge {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.team-photo {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--primary-teal);
}

.badge-number {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #7C3AED 0%, #6D28D9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 14px;
    border: 3px solid white;
}

.team-card h3 {
    font-size: 14px;
    font-weight: 800;
    color: #1F2937;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.team-role {
    font-size: 12px;
    color: var(--primary-teal);
    font-weight: 600;
    margin-bottom: 12px;
}

.team-desc {
    font-size: 13px;
    color: #6B7280;
    line-height: 1.6;
}

/* Partners Section */
.partners-section {
    padding: 100px 0;
    background-color: rgba(255, 255, 255, 0.02);
}

.partners-section h2 {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-top: 60px;
}

.partners-logos img {
    height: 50px;
    opacity: 0.7;
    filter: brightness(0) invert(1);
    transition: all 0.3s;
}

.partners-logos img:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
}

.arrow {
    font-size: 10px;
    transition: transform 0.3s;
}

.nav-dropdown:hover .arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--dark-card);
    border-radius: 8px;
    padding: 8px 0;
    margin-top: 8px;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}

.dropdown-menu a:hover {
    background-color: rgba(168, 85, 247, 0.1);
    color: var(--primary-teal);
}

/* Blog Page Styles */

.blog-hero p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 32px;
}

.blog-grid-section {
    padding: 60px 0 100px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.blog-card {
    background-color: var(--dark-card);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.blog-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.blog-badge.guest {
    background-color: rgba(255, 255, 255, 0.9);
    color: #1F2937;
}

.blog-badge.latest {
    background-color: var(--primary-teal);
    color: white;
}

.blog-content {
    padding: 24px;
}

.blog-content h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.blog-content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-teal);
}

.author-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
}

.blog-date {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 2px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.page-btn,
.page-num {
    background-color: transparent;
    color: var(--text-secondary);
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.page-num {
    min-width: 48px;
}

.page-btn:hover,
.page-num:hover {
    border-color: var(--primary-teal);
    color: var(--primary-teal);
}

.page-btn.active,
.page-num.active {
    background-color: var(--primary-teal);
    border-color: var(--primary-teal);
    color: var(--dark-bg);
}

/* Career Page Styles */
.career-hero {
    padding: 120px 0 80px;
    text-align: center;
    background: linear-gradient(180deg, rgba(168, 85, 247, 0.05) 0%, transparent 100%);
}

.career-hero h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.highlight-text {
    color: var(--primary-teal);
}

.career-hero p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 32px;
}

.application-section {
    padding: 80px 0;
}

.application-section h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
}

.application-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.application-form {
    background-color: var(--dark-card);
    padding: 40px;
    border-radius: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-group input,
.form-group select {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--text-primary);
    font-size: 14px;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #FDCD06;
}

.file-upload {
    position: relative;
}

.file-upload input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-upload-label {
    background-color: rgba(168, 85, 247, 0.1);
    border: 2px dashed var(--primary-teal);
    border-radius: 8px;
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.file-upload-label:hover {
    background-color: rgba(168, 85, 247, 0.15);
}

.file-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 8px;
}

.file-text {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.file-hint {
    display: block;
    font-size: 12px;
    color: var(--text-secondary);
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #FDCD06;
}

.form-checkbox label {
    font-size: 14px;
    color: var(--text-secondary);
    cursor: pointer;
}

.recaptcha-container {
    margin-bottom: 24px;
}

.btn-submit {
    background-color: #FDCD06;
    color: #000000;
    border: none;
    padding: 14px 48px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.btn-submit:hover {
    background-color: #e6b800;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(253, 205, 6, 0.4);
}

.application-tips {
    background-color: var(--dark-card);
    padding: 40px;
    border-radius: 16px;
    height: fit-content;
}

.tips-list {
    list-style: none;
}

.tips-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.tips-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-teal);
    font-size: 20px;
    font-weight: 700;
}

.newsletter {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}

.newsletter-input {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    padding: 10px 16px;
    color: var(--text-primary);
    font-size: 14px;
}

.newsletter-input::placeholder {
    color: var(--text-secondary);
}

.newsletter-btn {
    background-color: var(--primary-teal);
    border: none;
    border-radius: 6px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-bg);
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.newsletter-btn:hover {
    background-color: #9333EA;
    transform: translateY(-2px);
}

/* Portfolio Page Styles */
.portfolio-hero {
    padding: 120px 0 60px;
    text-align: center;
}

.hero-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-teal);
    margin-bottom: 16px;
}

.portfolio-hero h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.portfolio-hero p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 32px;
}

.portfolio-filter {
    padding: 40px 0 60px;
}

.filter-tags {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.filter-tag {
    background-color: transparent;
    color: var(--text-secondary);
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-tag:hover,
.filter-tag.active {
    background-color: var(--primary-teal);
    border-color: var(--primary-teal);
    color: var(--dark-bg);
}

.portfolio-grid-section {
    padding: 0 0 100px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.portfolio-card {
    background-color: var(--dark-card);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.portfolio-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.05);
}

.portfolio-content {
    padding: 32px;
}

.portfolio-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.portfolio-content>p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
}

.portfolio-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 24px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-teal);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 11px;
    color: var(--text-secondary);
    line-height: 1.4;
}

.portfolio-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-case-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #FDCD06;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}

.read-case-link:hover {
    gap: 12px;
    color: #e6b800;
}

.portfolio-cta {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(168, 85, 247, 0.05) 100%);
}

.portfolio-cta .cta-content p {
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 32px;
}

/* Responsive Design */
@media (max-width: 1024px) {

    .hero-content,
    .reliable-content,
    .explore-content,
    .rely-content,
    .brochure-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .cards-grid,
    .barriers-grid,
    .talent-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects-carousel {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .hero-text h1,
    .developers-team h2,
    .barriers h2,
    .reliable-text h2,
    .projects-header h2,
    .flexible-talent h2,
    .cta-content h2,
    .company-hero-content h1,
    .blog-hero h1,
    .career-hero h1 {
        font-size: 36px;
    }

    .stats-grid,
    .cards-grid,
    .barriers-grid,
    .talent-grid,
    .projects-carousel,
    .team-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .cta-buttons,
    .action-buttons {
        flex-direction: column;
    }

    .hero-image,
    .reliable-image {
        height: 400px;
    }

    .hero-person,
    .reliable-person {
        width: 280px;
        height: 400px;
    }
}

/* Contact Modal Styles - Full Page Tab */
.contact-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark-bg);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.4s ease-in-out;
}

.contact-modal.show {
    display: block;
    transform: translateX(0);
}

.contact-modal-content {
    background-color: var(--dark-bg);
    width: 100%;
    min-height: 100vh;
    padding: 0;
    position: relative;
}

.close-modal {
    position: fixed;
    right: 40px;
    top: 30px;
    color: var(--text-secondary);
    font-size: 40px;
    font-weight: 300;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10000;
    transition: color 0.3s;
    line-height: 1;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal:hover {
    color: var(--primary-teal);
}

.contact-modal-body {
    padding: 80px 50px 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
    padding-top: 20px;
}

.contact-header h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.contact-header h3 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 25px;
}

.highlight-teal {
    color: var(--primary-teal);
}

.contact-header p {
    color: var(--text-secondary);
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    background: var(--dark-card);
    padding: 50px;
    border-radius: 20px;
}

.contact-form-section {
    padding-right: 40px;
    border-right: 2px solid rgba(255, 255, 255, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    background: var(--dark-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 14px 18px;
    color: var(--text-primary);
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #FDCD06;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-secondary);
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.form-checkbox {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: #FDCD06;
}

.form-checkbox label {
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.5;
    cursor: pointer;
}

.recaptcha-placeholder {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--dark-bg);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.recaptcha-placeholder input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #FDCD06;
}

.recaptcha-placeholder label {
    color: var(--text-secondary);
    font-size: 14px;
    cursor: pointer;
    flex: 1;
}

.recaptcha-icon {
    font-size: 20px;
}

.btn-submit {
    background: #FDCD06;
    color: #000000;
    border: none;
    padding: 16px 40px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 0.5px;
}

.btn-submit:hover {
    background: #e6b800;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(253, 205, 6, 0.4);
}

.contact-faq-section {
    padding-left: 40px;
}

.contact-faq-section h4 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.faq-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.faq-description {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: var(--dark-bg);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--primary-teal);
    background: rgba(168, 85, 247, 0.05);
}

.faq-item span {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
}

.arrow-right {
    color: var(--primary-teal);
    font-size: 20px;
}

.contact-info-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    background: var(--primary-teal);
    padding: 40px 50px;
    border-radius: 20px;
    margin-bottom: 40px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-icon {
    font-size: 32px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

.contact-details h5 {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.contact-details p {
    font-size: 14px;
    color: rgba(15, 20, 25, 0.8);
    font-weight: 500;
}

.contact-map {
    margin-bottom: 50px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.contact-map iframe {
    display: block;
    height: 400px;
}

.contact-bottom-cta {
    text-align: center;
    padding: 50px 0 30px;
}

.contact-bottom-cta h3 {
    font-size: 40px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 35px;
    line-height: 1.3;
}

.bottom-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.btn-outline-white {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--text-primary);
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-outline-white:hover {
    background: var(--text-primary);
    color: var(--dark-bg);
}

/* Responsive Styles for Contact Modal */
@media (max-width: 992px) {
    .contact-modal-body {
        padding: 80px 30px 40px;
    }

    .contact-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 30px;
    }

    .contact-form-section {
        padding-right: 0;
        border-right: none;
        border-bottom: 2px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 40px;
    }

    .contact-faq-section {
        padding-left: 0;
    }

    .contact-info-bar {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .contact-header h2,
    .contact-header h3 {
        font-size: 36px;
    }

    .contact-bottom-cta h3 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .contact-modal-body {
        padding: 70px 20px 30px;
    }

    .contact-content-grid {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .bottom-cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .bottom-cta-buttons button {
        width: 100%;
    }

    .contact-header h2,
    .contact-header h3 {
        font-size: 28px;
    }

    .contact-bottom-cta h3 {
        font-size: 24px;
    }

    .close-modal {
        right: 20px;
        top: 20px;
        font-size: 35px;
    }

    .contact-info-bar {
        padding: 30px 25px;
    }

    .contact-map iframe {
        height: 300px;
    }
}

/* Contact Page Styles */
.contact-page-section {
    padding: 80px 0 60px;
    background-color: var(--dark-bg);
}

.contact-page-header {
    text-align: center;
    margin-bottom: 60px;
    padding-top: 20px;
}

.contact-page-header h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.contact-page-header h3 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 25px;
}

.contact-page-header p {
    color: var(--text-secondary);
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    background: var(--dark-card);
    padding: 50px;
    border-radius: 20px;
}

.contact-page-grid .contact-form-section {
    padding-right: 40px;
    border-right: 2px solid rgba(255, 255, 255, 0.1);
}

.contact-page-grid .contact-faq-section {
    padding-left: 40px;
}

/* Responsive for Contact Page */
@media (max-width: 992px) {
    .contact-page-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 30px;
    }

    .contact-page-grid .contact-form-section {
        padding-right: 0;
        border-right: none;
        border-bottom: 2px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 40px;
    }

    .contact-page-grid .contact-faq-section {
        padding-left: 0;
    }

    .contact-page-header h2,
    .contact-page-header h3 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .contact-page-section {
        padding: 60px 0 40px;
    }

    .contact-page-grid {
        padding: 30px 20px;
    }

    .contact-page-header h2,
    .contact-page-header h3 {
        font-size: 28px;
    }
}

/* Portfolio Page Styles */
.portfolio-hero {
    background: linear-gradient(135deg, #0A4F7C 0%, #1A5F8A 50%, #2A6F9A 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

.hero-pattern::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 300px;
    height: 300px;
    background: rgba(45, 212, 191, 0.1);
    border-radius: 50%;
    filter: blur(80px);
}

.hero-pattern::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: rgba(26, 95, 138, 0.3);
    border-radius: 50%;
    filter: blur(100px);
}

.portfolio-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.portfolio-hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 14px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--primary-teal);
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
}

.portfolio-hero-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Portfolio Grid Section */
.portfolio-section {
    padding: 80px 0;
    background-color: var(--dark-bg);
}

/* Portfolio Filter */
.portfolio-filter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    padding: 30px;
    background: var(--dark-card);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.filter-btn {
    background: transparent;
    border: 2px solid rgba(168, 85, 247, 0.2);
    color: var(--text-secondary);
    padding: 14px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.1), transparent);
    transition: left 0.5s;
}

.filter-btn:hover::before {
    left: 100%;
}

.filter-btn:hover {
    border-color: var(--primary-teal);
    color: var(--primary-teal);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(168, 85, 247, 0.2);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--primary-teal) 0%, #9333EA 100%);
    border-color: var(--primary-teal);
    color: var(--dark-bg);
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.4);
}

.filter-icon {
    font-size: 18px;
    filter: grayscale(0.5);
    transition: filter 0.3s;
}

.filter-btn:hover .filter-icon,
.filter-btn.active .filter-icon {
    filter: grayscale(0);
}

.filter-count {
    background: rgba(255, 255, 255, 0.15);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    min-width: 24px;
    text-align: center;
}

.filter-btn.active .filter-count {
    background: rgba(15, 20, 25, 0.3);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.portfolio-card {
    background: var(--dark-card);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    opacity: 1;
    transform: scale(1);
}

.portfolio-card.hide {
    opacity: 0;
    transform: scale(0.8);
    position: absolute;
    pointer-events: none;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.portfolio-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a5f8a 0%, #0a4f7c 100%);
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.view-project-btn {
    background: var(--primary-teal);
    color: var(--dark-bg);
    border: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.view-project-btn:hover {
    background: #9333EA;
    transform: translateY(-2px);
}

.portfolio-info {
    padding: 25px;
}

.portfolio-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.tag {
    background: rgba(168, 85, 247, 0.15);
    color: var(--primary-teal);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.portfolio-info h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.portfolio-info p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

/* Filter Results Counter */
.filter-results {
    text-align: center;
    margin-bottom: 30px;
}

.filter-results p {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
}

.filter-results span {
    color: var(--primary-teal);
    font-weight: 700;
}

/* Portfolio Pagination */
.portfolio-pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 500px;
    margin: 0 auto;
}

.pagination-btn {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--text-secondary);
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pagination-btn:hover {
    border-color: var(--primary-teal);
    color: var(--primary-teal);
}

.pagination-numbers {
    display: flex;
    gap: 10px;
}

.page-number {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--text-secondary);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.page-number:hover,
.page-number.active {
    background: var(--primary-teal);
    border-color: var(--primary-teal);
    color: var(--dark-bg);
}

/* Responsive Portfolio */
@media (max-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .portfolio-filter {
        padding: 20px;
        gap: 10px;
    }

    .filter-btn {
        padding: 12px 18px;
        font-size: 13px;
    }

    .filter-icon {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .portfolio-hero {
        padding: 80px 0 60px;
    }

    .portfolio-hero-content h1 {
        font-size: 40px;
    }

    .portfolio-filter {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-btn {
        width: 100%;
        justify-content: center;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .portfolio-pagination {
        flex-direction: column;
        gap: 20px;
    }

    .pagination-btn {
        width: 100%;
        justify-content: center;
    }
}
